Refactor names in CommandResolverInterface

This commit is contained in:
Chris 2024-12-28 15:35:41 +01:00
parent 07f8ae467c
commit 9ab9561270
5 changed files with 68 additions and 10 deletions

View File

@ -51,6 +51,11 @@ class CommandBus implements CommandBusInterface
$this->resolvers[] = $resolver;
}
public function removeResolver(CommandResolverInterface $resolver): void
{
// FIXME implement
}
/**
* Get the names of defined commands
*
@ -60,7 +65,7 @@ class CommandBus implements CommandBusInterface
{
$commands = [];
foreach ($this->resolvers as $resolver) {
$commands = array_merge($commands, $resolver->getNames());
$commands = array_merge($commands, $resolver->getCommandNames());
}
sort($commands);
return array_unique($commands);
@ -75,7 +80,7 @@ class CommandBus implements CommandBusInterface
public function findCommand(string $command): ?Command
{
foreach ($this->resolvers as $resolver) {
if ($found = $resolver->find($command))
if ($found = $resolver->findCommand($command))
return $found;
}
return null;

View File

@ -40,12 +40,12 @@ class CommandRegistry implements CommandResolverInterface, EventEmitterInterface
$this->emit(self::EVENT_UNREGISTERED, [ $command ]);
}
public function find(string $command): ?Command
public function findCommand(string $command): ?Command
{
return $this->commands[$command] ?? null;
}
public function getNames(): array
public function getCommandNames(): array
{
return array_keys($this->commands);
}

View File

@ -11,9 +11,9 @@ use Evenement\EventEmitterTrait;
interface CommandResolverInterface
{
public function find(string $command): ?Command;
public function findCommand(string $command): ?Command;
public function getNames(): array;
public function getCommandNames(): array;
}

View File

@ -0,0 +1,53 @@
<?php
namespace NoccyLabs\React\CommandBus;
use Evenement\EventEmitterInterface;
use Evenement\EventEmitterTrait;
/**
* A collection of commands that can be executed via CommandBusInterface
*
*/
trait CommandResolverTrait implements EventEmitterInterface
{
use EventEmitterTrait;
const EVENT_REGISTERED = 'registered';
const EVENT_UNREGISTERED = 'unregistered';
/** @var array<string,Command> */
private array $commands = [];
public function registerCommand(string $command, callable $handler): void
{
$isNew = !array_key_exists($command, $this->commands);
$this->commands[$command] = new Command($command, $handler);
if ($isNew) {
$this->emit(self::EVENT_REGISTERED, [ $command ]);
}
}
public function unregisterCommand(string $command): void
{
if (!array_key_exists($command, $this->commands)) {
return;
}
unset($this->commands[$command]);
$this->emit(self::EVENT_UNREGISTERED, [ $command ]);
}
public function findCommand(string $command): ?Command
{
return $this->commands[$command] ?? null;
}
public function getCommandNames(): array
{
return array_keys($this->commands);
}
}

View File

@ -48,8 +48,8 @@ class CommandRegistryTest extends \PHPUnit\Framework\TestCase
$reg->register('a', $cmda);
$reg->register('b', $cmdb);
$this->assertEquals('a', $reg->find('a')?->getName());
$this->assertEquals('b', $reg->find('b')?->getName());
$this->assertEquals('a', $reg->findCommand('a')?->getName());
$this->assertEquals('b', $reg->findCommand('b')?->getName());
}
public function testGettingCommandNames()
@ -61,7 +61,7 @@ class CommandRegistryTest extends \PHPUnit\Framework\TestCase
$reg->register('a', $cmda);
$reg->register('b', $cmdb);
$this->assertEquals(['a','b'], $reg->getNames());
$this->assertEquals(['a','b'], $reg->getCommandNames());
}
}
}