1
0
mirror of https://github.com/danog/file.git synced 2025-01-22 21:31:15 +01:00
file/lib/BlockingDriver.php

324 lines
8.6 KiB
PHP
Raw Normal View History

2016-08-24 00:01:41 -05:00
<?php declare(strict_types = 1);
2015-07-10 21:59:39 -04:00
2015-08-05 10:55:56 -04:00
namespace Amp\File;
2015-07-10 21:59:39 -04:00
use Amp\{ Success, Failure };
2016-11-14 23:17:19 -06:00
use Interop\Async\Promise;
2015-07-10 21:59:39 -04:00
2015-07-30 10:10:53 -04:00
class BlockingDriver implements Driver {
2015-08-12 19:02:41 -04:00
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function open(string $path, string $mode): Promise {
2015-08-12 19:02:41 -04:00
if (!$fh = \fopen($path, $mode)) {
return new Failure(new FilesystemException(
"Failed opening file handle"
));
}
return new Success(new BlockingHandle($fh, $path, $mode));
}
2015-07-10 21:59:39 -04:00
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function stat(string $path): Promise {
2015-08-29 07:34:18 -04:00
if ($stat = StatCache::get($path)) {
return new Success($stat);
} elseif ($stat = @\stat($path)) {
2015-08-08 10:09:07 -04:00
StatCache::set($path, $stat);
\clearstatcache(true, $path);
2015-07-10 21:59:39 -04:00
} else {
$stat = null;
}
return new Success($stat);
}
2015-08-08 10:09:07 -04:00
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function exists(string $path): Promise {
2015-08-08 10:09:07 -04:00
if ($exists = @\file_exists($path)) {
\clearstatcache(true, $path);
}
return new Success($exists);
}
/**
* 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
2016-11-14 23:17:19 -06:00
* @return \Interop\Async\Promise<int>
2015-08-08 10:09:07 -04:00
*/
2016-11-14 23:17:19 -06:00
public function size(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\file_exists($path)) {
return new Failure(new FilesystemException(
"Path does not exist"
));
} elseif (!@\is_file($path)) {
return new Failure(new FilesystemException(
"Path is not a regular file"
));
} elseif (($size = @\filesize($path)) === false) {
return new Failure(new FilesystemException(
\error_get_last()["message"]
));
} else {
2015-10-25 02:50:30 +01:00
\clearstatcache(true, $path);
2015-08-08 10:09:07 -04:00
return new Success($size);
}
}
/**
* Does the specified path exist and is it a directory?
*
* If the path does not exist the returned Promise will resolve
* to FALSE. It will NOT reject with an error.
*
* @param string $path An absolute file system path
2016-11-14 23:17:19 -06:00
* @return \Interop\Async\Promise<bool>
2015-08-08 10:09:07 -04:00
*/
2016-11-14 23:17:19 -06:00
public function isdir(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\file_exists($path)) {
return new Success(false);
}
$isDir = @\is_dir($path);
2015-10-25 02:50:30 +01:00
\clearstatcache(true, $path);
2015-08-08 10:09:07 -04:00
return new Success($isDir);
}
/**
* Does the specified path exist and is it a file?
*
* If the path does not exist the returned Promise will resolve
* to FALSE. It will NOT reject with an error.
*
* @param string $path An absolute file system path
2016-11-14 23:17:19 -06:00
* @return \Interop\Async\Promise<bool>
2015-08-08 10:09:07 -04:00
*/
2016-11-14 23:17:19 -06:00
public function isfile(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\file_exists($path)) {
return new Success(false);
}
$isFile = @\is_file($path);
2015-10-25 02:50:30 +01:00
\clearstatcache(true, $path);
2015-08-08 10:09:07 -04:00
return new Success($isFile);
}
/**
* Retrieve the path's last modification time as a unix timestamp
*
* @param string $path An absolute file system path
2016-11-14 23:17:19 -06:00
* @return \Interop\Async\Promise<int>
2015-08-08 10:09:07 -04:00
*/
2016-11-14 23:17:19 -06:00
public function mtime(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\file_exists($path)) {
return new Failure(new FilesystemException(
"Path does not exist"
));
}
$mtime = @\filemtime($path);
2015-10-25 02:50:30 +01:00
\clearstatcache(true, $path);
2015-08-08 10:09:07 -04:00
return new Success($mtime);
}
/**
* Retrieve the path's last access time as a unix timestamp
*
* @param string $path An absolute file system path
2016-11-14 23:17:19 -06:00
* @return \Interop\Async\Promise<int>
2015-08-08 10:09:07 -04:00
*/
2016-11-14 23:17:19 -06:00
public function atime(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\file_exists($path)) {
return new Failure(new FilesystemException(
"Path does not exist"
));
}
$atime = @\fileatime($path);
2015-10-25 02:50:30 +01:00
\clearstatcache(true, $path);
2015-08-08 10:09:07 -04:00
return new Success($atime);
}
/**
* Retrieve the path's creation time as a unix timestamp
*
* @param string $path An absolute file system path
2016-11-14 23:17:19 -06:00
* @return \Interop\Async\Promise<int>
2015-08-08 10:09:07 -04:00
*/
2016-11-14 23:17:19 -06:00
public function ctime(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\file_exists($path)) {
return new Failure(new FilesystemException(
"Path does not exist"
));
}
$ctime = @\filectime($path);
2015-10-25 02:50:30 +01:00
\clearstatcache(true, $path);
2015-08-08 10:09:07 -04:00
return new Success($ctime);
}
2015-07-10 21:59:39 -04:00
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function lstat(string $path): Promise {
if ($stat = @\lstat($path)) {
\clearstatcache(true, $path);
2015-07-10 21:59:39 -04:00
} else {
$stat = null;
}
return new Success($stat);
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function symlink(string $target, string $link): Promise {
if (!@\symlink($target, $link)) {
return new Failure(new FilesystemException("Could not create symbolic link"));
}
return new Success(true);
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function link(string $target, string $link): Promise {
if (!@\link($target, $link)) {
return new Failure(new FilesystemException("Could not create hard link"));
}
return new Success(true);
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function readlink(string $path): Promise {
if (!($result = @\readlink($path))) {
return new Failure(new FilesystemException("Could not read symbolic link"));
}
return new Success($result);
2015-07-10 21:59:39 -04:00
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function rename(string $from, string $to): Promise {
if (!@\rename($from, $to)) {
return new Failure(new FilesystemException("Could not rename file"));
}
return new Success(true);
2015-07-10 21:59:39 -04:00
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function unlink(string $path): Promise {
StatCache::clear($path);
2015-08-08 10:09:07 -04:00
return new Success((bool) @\unlink($path));
2015-07-10 21:59:39 -04:00
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function mkdir(string $path, int $mode = 0644): Promise {
2015-08-08 10:09:07 -04:00
return new Success((bool) @\mkdir($path, $mode));
2015-07-10 21:59:39 -04:00
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function rmdir(string $path): Promise {
StatCache::clear($path);
2015-08-08 10:09:07 -04:00
return new Success((bool) @\rmdir($path));
2015-07-10 21:59:39 -04:00
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function scandir(string $path): Promise {
2015-08-08 10:09:07 -04:00
if (!@\is_dir($path)) {
return new Failure(new FilesystemException(
"Not a directory"
));
} elseif ($arr = @\scandir($path)) {
$arr = \array_values(\array_filter($arr, function($el) {
2015-07-10 21:59:39 -04:00
return !($el === "." || $el === "..");
}));
\clearstatcache(true, $path);
2015-07-10 21:59:39 -04:00
return new Success($arr);
} else {
2015-08-08 10:09:07 -04:00
return new Failure(new FilesystemException(
2015-07-10 21:59:39 -04:00
"Failed reading contents from {$path}"
));
}
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function chmod(string $path, int $mode): Promise {
2015-08-08 10:09:07 -04:00
return new Success((bool) @\chmod($path, $mode));
2015-07-10 21:59:39 -04:00
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function chown(string $path, int $uid, int $gid): Promise {
2015-12-09 21:45:28 +01:00
if ($uid !== -1 && !@\chown($path, $uid)) {
2015-08-08 10:09:07 -04:00
return new Failure(new FilesystemException(
\error_get_last()["message"]
2015-07-10 21:59:39 -04:00
));
2015-12-09 21:45:28 +01:00
}
if ($gid !== -1 && !@\chgrp($path, $gid)) {
2015-08-08 10:09:07 -04:00
return new Failure(new FilesystemException(
\error_get_last()["message"]
2015-07-10 21:59:39 -04:00
));
}
2015-12-09 21:45:28 +01:00
return new Success;
2015-07-10 21:59:39 -04:00
}
2015-07-18 14:53:46 -04:00
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function touch(string $path): Promise {
return new Success((bool) \touch($path));
2015-07-18 14:53:46 -04:00
}
2015-07-10 21:59:39 -04:00
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function get(string $path): Promise {
$result = @\file_get_contents($path);
2015-07-10 21:59:39 -04:00
return ($result === false)
2015-08-08 10:09:07 -04:00
? new Failure(new FilesystemException(\error_get_last()["message"]))
2015-07-10 21:59:39 -04:00
: new Success($result)
;
}
/**
* {@inheritdoc}
*/
2016-11-14 23:17:19 -06:00
public function put(string $path, string $contents): Promise {
$result = @\file_put_contents($path, $contents);
2015-07-10 21:59:39 -04:00
return ($result === false)
2015-08-08 10:09:07 -04:00
? new Failure(new FilesystemException(\error_get_last()["message"]))
2015-07-10 21:59:39 -04:00
: new Success($result)
;
}
}