pool = $pool ?: Worker\pool(); if (!$this->pool->isRunning()) { $this->pool->start(); } } /** * {@inheritdoc} */ public function open(string $path, string $mode): Promise { $worker = $this->pool->get(); $task = new Internal\FileTask("fopen", [$path, $mode]); $deferred = new Deferred; $promise = $worker->enqueue($task); $promise->onResolve(static function ($exception, array $result = null) use ($worker, $deferred, $path) { if ($exception) { $deferred->fail($exception); return; } list($id, $size, $mode) = $result; $deferred->resolve(new ParallelHandle($worker, $id, $path, $size, $mode)); }); return $deferred->promise(); } private function runFileTask(Internal\FileTask $task): \Generator { try { return yield $this->pool->enqueue($task); } catch (TaskException $exception) { if (\strcasecmp(\substr($exception->getName(), -5), "Error") === 0) { throw new \Error($exception->getMessage()); } throw new FilesystemException("The file operation failed", $exception); } catch (WorkerException $exception) { throw new FilesystemException("Could not send the file task to worker", $exception); } } /** * {@inheritdoc} */ public function unlink(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("unlink", [$path]))); } /** * {@inheritdoc} */ public function stat(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("stat", [$path]))); } /** * {@inheritdoc} */ public function rename(string $from, string $to): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("rename", [$from, $to]))); } /** * {@inheritdoc} */ public function isfile(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("isfile", [$path]))); } /** * {@inheritdoc} */ public function isdir(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("isdir", [$path]))); } /** * {@inheritdoc} */ public function link(string $target, string $link): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("link", [$target, $link]))); } /** * {@inheritdoc} */ public function symlink(string $target, string $link): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("symlink", [$target, $link]))); } /** * {@inheritdoc} */ public function readlink(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("readlink", [$path]))); } /** * {@inheritdoc} */ public function mkdir(string $path, int $mode = 0644, bool $recursive = false): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("mkdir", [$path, $mode, $recursive]))); } /** * {@inheritdoc} */ public function scandir(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("scandir", [$path]))); } /** * {@inheritdoc} */ public function rmdir(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("rmdir", [$path]))); } /** * {@inheritdoc} */ public function chmod(string $path, int $mode): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("chmod", [$path, $mode]))); } /** * {@inheritdoc} */ public function chown(string $path, int $uid, int $gid): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("chown", [$path, $uid, $gid]))); } /** * {@inheritdoc} */ public function exists(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("exists", [$path]))); } /** * {@inheritdoc} */ public function size(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("size", [$path]))); } /** * {@inheritdoc} */ public function mtime(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("mtime", [$path]))); } /** * {@inheritdoc} */ public function atime(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("atime", [$path]))); } /** * {@inheritdoc} */ public function ctime(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("ctime", [$path]))); } /** * {@inheritdoc} */ public function lstat(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("lstat", [$path]))); } /** * {@inheritdoc} */ public function touch(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("touch", [$path]))); } /** * {@inheritdoc} */ public function get(string $path): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("get", [$path]))); } /** * {@inheritdoc} */ public function put(string $path, string $contents): Promise { return new Coroutine($this->runFileTask(new Internal\FileTask("put", [$path, $contents]))); } }