-
-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Register the idle connection listener
- Loading branch information
Showing
10 changed files
with
197 additions
and
14 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
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
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,37 @@ | ||
<?php | ||
|
||
namespace Doctrine\Bundle\DoctrineBundle\Middleware; | ||
|
||
use ArrayObject; | ||
use Doctrine\DBAL\Driver; | ||
use Doctrine\DBAL\Driver\Middleware; | ||
use Symfony\Bridge\Doctrine\Middleware\IdleConnection\Driver as IdleConnectionDriver; | ||
|
||
class IdleConnectionMiddleware implements Middleware, ConnectionNameAwareInterface | ||
{ | ||
private ArrayObject $connectionExpiries; | ||
/** @var array<string, int> */ | ||
private array $ttlByConnection; | ||
private string $connectionName; | ||
|
||
/** | ||
* @param ArrayObject<string, int> $connectionExpiries | ||
* @param array<string, int> $ttlByConnection | ||
*/ | ||
public function __construct(ArrayObject $connectionExpiries, array $ttlByConnection) | ||
{ | ||
$this->connectionExpiries = $connectionExpiries; | ||
$this->ttlByConnection = $ttlByConnection; | ||
} | ||
|
||
public function setConnectionName(string $name): void | ||
{ | ||
$this->connectionName = $name; | ||
} | ||
|
||
public function wrap(Driver $driver): Driver | ||
Check failure on line 32 in src/Middleware/IdleConnectionMiddleware.php GitHub Actions / Static Analysis with PsalmInvalidReturnType
|
||
{ | ||
/** @psalm-suppress InternalClass,InternalMethod */ | ||
Check failure on line 34 in src/Middleware/IdleConnectionMiddleware.php GitHub Actions / Static Analysis with PsalmUnusedPsalmSuppress
Check failure on line 34 in src/Middleware/IdleConnectionMiddleware.php GitHub Actions / Static Analysis with PsalmUnusedPsalmSuppress
|
||
return new IdleConnectionDriver($driver, $this->connectionExpiries, $this->ttlByConnection[$this->connectionName], $this->connectionName); | ||
Check failure on line 35 in src/Middleware/IdleConnectionMiddleware.php GitHub Actions / Static Analysis with PsalmInvalidReturnStatement
|
||
} | ||
} |
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
Oops, something went wrong.