1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00

Mark loop classes final

This commit is contained in:
Aaron Piotrowski 2020-10-09 12:37:37 -05:00
parent 8ee7d61452
commit 1db52920ab
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB
10 changed files with 20 additions and 26 deletions

View File

@ -18,8 +18,8 @@ use function Amp\Promise\rethrow;
abstract class Driver implements \FiberScheduler
{
// Don't use 1e3 / 1e6, they result in a float instead of int
const MILLISEC_PER_SEC = 1000;
const MICROSEC_PER_SEC = 1000000;
protected const MILLISEC_PER_SEC = 1000;
protected const MICROSEC_PER_SEC = 1000000;
/** @var string Next watcher ID. */
private string $nextId = "a";

View File

@ -3,7 +3,7 @@
namespace Amp\Loop;
// @codeCoverageIgnoreStart
class DriverFactory
final class DriverFactory
{
/**
* Creates a new loop instance and chooses the best available driver.

View File

@ -8,7 +8,7 @@ use React\Promise\PromiseInterface as ReactPromise;
use function Amp\Internal\getCurrentTime;
use function Amp\Promise\rethrow;
class EvDriver extends Driver
final class EvDriver extends Driver
{
/** @var \EvSignal[]|null */
private static ?array $activeSignals = null;
@ -24,7 +24,6 @@ class EvDriver extends Driver
private array $events = [];
private \Closure $ioCallback;
/** @var callable */
private \Closure $timerCallback;

View File

@ -8,7 +8,7 @@ use React\Promise\PromiseInterface as ReactPromise;
use function Amp\Internal\getCurrentTime;
use function Amp\Promise\rethrow;
class EventDriver extends Driver
final class EventDriver extends Driver
{
/** @var \Event[]|null */
private static ?array $activeSignals = null;

View File

@ -7,10 +7,10 @@ namespace Amp\Loop;
*
* An invalid watcher identifier is any identifier that is not yet emitted by the driver or cancelled by the user.
*/
class InvalidWatcherError extends \Error
final class InvalidWatcherError extends \Error
{
/** @var string */
private $watcherId;
private string $watcherId;
/**
* @param string $watcherId The watcher identifier.
@ -25,7 +25,7 @@ class InvalidWatcherError extends \Error
/**
* @return string The watcher identifier.
*/
public function getWatcherId()
public function getWatcherId(): string
{
return $this->watcherId;
}

View File

@ -8,7 +8,7 @@ use React\Promise\PromiseInterface as ReactPromise;
use function Amp\Internal\getCurrentTime;
use function Amp\Promise\rethrow;
class NativeDriver extends Driver
final class NativeDriver extends Driver
{
/** @var resource[] */
private array $readStreams = [];

View File

@ -25,11 +25,6 @@ final class TracingDriver extends Driver
$this->driver = $driver;
}
public function createControl(): DriverControl
{
return $this->driver->createControl();
}
public function run(): void
{
$this->driver->run();

View File

@ -7,6 +7,6 @@ namespace Amp\Loop;
*
* This might happen if ext-pcntl is missing and the loop driver doesn't support another way to dispatch signals.
*/
class UnsupportedFeatureException extends \Exception
final class UnsupportedFeatureException extends \Exception
{
}

View File

@ -7,7 +7,7 @@ use Amp\Promise;
use React\Promise\PromiseInterface as ReactPromise;
use function Amp\Promise\rethrow;
class UvDriver extends Driver
final class UvDriver extends Driver
{
/** @var resource|\UVLoop A uv_loop resource created with uv_loop_new() */
private $handle;

View File

@ -9,18 +9,18 @@ use Amp\Struct;
*
* @psalm-suppress MissingConstructor
*/
class Watcher
final class Watcher
{
use Struct;
const IO = 0b00000011;
const READABLE = 0b00000001;
const WRITABLE = 0b00000010;
const DEFER = 0b00000100;
const TIMER = 0b00011000;
const DELAY = 0b00001000;
const REPEAT = 0b00010000;
const SIGNAL = 0b00100000;
public const IO = 0b00000011;
public const READABLE = 0b00000001;
public const WRITABLE = 0b00000010;
public const DEFER = 0b00000100;
public const TIMER = 0b00011000;
public const DELAY = 0b00001000;
public const REPEAT = 0b00010000;
public const SIGNAL = 0b00100000;
public int $type;