2012-09-16 18:52:32 +04:00
|
|
|
<?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;
|
|
|
|
|
|
|
|
class Cache {
|
2012-10-08 16:58:21 +04:00
|
|
|
const NOT_FOUND = 0;
|
|
|
|
const PARTIAL = 1; //only partial data available, file not cached in the database
|
|
|
|
const SHALLOW = 2; //folder in cache, but not all child files are completely scanned
|
|
|
|
const COMPLETE = 3;
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage
|
|
|
|
*/
|
|
|
|
private $storage;
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
|
|
|
* @var array partial data for the cache
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
private $partial = array();
|
|
|
|
|
|
|
|
private $storageId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
|
|
|
public function __construct(\OC\Files\Storage\Storage $storage) {
|
|
|
|
$this->storage = $storage;
|
|
|
|
$this->storageId = $storage->getId();
|
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the stored metadata of a file or folder
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string/int $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function get($file) {
|
|
|
|
if (is_string($file)) {
|
2012-09-16 18:52:32 +04:00
|
|
|
$where = 'WHERE `storage` = ? AND `path_hash` = ?';
|
2012-09-26 19:52:02 +04:00
|
|
|
$params = array($this->storageId, md5($file));
|
2012-09-16 18:52:32 +04:00
|
|
|
} else { //file id
|
|
|
|
$where = 'WHERE `fileid` = ?';
|
|
|
|
$params = array($file);
|
|
|
|
}
|
|
|
|
$query = \OC_DB::prepare(
|
2012-10-03 01:34:45 +04:00
|
|
|
'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`
|
2012-09-16 18:52:32 +04:00
|
|
|
FROM `*PREFIX*filecache` ' . $where);
|
2012-09-22 16:40:04 +04:00
|
|
|
$result = $query->execute($params);
|
2012-09-22 17:43:48 +04:00
|
|
|
$data = $result->fetchRow();
|
2012-09-22 16:40:04 +04:00
|
|
|
|
|
|
|
//merge partial data
|
2012-09-26 19:52:02 +04:00
|
|
|
if (!$data and is_string($file)) {
|
|
|
|
if (isset($this->partial[$file])) {
|
|
|
|
$data = $this->partial[$file];
|
2012-09-22 17:43:48 +04:00
|
|
|
}
|
2012-09-26 19:52:02 +04:00
|
|
|
} else {
|
|
|
|
//fix types
|
|
|
|
$data['fileid'] = (int)$data['fileid'];
|
|
|
|
$data['size'] = (int)$data['size'];
|
|
|
|
$data['mtime'] = (int)$data['mtime'];
|
2012-10-03 01:34:45 +04:00
|
|
|
$data['encrypted'] = (bool)$data['encrypted'];
|
2012-09-22 16:40:04 +04:00
|
|
|
}
|
2012-09-26 19:52:02 +04:00
|
|
|
|
2012-09-22 17:43:48 +04:00
|
|
|
return $data;
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
2012-09-23 17:25:03 +04:00
|
|
|
/**
|
|
|
|
* get the metadata of all files stored in $folder
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $folder
|
2012-09-23 17:25:03 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function getFolderContents($folder) {
|
|
|
|
$fileId = $this->getId($folder);
|
2012-09-23 17:25:03 +04:00
|
|
|
if ($fileId > -1) {
|
|
|
|
$query = \OC_DB::prepare(
|
2012-10-03 01:34:45 +04:00
|
|
|
'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`
|
2012-09-23 17:25:03 +04:00
|
|
|
FROM `*PREFIX*filecache` WHERE parent = ?');
|
|
|
|
$result = $query->execute(array($fileId));
|
|
|
|
return $result->fetchAll();
|
|
|
|
} else {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
|
|
|
* store meta data for a file or folder
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @param array $data
|
|
|
|
*
|
|
|
|
* @return int file id
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function put($file, array $data) {
|
|
|
|
if (($id = $this->getId($file)) > -1) {
|
|
|
|
$this->update($id, $data);
|
2012-09-16 18:52:32 +04:00
|
|
|
return $id;
|
|
|
|
} else {
|
2012-09-26 19:52:02 +04:00
|
|
|
if (isset($this->partial[$file])) { //add any saved partial data
|
|
|
|
$data = array_merge($this->partial[$file], $data);
|
|
|
|
unset($this->partial[$file]);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$requiredFields = array('size', 'mtime', 'mimetype');
|
|
|
|
foreach ($requiredFields as $field) {
|
|
|
|
if (!isset($data[$field])) { //data not complete save as partial and return
|
2012-09-26 19:52:02 +04:00
|
|
|
$this->partial[$file] = $data;
|
2012-09-16 18:52:32 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
$data['path'] = $file;
|
|
|
|
$data['parent'] = $this->getParentId($file);
|
|
|
|
$data['name'] = basename($file);
|
2012-10-03 01:34:45 +04:00
|
|
|
$data['encrypted'] = isset($data['encrypted']) ? ((int)$data['encrypted']) : 0;
|
2012-09-16 18:52:32 +04:00
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
list($queryParts, $params) = $this->buildParts($data);
|
2012-09-16 18:52:32 +04:00
|
|
|
$queryParts[] = '`storage`';
|
2012-09-26 19:52:02 +04:00
|
|
|
$params[] = $this->storageId;
|
2012-09-16 18:52:32 +04:00
|
|
|
$valuesPlaceholder = array_fill(0, count($queryParts), '?');
|
|
|
|
|
2012-09-22 17:43:48 +04:00
|
|
|
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache`(' . implode(', ', $queryParts) . ') VALUES(' . implode(', ', $valuesPlaceholder) . ')');
|
2012-09-16 18:52:32 +04:00
|
|
|
$query->execute($params);
|
|
|
|
|
2012-10-03 01:34:45 +04:00
|
|
|
return (int)\OC_DB::insertid('*PREFIX*filecache');
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update the metadata in the cache
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @param array $data
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function update($id, array $data) {
|
|
|
|
list($queryParts, $params) = $this->buildParts($data);
|
2012-09-16 18:52:32 +04:00
|
|
|
$params[] = $id;
|
|
|
|
|
|
|
|
$query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET ' . implode(' = ?, ', $queryParts) . '=? WHERE fileid = ?');
|
|
|
|
$query->execute($params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* extract query parts and params array from data array
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
static function buildParts(array $data) {
|
2012-10-03 01:34:45 +04:00
|
|
|
$fields = array('path', 'parent', 'name', 'mimetype', 'size', 'mtime', 'encrypted');
|
2012-09-16 18:52:32 +04:00
|
|
|
|
|
|
|
$params = array();
|
|
|
|
$queryParts = array();
|
|
|
|
foreach ($data as $name => $value) {
|
|
|
|
if (array_search($name, $fields) !== false) {
|
|
|
|
$params[] = $value;
|
|
|
|
$queryParts[] = '`' . $name . '`';
|
|
|
|
if ($name === 'path') {
|
|
|
|
$params[] = md5($value);
|
|
|
|
$queryParts[] = '`path_hash`';
|
|
|
|
} elseif ($name === 'mimetype') {
|
|
|
|
$params[] = substr($value, 0, strpos($value, '/'));
|
|
|
|
$queryParts[] = '`mimepart`';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array($queryParts, $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the file id for a file
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function getId($file) {
|
|
|
|
$pathHash = md5($file);
|
2012-09-16 18:52:32 +04:00
|
|
|
|
2012-09-22 17:43:48 +04:00
|
|
|
$query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path_hash` = ?');
|
2012-09-26 19:52:02 +04:00
|
|
|
$result = $query->execute(array($this->storageId, $pathHash));
|
2012-09-16 18:52:32 +04:00
|
|
|
|
|
|
|
if ($row = $result->fetchRow()) {
|
2012-09-22 17:43:48 +04:00
|
|
|
return $row['fileid'];
|
2012-09-16 18:52:32 +04:00
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the id of the parent folder of a file
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-22 17:48:39 +04:00
|
|
|
* @return int
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function getParentId($file) {
|
2012-10-03 13:23:33 +04:00
|
|
|
if ($file === '') {
|
2012-09-16 18:52:32 +04:00
|
|
|
return -1;
|
|
|
|
} else {
|
2012-10-03 13:23:33 +04:00
|
|
|
$parent = dirname($file);
|
|
|
|
if ($parent === '.') {
|
|
|
|
$parent = '';
|
|
|
|
}
|
|
|
|
return $this->getId($parent);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check if a file is available in the cache
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function inCache($file) {
|
|
|
|
return $this->getId($file) != -1;
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove a file or folder from the cache
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function remove($file) {
|
|
|
|
$pathHash = md5($file);
|
2012-09-16 18:52:32 +04:00
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path_hash` = ?');
|
2012-09-26 19:52:02 +04:00
|
|
|
$query->execute(array($this->storageId, $pathHash));
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-09-26 19:52:02 +04:00
|
|
|
* remove all entries for files that are stored on the storage from the cache
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function clear() {
|
2012-09-16 18:52:32 +04:00
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*filecache` WHERE storage=?');
|
2012-09-26 19:52:02 +04:00
|
|
|
$query->execute(array($this->storageId));
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
2012-10-08 16:58:21 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
*
|
|
|
|
* @return int, Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE
|
|
|
|
*/
|
|
|
|
public function getStatus($file) {
|
|
|
|
$pathHash = md5($file);
|
|
|
|
$query = \OC_DB::prepare('SELECT * FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path_hash` = ?');
|
|
|
|
$result = $query->execute(array($this->storageId, $pathHash));
|
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
if ((int)$row['size'] === -1) {
|
|
|
|
return self::SHALLOW;
|
|
|
|
} else {
|
|
|
|
return self::COMPLETE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isset($this->partial[$file])) {
|
|
|
|
return self::PARTIAL;
|
|
|
|
} else {
|
|
|
|
return self::NOT_FOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|