Skip to content

Commit 83f2c0d

Browse files
authored
Added database-sqlite component.
0 parents  commit 83f2c0d

17 files changed

+3070
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/tests export-ignore
2+
/.github export-ignore
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Close Pull Request
2+
3+
on:
4+
pull_request_target:
5+
types: [ opened ]
6+
7+
jobs:
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: superbrothers/close-pull-request@v3
12+
with:
13+
comment: "Hi, this is a READ-ONLY repository, please submit your PR on the https://github.com/hyperf/hyperf repository.<br><br> This Pull Request will close automatically.<br><br> Thanks! "

.github/workflows/release.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
push:
3+
# Sequence of patterns matched against refs/tags
4+
tags:
5+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
6+
7+
name: Release
8+
9+
jobs:
10+
release:
11+
name: Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
- name: Create Release
17+
id: create_release
18+
uses: actions/create-release@v1
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
with:
22+
tag_name: ${{ github.ref }}
23+
release_name: Release ${{ github.ref }}
24+
draft: false
25+
prerelease: false

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Hyperf
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

composer.json

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"name": "hyperf/database-sqlite",
3+
"type": "library",
4+
"description": "The sqlite driver for hyperf/database.",
5+
"license": "MIT",
6+
"keywords": [
7+
"php",
8+
"swoole",
9+
"hyperf",
10+
"database",
11+
"sqlite"
12+
],
13+
"homepage": "https://hyperf.io",
14+
"support": {
15+
"docs": "https://hyperf.wiki",
16+
"issues": "https://github.com/hyperf/hyperf/issues",
17+
"pull-request": "https://github.com/hyperf/hyperf/pulls",
18+
"source": "https://github.com/hyperf/hyperf"
19+
},
20+
"require": {
21+
"php": ">=8.1",
22+
"hyperf/collection": "~3.1.0",
23+
"hyperf/database": "~3.1.0",
24+
"hyperf/support": "~3.1.0",
25+
"hyperf/stringable": "~3.1.0"
26+
},
27+
"autoload": {
28+
"psr-4": {
29+
"Hyperf\\Database\\SQLite\\": "src/"
30+
}
31+
},
32+
"autoload-dev": {
33+
"psr-4": {
34+
"HyperfTest\\Database\\SQLite\\": "tests/"
35+
}
36+
},
37+
"config": {
38+
"sort-packages": true
39+
},
40+
"extra": {
41+
"branch-alias": {
42+
"dev-master": "3.1-dev"
43+
},
44+
"hyperf": {
45+
"config": "Hyperf\\Database\\SQLite\\ConfigProvider"
46+
}
47+
}
48+
}

src/ConfigProvider.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
* @contact [email protected]
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
11+
*/
12+
namespace Hyperf\Database\SQLite;
13+
14+
use Hyperf\Database\SQLite\Connectors\SQLiteConnector;
15+
use Hyperf\Database\SQLite\Listener\RegisterConnectionListener;
16+
17+
class ConfigProvider
18+
{
19+
public function __invoke(): array
20+
{
21+
return [
22+
'dependencies' => [
23+
'db.connector.sqlite' => SQLiteConnector::class,
24+
],
25+
'listeners' => [
26+
RegisterConnectionListener::class,
27+
],
28+
];
29+
}
30+
}

src/Connectors/SQLiteConnector.php

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+
* @contact [email protected]
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
11+
*/
12+
namespace Hyperf\Database\SQLite\Connectors;
13+
14+
use Hyperf\Database\Connectors\Connector;
15+
use Hyperf\Database\Connectors\ConnectorInterface;
16+
use InvalidArgumentException;
17+
use PDO;
18+
19+
class SQLiteConnector extends Connector implements ConnectorInterface
20+
{
21+
/**
22+
* Establish a database connection.
23+
*
24+
* @return PDO
25+
*
26+
* @throws InvalidArgumentException
27+
*/
28+
public function connect(array $config)
29+
{
30+
$options = $this->getOptions($config);
31+
32+
// SQLite supports "in-memory" databases that only last as long as the owning
33+
// connection does. These are useful for tests or for short lifetime store
34+
// querying. In-memory databases may only have a single open connection.
35+
if ($config['database'] === ':memory:') {
36+
return $this->createConnection('sqlite::memory:', $config, $options);
37+
}
38+
39+
$path = realpath($config['database']);
40+
41+
// Here we'll verify that the SQLite database exists before going any further
42+
// as the developer probably wants to know if the database exists and this
43+
// SQLite driver will not throw any exception if it does not by default.
44+
if ($path === false) {
45+
throw new InvalidArgumentException("Database ({$config['database']}) does not exist.");
46+
}
47+
48+
return $this->createConnection("sqlite:{$path}", $config, $options);
49+
}
50+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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+
* @contact [email protected]
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

Comments
 (0)