|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | +/** |
| 5 | + * This file is part of Hyperf. |
| 6 | + * |
| 7 | + * @link https://www.hyperf.io |
| 8 | + * @document https://hyperf.wiki |
| 9 | + |
| 10 | + * @license https://github.com/hyperf/hyperf/blob/master/LICENSE |
| 11 | + */ |
| 12 | +namespace Hyperf\Database\SQLite\Listener; |
| 13 | + |
| 14 | +use Hyperf\Context\ApplicationContext; |
| 15 | +use Hyperf\Database\Connection; |
| 16 | +use Hyperf\Database\SQLite\SQLiteConnection; |
| 17 | +use Hyperf\Event\Contract\ListenerInterface; |
| 18 | +use Hyperf\Framework\Event\BootApplication; |
| 19 | +use Psr\Container\ContainerInterface; |
| 20 | + |
| 21 | +class RegisterConnectionListener implements ListenerInterface |
| 22 | +{ |
| 23 | + /** |
| 24 | + * Create a new connection factory instance. |
| 25 | + */ |
| 26 | + public function __construct(protected ContainerInterface $container) |
| 27 | + { |
| 28 | + } |
| 29 | + |
| 30 | + public function listen(): array |
| 31 | + { |
| 32 | + return [ |
| 33 | + BootApplication::class, |
| 34 | + ]; |
| 35 | + } |
| 36 | + |
| 37 | + /** |
| 38 | + * Register sqlite connection. |
| 39 | + */ |
| 40 | + public function process(object $event): void |
| 41 | + { |
| 42 | + Connection::resolverFor('sqlite', function ($connection, $database, $prefix, $config) { |
| 43 | + if ($config['database'] === ':memory:') { |
| 44 | + $connection = $this->createPersistentPdoResolver($connection, $config); |
| 45 | + } |
| 46 | + |
| 47 | + return new SQLiteConnection($connection, $database, $prefix, $config); |
| 48 | + }); |
| 49 | + } |
| 50 | + |
| 51 | + protected function createPersistentPdoResolver($connection, $config) |
| 52 | + { |
| 53 | + return function () use ($config, $connection) { |
| 54 | + /** @var \Hyperf\Contract\ContainerInterface $container */ |
| 55 | + $container = ApplicationContext::getContainer(); |
| 56 | + $key = "sqlite.presistent.pdo.{$config['name']}"; |
| 57 | + |
| 58 | + if (! $container->has($key)) { |
| 59 | + $container->set($key, call_user_func($connection)); |
| 60 | + } |
| 61 | + |
| 62 | + return $container->get($key); |
| 63 | + }; |
| 64 | + } |
| 65 | +} |
0 commit comments