|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <?php
- /**
- * @link http://www.yiiframework.com/
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
-
- namespace yii\debug\panels;
-
- use Yii;
- use yii\debug\Panel;
- use yii\log\Logger;
- use yii\debug\models\search\Db;
-
- /**
- * Debugger panel that collects and displays database queries performed.
- *
- * @property array $profileLogs This property is read-only.
- * @property string $summaryName Short name of the panel, which will be use in summary. This property is
- * read-only.
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @since 2.0
- */
- class DbPanel extends Panel
- {
- /**
- * @var integer the threshold for determining whether the request has involved
- * critical number of DB queries. If the number of queries exceeds this number,
- * the execution is considered taking critical number of DB queries.
- */
- public $criticalQueryThreshold;
- /**
- * @var string the name of the database component to use for executing (explain) queries
- */
- public $db = 'db';
- /**
- * @var array the default ordering of the database queries. In the format of
- * [ property => sort direction ], for example: [ 'duration' => SORT_DESC ]
- * @since 2.0.7
- */
- public $defaultOrder = [
- 'seq' => SORT_ASC
- ];
- /**
- * @var array the default filter to apply to the database queries. In the format
- * of [ property => value ], for example: [ 'type' => 'SELECT' ]
- * @since 2.0.7
- */
- public $defaultFilter = [];
-
- /**
- * @var array db queries info extracted to array as models, to use with data provider.
- */
- private $_models;
- /**
- * @var array current database request timings
- */
- private $_timings;
-
-
- /**
- * @inheritdoc
- */
- public function init()
- {
- $this->actions['db-explain'] = [
- 'class' => 'yii\\debug\\actions\\db\\ExplainAction',
- 'panel' => $this,
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function getName()
- {
- return 'Database';
- }
-
- /**
- * @return string short name of the panel, which will be use in summary.
- */
- public function getSummaryName()
- {
- return 'DB';
- }
-
- /**
- * @inheritdoc
- */
- public function getSummary()
- {
- $timings = $this->calculateTimings();
- $queryCount = count($timings);
- $queryTime = number_format($this->getTotalQueryTime($timings) * 1000) . ' ms';
-
- return Yii::$app->view->render('panels/db/summary', [
- 'timings' => $this->calculateTimings(),
- 'panel' => $this,
- 'queryCount' => $queryCount,
- 'queryTime' => $queryTime,
- ]);
- }
-
- /**
- * @inheritdoc
- */
- public function getDetail()
- {
- $searchModel = new Db();
-
- if (!$searchModel->load(Yii::$app->request->getQueryParams())) {
- $searchModel->load($this->defaultFilter, '');
- }
-
- $dataProvider = $searchModel->search($this->getModels());
- $dataProvider->getSort()->defaultOrder = $this->defaultOrder;
-
- return Yii::$app->view->render('panels/db/detail', [
- 'panel' => $this,
- 'dataProvider' => $dataProvider,
- 'searchModel' => $searchModel,
- 'hasExplain' => $this->hasExplain()
- ]);
- }
-
- /**
- * Calculates given request profile timings.
- *
- * @return array timings [token, category, timestamp, traces, nesting level, elapsed time]
- */
- public function calculateTimings()
- {
- if ($this->_timings === null) {
- $this->_timings = Yii::getLogger()->calculateTimings(isset($this->data['messages']) ? $this->data['messages'] : []);
- }
-
- return $this->_timings;
- }
-
- /**
- * @inheritdoc
- */
- public function save()
- {
- return ['messages' => $this->getProfileLogs()];
- }
-
- /**
- * Returns all profile logs of the current request for this panel. It includes categories such as:
- * 'yii\db\Command::query', 'yii\db\Command::execute'.
- * @return array
- */
- public function getProfileLogs()
- {
- $target = $this->module->logTarget;
-
- return $target->filterMessages($target->messages, Logger::LEVEL_PROFILE, ['yii\db\Command::query', 'yii\db\Command::execute']);
- }
-
- /**
- * Returns total query time.
- *
- * @param array $timings
- * @return int total time
- */
- protected function getTotalQueryTime($timings)
- {
- $queryTime = 0;
-
- foreach ($timings as $timing) {
- $queryTime += $timing['duration'];
- }
-
- return $queryTime;
- }
-
- /**
- * Returns an array of models that represents logs of the current request.
- * Can be used with data providers such as \yii\data\ArrayDataProvider.
- * @return array models
- */
- protected function getModels()
- {
- if ($this->_models === null) {
- $this->_models = [];
- $timings = $this->calculateTimings();
-
- foreach ($timings as $seq => $dbTiming) {
- $this->_models[] = [
- 'type' => $this->getQueryType($dbTiming['info']),
- 'query' => $dbTiming['info'],
- 'duration' => ($dbTiming['duration'] * 1000), // in milliseconds
- 'trace' => $dbTiming['trace'],
- 'timestamp' => ($dbTiming['timestamp'] * 1000), // in milliseconds
- 'seq' => $seq,
- ];
- }
- }
-
- return $this->_models;
- }
-
- /**
- * Returns database query type.
- *
- * @param string $timing timing procedure string
- * @return string query type such as select, insert, delete, etc.
- */
- protected function getQueryType($timing)
- {
- $timing = ltrim($timing);
- preg_match('/^([a-zA-z]*)/', $timing, $matches);
-
- return count($matches) ? mb_strtoupper($matches[0], 'utf8') : '';
- }
-
- /**
- * Check if given queries count is critical according settings.
- *
- * @param int $count queries count
- * @return bool
- */
- public function isQueryCountCritical($count)
- {
- return (($this->criticalQueryThreshold !== null) && ($count > $this->criticalQueryThreshold));
- }
-
- /**
- * Returns array query types
- *
- * @return array
- * @since 2.0.3
- */
- public function getTypes()
- {
- return array_reduce(
- $this->_models,
- function ($result, $item) {
- $result[$item['type']] = $item['type'];
- return $result;
- },
- []
- );
- }
-
- /**
- * @return bool Whether the DB component has support for EXPLAIN queries
- * @since 2.0.5
- */
- protected function hasExplain()
- {
- $db = $this->getDb();
- if (!($db instanceof \yii\db\Connection)) {
- return false;
- }
- switch ($db->getDriverName()) {
- case 'mysql':
- case 'sqlite':
- case 'pgsql':
- case 'cubrid':
- return true;
- default:
- return false;
- }
- }
-
- /**
- * Check if given query type can be explained.
- *
- * @param string $type query type
- * @return bool
- *
- * @since 2.0.5
- */
- public static function canBeExplained($type)
- {
- return $type !== 'SHOW';
- }
-
- /**
- * Returns a reference to the DB component associated with the panel
- *
- * @return \yii\db\Connection
- * @since 2.0.5
- */
- public function getDb()
- {
- return Yii::$app->get($this->db);
- }
- }
|