This commit is contained in:
2021-02-25 17:57:20 +08:00
parent e1fa0a6b12
commit fd001e6fbb
13 changed files with 93 additions and 469 deletions
+2 -6
View File
@@ -10,10 +10,8 @@ declare(strict_types=1);
namespace Database; namespace Database;
use Snowflake\Abstracts\Component; use Snowflake\Abstracts\Component;
use Database\Orm\Select;
use Database\Traits\QueryTrait; use Database\Traits\QueryTrait;
use Exception; use Exception;
use Snowflake\Exception\ComponentException;
use Snowflake\Snowflake; use Snowflake\Snowflake;
/** /**
@@ -268,8 +266,7 @@ class ActiveQuery extends Component
*/ */
public function batchUpdate(array $data): Command|array|bool|int|string public function batchUpdate(array $data): Command|array|bool|int|string
{ {
return $this->execute($this->builder->update($data)) return $this->execute($this->builder->update($data))->exec();
->exec();
} }
/** /**
@@ -279,8 +276,7 @@ class ActiveQuery extends Component
*/ */
public function batchInsert(array $data): bool public function batchInsert(array $data): bool
{ {
return $this->execute($this->builder->insert($data, true)) return $this->execute($this->builder->insert($data, true))->exec();
->exec();
} }
/** /**
+10 -11
View File
@@ -55,7 +55,7 @@ class ActiveRecord extends BaseActiveRecord
*/ */
public function increment(string $column, int $value): bool|ActiveRecord public function increment(string $column, int $value): bool|ActiveRecord
{ {
if (!$this->mathematics(self::INCR, [$column => $value])) { if (!$this->mathematics([$column => $value], '-')) {
return false; return false;
} }
$this->{$column} += $value; $this->{$column} += $value;
@@ -71,7 +71,7 @@ class ActiveRecord extends BaseActiveRecord
*/ */
public function decrement(string $column, int $value): bool|ActiveRecord public function decrement(string $column, int $value): bool|ActiveRecord
{ {
if (!$this->mathematics(self::DECR, [$column => $value])) { if (!$this->mathematics([$column => $value], '-')) {
return false; return false;
} }
$this->{$column} -= $value; $this->{$column} -= $value;
@@ -86,7 +86,7 @@ class ActiveRecord extends BaseActiveRecord
*/ */
public function increments(array $columns): bool|static public function increments(array $columns): bool|static
{ {
if (!$this->mathematics(self::INCR, $columns)) { if (!$this->mathematics($columns, '+')) {
return false; return false;
} }
foreach ($columns as $key => $attribute) { foreach ($columns as $key => $attribute) {
@@ -103,7 +103,7 @@ class ActiveRecord extends BaseActiveRecord
*/ */
public function decrements(array $columns): bool|static public function decrements(array $columns): bool|static
{ {
if (!$this->mathematics(self::DECR, $columns)) { if (!$this->mathematics($columns, '-')) {
return false; return false;
} }
foreach ($columns as $key => $attribute) { foreach ($columns as $key => $attribute) {
@@ -152,17 +152,16 @@ class ActiveRecord extends BaseActiveRecord
* @return array|bool|int|string|null * @return array|bool|int|string|null
* @throws Exception * @throws Exception
*/ */
private function mathematics($action, $columns, $condition = []): int|bool|array|string|null private function mathematics($columns, $action, $condition = []): int|bool|array|string|null
{ {
if (empty($condition)) { if (empty($condition)) {
$condition = [$this->getPrimary() => $this->getPrimaryValue()]; $condition = [$this->getPrimary() => $this->getPrimaryValue()];
} }
$execute = static::getDb()->createCommand()
->mathematics(self::getTable(), [$action => $columns], $condition); $activeQuery = static::find()->where($condition);
if ($execute instanceof Command) { return static::getDb()
return $execute->exec($this); ->createCommand(SqlBuilder::builder($activeQuery)->mathematics($columns, $action))
} ->exec();
return false;
} }
+1 -3
View File
@@ -17,7 +17,6 @@ trait Builder
{ {
/** /**
* @param $alias * @param $alias
* @return string * @return string
@@ -35,7 +34,7 @@ trait Builder
private function builderFrom($table): string private function builderFrom($table): string
{ {
if ($table instanceof ActiveQuery) { if ($table instanceof ActiveQuery) {
$table = '(' . $table->getBuild()->getQuery($table) . ')'; $table = '(' . SqlBuilder::builder($table)->get($table) . ')';
} }
return " FROM " . $table; return " FROM " . $table;
} }
@@ -111,7 +110,6 @@ trait Builder
} }
/** /**
* @param $where * @param $where
* @return string * @return string
-76
View File
@@ -65,63 +65,6 @@ class Command extends Component
return $this->execute(static::EXECUTE, $isInsert, $hasAutoIncrement); return $this->execute(static::EXECUTE, $isInsert, $hasAutoIncrement);
} }
/**
* @param $model
* @param $attributes
* @param $condition
* @param $param
* @return Command
* @throws Exception
*/
public function update($model, $attributes, $condition, $param): Command
{
$change = $this->db->getSchema()->getChange();
$sql = $change->update($model, $attributes, $condition, $param);
return $this->setSql($sql)->bindValues($param);
}
/**
* @param $tableName
* @param $attributes
* @param $condition
* @return Command
* @throws Exception
*/
public function batchUpdate($tableName, $attributes, $condition): Command
{
$change = $this->db->getSchema();
[$sql, $param] = $change->getChange()->batchUpdate($tableName, $change, $attributes, $condition);
return $this->setSql($sql)->bindValues($param);
}
/**
* @param $tableName
* @param $attributes
* @return Command
* @throws Exception
*/
public function batchInsert($tableName, $attributes): Command
{
$change = $this->db->getSchema();
[$sql, $param] = $change->getChange()->batchInsert($tableName, $change, $attributes);
return $this->setSql($sql)->bindValues($param);
}
/**
* @param $tableName
* @param $attributes
* @param $param
* @return Command
* @throws Exception
*/
public function insert($tableName, $attributes, $param): Command
{
$sql = $this->db->getSchema()
->getChange()->insert($tableName, $attributes, $param);
return $this->setSql($sql)->bindValues($param);
}
/** /**
* @return int|bool|array|string|null * @return int|bool|array|string|null
@@ -132,25 +75,6 @@ class Command extends Component
return $this->execute(static::FETCH_ALL); return $this->execute(static::FETCH_ALL);
} }
/**
* @param $tableName
* @param $param
* @param $condition
* @return bool|Command
* @throws ReflectionException
* @throws NotFindClassException
* @throws Exception
*/
public function mathematics($tableName, $param, $condition): bool|static
{
$change = $this->db->getSchema()->getChange();
$sql = $change->mathematics($tableName, $param, [$condition]);
if ($sql === false) {
return false;
}
return $this->setSql($sql);
}
/** /**
* @return array|bool|int|string|null * @return array|bool|int|string|null
* @throws Exception * @throws Exception
-9
View File
@@ -14,7 +14,6 @@ namespace Database;
use ReflectionException; use ReflectionException;
use Snowflake\Abstracts\Component; use Snowflake\Abstracts\Component;
use Database\Mysql\Schema; use Database\Mysql\Schema;
use Database\Orm\Select;
use Exception; use Exception;
use PDO; use PDO;
use Snowflake\Event; use Snowflake\Event;
@@ -271,14 +270,6 @@ class Connection extends Component
return $command->bindValues($attributes); return $command->bindValues($attributes);
} }
/**
* @return Select
* @throws Exception
*/
public function getBuild(): Select
{
return $this->getSchema()->getQueryBuilder();
}
/** /**
* *
+5 -9
View File
@@ -104,8 +104,7 @@ class Db
if (empty($db)) { if (empty($db)) {
$db = Snowflake::app()->database; $db = Snowflake::app()->database;
} }
$query = $db->getSchema()->getQueryBuilder(); return $db->createCommand(SqlBuilder::builder($this)->one())
return $db->createCommand($query->getQuery($this))
->all(); ->all();
} }
@@ -128,8 +127,7 @@ class Db
if (empty($db)) { if (empty($db)) {
$db = Snowflake::app()->database; $db = Snowflake::app()->database;
} }
$query = $db->getSchema()->getQueryBuilder(); return $db->createCommand(SqlBuilder::builder($this)->all())
return $db->createCommand($query->getQuery($this))
->one(); ->one();
} }
@@ -143,9 +141,8 @@ class Db
if (empty($db)) { if (empty($db)) {
$db = Snowflake::app()->database; $db = Snowflake::app()->database;
} }
$query = $db->getSchema()->getQueryBuilder(); return $db->createCommand(SqlBuilder::builder($this)->count())
return $db->createCommand($query->count($this)) ->exec();
->rowCount();
} }
/** /**
@@ -158,8 +155,7 @@ class Db
if (empty($db)) { if (empty($db)) {
$db = Snowflake::app()->database; $db = Snowflake::app()->database;
} }
$query = $db->getSchema()->getQueryBuilder(); return $db->createCommand(SqlBuilder::builder($this)->one())
return $db->createCommand($query->getQuery($this))
->fetchColumn(); ->fetchColumn();
} }
+2 -2
View File
@@ -11,7 +11,7 @@ declare(strict_types=1);
namespace Database\Mysql; namespace Database\Mysql;
use Database\SqlBuilder;
use Snowflake\Abstracts\Component; use Snowflake\Abstracts\Component;
use Database\Connection; use Database\Connection;
use Exception; use Exception;
@@ -276,7 +276,7 @@ class Columns extends Component
private function structure($table): array|static private function structure($table): array|static
{ {
if (!isset($this->columns[$table]) || empty($this->columns[$table])) { if (!isset($this->columns[$table]) || empty($this->columns[$table])) {
$column = $this->db->createCommand($this->db->getBuild()->getColumn($table))->all(); $column = $this->db->createCommand(SqlBuilder::builder(null)->columns($table))->all();
if (empty($column)) { if (empty($column)) {
throw new Exception("The table " . $table . " not exists."); throw new Exception("The table " . $table . " not exists.");
} }
-30
View File
@@ -5,8 +5,6 @@ namespace Database\Mysql;
use Snowflake\Abstracts\Component; use Snowflake\Abstracts\Component;
use Database\Connection; use Database\Connection;
use Database\Orm\Change;
use Database\Orm\Select;
/** /**
* Class Schema * Class Schema
@@ -18,37 +16,9 @@ class Schema extends Component
/** @var ?Connection */ /** @var ?Connection */
public ?Connection $db; public ?Connection $db;
/** @var ?Select */
private ?Select $_builder = null;
/** @var ?Columns $_column*/ /** @var ?Columns $_column*/
private ?Columns $_column = null; private ?Columns $_column = null;
/** @var ?Change */
private ?Change $_change = null;
/**
* @return Select|null
*/
public function getQueryBuilder(): ?Select
{
if ($this->_builder === null) {
$this->_builder = new Select();
}
return $this->_builder;
}
/**
* @return Change
*/
public function getChange(): Change
{
if ($this->_change === null) {
$this->_change = new Change();
}
return $this->_change;
}
/** /**
* @return Columns|null * @return Columns|null
-228
View File
@@ -1,228 +0,0 @@
<?php
declare(strict_types=1);
namespace Database\Orm;
use Database\Connection;
use Database\Mysql\Schema;
use JetBrains\PhpStorm\Pure;
use Snowflake\Abstracts\BaseObject;
use Database\ActiveQuery;
use Exception;
use Snowflake\Snowflake;
/**
* Class Change
* @package Yoc\db
*/
class Change extends BaseObject
{
use Condition;
/**
* @param string $model
* @param $attributes
* @param $condition
* @param $params
* @return string
* @throws Exception
*/
public function update(string $model, $attributes, $condition, &$params): string
{
if (empty($params)) {
throw new Exception("Not has update values.");
}
$_tmp = [];
foreach ($attributes as $val) {
if (!isset($params[$val])) {
continue;
}
$_tmp[] = $val . '=:' . $val;
}
if (empty($_tmp)) {
return '';
}
$where = implode(',', $_tmp);
if (!empty($condition)) {
$where .= $this->where($condition);
}
return "UPDATE " . $model . ' SET ' . $where;
}
/**
* @param string $table
* @param Schema $db
* @param array $attributes
* @param $condition
* @return array|string
* @throws Exception
*/
public function batchUpdate(string $table, Schema $db, array $attributes, $condition): array|string
{
$param = [];
$_attributes = [];
$format = $db->getColumns()->table($table);
foreach ($attributes as $key => $val) {
if ($val === null) {
continue;
}
$_attributes[':' . $key] = $format->fieldFormat($key, $val);
$param[] = $key . '=:' . $key;
}
if (empty($param)) {
return '';
}
$param = implode(',', $param);
if (!empty($condition)) {
$param .= $condition;
}
return ['UPDATE ' . $table . ' SET ' . $param, $_attributes];
}
/**
* @param $table
* @param $params
* @param $condition
* @return string|bool
* @throws Exception
*/
public function mathematics($table, $params, $condition): string|bool
{
$_tmp = $newParam = [];
if (isset($params['incr']) && is_array($params['incr'])) {
$_tmp = $this->assemble($params['incr'], ' + ', $_tmp);
}
if (isset($params['decr']) && is_array($params['decr'])) {
$_tmp = $this->assemble($params['decr'], ' - ', $_tmp);
}
if (empty($_tmp)) {
return $this->addError('Not has IncrBy or DecrBy values.');
}
$_tmp = implode(',', $_tmp);
if (!empty($condition)) {
$_tmp .= $this->where($condition);
}
return 'UPDATE ' . $table . ' SET ' . $_tmp;
}
/**
* @param $params
* @param $op
* @param array $_tmp
* @return array
* @throws Exception
*/
private function assemble($params, $op, array $_tmp): array
{
foreach ($params as $key => $val) {
$_tmp[] = sprintf('%s=%s%s%d', $key, $key, $op, $val);
}
return $_tmp;
}
/**
* @param $table
* @param $attributes
* @param array|null $params
* @return string
* @throws Exception
*/
public function insert($table, $attributes, array $params = NULL): string
{
$sql = $this->inserts($table, implode(',', $attributes), '(:' . implode(',:', $attributes) . ')');
if (empty($params)) {
throw new Exception("save data param not find.");
}
foreach ($params as $key => $val) {
if (!str_contains($sql, ':' . $key)) {
throw new Exception("save $key data param not find.");
}
}
return $sql;
}
/**
* @param $table
* @param Schema $db
* @param array|NULL $params
* @return array
* @throws Exception
*/
public function batchInsert($table, Schema $db, array $params = NULL): array
{
if (empty($params)) {
throw new Exception("save data param not find.");
}
$insert = $insertData = [];
$format = $db->getColumns()->table($table);
$attributes = array_keys(current($params));
foreach ($params as $key => $val) {
if (!is_array($val)) {
continue;
}
array_push($insert, '(:' . implode($key . ',:', $attributes) . $key . ')');
foreach ($attributes as $myVal) {
$insertData[':' . $myVal . $key] = $format->fieldFormat($myVal, $val[$myVal]);
}
}
if (empty($insertData) || empty($insert)) {
throw new Exception("save data is empty.");
}
$sql = $this->inserts($table, implode(',', $attributes), implode(',', $insert));
return [$sql, $insertData];
}
/**
* @param $table
* @param $fields
* @param $data
* @return string
* 构建SQL语句
*/
#[Pure] private function inserts($table, $fields, $data): string
{
return sprintf('INSERT IGNORE INTO' . ' %s (%s) VALUES %s', $table, $fields, $data);
}
/**
* @param ActiveQuery $query
* @return string
* @throws Exception
*/
public function delete(ActiveQuery $query): string
{
if (empty($query->from)) {
$query->from = $query->getTable();
}
$condition = $this->where($query->where);
if (empty($condition) && !$query->ifNotWhere) {
throw new Exception('clear data must has condition.');
}
$query = $this->builderFrom($query->from) . $condition;
return 'DELETE ' . $query;
}
/**
* @param string $tableName
* @return string
*/
public function truncate(string $tableName): string
{
return 'TRUNCATE ' . $tableName;
}
}
-86
View File
@@ -1,86 +0,0 @@
<?php
declare(strict_types=1);
namespace Database\Orm;
use Snowflake\Abstracts\BaseObject;
use Database\ActiveQuery;
use Database\Sql;
use Database\Db;
use Exception;
/**
* Class Select
* @package Database\Orm
*/
class Select extends BaseObject
{
use Condition;
/**
* @param ActiveQuery|Db|Sql $query
* @return string
* @throws Exception
*/
public function getQuery(ActiveQuery|Sql|Db $query): string
{
return $this->generate($query, false);
}
/**
* @param ActiveQuery|Db|Sql $query
* @return string
* @throws Exception
*/
public function count(ActiveQuery|Db|Sql $query): string
{
return $this->generate($query, true);
}
/**
* @param ActiveQuery|Db|Sql $query
* @param bool $isCount
* @return string
* @throws Exception
*/
private function generate(ActiveQuery|Db|Sql $query, $isCount = false): string
{
if (empty($query->from)) {
$query->from = $query->getTable();
}
$builder = array_filter([
$this->builderSelect($query->select, $isCount),
$this->builderFrom($query->from),
$this->builderAlias($query->alias),
$this->builderJoin($query->join),
$this->where($query->where),
$this->builderGroup($query->group)
], function ($value) {
return !empty($value);
});
if ($isCount) {
return implode('', $builder);
}
$order = $this->builderOrder($query->order);
if (!empty($order)) {
$builder[] = $order;
}
$builder[] = $this->builderLimit($query);
return implode('', $builder);
}
/**
* @param $table
* @return string
*/
public function getColumn($table): string
{
return 'SHOW FULL FIELDS FROM ' . $table;
}
}
+2 -3
View File
@@ -10,7 +10,6 @@ declare(strict_types=1);
namespace Database; namespace Database;
use Database\Orm\Select;
use Database\Traits\QueryTrait; use Database\Traits\QueryTrait;
use Exception; use Exception;
@@ -29,7 +28,7 @@ class Sql
*/ */
public function getSql(): string public function getSql(): string
{ {
return (new Select())->getQuery($this); return SqlBuilder::builder($this)->get();
} }
@@ -39,7 +38,7 @@ class Sql
*/ */
public function getCondition(): string public function getCondition(): string
{ {
return (new Select())->getWhere($this); return SqlBuilder::builder($this)->getCondition();
} }
+71 -5
View File
@@ -4,6 +4,7 @@
namespace Database; namespace Database;
use Database\Traits\QueryTrait;
use Exception; use Exception;
use JetBrains\PhpStorm\Pure; use JetBrains\PhpStorm\Pure;
use Snowflake\Abstracts\Component; use Snowflake\Abstracts\Component;
@@ -19,19 +20,29 @@ class SqlBuilder extends Component
use Builder; use Builder;
public ActiveQuery $query; public ActiveQuery|Sql $query;
/** /**
* @param $query * @param $query
* @return $this * @return $this
*/ */
public static function builder($query): static public static function builder(QueryTrait|null $query): static
{ {
return new static(['query' => $query]); return new static(['query' => $query]);
} }
/**
* @return string
* @throws Exception
*/
public function getCondition(): string
{
return $this->conditionToString();
}
/** /**
* @param array $attributes * @param array $attributes
* @return bool|array * @return bool|array
@@ -51,6 +62,30 @@ class SqlBuilder extends Component
} }
/**
* @param array $attributes
* @param string $opera
* @return bool|array
* @throws Exception
*/
public function mathematics(array $attributes, $opera = '+'): bool|array
{
$string = $array = [];
foreach ($attributes as $attribute => $value) {
$string[] = $attribute . '=' . $attribute . $opera . $value;
}
if (empty($string) || empty($array)) {
return $this->addError('None data update.');
}
$update = 'UPDATE ' . $this->tableName() . ' SET ' . implode(',', $string) . $this->conditionToString();
$update .= $this->builderLimit($this->query);
return [$update, []];
}
/** /**
* @param array $attributes * @param array $attributes
* @param false $isBatch * @param false $isBatch
@@ -116,7 +151,8 @@ class SqlBuilder extends Component
*/ */
public function one(): string public function one(): string
{ {
return $this->_prefix(true) . ' LIMIT 0,1'; $this->query->limit(0, 1);
return $this->_prefix(true);
} }
@@ -126,7 +162,7 @@ class SqlBuilder extends Component
*/ */
public function all(): string public function all(): string
{ {
return $this->_prefix(true) . $this->builderLimit($this->query); return $this->_prefix(true);
} }
@@ -140,6 +176,16 @@ class SqlBuilder extends Component
} }
/**
* @param $table
* @return string
*/
public function columns($table): string
{
return 'SHOW FULL FIELDS FROM ' . $table;
}
/** /**
* @param bool $hasOrder * @param bool $hasOrder
* @return string * @return string
@@ -148,6 +194,12 @@ class SqlBuilder extends Component
private function _prefix($hasOrder = false): string private function _prefix($hasOrder = false): string
{ {
$select = $this->builderSelect($this->query->select) . ' FROM ' . $this->tableName(); $select = $this->builderSelect($this->query->select) . ' FROM ' . $this->tableName();
if (!empty($this->query->alias)) {
$select .= $this->builderAlias($this->query->alias);
}
if (!empty($this->query->join)) {
$select .= $this->builderJoin($this->query->join);
}
if (!empty($condition = $this->conditionToString())) { if (!empty($condition = $this->conditionToString())) {
$select = sprintf('%s%s', $select, $condition); $select = sprintf('%s%s', $select, $condition);
} }
@@ -157,7 +209,21 @@ class SqlBuilder extends Component
if ($hasOrder === true && !empty($this->query->order)) { if ($hasOrder === true && !empty($this->query->order)) {
$select .= $this->builderOrder($this->query->order); $select .= $this->builderOrder($this->query->order);
} }
return $select; return $select . $this->builderLimit($this->query);
}
/**
* @param false $isCount
* @return string
* @throws Exception
*/
public function get($isCount = false): string
{
if ($isCount === false) {
return $this->all();
}
return $this->count();
} }
-1
View File
@@ -13,7 +13,6 @@ namespace Database\Traits;
use Database\ActiveQuery; use Database\ActiveQuery;
use Database\ActiveRecord; use Database\ActiveRecord;
use Database\Condition\MathematicsCondition; use Database\Condition\MathematicsCondition;
use Database\Orm\Select;
use Exception; use Exception;
/** /**