-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05c431a
commit 6c40d00
Showing
17 changed files
with
563 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,8 @@ sudo: required | |
language: php | ||
|
||
php: | ||
- 7.0 | ||
- 7.1 | ||
- 7.2 | ||
- 7.3 | ||
- nightly | ||
|
||
cache: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* Resource that must be explicitly closed. | ||
* | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
interface ClosableInterface | ||
{ | ||
|
||
/** | ||
* Closes the resource. | ||
* | ||
* After the resource is closed behavior of any of its method is undefined. | ||
* | ||
* If the resource is not closed by calling this method, it will trigger an error in its destructor. | ||
* | ||
* @return void | ||
*/ | ||
public function close(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* Channel on the connection to an AMQP 0.9.1 broker. | ||
* | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
interface RabbitChannelInterface extends ClosableInterface | ||
{ | ||
// TODO: channel methods | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* Client manages message publications and subscriptions. | ||
* | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
interface RabbitClientInterface | ||
{ | ||
|
||
/** | ||
* Publishes the message on the client-managed connection. | ||
* | ||
* If the client is not connected, a new connection will be opened. | ||
* | ||
* If the connection gets broken, a new one is tried to be created and message will be published on it. | ||
* | ||
* All publications use the same channel on the connection. | ||
* | ||
* @param RabbitMessage $message | ||
* @return void | ||
*/ | ||
public function publish(RabbitMessage $message); | ||
|
||
/** | ||
* Consume from one or more queues on the client-managed connection. | ||
* | ||
* If the client is not connected, a new connection will be opened. | ||
* | ||
* If the connection gets broken, an exception will be thrown. | ||
* | ||
* Every subscription gets a new channel. However, all consumers of the subscription share that channel. | ||
* | ||
* @return RabbitSubscriptionInterface | ||
*/ | ||
public function subscribe(): RabbitSubscriptionInterface; | ||
|
||
/** | ||
* Send heartbeat on the client-managed connection. | ||
* | ||
* If the client is not connected, a new connection will be opened. | ||
* | ||
* This method is supposed to be called either if the application tries to verify that the broker is available, | ||
* or it received a message on a subscription and it knows that the heartbeat timeout would be triggered. Otherwise, | ||
* e.g. when a subscription waits for new messages, heartbeats get sent automatically. | ||
* | ||
* @return void | ||
*/ | ||
public function ping(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
interface RabbitConnectionFactoryInterface | ||
{ | ||
|
||
/** | ||
* Opens a new connection with the factory connection options. | ||
* | ||
* Returned connection is not managed by the instance and must be explicitly closed by its `close()` method. | ||
* | ||
* @return RabbitConnectionInterface | ||
*/ | ||
public function newConnection(): RabbitConnectionInterface; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* Connection to an AMQP 0.9.1 broker. | ||
* | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
interface RabbitConnectionInterface extends ClosableInterface | ||
{ | ||
|
||
/** | ||
* Opens a new channel on the connection. | ||
* | ||
* @return RabbitChannelInterface | ||
*/ | ||
public function newChannel(): RabbitChannelInterface; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
use Bunny\NG\Sasl\SaslMechanismInterface; | ||
|
||
/** | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
final class RabbitConnectionOptions | ||
{ | ||
|
||
/** | ||
* Hostname or IP address of the server. | ||
* | ||
* @var string | ||
*/ | ||
public $host; | ||
|
||
/** | ||
* Server port. | ||
* | ||
* @var int | ||
*/ | ||
public $port; | ||
|
||
/** | ||
* Available SASL mechanisms. | ||
* | ||
* @var SaslMechanismInterface[] | ||
*/ | ||
public $mechanisms; | ||
|
||
/** | ||
* Server virtual host. | ||
* | ||
* @var string | ||
*/ | ||
public $virtualHost; | ||
|
||
/** | ||
* Heartbeat timeout defines max time the connection will be kept idle. Every `heartbeat` seconds the client will send | ||
* heartbeat frame to the server. If client doesn't hear from the server in `heartbeat * 2` seconds, the connection | ||
* is assumed to be dead. | ||
* | ||
* @var float | ||
*/ | ||
public $heartbeat; | ||
|
||
/** | ||
* Timeout to establish the connection (connection parameters tuning, SASL exchange, opening virtual host). | ||
* | ||
* @var float | ||
*/ | ||
public $connectTimeout; | ||
|
||
/** | ||
* Parameters for TLS-secured connections. | ||
* | ||
* @var TlsOptions|null | ||
*/ | ||
public $tls; | ||
|
||
public static function new() | ||
{ | ||
return new static(); | ||
} | ||
|
||
public static function fromUrl(string $url) | ||
{ | ||
throw new \LogicException("TODO"); | ||
} | ||
|
||
/** | ||
* @param string $host | ||
* @return self | ||
*/ | ||
public function setHost(string $host) | ||
{ | ||
$this->host = $host; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param int $port | ||
* @return self | ||
*/ | ||
public function setPort(int $port) | ||
{ | ||
$this->port = $port; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param SaslMechanismInterface[] $mechanisms | ||
* @return self | ||
*/ | ||
public function setMechanisms(array $mechanisms) | ||
{ | ||
$this->mechanisms = $mechanisms; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param SaslMechanismInterface $mechanism | ||
* @return self | ||
*/ | ||
public function addMechanism(SaslMechanismInterface $mechanism) | ||
{ | ||
if ($this->mechanisms === null) { | ||
$this->mechanisms = []; | ||
} | ||
|
||
$this->mechanisms[] = $mechanism; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* @param string $virtualHost | ||
* @return self | ||
*/ | ||
public function setVirtualHost(string $virtualHost) | ||
{ | ||
$this->virtualHost = $virtualHost; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param float $heartbeat | ||
* @return self | ||
*/ | ||
public function setHeartbeat(float $heartbeat) | ||
{ | ||
$this->heartbeat = $heartbeat; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param float $connectTimeout | ||
* @return self | ||
*/ | ||
public function setConnectTimeout(float $connectTimeout) | ||
{ | ||
$this->connectTimeout = $connectTimeout; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param TlsOptions|null $tls | ||
* @return self | ||
*/ | ||
public function setTls(?TlsOptions $tls) | ||
{ | ||
$this->tls = $tls; | ||
return $this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
final class RabbitConsumerOptions | ||
{ | ||
|
||
/** | ||
* Queue name. | ||
* | ||
* @var string | ||
*/ | ||
public $queue; | ||
|
||
/** | ||
* Consumer tag. | ||
* | ||
* @var string | ||
*/ | ||
public $consumerTag; | ||
|
||
public static function new() | ||
{ | ||
return new static(); | ||
} | ||
|
||
/** | ||
* @param string $queue | ||
* @return self | ||
*/ | ||
public function setQueue(string $queue) | ||
{ | ||
$this->queue = $queue; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param string $consumerTag | ||
* @return self | ||
*/ | ||
public function setConsumerTag(string $consumerTag) | ||
{ | ||
$this->consumerTag = $consumerTag; | ||
return $this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
namespace Bunny\NG; | ||
|
||
/** | ||
* @author Jakub Kulhan <jakub.kulhan@gmail.com> | ||
*/ | ||
final class RabbitMessage | ||
{ | ||
// TODO | ||
} |
Oops, something went wrong.