chengkun
2025-09-11 364a083e94138f7ed2d8114bf6dbdfda4eaf2683
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
 
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2023 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
declare (strict_types = 1);
 
namespace think;
 
use Closure;
use InvalidArgumentException;
use Psr\Log\LoggerInterface;
use Psr\SimpleCache\CacheInterface;
use think\db\BaseQuery;
use think\db\ConnectionInterface;
use think\db\Query;
use think\db\Raw;
 
/**
 * Class DbManager.
 *
 * @mixin BaseQuery
 * @mixin Query
 */
class DbManager
{
    /**
     * 数据库连接实例.
     *
     * @var array
     */
    protected $instance = [];
 
    /**
     * 数据库配置.
     *
     * @var array
     */
    protected $config = [];
 
    /**
     * Event对象或者数组.
     *
     * @var array|object
     */
    protected $event;
 
    /**
     * SQL监听.
     *
     * @var array
     */
    protected $listen = [];
 
    /**
     * 查询次数.
     *
     * @var int
     */
    protected $queryTimes = 0;
 
    /**
     * 查询缓存对象
     *
     * @var CacheInterface
     */
    protected $cache;
 
    /**
     * 查询日志对象
     *
     * @var LoggerInterface
     */
    protected $log;
 
    /**
     * 架构函数.
     */
    public function __construct()
    {
        $this->modelMaker();
    }
 
    /**
     * 注入模型对象
     *
     * @return void
     */
    protected function modelMaker()
    {
        Model::setDb($this);
 
        if (is_object($this->event)) {
            Model::setEvent($this->event);
        }
 
        Model::maker(function (Model $model) {
            $isAutoWriteTimestamp = $model->getAutoWriteTimestamp();
 
            if (is_null($isAutoWriteTimestamp)) {
                // 自动写入时间戳
                $model->isAutoWriteTimestamp($this->getConfig('auto_timestamp', true));
            }
 
            $dateFormat = $model->getDateFormat();
 
            if (is_null($dateFormat)) {
                // 设置时间戳格式
                $model->setDateFormat($this->getConfig('datetime_format', 'Y-m-d H:i:s'));
            }
        });
    }
 
    /**
     * 监听SQL.
     *
     * @return void
     */
    public function triggerSql(): void
    {
    }
 
    /**
     * 初始化配置参数.
     *
     * @param array $config 连接配置
     *
     * @return void
     */
    public function setConfig($config): void
    {
        $this->config = $config;
    }
 
    /**
     * 设置缓存对象
     *
     * @param CacheInterface $cache 缓存对象
     *
     * @return void
     */
    public function setCache(CacheInterface $cache): void
    {
        $this->cache = $cache;
    }
 
    /**
     * 设置日志对象
     *
     * @param LoggerInterface|Closure $log 日志对象
     *
     * @return void
     */
    public function setLog(LoggerInterface | Closure $log): void
    {
        $this->log = $log;
    }
 
    /**
     * 记录SQL日志.
     *
     * @param string $log  SQL日志信息
     * @param string $type 日志类型
     *
     * @return void
     */
    public function log(string $log, string $type = 'sql')
    {
        if ($this->log) {
            if ($this->log instanceof Closure) {
                call_user_func_array($this->log, [$type, $log]);
            } else {
                $this->log->log($type, $log);
            }
        }
    }
 
    /**
     * 获得查询日志(没有设置日志对象使用).
     *
     * @deprecated
     * @param bool $clear 是否清空
     * @return array
     */
    public function getDbLog(bool $clear = false): array
    {
        return [];
    }
 
    /**
     * 获取配置参数.
     *
     * @param string $name    配置参数
     * @param mixed  $default 默认值
     *
     * @return mixed
     */
    public function getConfig(string $name = '', $default = null)
    {
        if ('' === $name) {
            return $this->config;
        }
 
        return $this->config[$name] ?? $default;
    }
 
    /**
     * 创建/切换数据库连接查询.
     *
     * @param string|null $name  连接配置标识
     * @param bool        $force 强制重新连接
     *
     * @return ConnectionInterface
     */
    public function connect(?string $name = null, bool $force = false)
    {
        return $this->instance($name, $force);
    }
 
    /**
     * 创建数据库连接实例.
     *
     * @param string|null $name  连接标识
     * @param bool        $force 强制重新连接
     *
     * @return ConnectionInterface
     */
    protected function instance(?string $name = null, bool $force = false): ConnectionInterface
    {
        if (empty($name)) {
            $name = $this->getConfig('default', 'mysql');
        }
 
        if ($force || !isset($this->instance[$name])) {
            $this->instance[$name] = $this->createConnection($name);
        }
 
        return $this->instance[$name];
    }
 
    /**
     * 获取连接配置.
     *
     * @param string $name
     *
     * @return array
     */
    protected function getConnectionConfig(string $name): array
    {
        $connections = $this->getConfig('connections');
        if (!isset($connections[$name])) {
            throw new InvalidArgumentException('Undefined db config:' . $name);
        }
 
        return $connections[$name];
    }
 
    /**
     * 创建连接.
     *
     * @param $name
     *
     * @return ConnectionInterface
     */
    protected function createConnection(string $name): ConnectionInterface
    {
        $config = $this->getConnectionConfig($name);
 
        $type = !empty($config['type']) ? $config['type'] : 'mysql';
 
        if (str_contains($type, '\\')) {
            $class = $type;
        } else {
            $class = '\\think\\db\\connector\\' . ucfirst($type);
        }
 
        /** @var ConnectionInterface $connection */
        $connection = new $class($config);
        $connection->setDb($this);
 
        if ($this->cache) {
            $connection->setCache($this->cache);
        }
 
        return $connection;
    }
 
    /**
     * 使用表达式设置数据.
     *
     * @param string $value 表达式
     *
     * @return Raw
     */
    public function raw(string $value, array $bind = []): Raw
    {
        return new Raw($value, $bind);
    }
 
    /**
     * 更新查询次数.
     * @deprecated
     * @return void
     */
    public function updateQueryTimes(): void
    {
    }
 
    /**
     * 重置查询次数.
     * @deprecated
     * @return void
     */
    public function clearQueryTimes(): void
    {
        $this->queryTimes = 0;
    }
 
    /**
     * 获得查询次数.
     * @deprecated
     * @return int
     */
    public function getQueryTimes(): int
    {
        return $this->queryTimes;
    }
 
    /**
     * 监听SQL执行.
     *
     * @param callable $callback 回调方法
     *
     * @return void
     */
    public function listen(callable $callback): void
    {
        $this->listen[] = $callback;
    }
 
    /**
     * 获取监听SQL执行.
     *
     * @return array
     */
    public function getListen(): array
    {
        return $this->listen;
    }
 
    /**
     * 获取所有连接实列.
     *
     * @return array
     */
    public function getInstance(): array
    {
        return $this->instance;
    }
 
    /**
     * 注册回调方法.
     *
     * @param string   $event    事件名
     * @param callable $callback 回调方法
     *
     * @return void
     */
    public function event(string $event, callable $callback): void
    {
        $this->event[$event][] = $callback;
    }
 
    /**
     * 触发事件.
     *
     * @param string $event  事件名
     * @param mixed  $params 传入参数
     *
     * @return mixed
     */
    public function trigger(string $event, $params = null)
    {
        if (isset($this->event[$event])) {
            foreach ($this->event[$event] as $callback) {
                call_user_func_array($callback, [$params]);
            }
        }
    }
 
    public function __call($method, $args)
    {
        return call_user_func_array([$this->connect(), $method], $args);
    }
}