Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added keep-alive strategy #26

Merged
merged 4 commits into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,35 @@ interface Connection
/**
* Create new connection.
*
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param ConnectionOptions|null $options
*
* @return Connection
*/
public static function create(
Driver $driver,
Credentials $credentials,
AbstractPlatform $platform
AbstractPlatform $platform,
?ConnectionOptions $options = null
): Connection;

/**
* Create new connection.
*
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param ConnectionOptions|null $options
*
* @return Connection
*/
public static function createConnected(
Driver $driver,
Credentials $credentials,
AbstractPlatform $platform
AbstractPlatform $platform,
?ConnectionOptions $options = null
): Connection;

/**
Expand All @@ -67,8 +71,10 @@ public function getDriverNamespace(): string;

/**
* Connect.
*
* @param ConnectionOptions|null $options
*/
public function connect();
public function connect(?ConnectionOptions $options = null);

/**
* Close.
Expand Down
34 changes: 34 additions & 0 deletions src/ConnectionOptions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

namespace Drift\DBAL;

class ConnectionOptions
{
public const DEFAULT_KEEP_ALIVE_INTERVAL_SEC = 0; // 0 means disabled

private int $keepAliveIntervalSec;

/**
* @param int $keepAliveIntervalSec
*/
public function __construct(int $keepAliveIntervalSec = self::DEFAULT_KEEP_ALIVE_INTERVAL_SEC)
{
$this->keepAliveIntervalSec = $keepAliveIntervalSec;
}

/**
* @return int
*/
public function getKeepAliveIntervalSec(): int
{
return $this->keepAliveIntervalSec;
}

/**
* @param int $keepAliveIntervalSec
*/
public function setKeepAliveIntervalSec(int $keepAliveIntervalSec): void
{
$this->keepAliveIntervalSec = $keepAliveIntervalSec;
}
}
41 changes: 26 additions & 15 deletions src/ConnectionPool.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,31 @@ private function __construct(array $connections)
/**
* Create new connection.
*
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param ConnectionOptions|null $options
*
* @return Connection
*/
public static function create(
Driver $driver,
Credentials $credentials,
AbstractPlatform $platform
AbstractPlatform $platform,
?ConnectionOptions $options = null
): Connection {
$numberOfConnections = $credentials->getConnections();
$numberOfConnections = $credentials->getConnections() ??
ConnectionPoolOptions::DEFAULT_NUMBER_OF_CONNECTIONS;
if ($options instanceof ConnectionPoolOptions) {
$numberOfConnections = $options->getNumberOfConnections();
}

if ($numberOfConnections <= 1) {
return SingleConnection::create(
$driver,
$credentials,
$platform
$platform,
$options
);
}

Expand All @@ -71,7 +79,8 @@ public static function create(
SingleConnection::create(
clone $driver,
$credentials,
$platform
$platform,
$options
), $i
);
}
Expand All @@ -82,19 +91,21 @@ public static function create(
/**
* Create new connection.
*
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param Driver $driver
* @param Credentials $credentials
* @param AbstractPlatform $platform
* @param ConnectionOptions|null $options
*
* @return Connection
*/
public static function createConnected(
Driver $driver,
Credentials $credentials,
AbstractPlatform $platform
AbstractPlatform $platform,
?ConnectionOptions $options = null
): Connection {
$connection = self::create($driver, $credentials, $platform);
$connection->connect();
$connection = self::create($driver, $credentials, $platform, $options);
$connection->connect($options);

return $connection;
}
Expand Down Expand Up @@ -161,10 +172,10 @@ private function executeInBestConnection(callable $callable): PromiseInterface
/**
* Connect.
*/
public function connect()
public function connect(?ConnectionOptions $options = null)
{
foreach ($this->connections as $connection) {
$connection->getConnection()->connect();
$connection->getConnection()->connect($options);
}
}

Expand Down
38 changes: 38 additions & 0 deletions src/ConnectionPoolOptions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

namespace Drift\DBAL;

class ConnectionPoolOptions extends ConnectionOptions
{
public const DEFAULT_NUMBER_OF_CONNECTIONS = 1;

private int $numberOfConnections;

/**
* @param int $numberOfConnections
* @param int $keepAliveIntervalSec
*/
public function __construct(
int $numberOfConnections = self::DEFAULT_NUMBER_OF_CONNECTIONS,
int $keepAliveIntervalSec = self::DEFAULT_KEEP_ALIVE_INTERVAL_SEC
) {
$this->numberOfConnections = $numberOfConnections;
parent::__construct($keepAliveIntervalSec);
}

/**
* @return int
*/
public function getNumberOfConnections(): int
{
return $this->numberOfConnections;
}

/**
* @param int $numberOfConnections
*/
public function setNumberOfConnections(int $numberOfConnections): void
{
$this->numberOfConnections = $numberOfConnections;
}
}
43 changes: 33 additions & 10 deletions src/Credentials.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,18 @@ class Credentials
private string $user;
private string $password;
private string $dbName;

/**
* @deprecated
* @var array options
*/
private array $options;
private int $connections;

/**
* @deprecated
* @var int|null $connections
*/
private ?int $connections = null;

/**
* Credentials constructor.
Expand All @@ -36,25 +46,36 @@ class Credentials
* @param string $user
* @param string $password
* @param string $dbName
* @param array $options
* @param int $connections
*/
public function __construct(
string $host,
string $port,
string $user,
string $password,
string $dbName,
array $options = [],
int $connections = 1
string $dbName
) {
$this->host = $host;
$this->port = $port;
$this->user = $user;
$this->password = $password;
$this->dbName = $dbName;
$this->options = $options;
$this->connections = $connections;

if (func_num_args() > 5) {
trigger_error(
'6th argument is deprecated, for options please use ' . ConnectionOptions::class .
' or and extend of this class instead, when creating a connection',
E_USER_DEPRECATED
);
$this->options = (array)func_get_arg(5);
}
if (func_num_args() > 6) {
trigger_error(
'7th argument is deprecated, please use ' . ConnectionPoolOptions::class .
' to set the number of connections, when creating a ' . ConnectionPool::class,
E_USER_DEPRECATED
);
$this->connections = (int)func_get_arg(6);
}
}

/**
Expand Down Expand Up @@ -98,6 +119,7 @@ public function getDbName(): string
}

/**
* @deprecated
* @return array
*/
public function getOptions(): array
Expand All @@ -106,9 +128,10 @@ public function getOptions(): array
}

/**
* @return int
* @deprecated
* @return int|null
*/
public function getConnections(): int
public function getConnections(): ?int
{
return $this->connections;
}
Expand Down
Loading