mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
586 lines
17 KiB
PHP
586 lines
17 KiB
PHP
<?php
|
|
|
|
namespace Amp\File;
|
|
|
|
use Amp\Promise;
|
|
use Amp\Success;
|
|
use Amp\Failure;
|
|
use Amp\Deferred;
|
|
|
|
class EioDriver implements Driver {
|
|
private $watcher;
|
|
private $pending = 0;
|
|
private $incrementor;
|
|
private $callableDecrementor;
|
|
private static $stream;
|
|
|
|
/**
|
|
* We have to keep a static reference of eio event streams
|
|
* because if we don't garbage collection can unload eio's
|
|
* underlying pipe via a system close() call before it's
|
|
* finished and generate a SIGPIPE.
|
|
*/
|
|
public function __construct() {
|
|
if (empty(self::$stream)) {
|
|
\eio_init();
|
|
self::$stream = \eio_get_event_stream();
|
|
}
|
|
$this->callableDecrementor = function() {
|
|
\call_user_func($this->incrementor, -1);
|
|
};
|
|
$this->incrementor = function ($increment) {
|
|
switch ($increment) {
|
|
case 1:
|
|
case -1:
|
|
$this->pending += $increment;
|
|
break;
|
|
default:
|
|
throw new FilesystemException(
|
|
"Invalid pending event increment; 1 or -1 required"
|
|
);
|
|
}
|
|
if ($this->pending === 0) {
|
|
\Amp\disable($this->watcher);
|
|
} elseif ($this->pending === 1) {
|
|
\Amp\enable($this->watcher);
|
|
}
|
|
};
|
|
$this->watcher = \Amp\onReadable(self::$stream, function() {
|
|
while (\eio_npending()) {
|
|
\eio_poll();
|
|
}
|
|
}, $options = ["enable" => false]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function open($path, $mode) {
|
|
switch ($mode) {
|
|
case "r": $flags = \EIO_O_RDONLY; break;
|
|
case "r+": $flags = \EIO_O_RDWR; break;
|
|
case "w": $flags = \EIO_O_WRONLY | \EIO_O_CREAT; break;
|
|
case "w+": $flags = \EIO_O_RDWR | \EIO_O_CREAT; break;
|
|
case "a": $flags = \EIO_O_WRONLY | \EIO_O_CREAT | \EIO_O_APPEND; break;
|
|
case "a+": $flags = \EIO_O_RDWR | \EIO_O_CREAT | \EIO_O_APPEND; break;
|
|
case "x": $flags = \EIO_O_WRONLY | \EIO_O_CREAT | \EIO_O_EXCL; break;
|
|
case "x+": $flags = \EIO_O_RDWR | \EIO_O_CREAT | \EIO_O_EXCL; break;
|
|
case "c": $flags = \EIO_O_WRONLY | \EIO_O_CREAT; break;
|
|
case "c+": $flags = \EIO_O_RDWR | \EIO_O_CREAT; break;
|
|
default: return new Failure(new FilesystemException(
|
|
"Invalid open mode"
|
|
));
|
|
}
|
|
$chmod = ($flags & \EIO_O_CREAT) ? 0644 : 0;
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$openArr = [$mode, $path, $promisor];
|
|
\eio_open($path, $flags, $chmod, $priority = null, [$this, "onOpenHandle"], $openArr);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onOpenHandle($openArr, $result, $req) {
|
|
list($mode, $path, $promisor) = $openArr;
|
|
if ($result === -1) {
|
|
\call_user_func($this->incrementor, -1);
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} elseif ($mode[0] === "a") {
|
|
\array_unshift($openArr, $result);
|
|
\eio_ftruncate($result, $offset = 0, $priority = null, [$this, "onOpenFtruncate"], $openArr);
|
|
} else {
|
|
\array_unshift($openArr, $result);
|
|
\eio_fstat($result, $priority = null, [$this, "onOpenFstat"], $openArr);
|
|
}
|
|
}
|
|
|
|
private function onOpenFtruncate($openArr, $result, $req) {
|
|
\call_user_func($this->incrementor, -1);
|
|
list($fh, $mode, $path, $promisor) = $openArr;
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$handle = new EioHandle($this->incrementor, $fh, $path, $mode, $size = 0);
|
|
$promisor->succeed($handle);
|
|
}
|
|
}
|
|
|
|
private function onOpenFstat($openArr, $result, $req) {
|
|
\call_user_func($this->incrementor, -1);
|
|
list($fh, $mode, $path, $promisor) = $openArr;
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
StatCache::set($path, $result);
|
|
$handle = new EioHandle($this->incrementor, $fh, $path, $mode, $result["size"]);
|
|
$promisor->succeed($handle);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function stat($path) {
|
|
if ($stat = StatCache::get($path)) {
|
|
return new Success($stat);
|
|
}
|
|
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
$data = [$promisor, $path];
|
|
\eio_stat($path, $priority, [$this, "onStat"], $data);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onStat($data, $result, $req) {
|
|
list($promisor, $path) = $data;
|
|
\call_user_func($this->incrementor, -1);
|
|
if ($result === -1) {
|
|
$promisor->succeed(null);
|
|
} else {
|
|
StatCache::set($path, $result);
|
|
$promisor->succeed($result);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function exists($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
$promisor->succeed((bool) $result);
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isdir($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
if ($result) {
|
|
$promisor->succeed(!($result["mode"] & \EIO_S_IFREG));
|
|
} else {
|
|
$promisor->succeed(false);
|
|
}
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isfile($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
if ($result) {
|
|
$promisor->succeed((bool) ($result["mode"] & \EIO_S_IFREG));
|
|
} else {
|
|
$promisor->succeed(false);
|
|
}
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function size($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
if (empty($result)) {
|
|
$promisor->fail(new FilesystemException(
|
|
"Specified path does not exist"
|
|
));
|
|
} elseif (($result["mode"] & \EIO_S_IFREG)) {
|
|
$promisor->succeed($result["size"]);
|
|
} else {
|
|
$promisor->fail(new FilesystemException(
|
|
"Specified path is not a regular file"
|
|
));
|
|
}
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function mtime($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
if ($result) {
|
|
$promisor->succeed($result["mtime"]);
|
|
} else {
|
|
$promisor->fail(new FilesystemException(
|
|
"Specified path does not exist"
|
|
));
|
|
}
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function atime($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
if ($result) {
|
|
$promisor->succeed($result["atime"]);
|
|
} else {
|
|
$promisor->fail(new FilesystemException(
|
|
"Specified path does not exist"
|
|
));
|
|
}
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function ctime($path) {
|
|
$promisor = new Deferred;
|
|
$this->stat($path)->when(function ($error, $result) use ($promisor) {
|
|
if ($result) {
|
|
$promisor->succeed($result["ctime"]);
|
|
} else {
|
|
$promisor->fail(new FilesystemException(
|
|
"Specified path does not exist"
|
|
));
|
|
}
|
|
});
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function lstat($path) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_lstat($path, $priority, [$this, "onLstat"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onLstat($promisor, $result, $req) {
|
|
\call_user_func($this->incrementor, -1);
|
|
if ($result === -1) {
|
|
$promisor->succeed(null);
|
|
} else {
|
|
$promisor->succeed($result);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function symlink($target, $link) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_symlink($target, $link, $priority, [$this, "onGenericResult"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onGenericResult($promisor, $result, $req) {
|
|
\call_user_func($this->incrementor, -1);
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$promisor->succeed(true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rename($from, $to) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_rename($from, $to, $priority, [$this, "onGenericResult"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function unlink($path) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
$data = [$promisor, $path];
|
|
\eio_unlink($path, $priority, [$this, "onUnlink"], $data);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onUnlink($data, $result, $req) {
|
|
list($promisor, $path) = $data;
|
|
\call_user_func($this->incrementor, -1);
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
StatCache::clear($path);
|
|
$promisor->succeed(true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function mkdir($path, $mode = 0644, $recursive) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
|
|
if ($recursive) {
|
|
$arrayPath = array_filter(explode(DIRECTORY_SEPARATOR, $path));
|
|
$tmpPath = "";
|
|
|
|
$callback = function() use (
|
|
&$callback, &$arrayPath, &$tmpPath, $mode, $priority, $promisor
|
|
) {
|
|
$tmpPath .= DIRECTORY_SEPARATOR . array_shift($arrayPath);
|
|
|
|
if (empty($arrayPath)) {
|
|
\eio_mkdir($tmpPath, $mode, $priority, [$this, "onGenericResult"], $promisor);
|
|
} else {
|
|
$this->isdir($tmpPath)->when(function ($error, $result) use (
|
|
$callback, $tmpPath, $mode, $priority
|
|
) {
|
|
if ($result) {
|
|
$callback();
|
|
} else {
|
|
\eio_mkdir($tmpPath, $mode, $priority, $callback);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
$callback();
|
|
} else {
|
|
\eio_mkdir($path, $mode, $priority, [$this, "onGenericResult"], $promisor);
|
|
}
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rmdir($path) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
$data = [$promisor, $path];
|
|
\eio_rmdir($path, $priority, [$this, "onRmdir"], $data);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onRmdir($data, $result, $req) {
|
|
list($promisor, $path) = $data;
|
|
\call_user_func($this->incrementor, -1);
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
StatCache::clear($path);
|
|
$promisor->succeed(true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function scandir($path) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$flags = \EIO_READDIR_STAT_ORDER | \EIO_READDIR_DIRS_FIRST;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_readdir($path, $flags, $priority, [$this, "onScandir"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onScandir($promisor, $result, $req) {
|
|
\call_user_func($this->incrementor, -1);
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$promisor->succeed($result["names"]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function chmod($path, $mode) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_chmod($path, $mode, $priority, [$this, "onGenericResult"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function chown($path, $uid, $gid) {
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_chown($path, $uid, $gid, $priority, [$this, "onGenericResult"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function touch($path) {
|
|
$atime = $mtime = time();
|
|
$promisor = new Deferred;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_utime($path, $atime, $mtime, $priority, [$this, "onGenericResult"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get($path) {
|
|
$flags = $flags = \EIO_O_RDONLY;
|
|
$mode = 0;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
\eio_open($path, $flags, $mode, $priority, [$this, "onGetOpen"], $promisor);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onGetOpen($promisor, $result, $req) {
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_fstat($result, $priority, [$this, "onGetFstat"], [$result, $promisor]);
|
|
}
|
|
}
|
|
|
|
private function onGetFstat($fhAndPromisor, $result, $req) {
|
|
list($fh, $promisor) = $fhAndPromisor;
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
return;
|
|
}
|
|
|
|
$offset = 0;
|
|
$length = $result["size"];
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_read($fh, $length, $offset, $priority, [$this, "onGetRead"], $fhAndPromisor);
|
|
}
|
|
|
|
private function onGetRead($fhAndPromisor, $result, $req) {
|
|
list($fh, $promisor) = $fhAndPromisor;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_close($fh, $priority, $this->callableDecrementor);
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$promisor->succeed($result);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function put($path, $contents) {
|
|
$flags = \EIO_O_RDWR | \EIO_O_CREAT;
|
|
$mode = \EIO_S_IRUSR | \EIO_S_IWUSR | \EIO_S_IXUSR;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
|
|
\call_user_func($this->incrementor, 1);
|
|
$promisor = new Deferred;
|
|
$data = [$contents, $promisor];
|
|
\eio_open($path, $flags, $mode, $priority, [$this, "onPutOpen"], $data);
|
|
|
|
return $promisor->promise();
|
|
}
|
|
|
|
private function onPutOpen($data, $result, $req) {
|
|
list($contents, $promisor) = $data;
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$length = strlen($contents);
|
|
$offset = 0;
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
$callback = [$this, "onPutWrite"];
|
|
$fhAndPromisor = [$result, $promisor];
|
|
\eio_write($result, $contents, $length, $offset, $priority, $callback, $fhAndPromisor);
|
|
}
|
|
}
|
|
|
|
private function onPutWrite($fhAndPromisor, $result, $req) {
|
|
list($fh, $promisor) = $fhAndPromisor;
|
|
\eio_close($fh);
|
|
$priority = \EIO_PRI_DEFAULT;
|
|
\eio_close($fh, $priority, $this->callableDecrementor);
|
|
if ($result === -1) {
|
|
$promisor->fail(new FilesystemException(
|
|
\eio_get_last_error($req)
|
|
));
|
|
} else {
|
|
$promisor->succeed($result);
|
|
}
|
|
}
|
|
|
|
public function __destruct() {
|
|
\Amp\cancel($this->watcher);
|
|
}
|
|
}
|