Compare commits

..

24 Commits

Author SHA1 Message Date
as2252258 8d917b0f92 eee 2024-08-08 11:12:09 +08:00
as2252258 08fbc49091 eee 2024-08-08 10:52:48 +08:00
as2252258 08e49cfa65 eee 2024-07-10 16:18:27 +08:00
as2252258 d58850b158 eee 2024-07-08 12:06:41 +08:00
as2252258 aba45e8cb9 eee 2024-07-08 10:58:52 +08:00
as2252258 ed22201bef eee 2024-07-02 21:38:30 +08:00
as2252258 ccbac52a16 eee 2024-05-01 02:06:14 +08:00
as2252258 9fe0698d1c eee 2024-05-01 02:02:58 +08:00
as2252258 55e1f6235e eee 2024-05-01 01:54:38 +08:00
as2252258 ed0d044223 eee 2024-04-29 21:55:31 +08:00
as2252258 2b85cb4ec3 eee 2024-04-29 21:55:19 +08:00
as2252258 73b9923740 eee 2024-04-29 21:49:08 +08:00
as2252258 b2c8160314 eee 2024-04-26 17:01:25 +08:00
as2252258 199312d326 eee 2024-04-26 15:39:13 +08:00
as2252258 87f568bdfe eee 2024-04-26 15:36:55 +08:00
as2252258 2fd37f90a3 eee 2024-04-26 15:28:40 +08:00
as2252258 c100190155 eee 2024-04-26 15:27:11 +08:00
as2252258 71766ee914 eee 2024-04-26 15:26:10 +08:00
as2252258 3a39eaabf4 eee 2024-04-26 15:25:12 +08:00
as2252258 722b286f91 eee 2024-04-26 15:23:37 +08:00
as2252258 f9ee3aa014 eee 2024-04-26 15:22:16 +08:00
as2252258 4341efcb8c eee 2024-04-26 15:20:22 +08:00
as2252258 8acf74c9ed eee 2024-04-26 15:15:36 +08:00
as2252258 b9750d743b eee 2024-04-26 15:12:31 +08:00
8 changed files with 334 additions and 100 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ class ActiveQuery extends QueryTrait implements ISqlBuilder
*/
public function exists(): bool
{
return $this->buildCommand($this->builder->one())->rowCount() > 0;
return $this->buildCommand($this->limit(1)->builder->exists())->exists();
}
+3 -2
View File
@@ -221,10 +221,11 @@ interface ActiveQueryInterface
public function whereNotBetween(string $column, int|float $start, int|float $end): QueryTrait;
/**
* @param array $column
* @param array|string $column
* @param mixed|null $value
* @return QueryTrait
*/
public function where(array $column): QueryTrait;
public function where(array|string $column, mixed $value = null): QueryTrait;
/**
+2 -2
View File
@@ -436,7 +436,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
private function insert(): bool|static
{
$sql = SqlBuilder::builder($query = static::query())->insert($this->_attributes);
$lastId = $this->getConnection()->createCommand($sql, $query->params)->save();
$lastId = $this->getConnection()->createCommand($sql, $query->params)->exec();
if ($lastId === false) {
return false;
}
@@ -464,7 +464,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
if ($generate === false) {
return false;
}
if (!$this->getConnection()->createCommand($generate, $query->params)->save()) {
if (!$this->getConnection()->createCommand($generate, $query->params)->exec()) {
return FALSE;
}
return $this->refresh()->afterSave($old, $change);
+16 -48
View File
@@ -47,15 +47,6 @@ class Command extends Component
return (bool)$this->_prepare();
}
/**
* @return bool
* @throws
*/
public function save(): bool
{
return (bool)$this->_prepare();
}
/**
* @return bool|array
@@ -75,6 +66,19 @@ class Command extends Component
return $this->search('fetch');
}
/**
* @return bool
* @throws Exception
*/
public function exists(): bool
{
$data = $this->search('fetch');
if (!$data) {
return false;
}
return true;
}
/**
* @return mixed
* @throws
@@ -88,46 +92,11 @@ class Command extends Component
* @return mixed
* @throws
*/
public function rowCount(): mixed
public function rowCount(): int
{
$client = $this->connection->getConnection();
try {
$client->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
if (($prepare = $client->query($this->sql)) === false) {
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $client->errorInfo()[2]);
}
$data = $this->search('fetch');
$prepare->execute($this->params);
$count = $prepare->rowCount();
$prepare->closeCursor();
$this->connection->println($this->sql, $this->params);
return $count;
} catch (Throwable $throwable) {
if ($this->isRefresh($throwable)) return $this->rowCount();
$errorMsg = $throwable->getMessage() . PHP_EOL . ' Sql: ' . $this->sql . '.' . json_encode($this->params);
$this->getLogger()->failure($errorMsg . PHP_EOL, 'mysql');
return 0;
} finally {
$this->connection->release($client);
}
}
/**
* @return bool
* @throws Exception
*/
public function exists(): bool
{
$total = $this->search('rowCount');
if ($total === false) {
throw new Exception('Query data is has error.');
}
return $total > 0;
return !$data ? 0 : +current($data);
}
@@ -182,7 +151,6 @@ class Command extends Component
{
$client = $this->connection->getConnection();
try {
$this->connection->println($this->sql, $this->params);
if (($prepare = $client->prepare($this->sql)) === false) {
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $prepare->errorInfo()[2]);
}
+23 -11
View File
@@ -30,6 +30,8 @@ use Kiri\Di\Inject\Container;
use Swoole\Timer;
use Database\Base\PDO;
//use PDO;
/**
* Class Connection
* @package Database
@@ -122,14 +124,14 @@ class Connection extends Component
*/
protected function checkClientHealth(Pool $pool): void
{
$pool->flush($this->cds, $this->pool['min'] ?? 1);
$length = $pool->size($this->cds);
$pool->flush($this->getName(), $this->pool['min'] ?? 1);
$length = $pool->size($this->getName());
for ($i = 0; $i < $length; $i++) {
try {
if (($client = $this->validator($pool)) === false) {
break;
}
$pool->push($this->cds, $client);
$pool->push($this->getName(), $client);
} catch (\Throwable $exception) {
if (!str_contains($exception->getMessage(), 'Client timeout.')) {
$this->logger->error(throwable($exception), [$this->cds]);
@@ -139,6 +141,15 @@ class Connection extends Component
}
/**
* @return string
*/
private function getName(): string
{
return 'mysql.' . $this->cds;
}
/**
* @param Pool $pool
* @return PDO|bool
@@ -147,7 +158,7 @@ class Connection extends Component
protected function validator(Pool $pool): PDO|bool
{
/** @var $client PDO */
if (($client = $pool->get($this->cds)) === false) {
if (($client = $pool->get($this->getName())) === false) {
return false;
}
if ($client->query('select 1') === false) {
@@ -177,7 +188,7 @@ class Connection extends Component
*/
protected function getNormalClientHealth(): PDO
{
$data = $this->pool()->get($this->cds, $this->waite_time);
$data = $this->pool()->get($this->getName(), $this->waite_time);
if ($data === false) {
throw new Exception('Client Waite timeout.');
}
@@ -303,7 +314,7 @@ class Connection extends Component
public function release(PDO $pdo): void
{
if (!$this->inTransaction()) {
$this->pool()->push($this->cds, $pdo);
$this->pool()->push($this->getName(), $pdo);
}
}
@@ -315,7 +326,7 @@ class Connection extends Component
*/
public function clear_connection(): void
{
$this->pool()->flush($this->cds, 0);
$this->pool()->flush($this->getName(), 0);
}
@@ -327,16 +338,17 @@ class Connection extends Component
if ($this->timerId > -1) {
Timer::clear($this->timerId);
}
$this->pool()->close($this->cds);
$this->pool()->close($this->getName());
}
/**
* @return PDO
*/
public function newConnect(): PDO
public function newConnect(): \PDO
{
$pdo = new PDO($this->database, $this->cds, $this->username, $this->password, [
// $pdo = new \PDO('mysql:dbname=' . $this->database . ';host=' . $this->cds, $this->username, $this->password, [
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
@@ -357,8 +369,8 @@ class Connection extends Component
*/
protected function pool(): Pool
{
if (!$this->connections->hasChannel($this->cds)) {
$this->connections->created($this->cds, $this->pool['max'] ?? 1, [$this, 'newConnect']);
if (!$this->connections->hasChannel($this->getName())) {
$this->connections->created($this->getName(), $this->pool['max'] ?? 1, [$this, 'newConnect']);
}
return $this->connections;
}
+51 -1
View File
@@ -115,10 +115,11 @@ class Db extends QueryTrait implements ISqlBuilder
/**
* @return bool
* @throws Exception
*/
public function exists(): bool
{
return $this->connection->createCommand(SqlBuilder::builder($this)->one())->rowCount() > 0;
return $this->connection->createCommand(SqlBuilder::builder($this->limit(1))->exists())->exists();
}
/**
@@ -151,6 +152,55 @@ class Db extends QueryTrait implements ISqlBuilder
return $this->connection->createCommand(SqlBuilder::builder($this)->delete())->delete();
}
/**
* @return bool|array|null
*/
public function first(): bool|array|null
{
return $this->connection->createCommand(SqlBuilder::builder($this)->one())->one();
}
/**
* @return bool|array
*/
public function get(): bool|array
{
return $this->connection->createCommand(SqlBuilder::builder($this)->all())->all();
}
/**
* @param string $sql
* @return mixed
*/
public function exec(string $sql): mixed
{
return $this->connection->createCommand($sql)->exec();
}
/**
* @param string $sql
* @return array|bool|null
*/
public function query(string $sql): array|bool|null
{
return $this->connection->createCommand($sql)->one();
}
/**
* @param string $sql
* @return array|bool
*/
public function queryAll(string $sql): array|bool
{
return $this->connection->createCommand($sql)->all();
}
/**
* @param string $table
* @return array|bool|null
+33 -23
View File
@@ -51,7 +51,7 @@ class SqlBuilder extends Component
*/
public function getCondition(): string
{
return $this->where($this->query->where);
return $this->where($this->query->getWhere());
}
@@ -73,9 +73,9 @@ class SqlBuilder extends Component
*/
public function update(array $attributes): bool|string
{
$conditions = $this->query->params;
$this->query->params = [];
$data = $this->__updateBuilder($this->makeParams($attributes));
$conditions = $this->query->getParams();
$this->query->setParams([]);
$data = $this->__updateBuilder($this->makeParams($attributes));
foreach ($conditions as $condition) {
$this->query->pushParam($condition);
}
@@ -109,7 +109,7 @@ class SqlBuilder extends Component
if (empty($string)) {
return Kiri::getLogger()->failure('None data update.');
}
return 'UPDATE ' . $this->query->from . ' SET ' . implode(',', $string) . $this->make();
return 'UPDATE ' . $this->query->getFrom() . ' SET ' . implode(',', $string) . $this->make();
}
@@ -121,7 +121,7 @@ class SqlBuilder extends Component
*/
public function insert(array $attributes, bool $isBatch = false): string
{
$update = 'INSERT INTO ' . $this->query->from;
$update = 'INSERT INTO ' . $this->query->getFrom();
if ($isBatch === false) {
$attributes = [$attributes];
}
@@ -143,7 +143,7 @@ class SqlBuilder extends Component
*/
public function delete(): string
{
return 'DELETE FROM ' . $this->query->from . $this->make();
return 'DELETE FROM ' . $this->query->getFrom() . $this->make();
}
@@ -215,7 +215,7 @@ class SqlBuilder extends Component
*/
public function one(): string
{
return $this->makeSelect($this->query->select) . $this->make() . $this->makeLimit($this->query->limit(1));
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit($this->query->limit(1));
}
@@ -225,7 +225,7 @@ class SqlBuilder extends Component
*/
public function all(): string
{
return $this->makeSelect($this->query->select) . $this->make() . $this->makeLimit($this->query);
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit($this->query);
}
@@ -235,7 +235,17 @@ class SqlBuilder extends Component
*/
public function count(): string
{
return $this->makeSelect() . $this->make();
return $this->makeSelect(['COUNT(*)']) . $this->make();
}
/**
* @return string
* @throws
*/
public function exists(): string
{
return $this->makeSelect(['0']) . $this->make();
}
@@ -267,12 +277,12 @@ class SqlBuilder extends Component
*/
private function makeSelect(array $select = ['*']): string
{
$select = "SELECT " . implode(',', $select) . " FROM " . $this->query->from;
if ($this->query->alias != "") {
$select .= " AS " . $this->query->alias;
$select = "SELECT " . implode(',', $select) . " FROM " . $this->query->getFrom();
if ($this->query->getAlias() != "") {
$select .= " AS " . $this->query->getAlias();
}
if (count($this->query->join) > 0) {
$select .= ' ' . implode(' ', $this->query->join);
if (count($this->query->getJoin()) > 0) {
$select .= ' ' . implode(' ', $this->query->getJoin());
}
return $select;
}
@@ -283,8 +293,8 @@ class SqlBuilder extends Component
*/
private function makeGroup(): string
{
if ($this->query->group != "") {
return ' GROUP BY ' . $this->query->group;
if ($this->query->getGroup() != "") {
return ' GROUP BY ' . $this->query->getGroup();
}
return '';
}
@@ -295,8 +305,8 @@ class SqlBuilder extends Component
*/
private function makeOrder(): string
{
if (count($this->query->order) > 0) {
return ' ORDER BY ' . implode(',', $this->query->order);
if (count($this->query->getOrder()) > 0) {
return ' ORDER BY ' . implode(',', $this->query->getOrder());
}
return '';
}
@@ -307,7 +317,7 @@ class SqlBuilder extends Component
*/
private function makeCondition(): string
{
$condition = $this->where($this->query->where);
$condition = $this->where($this->query->getWhere());
if (empty($condition)) {
return '';
}
@@ -317,8 +327,8 @@ class SqlBuilder extends Component
private function makeLimit(): string
{
if ($this->query->offset >= 0 && $this->query->limit >= 1) {
return ' LIMIT ' . $this->query->offset . ',' . $this->query->limit;
if ($this->query->getOffset() >= 0 && $this->query->getLimit() >= 1) {
return ' LIMIT ' . $this->query->getOffset() . ',' . $this->query->getLimit();
}
return '';
}
@@ -344,7 +354,7 @@ class SqlBuilder extends Component
*/
public function truncate(): string
{
return sprintf('TRUNCATE %s', $this->query->from);
return sprintf('TRUNCATE %s', $this->query->getFrom());
}
+205 -12
View File
@@ -27,20 +27,20 @@ use Kiri\Abstracts\Component;
*/
abstract class QueryTrait extends Component implements ActiveQueryInterface, ISqlBuilder
{
public array $where = [];
public array $select = ['*'];
public array $join = [];
public array $order = [];
public int $offset = -1;
public int $limit = -1;
public string $group = '';
public string $from = '';
public string $alias = 't1';
protected array $where = [];
protected array $select = ['*'];
protected array $join = [];
protected array $order = [];
protected int $offset = -1;
protected int $limit = -1;
protected string $group = '';
protected string $from = '';
protected string $alias = 't1';
protected array $filter = [];
protected bool $lock = false;
protected SqlBuilder $builder;
public array $params = [];
private array $_alias = ['t1'];
protected array $params = [];
protected array $_alias = ['t1'];
/**
@@ -63,6 +63,195 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
}
/**
* @param array $where
* @return void
*/
public function setWhere(array $where): void
{
$this->where = $where;
}
/**
* @param array $select
* @return void
*/
public function setSelect(array $select): void
{
$this->select = $select;
}
/**
* @param array $join
* @return void
*/
public function setJoin(array $join): void
{
$this->join = $join;
}
/**
* @param array $order
* @return void
*/
public function setOrder(array $order): void
{
$this->order = $order;
}
/**
* @param int $offset
* @return void
*/
public function setOffset(int $offset): void
{
$this->offset = $offset;
}
/**
* @param int $limit
* @return void
*/
public function setLimit(int $limit): void
{
$this->limit = $limit;
}
/**
* @param string $group
* @return void
*/
public function setGroup(string $group): void
{
$this->group = $group;
}
/**
* @param string $from
* @return void
*/
public function setFrom(string $from): void
{
$this->from = $from;
}
/**
* @param string $alias
* @return void
*/
public function setAlias(string $alias): void
{
$this->alias = $alias;
}
/**
* @param array $params
* @return void
*/
public function setParams(array $params): void
{
$this->params = $params;
}
/**
* @return array
*/
public function getWhere(): array
{
return $this->where;
}
/**
* @return array|string[]
*/
public function getSelect(): array
{
return $this->select;
}
/**
* @return array
*/
public function getJoin(): array
{
return $this->join;
}
/**
* @return array
*/
public function getOrder(): array
{
return $this->order;
}
/**
* @return int
*/
public function getOffset(): int
{
return $this->offset;
}
/**
* @return int
*/
public function getLimit(): int
{
return $this->limit;
}
/**
* @return string
*/
public function getGroup(): string
{
return $this->group;
}
/**
* @return string
*/
public function getFrom(): string
{
return $this->from;
}
/**
* @return string
*/
public function getAlias(): string
{
return $this->alias;
}
/**
* @return array
*/
public function getParams(): array
{
return $this->params;
}
/**
* @param string $column
* @param callable $callable
@@ -623,10 +812,14 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/**
* @param array|string $column
* @param mixed $value
* @return $this
*/
public function where(array|string $column): static
public function where(array|string $column, mixed $value = null): static
{
if (func_num_args() === 2) {
return $this->addArray([$column => $value]);
}
if (is_string($column)) {
return $this->whereRaw($column);
} else {