No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Connection.php 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\db;
  12. use PDO;
  13. use PDOStatement;
  14. use think\Db;
  15. use think\db\exception\BindParamException;
  16. use think\Debug;
  17. use think\Exception;
  18. use think\exception\PDOException;
  19. use think\Log;
  20. /**
  21. * Class Connection
  22. * @package think
  23. * @method Query table(string $table) 指定数据表(含前缀)
  24. * @method Query name(string $name) 指定数据表(不含前缀)
  25. *
  26. */
  27. abstract class Connection
  28. {
  29. /** @var PDOStatement PDO操作实例 */
  30. protected $PDOStatement;
  31. /** @var string 当前SQL指令 */
  32. protected $queryStr = '';
  33. // 返回或者影响记录数
  34. protected $numRows = 0;
  35. // 事务指令数
  36. protected $transTimes = 0;
  37. // 错误信息
  38. protected $error = '';
  39. /** @var PDO[] 数据库连接ID 支持多个连接 */
  40. protected $links = [];
  41. /** @var PDO 当前连接ID */
  42. protected $linkID;
  43. protected $linkRead;
  44. protected $linkWrite;
  45. // 查询结果类型
  46. protected $fetchType = PDO::FETCH_ASSOC;
  47. // 字段属性大小写
  48. protected $attrCase = PDO::CASE_LOWER;
  49. // 监听回调
  50. protected static $event = [];
  51. // 使用Builder类
  52. protected $builder;
  53. // 数据库连接参数配置
  54. protected $config = [
  55. // 数据库类型
  56. 'type' => '',
  57. // 服务器地址
  58. 'hostname' => '',
  59. // 数据库名
  60. 'database' => '',
  61. // 用户名
  62. 'username' => '',
  63. // 密码
  64. 'password' => '',
  65. // 端口
  66. 'hostport' => '',
  67. // 连接dsn
  68. 'dsn' => '',
  69. // 数据库连接参数
  70. 'params' => [],
  71. // 数据库编码默认采用utf8
  72. 'charset' => 'utf8',
  73. // 数据库表前缀
  74. 'prefix' => '',
  75. // 数据库调试模式
  76. 'debug' => false,
  77. // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
  78. 'deploy' => 0,
  79. // 数据库读写是否分离 主从式有效
  80. 'rw_separate' => false,
  81. // 读写分离后 主服务器数量
  82. 'master_num' => 1,
  83. // 指定从服务器序号
  84. 'slave_no' => '',
  85. // 模型写入后自动读取主服务器
  86. 'read_master' => false,
  87. // 是否严格检查字段是否存在
  88. 'fields_strict' => true,
  89. // 数据返回类型
  90. 'result_type' => PDO::FETCH_ASSOC,
  91. // 数据集返回类型
  92. 'resultset_type' => 'array',
  93. // 自动写入时间戳字段
  94. 'auto_timestamp' => false,
  95. // 时间字段取出后的默认时间格式
  96. 'datetime_format' => 'Y-m-d H:i:s',
  97. // 是否需要进行SQL性能分析
  98. 'sql_explain' => false,
  99. // Builder类
  100. 'builder' => '',
  101. // Query类
  102. 'query' => '\\think\\db\\Query',
  103. // 是否需要断线重连
  104. 'break_reconnect' => false,
  105. ];
  106. // PDO连接参数
  107. protected $params = [
  108. PDO::ATTR_CASE => PDO::CASE_NATURAL,
  109. PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
  110. PDO::ATTR_ORACLE_NULLS => PDO::NULL_NATURAL,
  111. PDO::ATTR_STRINGIFY_FETCHES => false,
  112. PDO::ATTR_EMULATE_PREPARES => false,
  113. ];
  114. // 绑定参数
  115. protected $bind = [];
  116. /**
  117. * 构造函数 读取数据库配置信息
  118. * @access public
  119. * @param array $config 数据库配置数组
  120. */
  121. public function __construct(array $config = [])
  122. {
  123. if (!empty($config)) {
  124. $this->config = array_merge($this->config, $config);
  125. }
  126. // $this->config['break_reconnect'] = true; // 开启断线重连 https://blog.csdn.net/weng_xianhu/article/details/84036909 by 小虎哥
  127. }
  128. /**
  129. * 获取新的查询对象
  130. * @access protected
  131. * @return Query
  132. */
  133. protected function getQuery()
  134. {
  135. $class = $this->config['query'];
  136. return new $class($this);
  137. }
  138. /**
  139. * 获取当前连接器类对应的Builder类
  140. * @access public
  141. * @return string
  142. */
  143. public function getBuilder()
  144. {
  145. if (!empty($this->builder)) {
  146. return $this->builder;
  147. } else {
  148. return $this->getConfig('builder') ?: '\\think\\db\\builder\\' . ucfirst($this->getConfig('type'));
  149. }
  150. }
  151. /**
  152. * 调用Query类的查询方法
  153. * @access public
  154. * @param string $method 方法名称
  155. * @param array $args 调用参数
  156. * @return mixed
  157. */
  158. public function __call($method, $args)
  159. {
  160. return call_user_func_array([$this->getQuery(), $method], $args);
  161. }
  162. /**
  163. * 解析pdo连接的dsn信息
  164. * @access protected
  165. * @param array $config 连接信息
  166. * @return string
  167. */
  168. abstract protected function parseDsn($config);
  169. /**
  170. * 取得数据表的字段信息
  171. * @access public
  172. * @param string $tableName
  173. * @return array
  174. */
  175. abstract public function getFields($tableName);
  176. /**
  177. * 取得数据库的表信息
  178. * @access public
  179. * @param string $dbName
  180. * @return array
  181. */
  182. abstract public function getTables($dbName);
  183. /**
  184. * SQL性能分析
  185. * @access protected
  186. * @param string $sql
  187. * @return array
  188. */
  189. abstract protected function getExplain($sql);
  190. /**
  191. * 对返数据表字段信息进行大小写转换出来
  192. * @access public
  193. * @param array $info 字段信息
  194. * @return array
  195. */
  196. public function fieldCase($info)
  197. {
  198. // 字段大小写转换
  199. switch ($this->attrCase) {
  200. case PDO::CASE_LOWER:
  201. $info = array_change_key_case($info);
  202. break;
  203. case PDO::CASE_UPPER:
  204. $info = array_change_key_case($info, CASE_UPPER);
  205. break;
  206. case PDO::CASE_NATURAL:
  207. default:
  208. // 不做转换
  209. }
  210. return $info;
  211. }
  212. /**
  213. * 获取数据库的配置参数
  214. * @access public
  215. * @param string $config 配置名称
  216. * @return mixed
  217. */
  218. public function getConfig($config = '')
  219. {
  220. return $config ? $this->config[$config] : $this->config;
  221. }
  222. /**
  223. * 设置数据库的配置参数
  224. * @access public
  225. * @param string|array $config 配置名称
  226. * @param mixed $value 配置值
  227. * @return void
  228. */
  229. public function setConfig($config, $value = '')
  230. {
  231. if (is_array($config)) {
  232. $this->config = array_merge($this->config, $config);
  233. } else {
  234. $this->config[$config] = $value;
  235. }
  236. }
  237. /**
  238. * 连接数据库方法
  239. * @access public
  240. * @param array $config 连接参数
  241. * @param integer $linkNum 连接序号
  242. * @param array|bool $autoConnection 是否自动连接主数据库(用于分布式)
  243. * @return PDO
  244. * @throws Exception
  245. */
  246. public function connect(array $config = [], $linkNum = 0, $autoConnection = false)
  247. {
  248. if (!isset($this->links[$linkNum])) {
  249. if (!$config) {
  250. $config = $this->config;
  251. } else {
  252. $config = array_merge($this->config, $config);
  253. }
  254. // 连接参数
  255. if (isset($config['params']) && is_array($config['params'])) {
  256. $params = $config['params'] + $this->params;
  257. } else {
  258. $params = $this->params;
  259. }
  260. // 记录当前字段属性大小写设置
  261. $this->attrCase = $params[PDO::ATTR_CASE];
  262. // 数据返回类型
  263. if (isset($config['result_type'])) {
  264. $this->fetchType = $config['result_type'];
  265. }
  266. try {
  267. if (empty($config['dsn'])) {
  268. $config['dsn'] = $this->parseDsn($config);
  269. }
  270. if ($config['debug']) {
  271. $startTime = microtime(true);
  272. }
  273. $this->links[$linkNum] = new PDO($config['dsn'], $config['username'], $config['password'], $params);
  274. if ($config['debug']) {
  275. // 记录数据库连接信息
  276. Log::record('[ DB ] CONNECT:[ UseTime:' . number_format(microtime(true) - $startTime, 6) . 's ] ' . $config['dsn'], 'sql');
  277. }
  278. } catch (\PDOException $e) {
  279. if ($autoConnection) {
  280. Log::record($e->getMessage(), 'error');
  281. return $this->connect($autoConnection, $linkNum);
  282. } else {
  283. // throw $e;
  284. throw new PDOException($e, $config, ''); // 数据库不存在 by 小虎哥
  285. }
  286. }
  287. }
  288. return $this->links[$linkNum];
  289. }
  290. /**
  291. * 释放查询结果
  292. * @access public
  293. */
  294. public function free()
  295. {
  296. $this->PDOStatement = null;
  297. }
  298. /**
  299. * 获取PDO对象
  300. * @access public
  301. * @return \PDO|false
  302. */
  303. public function getPdo()
  304. {
  305. if (!$this->linkID) {
  306. return false;
  307. } else {
  308. return $this->linkID;
  309. }
  310. }
  311. /**
  312. * 执行查询 返回数据集
  313. * @access public
  314. * @param string $sql sql指令
  315. * @param array $bind 参数绑定
  316. * @param bool $master 是否在主服务器读操作
  317. * @param bool $pdo 是否返回PDO对象
  318. * @return mixed
  319. * @throws PDOException
  320. * @throws \Exception
  321. */
  322. public function query($sql, $bind = [], $master = false, $pdo = false)
  323. {
  324. $sql = str_replace('__PREFIX__', $this->config['prefix'], $sql); // 替换前缀 by 小虎哥
  325. $this->initConnect($master);
  326. if (!$this->linkID) {
  327. return false;
  328. }
  329. // 记录SQL语句
  330. $this->queryStr = $sql;
  331. if ($bind) {
  332. $this->bind = $bind;
  333. }
  334. Db::$queryTimes++;
  335. try {
  336. // 调试开始
  337. $this->debug(true);
  338. // 预处理
  339. $this->PDOStatement = $this->linkID->prepare($sql);
  340. // 是否为存储过程调用
  341. $procedure = in_array(strtolower(substr(trim($sql), 0, 4)), ['call', 'exec']);
  342. // 参数绑定
  343. if ($procedure) {
  344. $this->bindParam($bind);
  345. } else {
  346. $this->bindValue($bind);
  347. }
  348. // 执行查询
  349. $this->PDOStatement->execute();
  350. // 调试结束
  351. $this->debug(false, '', $master);
  352. // 返回结果集
  353. return $this->getResult($pdo, $procedure);
  354. } catch (\PDOException $e) {
  355. if ($this->isBreak($e)) {
  356. return $this->close()->query($sql, $bind, $master, $pdo);
  357. }
  358. // echo '错误语句:'. $sql;
  359. throw new PDOException($e, $this->config, $this->getLastsql());
  360. } catch (\Throwable $e) {
  361. if ($this->isBreak($e)) {
  362. return $this->close()->query($sql, $bind, $master, $pdo);
  363. }
  364. throw $e;
  365. } catch (\Exception $e) {
  366. if ($this->isBreak($e)) {
  367. return $this->close()->query($sql, $bind, $master, $pdo);
  368. }
  369. throw $e;
  370. }
  371. }
  372. /**
  373. * 执行语句
  374. * @access public
  375. * @param string $sql sql指令
  376. * @param array $bind 参数绑定
  377. * @param Query $query 查询对象
  378. * @return int
  379. * @throws PDOException
  380. * @throws \Exception
  381. */
  382. public function execute($sql, $bind = [], Query $query = null)
  383. {
  384. $sql = str_replace('__PREFIX__', $this->config['prefix'], $sql); // 替换前缀 by 小虎哥
  385. $this->initConnect(true);
  386. if (!$this->linkID) {
  387. return false;
  388. }
  389. // 记录SQL语句
  390. $this->queryStr = $sql;
  391. if ($bind) {
  392. $this->bind = $bind;
  393. }
  394. Db::$executeTimes++;
  395. try {
  396. // 调试开始
  397. $this->debug(true);
  398. // 预处理
  399. $this->PDOStatement = $this->linkID->prepare($sql);
  400. // 是否为存储过程调用
  401. $procedure = in_array(strtolower(substr(trim($sql), 0, 4)), ['call', 'exec']);
  402. // 参数绑定
  403. if ($procedure) {
  404. $this->bindParam($bind);
  405. } else {
  406. $this->bindValue($bind);
  407. }
  408. // 执行语句
  409. $this->PDOStatement->execute();
  410. // 调试结束
  411. $this->debug(false, '', true);
  412. if ($query && !empty($this->config['deploy']) && !empty($this->config['read_master'])) {
  413. $query->readMaster();
  414. }
  415. $this->numRows = $this->PDOStatement->rowCount();
  416. return $this->numRows;
  417. } catch (\PDOException $e) {
  418. /*兼容删除的索引、字段不存在时,忽略报错 by 小虎哥*/
  419. foreach (['drop index','drop column'] as $key => $val) {
  420. if (stristr($sql, $val)) {
  421. return true;
  422. }
  423. }
  424. /*--end*/
  425. if ($this->isBreak($e)) {
  426. return $this->close()->execute($sql, $bind, $query);
  427. }
  428. // echo '错误语句:'. $sql;
  429. throw new PDOException($e, $this->config, $this->getLastsql());
  430. } catch (\Throwable $e) {
  431. /*兼容删除的索引、字段不存在时,忽略报错 by 小虎哥*/
  432. foreach (['drop index','drop column'] as $key => $val) {
  433. if (stristr($sql, $val)) {
  434. return true;
  435. }
  436. }
  437. /*--end*/
  438. if ($this->isBreak($e)) {
  439. return $this->close()->execute($sql, $bind, $query);
  440. }
  441. throw $e;
  442. } catch (\Exception $e) {
  443. /*兼容删除的索引、字段不存在时,忽略报错 by 小虎哥*/
  444. foreach (['drop index','drop column'] as $key => $val) {
  445. if (stristr($sql, $val)) {
  446. return true;
  447. }
  448. }
  449. /*--end*/
  450. if ($this->isBreak($e)) {
  451. return $this->close()->execute($sql, $bind, $query);
  452. }
  453. throw $e;
  454. }
  455. }
  456. /**
  457. * 根据参数绑定组装最终的SQL语句 便于调试
  458. * @access public
  459. * @param string $sql 带参数绑定的sql语句
  460. * @param array $bind 参数绑定列表
  461. * @return string
  462. */
  463. public function getRealSql($sql, array $bind = [])
  464. {
  465. if (is_array($sql)) {
  466. $sql = implode(';', $sql);
  467. }
  468. foreach ($bind as $key => $val) {
  469. $value = is_array($val) ? $val[0] : $val;
  470. $type = is_array($val) ? $val[1] : PDO::PARAM_STR;
  471. if (PDO::PARAM_STR == $type) {
  472. $value = $this->quote($value);
  473. } elseif (PDO::PARAM_INT == $type) {
  474. $value = (float) $value;
  475. }
  476. // 判断占位符
  477. $sql = is_numeric($key) ?
  478. substr_replace($sql, $value, strpos($sql, '?'), 1) :
  479. str_replace(
  480. [':' . $key . ')', ':' . $key . ',', ':' . $key . ' ', ':' . $key . PHP_EOL],
  481. [$value . ')', $value . ',', $value . ' ', $value . PHP_EOL],
  482. $sql . ' ');
  483. }
  484. return rtrim($sql);
  485. }
  486. /**
  487. * 参数绑定
  488. * 支持 ['name'=>'value','id'=>123] 对应命名占位符
  489. * 或者 ['value',123] 对应问号占位符
  490. * @access public
  491. * @param array $bind 要绑定的参数列表
  492. * @return void
  493. * @throws BindParamException
  494. */
  495. protected function bindValue(array $bind = [])
  496. {
  497. foreach ($bind as $key => $val) {
  498. // 占位符
  499. $param = is_numeric($key) ? $key + 1 : ':' . $key;
  500. if (is_array($val)) {
  501. if (PDO::PARAM_INT == $val[1] && '' === $val[0]) {
  502. $val[0] = 0;
  503. }
  504. $result = $this->PDOStatement->bindValue($param, $val[0], $val[1]);
  505. } else {
  506. $result = $this->PDOStatement->bindValue($param, $val);
  507. }
  508. if (!$result) {
  509. throw new BindParamException(
  510. "Error occurred when binding parameters '{$param}'",
  511. $this->config,
  512. $this->getLastsql(),
  513. $bind
  514. );
  515. }
  516. }
  517. }
  518. /**
  519. * 存储过程的输入输出参数绑定
  520. * @access public
  521. * @param array $bind 要绑定的参数列表
  522. * @return void
  523. * @throws BindParamException
  524. */
  525. protected function bindParam($bind)
  526. {
  527. foreach ($bind as $key => $val) {
  528. $param = is_numeric($key) ? $key + 1 : ':' . $key;
  529. if (is_array($val)) {
  530. array_unshift($val, $param);
  531. $result = call_user_func_array([$this->PDOStatement, 'bindParam'], $val);
  532. } else {
  533. $result = $this->PDOStatement->bindValue($param, $val);
  534. }
  535. if (!$result) {
  536. $param = array_shift($val);
  537. throw new BindParamException(
  538. "Error occurred when binding parameters '{$param}'",
  539. $this->config,
  540. $this->getLastsql(),
  541. $bind
  542. );
  543. }
  544. }
  545. }
  546. /**
  547. * 获得数据集数组
  548. * @access protected
  549. * @param bool $pdo 是否返回PDOStatement
  550. * @param bool $procedure 是否存储过程
  551. * @return PDOStatement|array
  552. */
  553. protected function getResult($pdo = false, $procedure = false)
  554. {
  555. if ($pdo) {
  556. // 返回PDOStatement对象处理
  557. return $this->PDOStatement;
  558. }
  559. if ($procedure) {
  560. // 存储过程返回结果
  561. return $this->procedure();
  562. }
  563. $result = $this->PDOStatement->fetchAll($this->fetchType);
  564. $this->numRows = count($result);
  565. return $result;
  566. }
  567. /**
  568. * 获得存储过程数据集
  569. * @access protected
  570. * @return array
  571. */
  572. protected function procedure()
  573. {
  574. $item = [];
  575. do {
  576. $result = $this->getResult();
  577. if ($result) {
  578. $item[] = $result;
  579. }
  580. } while ($this->PDOStatement->nextRowset());
  581. $this->numRows = count($item);
  582. return $item;
  583. }
  584. /**
  585. * 执行数据库事务
  586. * @access public
  587. * @param callable $callback 数据操作方法回调
  588. * @return mixed
  589. * @throws PDOException
  590. * @throws \Exception
  591. * @throws \Throwable
  592. */
  593. public function transaction($callback)
  594. {
  595. $this->startTrans();
  596. try {
  597. $result = null;
  598. if (is_callable($callback)) {
  599. $result = call_user_func_array($callback, [$this]);
  600. }
  601. $this->commit();
  602. return $result;
  603. } catch (\Exception $e) {
  604. $this->rollback();
  605. throw $e;
  606. } catch (\Throwable $e) {
  607. $this->rollback();
  608. throw $e;
  609. }
  610. }
  611. /**
  612. * 启动事务
  613. * @access public
  614. * @return bool|mixed
  615. * @throws \Exception
  616. */
  617. public function startTrans()
  618. {
  619. $this->initConnect(true);
  620. if (!$this->linkID) {
  621. return false;
  622. }
  623. ++$this->transTimes;
  624. try {
  625. if (1 == $this->transTimes) {
  626. $this->linkID->beginTransaction();
  627. } elseif ($this->transTimes > 1 && $this->supportSavepoint()) {
  628. $this->linkID->exec(
  629. $this->parseSavepoint('trans' . $this->transTimes)
  630. );
  631. }
  632. } catch (\Exception $e) {
  633. if ($this->isBreak($e)) {
  634. --$this->transTimes;
  635. return $this->close()->startTrans();
  636. }
  637. throw $e;
  638. } catch (\Error $e) {
  639. if ($this->isBreak($e)) {
  640. --$this->transTimes;
  641. return $this->close()->startTrans();
  642. }
  643. throw $e;
  644. }
  645. }
  646. /**
  647. * 用于非自动提交状态下面的查询提交
  648. * @access public
  649. * @return void
  650. * @throws PDOException
  651. */
  652. public function commit()
  653. {
  654. $this->initConnect(true);
  655. if (1 == $this->transTimes) {
  656. $this->linkID->commit();
  657. }
  658. --$this->transTimes;
  659. }
  660. /**
  661. * 事务回滚
  662. * @access public
  663. * @return void
  664. * @throws PDOException
  665. */
  666. public function rollback()
  667. {
  668. $this->initConnect(true);
  669. if (1 == $this->transTimes) {
  670. $this->linkID->rollBack();
  671. } elseif ($this->transTimes > 1 && $this->supportSavepoint()) {
  672. $this->linkID->exec(
  673. $this->parseSavepointRollBack('trans' . $this->transTimes)
  674. );
  675. }
  676. $this->transTimes = max(0, $this->transTimes - 1);
  677. }
  678. /**
  679. * 是否支持事务嵌套
  680. * @return bool
  681. */
  682. protected function supportSavepoint()
  683. {
  684. return false;
  685. }
  686. /**
  687. * 生成定义保存点的SQL
  688. * @param $name
  689. * @return string
  690. */
  691. protected function parseSavepoint($name)
  692. {
  693. return 'SAVEPOINT ' . $name;
  694. }
  695. /**
  696. * 生成回滚到保存点的SQL
  697. * @param $name
  698. * @return string
  699. */
  700. protected function parseSavepointRollBack($name)
  701. {
  702. return 'ROLLBACK TO SAVEPOINT ' . $name;
  703. }
  704. /**
  705. * 批处理执行SQL语句
  706. * 批处理的指令都认为是execute操作
  707. * @access public
  708. * @param array $sqlArray SQL批处理指令
  709. * @return boolean
  710. */
  711. public function batchQuery($sqlArray = [], $bind = [], Query $query = null)
  712. {
  713. if (!is_array($sqlArray)) {
  714. return false;
  715. }
  716. // 自动启动事务支持
  717. $this->startTrans();
  718. try {
  719. foreach ($sqlArray as $sql) {
  720. $this->execute($sql, $bind, $query);
  721. }
  722. // 提交事务
  723. $this->commit();
  724. } catch (\Exception $e) {
  725. $this->rollback();
  726. throw $e;
  727. }
  728. return true;
  729. }
  730. /**
  731. * 获得查询次数
  732. * @access public
  733. * @param boolean $execute 是否包含所有查询
  734. * @return integer
  735. */
  736. public function getQueryTimes($execute = false)
  737. {
  738. return $execute ? Db::$queryTimes + Db::$executeTimes : Db::$queryTimes;
  739. }
  740. /**
  741. * 获得执行次数
  742. * @access public
  743. * @return integer
  744. */
  745. public function getExecuteTimes()
  746. {
  747. return Db::$executeTimes;
  748. }
  749. /**
  750. * 关闭数据库(或者重新连接)
  751. * @access public
  752. * @return $this
  753. */
  754. public function close()
  755. {
  756. $this->linkID = null;
  757. $this->linkWrite = null;
  758. $this->linkRead = null;
  759. $this->links = [];
  760. // 释放查询
  761. $this->free();
  762. return $this;
  763. }
  764. /**
  765. * 是否断线
  766. * @access protected
  767. * @param \PDOException|\Exception $e 异常对象
  768. * @return bool
  769. */
  770. protected function isBreak($e)
  771. {
  772. if (!$this->config['break_reconnect']) {
  773. return false;
  774. }
  775. $info = [
  776. 'server has gone away',
  777. 'no connection to the server',
  778. 'Lost connection',
  779. 'is dead or not enabled',
  780. 'Error while sending',
  781. 'decryption failed or bad record mac',
  782. 'server closed the connection unexpectedly',
  783. 'SSL connection has been closed unexpectedly',
  784. 'Error writing data to the connection',
  785. 'Resource deadlock avoided',
  786. 'failed with errno',
  787. ];
  788. $error = $e->getMessage();
  789. foreach ($info as $msg) {
  790. if (false !== stripos($error, $msg)) {
  791. return true;
  792. }
  793. }
  794. return false;
  795. }
  796. /**
  797. * 获取最近一次查询的sql语句
  798. * @access public
  799. * @return string
  800. */
  801. public function getLastSql()
  802. {
  803. return $this->getRealSql($this->queryStr, $this->bind);
  804. }
  805. /**
  806. * 获取最近插入的ID
  807. * @access public
  808. * @param string $sequence 自增序列名
  809. * @return string
  810. */
  811. public function getLastInsID($sequence = null)
  812. {
  813. return $this->linkID->lastInsertId($sequence);
  814. }
  815. /**
  816. * 获取返回或者影响的记录数
  817. * @access public
  818. * @return integer
  819. */
  820. public function getNumRows()
  821. {
  822. return $this->numRows;
  823. }
  824. /**
  825. * 获取最近的错误信息
  826. * @access public
  827. * @return string
  828. */
  829. public function getError()
  830. {
  831. if ($this->PDOStatement) {
  832. $error = $this->PDOStatement->errorInfo();
  833. $error = $error[1] . ':' . $error[2];
  834. } else {
  835. $error = '';
  836. }
  837. if ('' != $this->queryStr) {
  838. $error .= "\n [ SQL语句 ] : " . $this->getLastsql();
  839. }
  840. return $error;
  841. }
  842. /**
  843. * SQL指令安全过滤
  844. * @access public
  845. * @param string $str SQL字符串
  846. * @param bool $master 是否主库查询
  847. * @return string
  848. */
  849. public function quote($str, $master = true)
  850. {
  851. $this->initConnect($master);
  852. return $this->linkID ? $this->linkID->quote($str) : $str;
  853. }
  854. /**
  855. * 数据库调试 记录当前SQL及分析性能
  856. * @access protected
  857. * @param boolean $start 调试开始标记 true 开始 false 结束
  858. * @param string $sql 执行的SQL语句 留空自动获取
  859. * @param boolean $master 主从标记
  860. * @return void
  861. */
  862. protected function debug($start, $sql = '', $master = false)
  863. {
  864. if (!empty($this->config['debug'])) {
  865. // 开启数据库调试模式
  866. if ($start) {
  867. Debug::remark('queryStartTime', 'time');
  868. } else {
  869. // 记录操作结束时间
  870. Debug::remark('queryEndTime', 'time');
  871. $runtime = Debug::getRangeTime('queryStartTime', 'queryEndTime');
  872. $sql = $sql ?: $this->getLastsql();
  873. $result = [];
  874. // SQL性能分析
  875. if ($this->config['sql_explain'] && 0 === stripos(trim($sql), 'select')) {
  876. $result = $this->getExplain($sql);
  877. }
  878. // SQL监听
  879. $this->trigger($sql, $runtime, $result, $master);
  880. }
  881. }
  882. }
  883. /**
  884. * 监听SQL执行
  885. * @access public
  886. * @param callable $callback 回调方法
  887. * @return void
  888. */
  889. public function listen($callback)
  890. {
  891. self::$event[] = $callback;
  892. }
  893. /**
  894. * 触发SQL事件
  895. * @access protected
  896. * @param string $sql SQL语句
  897. * @param float $runtime SQL运行时间
  898. * @param mixed $explain SQL分析
  899. * @param bool $master 主从标记
  900. * @return void
  901. */
  902. protected function trigger($sql, $runtime, $explain = [], $master = false)
  903. {
  904. if (!empty(self::$event)) {
  905. foreach (self::$event as $callback) {
  906. if (is_callable($callback)) {
  907. call_user_func_array($callback, [$sql, $runtime, $explain, $master]);
  908. }
  909. }
  910. } else {
  911. // 未注册监听则记录到日志中
  912. if ($this->config['deploy']) {
  913. // 分布式记录当前操作的主从
  914. $master = $master ? 'master|' : 'slave|';
  915. } else {
  916. $master = '';
  917. }
  918. Log::record('[ SQL ] ' . $sql . ' [ ' . $master . 'RunTime:' . $runtime . 's ]', 'sql');
  919. if (!empty($explain)) {
  920. Log::record('[ EXPLAIN : ' . var_export($explain, true) . ' ]', 'sql');
  921. }
  922. }
  923. }
  924. /**
  925. * 初始化数据库连接
  926. * @access protected
  927. * @param boolean $master 是否主服务器
  928. * @return void
  929. */
  930. protected function initConnect($master = true)
  931. {
  932. if (!empty($this->config['deploy'])) {
  933. // 采用分布式数据库
  934. if ($master || $this->transTimes) {
  935. if (!$this->linkWrite) {
  936. $this->linkWrite = $this->multiConnect(true);
  937. }
  938. $this->linkID = $this->linkWrite;
  939. } else {
  940. if (!$this->linkRead) {
  941. $this->linkRead = $this->multiConnect(false);
  942. }
  943. $this->linkID = $this->linkRead;
  944. }
  945. } elseif (!$this->linkID) {
  946. // 默认单数据库
  947. $this->linkID = $this->connect();
  948. }
  949. }
  950. /**
  951. * 连接分布式服务器
  952. * @access protected
  953. * @param boolean $master 主服务器
  954. * @return PDO
  955. */
  956. protected function multiConnect($master = false)
  957. {
  958. $_config = [];
  959. // 分布式数据库配置解析
  960. foreach (['username', 'password', 'hostname', 'hostport', 'database', 'dsn', 'charset'] as $name) {
  961. $_config[$name] = explode(',', $this->config[$name]);
  962. }
  963. // 主服务器序号
  964. $m = floor(mt_rand(0, $this->config['master_num'] - 1));
  965. if ($this->config['rw_separate']) {
  966. // 主从式采用读写分离
  967. if ($master) // 主服务器写入
  968. {
  969. $r = $m;
  970. } elseif (is_numeric($this->config['slave_no'])) {
  971. // 指定服务器读
  972. $r = $this->config['slave_no'];
  973. } else {
  974. // 读操作连接从服务器 每次随机连接的数据库
  975. $r = floor(mt_rand($this->config['master_num'], count($_config['hostname']) - 1));
  976. }
  977. } else {
  978. // 读写操作不区分服务器 每次随机连接的数据库
  979. $r = floor(mt_rand(0, count($_config['hostname']) - 1));
  980. }
  981. $dbMaster = false;
  982. if ($m != $r) {
  983. $dbMaster = [];
  984. foreach (['username', 'password', 'hostname', 'hostport', 'database', 'dsn', 'charset'] as $name) {
  985. $dbMaster[$name] = isset($_config[$name][$m]) ? $_config[$name][$m] : $_config[$name][0];
  986. }
  987. }
  988. $dbConfig = [];
  989. foreach (['username', 'password', 'hostname', 'hostport', 'database', 'dsn', 'charset'] as $name) {
  990. $dbConfig[$name] = isset($_config[$name][$r]) ? $_config[$name][$r] : $_config[$name][0];
  991. }
  992. return $this->connect($dbConfig, $r, $r == $m ? false : $dbMaster);
  993. }
  994. /**
  995. * 析构方法
  996. * @access public
  997. */
  998. public function __destruct()
  999. {
  1000. // 释放查询
  1001. if ($this->PDOStatement) {
  1002. $this->free();
  1003. }
  1004. // 关闭连接
  1005. $this->close();
  1006. }
  1007. }