| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |  * Check DB queries for filesorts and such and log em. | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |  * @package   SQLStatsPlugin | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Check DB queries for filesorts and such and log em. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |  * @package   SQLStatsPlugin | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | class SQLStatsPlugin extends Plugin | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-03 01:56:52 +01:00
										 |  |  |     const PLUGIN_VERSION = '2.0.0'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |     protected $queryCount = 0; | 
					
						
							|  |  |  |     protected $queryStart = 0; | 
					
						
							|  |  |  |     protected $queryTimes = array(); | 
					
						
							|  |  |  |     protected $queries    = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     public function onPluginVersion(array &$versions): bool | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $versions[] = array('name' => 'SQLStats', | 
					
						
							| 
									
										
										
										
											2019-06-03 01:56:52 +01:00
										 |  |  |                             'version' => self::PLUGIN_VERSION, | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |                             'author' => 'Evan Prodromou', | 
					
						
							| 
									
										
										
										
											2019-11-21 00:21:22 +00:00
										 |  |  |                             'homepage' => GNUSOCIAL_ENGINE_REPO_URL . 'tree/master/plugins/SQLStats', | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |                             'rawdescription' => | 
					
						
							| 
									
										
										
										
											2011-04-07 12:21:43 +02:00
										 |  |  |                             // TRANS: Plugin decription.
 | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |                             _m('Debug tool to watch for poorly indexed DB queries.')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |     public function onStartDBQuery($obj, $query, &$result) | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |         $this->queryStart = hrtime(true); | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |     public function onEndDBQuery($obj, $query, &$result) | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |         $endTime = hrtime(true); | 
					
						
							|  |  |  |         $this->queryTimes[] = round(($endTime - $this->queryStart) / 1000000); | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |         $this->queries[] = trim(preg_replace('/\s/', ' ', $query)); | 
					
						
							|  |  |  |         $this->queryStart = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |     public function cleanup() | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-04-10 18:32:09 -04:00
										 |  |  |         if (count($this->queryTimes) == 0) { | 
					
						
							|  |  |  |             $this->log(LOG_INFO, sprintf('0 queries this hit.')); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |             $this->log(LOG_INFO, sprintf( | 
					
						
							|  |  |  |                 '%d queries this hit (total = %d, avg = %d, max = %d, min = %d)', | 
					
						
							|  |  |  |                 count($this->queryTimes), | 
					
						
							|  |  |  |                 array_sum($this->queryTimes), | 
					
						
							|  |  |  |                 array_sum($this->queryTimes) / count($this->queryTimes), | 
					
						
							|  |  |  |                 max($this->queryTimes), | 
					
						
							|  |  |  |                 min($this->queryTimes) | 
					
						
							|  |  |  |             )); | 
					
						
							| 
									
										
										
										
											2011-04-10 18:32:09 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-06 22:46:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $verbose = common_config('sqlstats', 'verbose'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($verbose) { | 
					
						
							|  |  |  |             foreach ($this->queries as $query) { | 
					
						
							|  |  |  |                 $this->log(LOG_INFO, $query); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |