Blame view

sources/lib/private/files/cache/watcher.php 2.47 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  /**
   * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  namespace OC\Files\Cache;
  
  /**
   * check the storage backends for updates and change the cache accordingly
   */
  class Watcher {
6d9380f96   Cédric Dupont   Update sources OC...
15
16
17
18
19
20
21
  	const CHECK_NEVER = 0; // never check the underlying filesystem for updates
  	const CHECK_ONCE = 1; // check the underlying filesystem for updates once every request for each file
  	const CHECK_ALWAYS = 2; // always check the underlying filesystem for updates
  
  	protected $watchPolicy = self::CHECK_ONCE;
  
  	protected $checkedPaths = array();
03e52840d   Kload   Init
22
23
24
  	/**
  	 * @var \OC\Files\Storage\Storage $storage
  	 */
31b7f2792   Kload   Upgrade to ownclo...
25
  	protected $storage;
03e52840d   Kload   Init
26
27
28
29
  
  	/**
  	 * @var Cache $cache
  	 */
31b7f2792   Kload   Upgrade to ownclo...
30
  	protected $cache;
03e52840d   Kload   Init
31
32
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
33
  	 * @var Scanner $scanner ;
03e52840d   Kload   Init
34
  	 */
31b7f2792   Kload   Upgrade to ownclo...
35
  	protected $scanner;
03e52840d   Kload   Init
36
37
38
39
40
41
42
43
44
45
46
  
  	/**
  	 * @param \OC\Files\Storage\Storage $storage
  	 */
  	public function __construct(\OC\Files\Storage\Storage $storage) {
  		$this->storage = $storage;
  		$this->cache = $storage->getCache();
  		$this->scanner = $storage->getScanner();
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
47
48
49
50
51
52
53
  	 * @param int $policy either \OC\Files\Cache\Watcher::CHECK_NEVER, \OC\Files\Cache\Watcher::CHECK_ONCE, \OC\Files\Cache\Watcher::CHECK_ALWAYS
  	 */
  	public function setPolicy($policy) {
  		$this->watchPolicy = $policy;
  	}
  
  	/**
03e52840d   Kload   Init
54
55
56
  	 * check $path for updates
  	 *
  	 * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
57
  	 * @return boolean|array true if path was updated, otherwise the cached data is returned
03e52840d   Kload   Init
58
59
  	 */
  	public function checkUpdate($path) {
6d9380f96   Cédric Dupont   Update sources OC...
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  		if ($this->watchPolicy === self::CHECK_ALWAYS or ($this->watchPolicy === self::CHECK_ONCE and array_search($path, $this->checkedPaths) === false)) {
  			$cachedEntry = $this->cache->get($path);
  			$this->checkedPaths[] = $path;
  			if ($this->storage->hasUpdated($path, $cachedEntry['storage_mtime'])) {
  				if ($this->storage->is_dir($path)) {
  					$this->scanner->scan($path, Scanner::SCAN_SHALLOW);
  				} else {
  					$this->scanner->scanFile($path);
  				}
  				if ($cachedEntry['mimetype'] === 'httpd/unix-directory') {
  					$this->cleanFolder($path);
  				}
  				$this->cache->correctFolderSize($path);
  				return true;
03e52840d   Kload   Init
74
  			}
6d9380f96   Cédric Dupont   Update sources OC...
75
76
77
  			return $cachedEntry;
  		} else {
  			return false;
03e52840d   Kload   Init
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  		}
  	}
  
  	/**
  	 * remove deleted files in $path from the cache
  	 *
  	 * @param string $path
  	 */
  	public function cleanFolder($path) {
  		$cachedContent = $this->cache->getFolderContents($path);
  		foreach ($cachedContent as $entry) {
  			if (!$this->storage->file_exists($entry['path'])) {
  				$this->cache->remove($entry['path']);
  			}
  		}
  	}
  }