1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/lib/Driver.php
2015-08-13 10:15:04 -04:00

200 lines
5.1 KiB
PHP

<?php
namespace Amp\File;
interface Driver {
/**
* Open a handle for the specified path
*
* @param string $path
* @param string $mode
* @return \Amp\File\Handle
*/
public function open($path, $mode);
/**
* Execute a file stat operation
*
* If the requested path does not exist the resulting Promise will resolve to NULL.
*
* @param string $path The file system path to stat
* @return \Amp\Promise<array|null>
*/
public function stat($path);
/**
* Does the specified path exist?
*
* This function should never resolve as a failure -- only a successfull bool value
* indicating the existence of the specified path.
*
* @param string $path An absolute file system path
* @return \Amp\Promise<bool>
*/
public function exists($path);
/**
* Retrieve the size in bytes of the file at the specified path.
*
* If the path does not exist or is not a regular file this
* function's returned Promise WILL resolve as a failure.
*
* @param string $path An absolute file system path
* @return \Amp\Promise<int>
*/
public function size($path);
/**
* Does the specified path exist and is it a directory?
*
* If the path does not exist the returned Promise will resolve
* to FALSE and will not reject with an error.
*
* @param string $path An absolute file system path
* @return \Amp\Promise<bool>
*/
public function isdir($path);
/**
* Does the specified path exist and is it a file?
*
* If the path does not exist the returned Promise will resolve
* to FALSE and will not reject with an error.
*
* @param string $path An absolute file system path
* @return \Amp\Promise<bool>
*/
public function isfile($path);
/**
* Retrieve the path's last modification time as a unix timestamp
*
* @param string $path An absolute file system path
* @return \Amp\Promise<int>
*/
public function mtime($path);
/**
* Retrieve the path's last access time as a unix timestamp
*
* @param string $path An absolute file system path
* @return \Amp\Promise<int>
*/
public function atime($path);
/**
* Retrieve the path's creation time as a unix timestamp
*
* @param string $path An absolute file system path
* @return \Amp\Promise<int>
*/
public function ctime($path);
/**
* Same as stat() except if the path is a link then the link's data is returned
*
* @param string $path The file system path to stat
* @return \Amp\Promise A promise resolving to an associative array upon successful resolution
*/
public function lstat($path);
/**
* Create a symlink $link pointing to the file/directory located at $target
*
* @param string $target
* @param string $link
* @return \Amp\Promise
*/
public function symlink($target, $link);
/**
* Rename a file or directory
*
* @param string $from
* @param string $to
* @return \Amp\Promise
*/
public function rename($from, $to);
/**
* Delete a file
*
* @param string $path
* @return \Amp\Promise
*/
public function unlink($path);
/**
* Create a director
*
* @param string $path
* @param int $mode
* @return \Amp\Promise
*/
public function mkdir($path, $mode = 0644);
/**
* Delete a directory
*
* @param string $path
* @return \Amp\Promise
*/
public function rmdir($path);
/**
* Retrieve an array of files and directories inside the specified path
*
* Dot entries are not included in the resulting array (i.e. "." and "..").
*
* @param string $path
* @return \Amp\Promise
*/
public function scandir($path);
/**
* chmod a file or directory
*
* @param string $path
* @param int $mode
* @return \Amp\Promise
*/
public function chmod($path, $mode);
/**
* chown a file or directory
*
* @param string $path
* @param int $uid
* @param int $gid
* @return \Amp\Promise
*/
public function chown($path, $uid, $gid);
/**
* Update the access and modification time of the specified path
*
* If the file does not exist it will be created automatically.
*
* @param string $path
* @return \Amp\Promise
*/
public function touch($path);
/**
* Buffer the specified file's contents
*
* @param string $path The file path from which to buffer contents
* @return \Amp\Promise A promise resolving to a string upon successful resolution
*/
public function get($path);
/**
* Write the contents string to the specified path.
*
* @param string $path The file path to which to $contents should be written
* @param string $contents The data to write to the specified $path
* @return \Amp\Promise A promise resolving to the integer length written upon success
*/
public function put($path, $contents);
}