Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3dd2d4abf2 | |||
| 8bf5027582 | |||
| 0b27a7dc7d | |||
| c016853ff8 | |||
| 758c322679 | |||
| cbbc6ea7f1 | |||
| 456c7f29b6 | |||
| 89d5b604d6 | |||
| c943d6258b | |||
| 466cee4ab5 | |||
| ee1a5a993d | |||
| 0dcd548645 | |||
| d796a86ce3 | |||
| ef19079727 | |||
| dcee10b77b | |||
| 2bf66fc17f | |||
| 61f549362d | |||
| 583e2214c3 | |||
| e190c42dd0 | |||
| 190c272ea3 | |||
| 28c64daae7 | |||
| 7c347bc373 | |||
| d5c9b3bc86 | |||
| ef7e85746d | |||
| 89f6949556 | |||
| 555d160b40 | |||
| 45b949747d | |||
| 94857ecb46 | |||
| 0f0a3349fb | |||
| 7fb9c3ea05 | |||
| 11a939e8a1 | |||
| 1666af9906 | |||
| 78f7faba55 |
@@ -1,18 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace PHPSTORM_META {
|
|
||||||
|
|
||||||
// Reflect
|
|
||||||
use Kiri\Di\Container;
|
|
||||||
use Psr\Container\ContainerInterface;
|
|
||||||
|
|
||||||
override(ContainerInterface::get(0), map('@'));
|
|
||||||
override(Container::make(0), map('@'));
|
|
||||||
override(Container::get(0), map('@'));
|
|
||||||
override(Container::create(0), map('@'));
|
|
||||||
// override(\Hyperf\Utils\Context::get(0), map('@'));
|
|
||||||
// override(\make(0), map('@'));
|
|
||||||
override(\di(0), map('@'));
|
|
||||||
override(\duplicate(0), map('@'));
|
|
||||||
|
|
||||||
}
|
|
||||||
+1
-1
@@ -31,7 +31,7 @@ class BackupCommand extends Command
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
protected function configure()
|
protected function configure(): void
|
||||||
{
|
{
|
||||||
$this->setName('db:backup')
|
$this->setName('db:backup')
|
||||||
->addOption('data', 'd', InputArgument::OPTIONAL)
|
->addOption('data', 'd', InputArgument::OPTIONAL)
|
||||||
|
|||||||
@@ -250,7 +250,7 @@ interface ActiveQueryInterface
|
|||||||
*
|
*
|
||||||
* @return QueryTrait
|
* @return QueryTrait
|
||||||
*/
|
*/
|
||||||
public function groupBy(string $name, string $having = NULL): QueryTrait;
|
public function groupBy(string $name, ?string $having = NULL): QueryTrait;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $limit
|
* @param int $limit
|
||||||
@@ -267,4 +267,4 @@ interface ActiveQueryInterface
|
|||||||
public function offset(int $offset): QueryTrait;
|
public function offset(int $offset): QueryTrait;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+841
-826
File diff suppressed because it is too large
Load Diff
+16
-1
@@ -5,6 +5,7 @@ namespace Database\Base;
|
|||||||
class PDO extends \PDO
|
class PDO extends \PDO
|
||||||
{
|
{
|
||||||
|
|
||||||
|
readonly public string $driver;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $database
|
* @param string $database
|
||||||
@@ -12,6 +13,7 @@ class PDO extends \PDO
|
|||||||
* @param string $username
|
* @param string $username
|
||||||
* @param string $password
|
* @param string $password
|
||||||
* @param array $options
|
* @param array $options
|
||||||
|
* @param string $driver
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
readonly public string $database,
|
readonly public string $database,
|
||||||
@@ -19,10 +21,23 @@ class PDO extends \PDO
|
|||||||
readonly public string $username,
|
readonly public string $username,
|
||||||
readonly public string $password,
|
readonly public string $password,
|
||||||
readonly public array $options,
|
readonly public array $options,
|
||||||
|
string $driver = 'mysql',
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
parent::__construct('mysql:dbname=' . $this->database . ';host=' . $this->host, $this->username, $this->password, $this->options);
|
$this->driver = strtolower($driver);
|
||||||
|
$dsn = $this->buildDsn();
|
||||||
|
parent::__construct($dsn, $this->username, $this->password, $this->options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
private function buildDsn(): string
|
||||||
|
{
|
||||||
|
return match ($this->driver) {
|
||||||
|
'pgsql', 'postgresql' => 'pgsql:host=' . $this->host . ';dbname=' . $this->database,
|
||||||
|
default => 'mysql:dbname=' . $this->database . ';host=' . $this->host,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -41,7 +41,7 @@ class Collection extends AbstractCollection
|
|||||||
public function update(array $attributes): bool
|
public function update(array $attributes): bool
|
||||||
{
|
{
|
||||||
if ($this->isEmpty()) {
|
if ($this->isEmpty()) {
|
||||||
return $this->getLogger()->failure('No data by update', 'mysql');
|
return $this->getLogger()->logCategory('No data by update', 'mysql');
|
||||||
}
|
}
|
||||||
return $this->batch()->update($attributes);
|
return $this->batch()->update($attributes);
|
||||||
}
|
}
|
||||||
@@ -150,7 +150,7 @@ class Collection extends AbstractCollection
|
|||||||
{
|
{
|
||||||
$model = $this->getModel();
|
$model = $this->getModel();
|
||||||
if ($this->isEmpty()) {
|
if ($this->isEmpty()) {
|
||||||
return $this->getLogger()->failure('No data by delete', 'mysql');
|
return $this->getLogger()->logCategory('No data by delete', 'mysql');
|
||||||
}
|
}
|
||||||
if (!$model->hasPrimary()) {
|
if (!$model->hasPrimary()) {
|
||||||
throw new Exception('Must set primary key. if you want to delete data');
|
throw new Exception('Must set primary key. if you want to delete data');
|
||||||
|
|||||||
+34
-8
@@ -123,11 +123,15 @@ class Command extends Component
|
|||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
} catch (Throwable $throwable) {
|
} catch (Throwable $throwable) {
|
||||||
if ($this->isRefresh($throwable)) return $this->search($method);
|
$this->getLogger()->json_log($throwable);
|
||||||
|
|
||||||
|
if ($this->isRefresh($throwable)) {
|
||||||
|
return $this->search($method);
|
||||||
|
}
|
||||||
|
|
||||||
$errorMsg = $throwable->getMessage() . PHP_EOL . ' Sql: ' . $this->sql . '.' . json_encode($this->params);
|
$errorMsg = $throwable->getMessage() . PHP_EOL . ' Sql: ' . $this->sql . '.' . json_encode($this->params);
|
||||||
|
|
||||||
return $this->getLogger()->failure($errorMsg . PHP_EOL, 'mysql');
|
return $this->getLogger()->logCategory($errorMsg . PHP_EOL, 'mysql');
|
||||||
} finally {
|
} finally {
|
||||||
$this->connection->release($client);
|
$this->connection->release($client);
|
||||||
}
|
}
|
||||||
@@ -167,11 +171,15 @@ class Command extends Component
|
|||||||
|
|
||||||
return $result == 0 ? $prepare->rowCount() : (int)$result;
|
return $result == 0 ? $prepare->rowCount() : (int)$result;
|
||||||
} catch (Throwable $throwable) {
|
} catch (Throwable $throwable) {
|
||||||
if ($this->isRefresh($throwable)) return $this->_prepare();
|
$this->getLogger()->json_log($throwable);
|
||||||
|
|
||||||
$errorMsg = $throwable->getMessage() . PHP_EOL . ' Sql: ' . $this->sql . '.' . json_encode($this->params);
|
if ($this->isRefresh($throwable)) {
|
||||||
|
return $this->_prepare();
|
||||||
|
}
|
||||||
|
|
||||||
return $this->getLogger()->failure($errorMsg . PHP_EOL, 'mysql');
|
$errorMsg = $throwable->getMessage() . PHP_EOL . ' Sql: ' . $this->sql . '.' . json_encode($this->params, JSON_UNESCAPED_UNICODE);
|
||||||
|
|
||||||
|
return $this->getLogger()->logCategory($errorMsg . PHP_EOL, 'mysql');
|
||||||
} finally {
|
} finally {
|
||||||
$this->connection->release($client);
|
$this->connection->release($client);
|
||||||
}
|
}
|
||||||
@@ -184,15 +192,33 @@ class Command extends Component
|
|||||||
*/
|
*/
|
||||||
protected function isRefresh(Throwable $throwable): bool
|
protected function isRefresh(Throwable $throwable): bool
|
||||||
{
|
{
|
||||||
if (str_contains($throwable->getMessage(), 'MySQL server has gone away')) {
|
$message = $throwable->getMessage();
|
||||||
|
|
||||||
|
// MySQL 错误处理
|
||||||
|
if (str_contains($message, 'MySQL server has gone away')) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (str_contains($throwable->getMessage(), 'Send of 14 bytes failed with errno=32 Broken pipe')) {
|
if (str_contains($message, 'Send of 14 bytes failed with errno=32 Broken pipe')) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (str_contains($throwable->getMessage(), 'Lost connection to MySQL server during query')) {
|
if (str_contains($message, 'Lost connection to MySQL server during query')) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// PostgreSQL 错误处理
|
||||||
|
if (str_contains($message, 'server closed the connection unexpectedly')) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (str_contains($message, 'Connection refused')) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (str_contains($message, 'Broken pipe')) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (str_contains($message, 'connection to server was lost')) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -43,10 +43,9 @@ abstract class Condition extends Component
|
|||||||
public function setValue($params): void
|
public function setValue($params): void
|
||||||
{
|
{
|
||||||
if (is_array($params)) {
|
if (is_array($params)) {
|
||||||
$values = [];
|
$values = array_map(function ($value) {
|
||||||
foreach ($params as $item => $value) {
|
return is_numeric($value) ? $value : '\'' . $value . '\'';
|
||||||
$values[$item] = is_numeric($value) ? $value : '\'' . $value . '\'';
|
}, $params);
|
||||||
}
|
|
||||||
$this->value = $values;
|
$this->value = $values;
|
||||||
} else {
|
} else {
|
||||||
$this->value = $this->checkIsSqlString($params);
|
$this->value = $this->checkIsSqlString($params);
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ class NotInCondition extends Condition
|
|||||||
* @return string|null
|
* @return string|null
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
#[Pure] public function builder(): ?string
|
public function builder(): ?string
|
||||||
{
|
{
|
||||||
if (!is_array($this->value)) {
|
if (!is_array($this->value)) {
|
||||||
throw new \Exception('Builder data by a empty string. need array');
|
throw new \Exception('Builder data by a empty string. need array');
|
||||||
|
|||||||
+43
-35
@@ -14,21 +14,21 @@ namespace Database;
|
|||||||
use Database\Affair\BeginTransaction;
|
use Database\Affair\BeginTransaction;
|
||||||
use Database\Affair\Commit;
|
use Database\Affair\Commit;
|
||||||
use Database\Affair\Rollback;
|
use Database\Affair\Rollback;
|
||||||
|
use Database\Base\Driver;
|
||||||
|
use Database\Base\PDO;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri;
|
|
||||||
use Kiri\Server\Events\OnWorkerExit;
|
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Di\Context;
|
use Kiri\Di\Context;
|
||||||
use Kiri\Pool\Pool;
|
|
||||||
use Kiri\Events\EventProvider;
|
|
||||||
use Kiri\Error\StdoutLogger;
|
|
||||||
use Psr\Log\LoggerInterface;
|
|
||||||
use Kiri\Server\Events\OnWorkerStart;
|
|
||||||
use Kiri\Server\Events\OnTaskerStart;
|
|
||||||
use Kiri\Server\Events\OnAfterRequest;
|
|
||||||
use Kiri\Di\Inject\Container;
|
use Kiri\Di\Inject\Container;
|
||||||
|
use Kiri\Error\StdoutLogger;
|
||||||
|
use Kiri\Events\EventProvider;
|
||||||
|
use Kiri\Pool\Pool;
|
||||||
|
use Kiri\Server\Events\OnAfterRequest;
|
||||||
|
use Kiri\Server\Events\OnTaskerStart;
|
||||||
|
use Kiri\Server\Events\OnWorkerExit;
|
||||||
|
use Kiri\Server\Events\OnWorkerStart;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
use Database\Base\PDO;
|
|
||||||
|
|
||||||
//use PDO;
|
//use PDO;
|
||||||
|
|
||||||
@@ -46,9 +46,10 @@ class Connection extends Component
|
|||||||
public string $charset = 'utf-8';
|
public string $charset = 'utf-8';
|
||||||
public string $tablePrefix = '';
|
public string $tablePrefix = '';
|
||||||
public string $database = '';
|
public string $database = '';
|
||||||
|
public string $driver = 'mysql';
|
||||||
public int $timeout = 30;
|
public int $timeout = 30;
|
||||||
public int $waite_time = 3;
|
public int $waite_time = 3;
|
||||||
public int $tick_time = 60;
|
public int $tick_time = 60000;
|
||||||
public int $idle_count = 3;
|
public int $idle_count = 3;
|
||||||
public int $idle_time = 60;
|
public int $idle_time = 60;
|
||||||
public array $pool = ['max' => 10, 'min' => 1];
|
public array $pool = ['max' => 10, 'min' => 1];
|
||||||
@@ -134,19 +135,19 @@ class Connection extends Component
|
|||||||
protected function checkClientHealth(Pool $pool): void
|
protected function checkClientHealth(Pool $pool): void
|
||||||
{
|
{
|
||||||
$pool->flush($this->getName(), $this->pool['min'] ?? 1);
|
$pool->flush($this->getName(), $this->pool['min'] ?? 1);
|
||||||
$length = $pool->size($this->getName());
|
// $length = $pool->size($this->getName());
|
||||||
for ($i = 0; $i < $length; $i++) {
|
// for ($i = 0; $i < $length; $i++) {
|
||||||
try {
|
// try {
|
||||||
if (($client = $this->validator($pool)) === false) {
|
// if (($client = $this->validator($pool)) === false) {
|
||||||
break;
|
// break;
|
||||||
}
|
// }
|
||||||
$pool->push($this->getName(), $client);
|
// $pool->push($this->getName(), $client);
|
||||||
} catch (\Throwable $exception) {
|
// } catch (\Throwable $exception) {
|
||||||
if (!str_contains($exception->getMessage(), 'Client timeout.')) {
|
// if (!str_contains($exception->getMessage(), 'Client timeout.')) {
|
||||||
$this->logger->error(throwable($exception), [$this->cds]);
|
// $this->logger->error(throwable($exception), [$this->cds]);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -155,7 +156,7 @@ class Connection extends Component
|
|||||||
*/
|
*/
|
||||||
private function getName(): string
|
private function getName(): string
|
||||||
{
|
{
|
||||||
return 'mysql.' . $this->cds;
|
return strtolower($this->driver) . '.' . $this->cds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -312,7 +313,7 @@ class Connection extends Component
|
|||||||
*/
|
*/
|
||||||
public function createCommand(string $sql, array $attributes = []): Command
|
public function createCommand(string $sql, array $attributes = []): Command
|
||||||
{
|
{
|
||||||
return (new Command(['connection' => $this, 'sql' => $sql]))->bindValues($attributes);
|
return new Command(['connection' => $this, 'sql' => $sql])->bindValues($attributes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -356,15 +357,22 @@ class Connection extends Component
|
|||||||
*/
|
*/
|
||||||
public function newConnect(): \PDO
|
public function newConnect(): \PDO
|
||||||
{
|
{
|
||||||
$pdo = new PDO($this->database, $this->cds, $this->username, $this->password, [
|
$driver = strtolower($this->driver);
|
||||||
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
$options = [
|
||||||
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
||||||
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
|
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
||||||
\PDO::ATTR_STRINGIFY_FETCHES => false,
|
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
|
||||||
\PDO::ATTR_EMULATE_PREPARES => true,
|
\PDO::ATTR_STRINGIFY_FETCHES => false,
|
||||||
\PDO::ATTR_TIMEOUT => $this->timeout,
|
\PDO::ATTR_EMULATE_PREPARES => true,
|
||||||
\PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->charset
|
\PDO::ATTR_TIMEOUT => $this->timeout,
|
||||||
]);
|
];
|
||||||
|
|
||||||
|
// MySQL 特定的选项
|
||||||
|
if ($driver === 'mysql') {
|
||||||
|
$options[\PDO::MYSQL_ATTR_INIT_COMMAND] = 'SET NAMES ' . $this->charset;
|
||||||
|
}
|
||||||
|
|
||||||
|
$pdo = new PDO($this->database, $this->cds, $this->username, $this->password, $options, $driver);
|
||||||
foreach ($this->attributes as $key => $attribute) {
|
foreach ($this->attributes as $key => $attribute) {
|
||||||
$pdo->setAttribute($key, $attribute);
|
$pdo->setAttribute($key, $attribute);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,8 +78,9 @@ class DatabasesProviders extends Providers
|
|||||||
'password' => $database['password'],
|
'password' => $database['password'],
|
||||||
'tablePrefix' => $database['tablePrefix'],
|
'tablePrefix' => $database['tablePrefix'],
|
||||||
'database' => $database['database'],
|
'database' => $database['database'],
|
||||||
|
'driver' => $database['driver'] ?? 'mysql',
|
||||||
'timeout' => $database['timeout'] ?? 10,
|
'timeout' => $database['timeout'] ?? 10,
|
||||||
'tick_time' => $database['tick_time'] ?? 60,
|
'tick_time' => $database['tick_time'] ?? 60000,
|
||||||
'waite_time' => $database['waite_time'] ?? 3,
|
'waite_time' => $database['waite_time'] ?? 3,
|
||||||
'pool' => $clientPool,
|
'pool' => $clientPool,
|
||||||
'attributes' => $database['attributes'] ?? [],
|
'attributes' => $database['attributes'] ?? [],
|
||||||
|
|||||||
@@ -116,8 +116,9 @@ class Model extends Base\Model
|
|||||||
$connection->commit();
|
$connection->commit();
|
||||||
return $select;
|
return $select;
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
$connection->rollback();
|
$model->getLogger()->json_log($throwable);
|
||||||
return \Kiri::getLogger()->failure($throwable);
|
$connection->rollback();
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -145,8 +146,9 @@ class Model extends Base\Model
|
|||||||
$connection->commit();
|
$connection->commit();
|
||||||
return $select;
|
return $select;
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
$connection->rollback();
|
$model->getLogger()->json_log($throwable);
|
||||||
return \Kiri::getLogger()->failure($throwable);
|
$connection->rollback();
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -206,9 +208,10 @@ class Model extends Base\Model
|
|||||||
public static function inserts(array $data): bool
|
public static function inserts(array $data): bool
|
||||||
{
|
{
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
return trigger_print_error('Insert data empty.', 'mysql');
|
return \Kiri::getLogger()->logCategory('Insert data empty.', 'mysql');
|
||||||
}
|
} else {
|
||||||
return static::query()->insert($data);
|
return static::query()->insert($data);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+66
-5
@@ -1,4 +1,5 @@
|
|||||||
<?php /** @noinspection ALL */
|
<?php
|
||||||
|
/** @noinspection ALL */
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@@ -107,7 +108,7 @@ class SqlBuilder extends Component
|
|||||||
private function __updateBuilder(array $string): string|bool
|
private function __updateBuilder(array $string): string|bool
|
||||||
{
|
{
|
||||||
if (empty($string)) {
|
if (empty($string)) {
|
||||||
return Kiri::getLogger()->failure('None data update.');
|
return Kiri::getLogger()->logCategory('None data update.');
|
||||||
}
|
}
|
||||||
return 'UPDATE ' . $this->query->getFrom() . ' SET ' . implode(',', $string) . $this->make();
|
return 'UPDATE ' . $this->query->getFrom() . ' SET ' . implode(',', $string) . $this->make();
|
||||||
}
|
}
|
||||||
@@ -189,7 +190,7 @@ class SqlBuilder extends Component
|
|||||||
if (is_null($value)) {
|
if (is_null($value)) {
|
||||||
return $keys;
|
return $keys;
|
||||||
}
|
}
|
||||||
if (preg_match('/^[+|-]\s\d+$/', $value)) {
|
if (preg_match('/^[+|-]\s\d+$/', (string)$value)) {
|
||||||
$keys[] = $key . '=' . $key . ' ' . $value;
|
$keys[] = $key . '=' . $key . ' ' . $value;
|
||||||
} else {
|
} else {
|
||||||
$this->query->pushParam($value);
|
$this->query->pushParam($value);
|
||||||
@@ -205,7 +206,8 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function one(): string
|
public function one(): string
|
||||||
{
|
{
|
||||||
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit($this->query->limit(1));
|
$this->query->offset(0)->limit(1);
|
||||||
|
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -215,7 +217,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function all(): string
|
public function all(): string
|
||||||
{
|
{
|
||||||
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit($this->query);
|
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -242,9 +244,26 @@ class SqlBuilder extends Component
|
|||||||
/**
|
/**
|
||||||
* @param string $table
|
* @param string $table
|
||||||
* @return string
|
* @return string
|
||||||
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function columns(string $table): string
|
public function columns(string $table): string
|
||||||
{
|
{
|
||||||
|
$driver = $this->getDriver();
|
||||||
|
if (in_array($driver, ['pgsql', 'postgresql'])) {
|
||||||
|
// PostgreSQL 使用 information_schema
|
||||||
|
$tableName = trim($table, '"`');
|
||||||
|
return "SELECT
|
||||||
|
column_name as Field,
|
||||||
|
data_type as Type,
|
||||||
|
is_nullable as Null,
|
||||||
|
column_default as Default,
|
||||||
|
'' as Extra,
|
||||||
|
'' as Key
|
||||||
|
FROM information_schema.columns
|
||||||
|
WHERE table_name = '$tableName'
|
||||||
|
ORDER BY ordinal_position";
|
||||||
|
}
|
||||||
|
// MySQL 使用 SHOW FULL FIELDS
|
||||||
return 'SHOW FULL FIELDS FROM ' . $table;
|
return 'SHOW FULL FIELDS FROM ' . $table;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -315,9 +334,19 @@ class SqlBuilder extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
private function makeLimit(): string
|
private function makeLimit(): string
|
||||||
{
|
{
|
||||||
if ($this->query->getOffset() >= 0 && $this->query->getLimit() >= 1) {
|
if ($this->query->getOffset() >= 0 && $this->query->getLimit() >= 1) {
|
||||||
|
$driver = $this->getDriver();
|
||||||
|
if (in_array($driver, ['pgsql', 'postgresql'])) {
|
||||||
|
// PostgreSQL 使用 LIMIT ... OFFSET ... 语法
|
||||||
|
return ' LIMIT ' . $this->query->getLimit() . ' OFFSET ' . $this->query->getOffset();
|
||||||
|
}
|
||||||
|
// MySQL 使用 LIMIT offset,limit 语法
|
||||||
return ' LIMIT ' . $this->query->getOffset() . ',' . $this->query->getLimit();
|
return ' LIMIT ' . $this->query->getOffset() . ',' . $this->query->getLimit();
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
@@ -397,5 +426,37 @@ class SqlBuilder extends Component
|
|||||||
return $_array;
|
return $_array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取数据库驱动类型
|
||||||
|
* @return string
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
|
private function getDriver(): string
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
// 尝试从 query 对象获取 connection
|
||||||
|
if ($this->query instanceof ActiveQuery && $this->query->modelClass !== null) {
|
||||||
|
if ($this->query->modelClass instanceof Model) {
|
||||||
|
$connection = $this->query->modelClass->getConnection();
|
||||||
|
if ($connection instanceof Connection) {
|
||||||
|
return strtolower($connection->driver ?? 'mysql');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 如果是 Db 查询,尝试获取默认 connection
|
||||||
|
if (method_exists($this->query, 'getConnection')) {
|
||||||
|
$connection = $this->query->getConnection();
|
||||||
|
if ($connection instanceof Connection) {
|
||||||
|
return strtolower($connection->driver ?? 'mysql');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
// 忽略错误,返回默认值
|
||||||
|
$this->getLogger()->json_log($e);
|
||||||
|
}
|
||||||
|
// 默认返回 mysql
|
||||||
|
return 'mysql';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,8 +12,6 @@ namespace Database\Traits;
|
|||||||
use Database\ModelInterface;
|
use Database\ModelInterface;
|
||||||
use Database\Collection;
|
use Database\Collection;
|
||||||
use Database\Relation;
|
use Database\Relation;
|
||||||
use Kiri;
|
|
||||||
use Kiri\Di\Context;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class HasBase
|
* Class HasBase
|
||||||
|
|||||||
+73
-35
@@ -63,6 +63,15 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function getModelClass(): mixed
|
||||||
|
{
|
||||||
|
return $this->modelClass;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $where
|
* @param array $where
|
||||||
*
|
*
|
||||||
@@ -76,7 +85,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Closure|Query $callback
|
* @param Closure|Query $callback
|
||||||
* @param array $attributes
|
* @param array $attributes
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
@@ -84,6 +93,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
{
|
{
|
||||||
if ($callback instanceof Query) {
|
if ($callback instanceof Query) {
|
||||||
$this->where[] = 'NOT EXISTS(' . $callback->build() . ')';
|
$this->where[] = 'NOT EXISTS(' . $callback->build() . ')';
|
||||||
|
$this->mergeParams($callback->getParams());
|
||||||
} else {
|
} else {
|
||||||
$this->where[] = 'NOT EXISTS(' . $this->makeClosureFunction($callback) . ')';
|
$this->where[] = 'NOT EXISTS(' . $this->makeClosureFunction($callback) . ')';
|
||||||
}
|
}
|
||||||
@@ -96,7 +106,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Closure|Query $callback
|
* @param Closure|Query $callback
|
||||||
* @param array $attributes
|
* @param array $attributes
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
@@ -104,6 +114,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
{
|
{
|
||||||
if ($callback instanceof Query) {
|
if ($callback instanceof Query) {
|
||||||
$this->where[] = 'EXISTS(' . $callback->build() . ')';
|
$this->where[] = 'EXISTS(' . $callback->build() . ')';
|
||||||
|
$this->mergeParams($callback->getParams());
|
||||||
} else {
|
} else {
|
||||||
$this->where[] = 'EXISTS(' . $this->makeClosureFunction($callback) . ')';
|
$this->where[] = 'EXISTS(' . $this->makeClosureFunction($callback) . ')';
|
||||||
}
|
}
|
||||||
@@ -303,7 +314,19 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param array $params
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function mergeParams(array $params): void
|
||||||
|
{
|
||||||
|
foreach ($params as $key => $value) {
|
||||||
|
$this->pushParam($value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $column
|
||||||
* @param callable $callable
|
* @param callable $callable
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
@@ -442,6 +465,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
{
|
{
|
||||||
if ($tableName instanceof Query) {
|
if ($tableName instanceof Query) {
|
||||||
$this->from = '(' . $tableName->build() . ')';
|
$this->from = '(' . $tableName->build() . ')';
|
||||||
|
$this->mergeParams($tableName->getParams());
|
||||||
} else if ($tableName instanceof Closure) {
|
} else if ($tableName instanceof Closure) {
|
||||||
$this->from = '(' . $this->makeClosureFunction($tableName) . ')';
|
$this->from = '(' . $this->makeClosureFunction($tableName) . ')';
|
||||||
} else if (class_exists($tableName)) {
|
} else if (class_exists($tableName)) {
|
||||||
@@ -456,8 +480,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $tableName
|
* @param string $tableName
|
||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $on
|
* @param array $on
|
||||||
* @param array $param
|
* @param array $param
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* $query->join([$tableName, ['userId'=>'uuvOd']], $param)
|
* $query->join([$tableName, ['userId'=>'uuvOd']], $param)
|
||||||
@@ -539,8 +563,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $tableName
|
* @param string $tableName
|
||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $onCondition
|
* @param array $onCondition
|
||||||
* @param array $param
|
* @param array $param
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -561,8 +585,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $tableName
|
* @param string $tableName
|
||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $onCondition
|
* @param array $onCondition
|
||||||
* @param array $param
|
* @param array $param
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -583,8 +607,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $tableName
|
* @param string $tableName
|
||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $onCondition
|
* @param array $onCondition
|
||||||
* @param array $param
|
* @param array $param
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -627,8 +651,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $lngField
|
* @param string $lngField
|
||||||
* @param string $latField
|
* @param string $latField
|
||||||
* @param int|float $lng1
|
* @param int|float $lng1
|
||||||
* @param int|float $lat1
|
* @param int|float $lat1
|
||||||
*
|
*
|
||||||
@@ -644,7 +668,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string|array $column
|
* @param string|array $column
|
||||||
* @param string $sort
|
* @param string $sort
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*
|
*
|
||||||
@@ -712,8 +736,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|Closure|string $conditionArray
|
* @param array|Closure|string $conditionArray
|
||||||
* @param string $opera
|
* @param string $opera
|
||||||
* @param null $value
|
* @param null $value
|
||||||
*
|
*
|
||||||
* @return QueryTrait
|
* @return QueryTrait
|
||||||
* @throws
|
* @throws
|
||||||
@@ -792,21 +816,24 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $columns
|
* @param string $columns
|
||||||
* @param array|Closure $value
|
* @param array|Closure|Query $value
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function whereIn(string $columns, array|Closure $value): static
|
public function whereIn(string $columns, array|Closure|Query $value): static
|
||||||
{
|
{
|
||||||
if ($value instanceof Closure) {
|
if (is_array($value)) {
|
||||||
$value = $this->makeClosureFunction($value);
|
if (count($value) < 1) throw new Exception('Value must be an not empty array');
|
||||||
|
|
||||||
|
$this->where[] = $columns . ' IN (' . implode(',', $value) . ')';
|
||||||
|
} else if ($value instanceof Query) {
|
||||||
|
$this->where[] = $columns . ' IN (' . $value->build() . ')';
|
||||||
|
$this->mergeParams($value->getParams());
|
||||||
|
} else {
|
||||||
|
$this->where[] = $columns . ' IN (' . $this->makeClosureFunction($value) . ')';
|
||||||
}
|
}
|
||||||
if (count($value) < 1) {
|
|
||||||
$value = [-1];
|
|
||||||
}
|
|
||||||
$this->where[] = $columns . ' IN (' . implode(',', $value) . ')';
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -823,7 +850,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $columns
|
* @param string $columns
|
||||||
* @param array $value
|
* @param array $value
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
@@ -838,7 +865,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param int|float $start
|
* @param int|float $start
|
||||||
* @param int|float $end
|
* @param int|float $end
|
||||||
*
|
*
|
||||||
@@ -859,7 +886,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param int|float $start
|
* @param int|float $start
|
||||||
* @param int|float $end
|
* @param int|float $end
|
||||||
*
|
*
|
||||||
@@ -893,7 +920,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|string $column
|
* @param array|string $column
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
@@ -913,7 +940,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $opera
|
* @param string $opera
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
@@ -951,17 +978,18 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
} else {
|
} else {
|
||||||
$generate->addArray($closure);
|
$generate->addArray($closure);
|
||||||
}
|
}
|
||||||
|
$this->mergeParams($generate->getParams());
|
||||||
return $generate->build();
|
return $generate->build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param string|null $having
|
* @param string|null $having
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function groupBy(string $name, string $having = NULL): static
|
public function groupBy(string $name, ?string $having = NULL): static
|
||||||
{
|
{
|
||||||
$this->group = $name;
|
$this->group = $name;
|
||||||
if (empty($having)) {
|
if (empty($having)) {
|
||||||
@@ -1032,13 +1060,23 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $opera
|
* @param string $opera
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function sprintf(string $column, mixed $value, string $opera = '='): string
|
private function sprintf(string $column, mixed $value, string $opera = '='): string
|
||||||
{
|
{
|
||||||
|
if (!is_numeric($value)) {
|
||||||
|
if (str_contains($column, '.')) {
|
||||||
|
[$alias, $field] = explode('.', $value);
|
||||||
|
} else {
|
||||||
|
$alias = '';
|
||||||
|
}
|
||||||
|
if (in_array($alias, $this->_alias)) {
|
||||||
|
return $column . ' ' . $opera . ' ' . $value;
|
||||||
|
}
|
||||||
|
}
|
||||||
$this->pushParam($value);
|
$this->pushParam($value);
|
||||||
return $column . ' ' . $opera . ' ?';
|
return $column . ' ' . $opera . ' ?';
|
||||||
}
|
}
|
||||||
@@ -1046,7 +1084,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $querySql
|
* @param string $querySql
|
||||||
* @param array $params
|
* @param array $params
|
||||||
*
|
*
|
||||||
* @return Command
|
* @return Command
|
||||||
*/
|
*/
|
||||||
|
|||||||
+2
-2
@@ -9,10 +9,10 @@
|
|||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=8.3",
|
"php": ">=8.4",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"game-worker/kiri-pool": "~v1.0"
|
"game-worker/kiri-pool": "^v1.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|||||||
Reference in New Issue
Block a user