Compare commits

...

28 Commits

Author SHA1 Message Date
as2252258 5bac6a843d Revert "改名"
This reverts commit fdf58326
2022-02-10 11:46:02 +08:00
as2252258 5aa5d3ea13 Revert "改名"
This reverts commit fdf58326
2022-01-20 19:04:15 +08:00
as2252258 b10ffd832a Revert "改名"
This reverts commit fdf58326
2022-01-19 14:59:46 +08:00
as2252258 d42fc588b4 Revert "改名"
This reverts commit fdf58326
2022-01-19 14:57:14 +08:00
as2252258 d5b58a1fc7 Revert "改名"
This reverts commit fdf58326
2022-01-19 14:32:23 +08:00
as2252258 cada515dc7 Revert "改名"
This reverts commit fdf58326
2022-01-19 11:30:58 +08:00
as2252258 5d73bb2c33 Revert "改名"
This reverts commit fdf58326
2022-01-18 18:55:36 +08:00
as2252258 164065493e Revert "改名"
This reverts commit fdf58326
2022-01-18 18:53:54 +08:00
as2252258 7cf28a3aaa Revert "改名"
This reverts commit fdf58326
2022-01-18 18:07:58 +08:00
as2252258 63a1322025 Revert "改名"
This reverts commit fdf58326
2022-01-18 18:07:35 +08:00
as2252258 e89062a2d7 Revert "改名"
This reverts commit fdf58326
2022-01-18 18:06:24 +08:00
as2252258 bc0fa6b8d5 Revert "改名"
This reverts commit fdf58326
2022-01-18 18:01:44 +08:00
as2252258 ffadbdab83 Revert "改名"
This reverts commit fdf58326
2022-01-18 17:56:47 +08:00
as2252258 267358263a Revert "改名"
This reverts commit fdf58326
2022-01-18 17:55:39 +08:00
as2252258 209621f222 Revert "改名"
This reverts commit fdf58326
2022-01-18 17:53:32 +08:00
as2252258 6e75fa462b Revert "改名"
This reverts commit fdf58326
2022-01-18 17:24:50 +08:00
as2252258 57f9e3254d Revert "改名"
This reverts commit fdf58326
2022-01-17 11:48:11 +08:00
as2252258 22194bbdbc Revert "改名"
This reverts commit fdf58326
2022-01-17 11:31:26 +08:00
as2252258 5b22955966 Revert "改名"
This reverts commit fdf58326
2022-01-14 16:50:01 +08:00
as2252258 ac0c08f909 Revert "改名"
This reverts commit fdf58326
2022-01-14 16:23:15 +08:00
as2252258 c1e480cd43 Revert "改名"
This reverts commit fdf58326
2022-01-14 16:12:20 +08:00
as2252258 61741f926f Revert "改名"
This reverts commit fdf58326
2022-01-14 16:11:23 +08:00
as2252258 f3d878e21c Revert "改名"
This reverts commit fdf58326
2022-01-14 16:07:57 +08:00
as2252258 4ca0a61344 Revert "改名"
This reverts commit fdf58326
2022-01-14 16:06:31 +08:00
as2252258 6d699df26e Revert "改名"
This reverts commit fdf58326
2022-01-14 16:05:11 +08:00
as2252258 22e094804a Revert "改名"
This reverts commit fdf58326
2022-01-14 16:03:26 +08:00
as2252258 f8a07c30ae Revert "改名"
This reverts commit fdf58326
2022-01-14 16:03:01 +08:00
as2252258 c735776e58 Revert "改名"
This reverts commit fdf58326
2022-01-14 15:52:38 +08:00
12 changed files with 122 additions and 78 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ class ActiveQuery extends Component implements ISqlBuilder
$name = explode(',', $name);
}
foreach ($name as $val) {
array_push($this->with, $val);
$this->with[] = $val;
}
return $this;
}
+8 -11
View File
@@ -82,10 +82,10 @@ class Collection extends AbstractCollection
*/
#[Pure] public function slice(int $start = 0, int $length = 20): array
{
if (empty($this->_item) || !is_array($this->_item)) {
if (empty($this->_item)) {
return [];
}
if (count($this->_item) < $length) {
if (\count($this->_item) < $length) {
return $this->_item;
} else {
return array_slice($this->_item, $start, $length);
@@ -138,7 +138,7 @@ class Collection extends AbstractCollection
*/
#[Pure] public function size(): int
{
return (int)count($this->_item);
return count($this->_item);
}
/**
@@ -166,15 +166,12 @@ class Collection extends AbstractCollection
public function delete(): bool
{
$model = $this->getModel();
if (!$model->hasPrimary()) return false;
$ids = [];
foreach ($this as $item) {
$id = $item->getPrimaryValue();
if (!empty($id)) {
$ids[] = $id;
}
if ($model->hasPrimary()) {
$key = $model->getPrimary();
return $model::query()->whereIn($key, $this->column($key))->delete();
}
return $model::query()->whereIn($model->getPrimary(), $ids)->delete();
throw new Exception('Must set primary key. if you wante delete');
}
/**
+1 -1
View File
@@ -18,7 +18,7 @@ abstract class Condition extends Component
protected string $opera = '=';
/** @var array|mixed */
protected $value;
protected mixed $value;
const INT_TYPE = ['bit', 'bool', 'tinyint', 'smallint', 'mediumint', 'int', 'bigint', 'float', 'double', 'decimal', 'timestamp'];
+63 -15
View File
@@ -17,15 +17,15 @@ use Database\Affair\Rollback;
use Database\Mysql\PDO;
use Database\Mysql\Schema;
use Exception;
use Kiri;
use Kiri\Abstracts\Component;
use Kiri\Abstracts\Config;
use Kiri\Events\EventProvider;
use Kiri\Exception\NotFindClassException;
use Kiri;
use Kiri\Annotation\Inject;
use ReflectionException;
use Kiri\Server\Events\OnWorkerExit;
use Kiri\Server\Events\OnWorkerStop;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use ReflectionException;
/**
* Class Connection
@@ -72,16 +72,17 @@ class Connection extends Component
/**
* execute by __construct
* @throws Exception
* @return void
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function init()
{
$this->eventProvider->on(OnWorkerStop::class, [$this, 'clear_connection'], 0);
$this->eventProvider->on(OnWorkerExit::class, [$this, 'clear_connection'], 0);
$this->eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
$this->eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
$this->eventProvider->on(Commit::class, [$this, 'commit'], 0);
$this->getEventProvider()->on(OnWorkerStop::class, [$this, 'clear_connection'], 0);
$this->getEventProvider()->on(OnWorkerExit::class, [$this, 'clear_connection'], 0);
$this->getEventProvider()->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
$this->getEventProvider()->on(Rollback::class, [$this, 'rollback'], 0);
$this->getEventProvider()->on(Commit::class, [$this, 'commit'], 0);
}
@@ -108,6 +109,43 @@ class Connection extends Component
if (!empty($this->slaveConfig) && $this->cds != $this->slaveConfig['cds']) {
$connections->initConnections('Mysql:' . $this->slaveConfig['cds'], false, $pool);
}
// $name = $connections->name('Mysql:' . $this->cds, true);
//
// $config = $this->_config();
// for ($i = 0; $i < $pool; $i++) {
// $connections->addItem($name, $connections->create($name, $config)());
// }
//
// if (empty($this->slaveConfig)) {
// return;
// }
//
// $config['cds'] = $this->slaveConfig['cds'];
// $config['username'] = $this->slaveConfig['username'];
// $config['password'] = $this->slaveConfig['password'];
//
// $name = $connections->name('Mysql:' . $config['cds'], false);
// for ($i = 0; $i < $pool; $i++) {
// $connections->addItem($name, $connections->create($name, $config)());
// }
}
/**
* @return array
*/
private function _config(): array
{
return [
'cds' => $this->cds,
'username' => $this->username,
'password' => $this->password,
'attributes' => $this->attributes,
'connect_timeout' => $this->connect_timeout,
'read_timeout' => $this->read_timeout,
'dbname' => $this->database,
'pool' => $this->pool
];
}
@@ -290,8 +328,13 @@ class Connection extends Component
return;
}
$connections = $this->connections();
$connections->release($this->cds, true);
$connections->release($this->slaveConfig['cds'], false);
$connections->release($this->cds, true, $config = $this->_config());
$config['cds'] = $this->slaveConfig['cds'];
$config['username'] = $this->slaveConfig['username'];
$config['password'] = $this->slaveConfig['password'];
$connections->release($this->slaveConfig['cds'], false, $config);
}
@@ -302,8 +345,13 @@ class Connection extends Component
{
$connections = $this->connections();
$connections->release($this->cds, true);
$connections->release($this->slaveConfig['cds'], false);
$connections->release($this->cds, true, $config = $this->_config());
$config['cds'] = $this->slaveConfig['cds'];
$config['username'] = $this->slaveConfig['username'];
$config['password'] = $this->slaveConfig['password'];
$connections->release($this->slaveConfig['cds'], false, $config);
}
/**
+8 -4
View File
@@ -5,12 +5,14 @@ namespace Database;
use Exception;
use Kiri;
use Kiri\Abstracts\Config;
use Kiri\Abstracts\Providers;
use Kiri\Application;
use Kiri\Exception\ConfigException;
use Kiri;
use Kiri\Events\OnBeforeCommandExecute;
use Kiri\Server\Events\OnTaskerStart;
use Kiri\Server\Events\OnWorkerStart;
use Kiri\Server\Events\OnProcessStart;
/**
* Class DatabasesProviders
@@ -26,7 +28,9 @@ class DatabasesProviders extends Providers
*/
public function onImport(Application $application)
{
$this->eventProvider->on(OnBeforeCommandExecute::class, [$this, 'createPool']);
$this->getEventProvider()->on(OnWorkerStart::class, [$this, 'createPool']);
$this->getEventProvider()->on(OnProcessStart::class, [$this, 'createPool']);
$this->getEventProvider()->on(OnTaskerStart::class, [$this, 'createPool']);
}
@@ -45,7 +49,7 @@ class DatabasesProviders extends Providers
* @throws ConfigException
* @throws Exception
*/
public function createPool(OnBeforeCommandExecute $onWorkerStart)
public function createPool(OnTaskerStart|OnWorkerStart|OnProcessStart $onWorkerStart)
{
$databases = Config::get('databases.connections', []);
if (empty($databases)) {
+6 -3
View File
@@ -43,7 +43,8 @@ class Db implements ISqlBuilder
public static function beginTransaction()
{
if (!static::transactionsActive()) {
di(EventDispatch::class)->dispatch(new BeginTransaction());
$event = \Kiri::getDi()->get(EventDispatch::class);
$event->dispatch(new BeginTransaction());
}
static::$_inTransaction = true;
}
@@ -55,7 +56,8 @@ class Db implements ISqlBuilder
public static function commit()
{
if (static::transactionsActive()) {
di(EventDispatch::class)->dispatch(new Commit());
$event = \Kiri::getDi()->get(EventDispatch::class);
$event->dispatch(new Commit());
}
static::$_inTransaction = false;
}
@@ -67,7 +69,8 @@ class Db implements ISqlBuilder
public static function rollback()
{
if (static::transactionsActive()) {
di(EventDispatch::class)->dispatch(new Rollback());
$event = \Kiri::getDi()->get(EventDispatch::class);
$event->dispatch(new Rollback());
}
static::$_inTransaction = false;
}
+6 -6
View File
@@ -3,8 +3,8 @@ declare(strict_types=1);
namespace Database;
use Exception;
use Database\Traits\HasBase;
use Exception;
/**
* Class HasCount
@@ -17,14 +17,14 @@ class HasCount extends HasBase
* @param $name
* @param $arguments
* @return ActiveQuery
* @throws Exception
* @throws ActiveQuery|static
*/
public function __call($name, $arguments): mixed
public function __call($name, $arguments)
{
if (method_exists($this, $name)) {
return call_user_func([$this, $name], ...$arguments);
if (!method_exists($this, $name)) {
return $this->_relation->getQuery($this->model::className())->$name(...$arguments);
}
return $this->_relation->getQuery($this->model::className())->$name(...$arguments);
return call_user_func([$this, $name], ...$arguments);
}
/**
+7 -6
View File
@@ -6,10 +6,11 @@
* Time: 13:58
*/
declare(strict_types=1);
namespace Database;
use Exception;
use Database\Traits\HasBase;
use Exception;
/**
* Class HasMany
@@ -23,14 +24,14 @@ class HasMany extends HasBase
/**
* @param $name
* @param $arguments
* @return ActiveQuery
* @return ActiveQuery|static
*/
public function __call($name, $arguments): mixed
public function __call($name, $arguments)
{
if (method_exists($this, $name)) {
return call_user_func([$this, $name], ...$arguments);
if (!method_exists($this, $name)) {
return $this->_relation->getQuery($this->model::className())->$name(...$arguments);
}
return $this->_relation->getQuery($this->model::className())->$name(...$arguments);
return call_user_func([$this, $name], ...$arguments);
}
/**
+6 -7
View File
@@ -9,8 +9,8 @@ declare(strict_types=1);
namespace Database;
use Exception;
use Database\Traits\HasBase;
use Exception;
/**
* Class HasOne
@@ -23,15 +23,14 @@ class HasOne extends HasBase
/**
* @param $name
* @param $arguments
* @return ActiveQuery
* @return ActiveQuery|static
*/
public function __call($name, $arguments): mixed
public function __call($name, $arguments)
{
if (method_exists($this, $name)) {
return call_user_func([$this, $name], ...$arguments);
if (!method_exists($this, $name)) {
return $this->_relation->getQuery($this->model::className())->$name(...$arguments);
}
$this->_relation->getQuery($this->model::className())->$name(...$arguments);
return $this;
return call_user_func([$this, $name], ...$arguments);
}
/**
+3 -12
View File
@@ -13,8 +13,8 @@ namespace Database;
use Database\Base\Getter;
use Database\Traits\HasBase;
use Exception;
use Kiri\Exception\NotFindClassException;
use Kiri;
use Kiri\Exception\NotFindClassException;
use Kiri\ToArray;
use ReflectionException;
use Swoole\Coroutine;
@@ -112,19 +112,15 @@ class Model extends Base\Model
if (empty($attributes)) {
return $logger->addError(FIND_OR_CREATE_MESSAGE, 'mysql');
}
Db::beginTransaction();
/** @var static $select */
$select = static::query()->where($condition)->first();
if (empty($select)) {
$select = duplicate(static::class);
$select->attributes = $attributes;
$select->setIsNowExample(true);
if (!$select->save()) {
Db::rollback();
return $logger->addError($select->getLastError(), 'mysql');
throw new Exception($select->getLastError());
}
}
Db::commit();
return $select;
}
@@ -141,8 +137,6 @@ class Model extends Base\Model
if (empty($attributes)) {
return $logger->addError(FIND_OR_CREATE_MESSAGE, 'mysql');
}
Db::beginTransaction();
/** @var static $select */
$select = static::query()->where($condition)->first();
if (empty($select)) {
@@ -150,10 +144,7 @@ class Model extends Base\Model
}
$select->attributes = $attributes;
if (!$select->save()) {
Db::rollback();
$select = $logger->addError($select->getLastError(), 'mysql');
} else {
Db::commit();
throw new Exception($select->getLastError());
}
return $select;
}
+11 -5
View File
@@ -32,11 +32,11 @@ interface ModelInterface
public static function find(string|int $param): mixed;
/**
* @param array $data
* @return static
*/
public static function populate(array $data): static;
/**
* @param array $data
* @return static
*/
public static function populate(array $data): static;
/**
@@ -46,6 +46,12 @@ interface ModelInterface
public static function query(): ActiveQuery;
/**
* @return string
*/
public function getPrimary(): string;
/**
* @return string
*/
+2 -7
View File
@@ -39,9 +39,6 @@ class PDO implements StopHeartbeatCheck
public int $read_timeout;
private EventProvider $eventProvider;
public array $attributes = [];
@@ -67,8 +64,8 @@ class PDO implements StopHeartbeatCheck
public function init(): void
{
$this->heartbeat_check();
$this->eventProvider = Kiri::getDi()->get(EventProvider::class);
$this->eventProvider->on(OnWorkerExit::class, [$this, 'onWorkerExit']);
$eventProvider = Kiri::getDi()->get(EventProvider::class);
$eventProvider->on(OnWorkerExit::class, [$this, 'onWorkerExit']);
}
@@ -114,8 +111,6 @@ class PDO implements StopHeartbeatCheck
if (time() - $this->_last > (int)Config::get('databases.pool.tick', 60)) {
$this->stopHeartbeatCheck();
$this->eventProvider->off(OnWorkerExit::class, [$this, 'stopHeartbeatCheck']);
$this->pdo = null;
}
} catch (\Throwable $throwable) {