Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like db_mysql often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use db_mysql, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 6 | class db_mysql { |
||
| 7 | const TRANSACTION_SERIALIZABLE = 'SERIALIZABLE'; |
||
| 8 | const TRANSACTION_REPEATABLE_READ = 'REPEATABLE READ'; |
||
| 9 | const TRANSACTION_READ_COMMITTED = 'READ COMMITTED'; |
||
| 10 | const TRANSACTION_READ_UNCOMMITTED = 'READ UNCOMMITTED'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Статус соеднения с MySQL |
||
| 14 | * |
||
| 15 | * @var bool |
||
| 16 | */ |
||
| 17 | public $connected = false; |
||
| 18 | /** |
||
| 19 | * Префикс названий таблиц в БД |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | public $db_prefix = ''; |
||
| 24 | /** |
||
| 25 | * Список таблиц в БД |
||
| 26 | * |
||
| 27 | * @var array |
||
| 28 | */ |
||
| 29 | public $table_list = array(); |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Настройки БД |
||
| 33 | * |
||
| 34 | * @var array |
||
| 35 | */ |
||
| 36 | protected $dbsettings = array(); |
||
| 37 | /** |
||
| 38 | * Драйвер для прямого обращения к MySQL |
||
| 39 | * |
||
| 40 | * @var db_mysql_v5 $driver |
||
| 41 | */ |
||
| 42 | public $driver = null; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Общее время запросов |
||
| 46 | * |
||
| 47 | * @var float $time_mysql_total |
||
| 48 | */ |
||
| 49 | public $time_mysql_total = 0.0; |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Amount of queries on this DB |
||
| 53 | * |
||
| 54 | * @var int |
||
| 55 | */ |
||
| 56 | public $queryCount = 0; |
||
| 57 | |||
| 58 | public $isWatching = false; |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @var \DBAL\DbTransaction $transaction |
||
| 62 | */ |
||
| 63 | protected $transaction; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Should query check be skipped? |
||
| 67 | * |
||
| 68 | * Used for altering sheme of DB |
||
| 69 | * |
||
| 70 | * @var bool $skipQueryCheck |
||
| 71 | */ |
||
| 72 | protected $skipQueryCheck = false; |
||
| 73 | |||
| 74 | /** |
||
| 75 | * db_mysql constructor. |
||
| 76 | * |
||
| 77 | * @param \Common\GlobalContainer $gc |
||
| 78 | */ |
||
| 79 | public function __construct($gc) { |
||
|
|
|||
| 80 | $this->transaction = new \DBAL\DbTransaction($this); |
||
| 81 | } |
||
| 82 | |||
| 83 | public function load_db_settings($configFile = '') { |
||
| 84 | $dbsettings = array(); |
||
| 85 | |||
| 86 | empty($configFile) ? $configFile = SN_ROOT_PHYSICAL . "config" . DOT_PHP_EX : false; |
||
| 87 | |||
| 88 | require $configFile; |
||
| 89 | |||
| 90 | $this->dbsettings = $dbsettings; |
||
| 91 | } |
||
| 92 | |||
| 93 | /** |
||
| 94 | * @param null|array $external_db_settings |
||
| 95 | * |
||
| 96 | * @return bool |
||
| 97 | */ |
||
| 98 | public function sn_db_connect($external_db_settings = null) { |
||
| 99 | $this->db_disconnect(); |
||
| 100 | |||
| 101 | if (!empty($external_db_settings) && is_array($external_db_settings)) { |
||
| 102 | $this->dbsettings = $external_db_settings; |
||
| 103 | } |
||
| 104 | |||
| 105 | if (empty($this->dbsettings)) { |
||
| 106 | $this->load_db_settings(SN_ROOT_PHYSICAL . "config" . DOT_PHP_EX); |
||
| 107 | } |
||
| 108 | |||
| 109 | // TODO - фатальные (?) ошибки на каждом шагу. Хотя - скорее Эксепшны |
||
| 110 | if (!empty($this->dbsettings)) { |
||
| 111 | $driver_name = empty($this->dbsettings['sn_driver']) ? 'db_mysql_v5' : $this->dbsettings['sn_driver']; |
||
| 112 | $this->driver = new $driver_name(); |
||
| 113 | $this->db_prefix = $this->dbsettings['prefix']; |
||
| 114 | |||
| 115 | $this->connected = $this->connected || $this->driver_connect(); |
||
| 116 | |||
| 117 | if ($this->connected) { |
||
| 118 | $this->table_list = $this->db_get_table_list(); |
||
| 119 | // TODO Проверка на пустоту |
||
| 120 | } |
||
| 121 | } else { |
||
| 122 | $this->connected = false; |
||
| 123 | } |
||
| 124 | |||
| 125 | return $this->connected; |
||
| 126 | } |
||
| 127 | |||
| 128 | protected function driver_connect() { |
||
| 129 | if (!is_object($this->driver)) { |
||
| 130 | classSupernova::$debug->error_fatal('DB Error - No driver for MySQL found!'); |
||
| 131 | } |
||
| 132 | |||
| 133 | if (!method_exists($this->driver, 'mysql_connect')) { |
||
| 134 | classSupernova::$debug->error_fatal('DB Error - WRONG MySQL driver!'); |
||
| 135 | } |
||
| 136 | |||
| 137 | return $this->driver->mysql_connect($this->dbsettings); |
||
| 138 | } |
||
| 139 | |||
| 140 | public function db_disconnect() { |
||
| 141 | if ($this->connected) { |
||
| 142 | $this->connected = !$this->driver_disconnect(); |
||
| 143 | $this->connected = false; |
||
| 144 | } |
||
| 145 | |||
| 146 | return !$this->connected; |
||
| 147 | } |
||
| 148 | |||
| 149 | /** |
||
| 150 | * @param string $query |
||
| 151 | * |
||
| 152 | * @return mixed|string |
||
| 153 | */ |
||
| 154 | public function replaceTablePlaceholders($query) { |
||
| 155 | $sql = $query; |
||
| 156 | if (strpos($sql, '{{') !== false) { |
||
| 157 | foreach ($this->table_list as $tableName) { |
||
| 158 | $sql = str_replace("{{{$tableName}}}", $this->db_prefix . $tableName, $sql); |
||
| 159 | } |
||
| 160 | } |
||
| 161 | |||
| 162 | return $sql; |
||
| 163 | } |
||
| 164 | |||
| 165 | /** |
||
| 166 | * @param $query |
||
| 167 | */ |
||
| 168 | protected function logQuery($query) { |
||
| 169 | if (!classSupernova::$config->debug) { |
||
| 170 | return; |
||
| 171 | } |
||
| 172 | |||
| 173 | $this->queryCount++; |
||
| 174 | $arr = debug_backtrace(); |
||
| 175 | $file = end(explode('/', $arr[0]['file'])); |
||
| 176 | $line = $arr[0]['line']; |
||
| 177 | classSupernova::$debug->add("<tr><th>Query {$this->queryCount}: </th><th>$query</th><th>{$file} @ {$line}</th><th> </th></tr>"); |
||
| 178 | } |
||
| 179 | |||
| 180 | |||
| 181 | /** |
||
| 182 | * @return string |
||
| 183 | */ |
||
| 184 | public function queryTrace() { |
||
| 185 | if (!defined('DEBUG_SQL_COMMENT') || constant('DEBUG_SQL_ERROR') !== true) { |
||
| 186 | return ''; |
||
| 187 | } |
||
| 188 | |||
| 189 | $backtrace = debug_backtrace(); |
||
| 190 | $sql_comment = classSupernova::$debug->compact_backtrace($backtrace, defined('DEBUG_SQL_COMMENT_LONG')); |
||
| 191 | |||
| 192 | if (defined('DEBUG_SQL_ERROR') && constant('DEBUG_SQL_ERROR') === true) { |
||
| 193 | classSupernova::$debug->add_to_array($sql_comment); |
||
| 194 | } |
||
| 195 | |||
| 196 | $sql_commented = implode("\r\n", $sql_comment); |
||
| 197 | if (defined('DEBUG_SQL_ONLINE') && constant('DEBUG_SQL_ONLINE') === true) { |
||
| 198 | classSupernova::$debug->warning($sql_commented, 'SQL Debug', LOG_DEBUG_SQL); |
||
| 199 | } |
||
| 200 | |||
| 201 | return $sql_commented; |
||
| 202 | } |
||
| 203 | |||
| 204 | /** |
||
| 205 | * @param string $query |
||
| 206 | * |
||
| 207 | * @return array|bool|mysqli_result|null |
||
| 208 | * @internal param bool $skip_query_check |
||
| 209 | * |
||
| 210 | */ |
||
| 211 | protected function doquery($query) { |
||
| 212 | if (!$this->connected) { |
||
| 213 | $this->sn_db_connect(); |
||
| 214 | } |
||
| 215 | |||
| 216 | $stringQuery = $query; |
||
| 217 | $stringQuery = trim($stringQuery); |
||
| 218 | // You can't do it - 'cause you can break commented statement with line-end comments |
||
| 219 | // $stringQuery = preg_replace("/\s+/", ' ', $stringQuery); |
||
| 220 | |||
| 221 | $this->security_watch_user_queries($stringQuery); |
||
| 222 | $this->security_query_check_bad_words($stringQuery); |
||
| 223 | $this->logQuery($stringQuery); |
||
| 224 | |||
| 225 | $stringQuery = $this->replaceTablePlaceholders($stringQuery); |
||
| 226 | |||
| 227 | $queryTrace = $this->queryTrace(); |
||
| 228 | |||
| 229 | $queryResult = null; |
||
| 230 | try { |
||
| 231 | $queryResult = $this->db_sql_query($stringQuery . DbSqlHelper::quoteComment($queryTrace)); |
||
| 232 | if (!$queryResult) { |
||
| 233 | throw new Exception(); |
||
| 234 | } |
||
| 235 | } catch (Exception $e) { |
||
| 236 | classSupernova::$debug->error($this->db_error() . "<br />{$query}<br />", 'SQL Error'); |
||
| 237 | } |
||
| 238 | |||
| 239 | return $queryResult; |
||
| 240 | } |
||
| 241 | |||
| 242 | |||
| 243 | // Just wrappers to distinguish query types |
||
| 244 | /** |
||
| 245 | * Executes non-data manipulation statements |
||
| 246 | * |
||
| 247 | * Can execute queries with check skip |
||
| 248 | * Honor current state of query checking |
||
| 249 | * |
||
| 250 | * @param string $query |
||
| 251 | * @param bool $skip_query_check |
||
| 252 | * |
||
| 253 | * @return array|bool|mysqli_result|null |
||
| 254 | */ |
||
| 255 | public function doExecute($query, $skip_query_check = false) { |
||
| 256 | $prevState = false; |
||
| 257 | if ($skip_query_check) { |
||
| 258 | $prevState = $this->skipQueryCheck; |
||
| 259 | $this->skipQueryCheck = true; |
||
| 260 | } |
||
| 261 | $result = $this->doquery($query); |
||
| 262 | if ($skip_query_check) { |
||
| 263 | $this->skipQueryCheck = $prevState; |
||
| 264 | } |
||
| 265 | |||
| 266 | return $result; |
||
| 267 | } |
||
| 268 | |||
| 269 | |||
| 270 | public function doSelect($query) { |
||
| 271 | return $this->doExecute($query); |
||
| 272 | } |
||
| 273 | |||
| 274 | /** |
||
| 275 | * @param string $query |
||
| 276 | * |
||
| 277 | * @return array|null |
||
| 278 | */ |
||
| 279 | public function doSelectFetch($query) { |
||
| 282 | |||
| 283 | /** |
||
| 284 | * @param string $query |
||
| 285 | * |
||
| 286 | * @return mixed|null |
||
| 287 | */ |
||
| 288 | public function doSelectFetchValue($query) { |
||
| 289 | $row = $this->doSelectFetch($query); |
||
| 290 | |||
| 291 | return is_array($row) ? reset($row) : null; |
||
| 292 | } |
||
| 293 | |||
| 294 | |||
| 295 | public function doInsert($query) { |
||
| 296 | return $this->doExecute($query); |
||
| 297 | } |
||
| 298 | |||
| 299 | public function doReplace($query) { |
||
| 300 | return $this->doExecute($query); |
||
| 301 | } |
||
| 302 | |||
| 303 | |||
| 304 | public function doUpdate($query) { |
||
| 305 | return $this->doExecute($query); |
||
| 306 | } |
||
| 307 | |||
| 308 | |||
| 309 | public function doDelete($query) { |
||
| 310 | return $this->doExecute($query); |
||
| 311 | } |
||
| 312 | |||
| 313 | public function doDeleteRow($query) { |
||
| 314 | return $this->doExecute($query); |
||
| 315 | } |
||
| 316 | |||
| 317 | |||
| 318 | /** |
||
| 319 | * Returns iterator to iterate through mysqli_result |
||
| 320 | * |
||
| 321 | * @param string $query |
||
| 322 | * |
||
| 323 | * return DbResultIterator |
||
| 324 | * |
||
| 325 | * @return DbEmptyIterator|DbMysqliResultIterator |
||
| 326 | */ |
||
| 327 | public function doSelectIterator($query) { |
||
| 328 | $queryResult = $this->doSelect($query); |
||
| 329 | |||
| 330 | if ($queryResult instanceof mysqli_result) { |
||
| 331 | $result = new DbMysqliResultIterator($queryResult); |
||
| 332 | } else { |
||
| 333 | $result = new DbEmptyIterator(); |
||
| 334 | } |
||
| 335 | |||
| 336 | return $result; |
||
| 337 | } |
||
| 338 | |||
| 339 | /** |
||
| 340 | * @param DbQueryConstructor $stmt |
||
| 341 | * @param bool $skip_query_check |
||
| 342 | */ |
||
| 343 | public function doStmtLockAll($stmt, $skip_query_check = false) { |
||
| 353 | |||
| 354 | // TODO Заменить это на новый логгер |
||
| 355 | protected function security_watch_user_queries($query) { |
||
| 356 | global $user; |
||
| 357 | |||
| 358 | if ( |
||
| 359 | !$this->isWatching // Not already watching |
||
| 360 | && !empty(classSupernova::$config->game_watchlist_array) // There is some players in watchlist |
||
| 361 | && in_array($user['id'], classSupernova::$config->game_watchlist_array) // Current player is in watchlist |
||
| 362 | && !preg_match('/^(select|commit|rollback|start transaction)/i', $query) // Current query should be watched |
||
| 363 | ) { |
||
| 364 | $this->isWatching = true; |
||
| 365 | $msg = "\$query = \"{$query}\"\n\r"; |
||
| 366 | if (!empty($_POST)) { |
||
| 367 | $msg .= "\n\r" . dump($_POST, '$_POST'); |
||
| 368 | } |
||
| 369 | if (!empty($_GET)) { |
||
| 370 | $msg .= "\n\r" . dump($_GET, '$_GET'); |
||
| 371 | } |
||
| 372 | classSupernova::$debug->warning($msg, "Watching user {$user['id']}", 399, array('base_dump' => true)); |
||
| 373 | $this->isWatching = false; |
||
| 374 | } |
||
| 375 | } |
||
| 376 | |||
| 377 | |||
| 378 | public function security_query_check_bad_words($query) { |
||
| 379 | if ($this->skipQueryCheck) { |
||
| 380 | return; |
||
| 381 | } |
||
| 382 | |||
| 383 | global $user, $dm_change_legit, $mm_change_legit; |
||
| 384 | |||
| 385 | switch (true) { |
||
| 386 | case stripos($query, 'RUNCATE TABL') != false: |
||
| 387 | case stripos($query, 'ROP TABL') != false: |
||
| 388 | case stripos($query, 'ENAME TABL') != false: |
||
| 389 | case stripos($query, 'REATE DATABAS') != false: |
||
| 390 | case stripos($query, 'REATE TABL') != false: |
||
| 391 | case stripos($query, 'ET PASSWOR') != false: |
||
| 392 | case stripos($query, 'EOAD DAT') != false: |
||
| 393 | case stripos($query, 'RPG_POINTS') != false && stripos(trim($query), 'UPDATE ') === 0 && !$dm_change_legit: |
||
| 394 | case stripos($query, 'METAMATTER') != false && stripos(trim($query), 'UPDATE ') === 0 && !$mm_change_legit: |
||
| 395 | case stripos($query, 'AUTHLEVEL') != false && $user['authlevel'] < 3 && stripos($query, 'SELECT') !== 0: |
||
| 396 | $report = "Hacking attempt (" . date("d.m.Y H:i:s") . " - [" . time() . "]):\n"; |
||
| 397 | $report .= ">Database Inforamation\n"; |
||
| 398 | $report .= "\tID - " . $user['id'] . "\n"; |
||
| 399 | $report .= "\tUser - " . $user['username'] . "\n"; |
||
| 400 | $report .= "\tAuth level - " . $user['authlevel'] . "\n"; |
||
| 401 | $report .= "\tAdmin Notes - " . $user['adminNotes'] . "\n"; |
||
| 402 | $report .= "\tCurrent Planet - " . $user['current_planet'] . "\n"; |
||
| 403 | $report .= "\tUser IP - " . $user['user_lastip'] . "\n"; |
||
| 404 | $report .= "\tUser IP at Reg - " . $user['ip_at_reg'] . "\n"; |
||
| 405 | $report .= "\tUser Agent- " . $_SERVER['HTTP_USER_AGENT'] . "\n"; |
||
| 406 | $report .= "\tCurrent Page - " . $user['current_page'] . "\n"; |
||
| 407 | $report .= "\tRegister Time - " . $user['register_time'] . "\n"; |
||
| 408 | $report .= "\n"; |
||
| 409 | |||
| 410 | $report .= ">Query Information\n"; |
||
| 411 | $report .= "\tQuery - " . $query . "\n"; |
||
| 412 | $report .= "\n"; |
||
| 413 | |||
| 414 | $report .= ">\$_SERVER Information\n"; |
||
| 415 | $report .= "\tIP - " . $_SERVER['REMOTE_ADDR'] . "\n"; |
||
| 416 | $report .= "\tHost Name - " . $_SERVER['HTTP_HOST'] . "\n"; |
||
| 417 | $report .= "\tUser Agent - " . $_SERVER['HTTP_USER_AGENT'] . "\n"; |
||
| 418 | $report .= "\tRequest Method - " . $_SERVER['REQUEST_METHOD'] . "\n"; |
||
| 419 | $report .= "\tCame From - " . $_SERVER['HTTP_REFERER'] . "\n"; |
||
| 420 | $report .= "\tPage is - " . $_SERVER['SCRIPT_NAME'] . "\n"; |
||
| 421 | $report .= "\tUses Port - " . $_SERVER['REMOTE_PORT'] . "\n"; |
||
| 422 | $report .= "\tServer Protocol - " . $_SERVER['SERVER_PROTOCOL'] . "\n"; |
||
| 423 | |||
| 424 | $report .= "\n--------------------------------------------------------------------------------------------------\n"; |
||
| 425 | |||
| 426 | $fp = fopen(SN_ROOT_PHYSICAL . 'badqrys.txt', 'a'); |
||
| 427 | fwrite($fp, $report); |
||
| 428 | fclose($fp); |
||
| 429 | |||
| 430 | $message = 'Привет, я не знаю то, что Вы пробовали сделать, но команда, которую Вы только послали базе данных, не выглядела очень дружественной и она была заблокированна.<br /><br />Ваш IP, и другие данные переданны администрации сервера. Удачи!.'; |
||
| 431 | die($message); |
||
| 432 | break; |
||
| 433 | } |
||
| 434 | } |
||
| 435 | |||
| 436 | /** |
||
| 437 | * @param bool $prefixed_only |
||
| 438 | * |
||
| 439 | * @return array |
||
| 440 | */ |
||
| 441 | public function db_get_table_list($prefixed_only = true) { |
||
| 442 | $query = $this->mysql_get_table_list(); |
||
| 443 | |||
| 444 | $prefix_length = strlen($this->db_prefix); |
||
| 445 | |||
| 446 | $tl = array(); |
||
| 447 | while ($row = $this->db_fetch($query)) { |
||
| 448 | foreach ($row as $table_name) { |
||
| 449 | if (strpos($table_name, $this->db_prefix) === 0) { |
||
| 450 | $table_name = substr($table_name, $prefix_length); |
||
| 451 | } elseif ($prefixed_only) { |
||
| 452 | continue; |
||
| 453 | } |
||
| 454 | // $table_name = str_replace($db_prefix, '', $table_name); |
||
| 455 | $tl[$table_name] = $table_name; |
||
| 456 | } |
||
| 457 | } |
||
| 458 | |||
| 459 | return $tl; |
||
| 460 | } |
||
| 461 | |||
| 462 | /** |
||
| 463 | * @param string $statement |
||
| 464 | * |
||
| 465 | * @return bool|mysqli_stmt |
||
| 466 | */ |
||
| 467 | View Code Duplication | public function db_prepare($statement) { |
|
| 468 | $microtime = microtime(true); |
||
| 469 | $result = $this->driver->mysql_prepare($statement); |
||
| 470 | $this->time_mysql_total += microtime(true) - $microtime; |
||
| 471 | |||
| 472 | return $result; |
||
| 473 | } |
||
| 474 | |||
| 475 | |||
| 476 | /** |
||
| 477 | * L1 perform the query |
||
| 478 | * |
||
| 479 | * @param $query_string |
||
| 480 | * |
||
| 481 | * @return bool|mysqli_result |
||
| 482 | */ |
||
| 483 | View Code Duplication | public function db_sql_query($query_string) { |
|
| 484 | $microtime = microtime(true); |
||
| 485 | $result = $this->driver->mysql_query($query_string); |
||
| 486 | $this->time_mysql_total += microtime(true) - $microtime; |
||
| 487 | |||
| 488 | return $result; |
||
| 489 | } |
||
| 490 | |||
| 491 | /** |
||
| 492 | * L1 fetch assoc array |
||
| 493 | * |
||
| 494 | * @param mysqli_result $query |
||
| 495 | * |
||
| 496 | * @return array|null |
||
| 497 | */ |
||
| 498 | View Code Duplication | public function db_fetch(&$query) { |
|
| 499 | $microtime = microtime(true); |
||
| 500 | $result = $this->driver->mysql_fetch_assoc($query); |
||
| 501 | $this->time_mysql_total += microtime(true) - $microtime; |
||
| 502 | |||
| 503 | return $result; |
||
| 504 | } |
||
| 505 | |||
| 506 | public function db_fetch_row(&$query) { |
||
| 509 | |||
| 510 | public function db_escape($unescaped_string) { |
||
| 511 | return $this->driver->mysql_real_escape_string($unescaped_string); |
||
| 512 | } |
||
| 513 | |||
| 514 | public function driver_disconnect() { |
||
| 515 | return $this->driver->mysql_close_link(); |
||
| 516 | } |
||
| 517 | |||
| 518 | public function db_error() { |
||
| 519 | return $this->driver->mysql_error(); |
||
| 520 | } |
||
| 521 | |||
| 522 | public function db_insert_id() { |
||
| 523 | return $this->driver->mysql_insert_id(); |
||
| 524 | } |
||
| 525 | |||
| 526 | public function db_num_rows(&$result) { |
||
| 527 | return $this->driver->mysql_num_rows($result); |
||
| 528 | } |
||
| 529 | |||
| 530 | public function db_affected_rows() { |
||
| 531 | return $this->driver->mysql_affected_rows(); |
||
| 532 | } |
||
| 533 | |||
| 534 | /** |
||
| 535 | * @return string |
||
| 536 | */ |
||
| 537 | public function db_get_client_info() { |
||
| 540 | |||
| 541 | /** |
||
| 542 | * @return string |
||
| 543 | */ |
||
| 544 | public function db_get_server_info() { |
||
| 547 | |||
| 548 | /** |
||
| 549 | * @return string |
||
| 550 | */ |
||
| 551 | public function db_get_host_info() { |
||
| 554 | |||
| 555 | public function db_get_server_stat() { |
||
| 566 | |||
| 567 | /** |
||
| 568 | * @return array |
||
| 569 | * @throws Exception |
||
| 570 | */ |
||
| 571 | public function db_core_show_status() { |
||
| 584 | |||
| 585 | public function mysql_get_table_list() { |
||
| 588 | |||
| 589 | public function mysql_get_innodb_status() { |
||
| 592 | |||
| 593 | /** |
||
| 594 | * @return \DBAL\DbTransaction |
||
| 595 | */ |
||
| 596 | public function getTransaction() { |
||
| 599 | |||
| 600 | // Some wrappers to DbTransaction |
||
| 601 | // Unused for now |
||
| 602 | public function transactionCheck($status = null) { |
||
| 605 | |||
| 606 | public function transactionStart($level = '') { |
||
| 609 | |||
| 610 | public function transactionCommit() { |
||
| 613 | |||
| 614 | public function transactionRollback() { |
||
| 617 | |||
| 618 | } |
||
| 619 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.