diff --git a/lib/Signal.php b/lib/Signal.php index 710f1ac..29004bd 100644 --- a/lib/Signal.php +++ b/lib/Signal.php @@ -13,21 +13,20 @@ final class Signal implements Promise { $this->placeholder = $placeholder = new Internal\Placeholder; - \array_unshift($signals, $signal); + $signals[] = $signal; $watchers = &$this->watchers; - foreach ($signals as $signal) { - $this->watchers[] = Loop::onSignal($signal, static function (string $id, int $signo) use ( - &$watchers, - $placeholder - ): void { - foreach ($watchers as $watcher) { - Loop::cancel($watcher); - } - $watchers = []; + $callback = static function (string $id, int $signo) use (&$watchers, $placeholder): void { + foreach ($watchers as $watcher) { + Loop::cancel($watcher); + } + $watchers = []; - $placeholder->resolve($signo); - }); + $placeholder->resolve($signo); + }; + + foreach ($signals as $signal) { + $this->watchers[] = Loop::onSignal($signal, $callback); } } diff --git a/lib/functions.php b/lib/functions.php index e69f494..3f2d249 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -26,9 +26,10 @@ namespace Amp } return \Fiber::suspend(static fn(\Continuation $continuation) => $promise->onResolve( - static fn(?\Throwable $exception, mixed $value) => $exception - ? $continuation->throw($exception) - : $continuation->resume($value) + static fn(?\Throwable $exception, mixed $value) => match ($exception) { + null => $continuation->resume($value), + default => $continuation->throw($exception), + } ), Loop::get()); } @@ -204,11 +205,14 @@ namespace Amp /** * Async sleep for the specified number of milliseconds. * - * @param int $milliseconds Numberr of milliseconds to sleep. + * @param int $milliseconds Number of milliseconds to sleep. */ function delay(int $milliseconds): void { - await(new Delayed($milliseconds)); + \Fiber::suspend(static fn(\Continuation $continuation) => Loop::delay( + $milliseconds, + static fn() => $continuation->resume() + ), Loop::get()); } /** @@ -221,7 +225,21 @@ namespace Amp */ function signal(int $signal, int ...$signals): int { - return await(new Signal($signal, ...$signals)); + $signals[] = $signal; + + return \Fiber::suspend(static function (\Continuation $continuation) use ($signals): void { + $watchers = []; + $callback = static function (string $id, int $signo) use (&$watchers, $continuation): void { + foreach ($watchers as $watcher) { + Loop::cancel($watcher); + } + $continuation->resume($signo); + }; + + foreach ($signals as $signal) { + $watchers[] = Loop::onSignal($signal, $callback); + } + }, Loop::get()); } /** @@ -244,8 +262,8 @@ namespace Amp\Promise use Amp\Promise; use Amp\Success; use Amp\TimeoutException; + use function Amp\async; use function Amp\await; - use function Amp\call; use function Amp\Internal\createTypeError; /** @@ -262,10 +280,6 @@ namespace Amp\Promise */ function rethrow(Promise $promise): void { - if (!$promise instanceof Promise) { - $promise = adapt($promise); - } - $promise->onResolve(static function (?\Throwable $exception): void { if ($exception) { throw $exception; @@ -310,10 +324,6 @@ namespace Amp\Promise */ function timeout(Promise $promise, int $timeout): Promise { - if (!$promise instanceof Promise) { - $promise = adapt($promise); - } - $deferred = new Deferred; $watcher = Loop::delay($timeout, static function () use (&$deferred) { @@ -354,9 +364,9 @@ namespace Amp\Promise { $promise = timeout($promise, $timeout); - return call(static function () use ($promise, $default) { + return async(static function () use ($promise, $default) { try { - return yield $promise; + return await($promise); } catch (TimeoutException $exception) { return $default; } @@ -590,24 +600,18 @@ namespace Amp\Promise * @param callable $callback * * @return Promise + * + * @deprecated Use {@see await()} instead. */ function wrap(Promise $promise, callable $callback): Promise { - $deferred = new Deferred; - - $promise->onResolve(static function (?\Throwable $exception, mixed $result) use ($deferred, $callback): void { + return async(function () use ($promise, $callback) { try { - $result = $callback($exception, $result); + return $callback(null, await($promise)); } catch (\Throwable $exception) { - $deferred->fail($exception); - - return; + return $callback($exception, null); } - - $deferred->resolve($result); }); - - return $deferred->promise(); } } diff --git a/test/CancellationTest.php b/test/CancellationTest.php index 99fa642..f9ec777 100644 --- a/test/CancellationTest.php +++ b/test/CancellationTest.php @@ -79,7 +79,7 @@ class CancellationTest extends AsyncTestCase $cancellationSource->cancel(); - delay(0); // Tick event loop to invoke callbacks. + delay(1); // Tick event loop to invoke callbacks. $this->assertInstanceOf(TestException::class, $reason); } diff --git a/test/CoroutineTest.php b/test/CoroutineTest.php index 3de726f..674a34d 100644 --- a/test/CoroutineTest.php +++ b/test/CoroutineTest.php @@ -41,7 +41,7 @@ class CoroutineTest extends AsyncTestCase $coroutine = new Coroutine($generator()); - delay(0); // Force loop to tick once. + delay(1); // Force loop to tick once. $this->assertNull($yielded); @@ -49,7 +49,7 @@ class CoroutineTest extends AsyncTestCase $reason = $exception; }); - delay(0); // Force loop to tick once. + delay(1); // Force loop to tick once. $this->assertSame($exception, $reason); } diff --git a/test/DeferTest.php b/test/DeferTest.php index 3a82660..e329c4f 100644 --- a/test/DeferTest.php +++ b/test/DeferTest.php @@ -22,7 +22,7 @@ class DeferTest extends AsyncTestCase throw $exception; }); - delay(0); // Tick event loop. + delay(1); // Tick event loop. $this->assertSame($exception, $reason); } diff --git a/test/PipelineSourceTest.php b/test/PipelineSourceTest.php index c72a684..f69b8c0 100644 --- a/test/PipelineSourceTest.php +++ b/test/PipelineSourceTest.php @@ -193,7 +193,7 @@ class PipelineSourceTest extends AsyncTestCase unset($pipeline); // Should relieve all back-pressure. - delay(0); // Tick event loop to invoke promise callbacks. + delay(1); // Tick event loop to invoke promise callbacks. $this->assertSame(5, $invoked); diff --git a/test/PromiseTest.php b/test/PromiseTest.php index 81b7663..7477138 100644 --- a/test/PromiseTest.php +++ b/test/PromiseTest.php @@ -296,7 +296,7 @@ class PromiseTest extends AsyncTestCase }); $succeeder(true); - delay(0); // Tick event loop to invoke onResolve callback. + delay(5); // Tick event loop a few times to invoke onResolve callback. $this->assertSame(3, $invoked); }