add touch() to all storage backands, and make parameter optional

This commit is contained in:
Robin Appelman 2012-02-29 23:42:40 +01:00
parent b23b5aae7f
commit e76e4e7540
7 changed files with 22 additions and 6 deletions

View File

@ -505,7 +505,13 @@ class OC_Filestorage_Shared extends OC_Filestorage {
return $storage->getLocalFile($this->getInternalPath($source));
}
}
public function touch($path, $mtime=null){
$source = $this->getSource($path);
if ($source) {
$storage = OC_Filesystem::getStorage($source);
return $storage->touch($this->getInternalPath($source),$time);
}
}
}
?>

View File

@ -48,5 +48,6 @@ abstract class OC_Filestorage{
abstract public function hash($type,$path,$raw);
abstract public function free_space($path);
abstract public function search($query);
abstract public function touch($path, $mtime=null);
abstract public function getLocalFile($path);// get a path to a local version of the file, whether the original file is local or remote
}

View File

@ -121,4 +121,5 @@ abstract class OC_Filestorage_Common extends OC_Filestorage {
$count=OC_Helper::streamCopy($source,$target);
return $tmpFile;
}
// abstract public function touch($path, $mtime=null);
}

View File

@ -72,4 +72,7 @@ class OC_Filestorage_CommonTest extends OC_Filestorage_Common{
public function search($query){
return $this->storage->search($query);
}
public function touch($path, $mtime=null){
return $this->storage->touch($path,$mtime);
}
}

View File

@ -58,15 +58,20 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function filemtime($path){
return filemtime($this->datadir.$path);
}
public function touch($path, $mtime){
public function touch($path, $mtime=null){
// sets the modification time of the file to the given value.
// If mtime is nil the current time is set.
// note that the access time of the file always changes to the current time.
if( touch( $this->datadir.$path, $mtime ) ) {
if(!is_null($mtime)){
$result=touch( $this->datadir.$path, $mtime );
}else{
$result=touch( $this->datadir.$path);
}
if( $result ) {
clearstatcache( true, $this->datadir.$path );
}
return touch($this->datadir.$path, $mtime);
return $result;
}
public function file_get_contents($path){
return file_get_contents($this->datadir.$path);

View File

@ -345,7 +345,7 @@ class OC_Filesystem{
static public function filemtime($path){
return self::$defaultInstance->filemtime($path);
}
static public function touch($path, $mtime){
static public function touch($path, $mtime=null){
return self::$defaultInstance->touch($path, $mtime);
}
static public function file_get_contents($path){

View File

@ -163,7 +163,7 @@ class OC_FilesystemView {
public function filemtime($path){
return $this->basicOperation('filemtime',$path);
}
public function touch($path, $mtime){
public function touch($path, $mtime=null){
return $this->basicOperation('touch', $path, array('write'), $mtime);
}
public function file_get_contents($path){