blob: 1e86f3c61a930864f3fc4c4fe20285876e0c9a45 [file] [log] [blame]
Andrey Andreev195d3112011-12-25 03:59:13 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev195d3112011-12-25 03:59:13 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev195d3112011-12-25 03:59:13 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * CodeIgniter Profiler Class
30 *
31 * This class enables you to display benchmark, query, and other data
32 * in order to help with debugging and optimization.
33 *
34 * Note: At some point it would be good to move all the HTML in this class
35 * into a set of template files in order to allow customization.
36 *
37 * @package CodeIgniter
38 * @subpackage Libraries
39 * @category Libraries
Derek Jonesf4a4bd82011-10-20 12:18:42 -050040 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000041 * @link http://codeigniter.com/user_guide/general/profiling.html
42 */
43class CI_Profiler {
44
Timothy Warren0688ac92012-04-20 10:25:04 -040045 /**
46 * List of profiler sections available to show
47 *
48 * @var array
49 */
Greg Aker5ac55942010-11-10 14:59:47 -060050 protected $_available_sections = array(
Timothy Warren0688ac92012-04-20 10:25:04 -040051 'benchmarks',
52 'get',
53 'memory_usage',
54 'post',
55 'uri_string',
56 'controller_info',
57 'queries',
58 'http_headers',
59 'session_data',
60 'config'
61 );
Razicanc24f49b2011-04-25 13:43:57 +020062
Timothy Warren0688ac92012-04-20 10:25:04 -040063 /**
64 * Number of queries to show before making the additional queries togglable
65 *
66 * @var int
67 */
Greg Akere6e6e642011-04-18 15:54:13 -050068 protected $_query_toggle_count = 25;
Razicanc24f49b2011-04-25 13:43:57 +020069
Timothy Warren0688ac92012-04-20 10:25:04 -040070 /**
71 * Reference to the CodeIgniter singleton
72 *
73 * @var object
74 */
Razicanc24f49b2011-04-25 13:43:57 +020075 protected $CI;
Derek Jonesee71c802010-03-10 10:05:05 -060076
Timothy Warren0688ac92012-04-20 10:25:04 -040077 /**
78 * Constructor
79 *
80 * Initialize Profiler
81 *
82 * @param array $config
83 */
Greg Aker5ac55942010-11-10 14:59:47 -060084 public function __construct($config = array())
Barry Mienydd671972010-10-04 16:33:58 +020085 {
86 $this->CI =& get_instance();
87 $this->CI->load->language('profiler');
88
Greg Akere6e6e642011-04-18 15:54:13 -050089 if (isset($config['query_toggle_count']))
90 {
91 $this->_query_toggle_count = (int) $config['query_toggle_count'];
92 unset($config['query_toggle_count']);
93 }
94
Derek Jonesee71c802010-03-10 10:05:05 -060095 // default all sections to display
96 foreach ($this->_available_sections as $section)
97 {
98 if ( ! isset($config[$section]))
99 {
100 $this->_compile_{$section} = TRUE;
101 }
102 }
Barry Mienydd671972010-10-04 16:33:58 +0200103
Derek Jonesee71c802010-03-10 10:05:05 -0600104 $this->set_sections($config);
Barry Mienydd671972010-10-04 16:33:58 +0200105 }
106
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 // --------------------------------------------------------------------
108
109 /**
Derek Jonesee71c802010-03-10 10:05:05 -0600110 * Set Sections
111 *
112 * Sets the private _compile_* properties to enable/disable Profiler sections
113 *
Derek Jonesee71c802010-03-10 10:05:05 -0600114 * @param mixed
115 * @return void
116 */
Greg Aker5ac55942010-11-10 14:59:47 -0600117 public function set_sections($config)
Derek Jonesee71c802010-03-10 10:05:05 -0600118 {
119 foreach ($config as $method => $enable)
120 {
121 if (in_array($method, $this->_available_sections))
122 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300123 $this->_compile_{$method} = ($enable !== FALSE);
Derek Jonesee71c802010-03-10 10:05:05 -0600124 }
125 }
126 }
127
128 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200129
Derek Jonesee71c802010-03-10 10:05:05 -0600130 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000131 * Auto Profiler
132 *
133 * This function cycles through the entire array of mark points and
134 * matches any two points that are named identically (ending in "_start"
Derek Jones4b9c6292011-07-01 17:40:48 -0500135 * and "_end" respectively). It then compiles the execution times for
Derek Allard2067d1a2008-11-13 22:59:24 +0000136 * all points and returns it as an array
Greg Aker5ac55942010-11-10 14:59:47 -0600137 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 * @return array
139 */
Greg Aker5ac55942010-11-10 14:59:47 -0600140 protected function _compile_benchmarks()
Barry Mienydd671972010-10-04 16:33:58 +0200141 {
142 $profile = array();
143 foreach ($this->CI->benchmark->marker as $key => $val)
144 {
145 // We match the "end" marker so that the list ends
146 // up in the order that it was defined
Andrey Andreev195d3112011-12-25 03:59:13 +0200147 if (preg_match('/(.+?)_end/i', $key, $match)
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300148 && isset($this->CI->benchmark->marker[$match[1].'_end'], $this->CI->benchmark->marker[$match[1].'_start']))
Barry Mienydd671972010-10-04 16:33:58 +0200149 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200150 $profile[$match[1]] = $this->CI->benchmark->elapsed_time($match[1].'_start', $key);
Barry Mienydd671972010-10-04 16:33:58 +0200151 }
152 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000153
154 // Build a table containing the profile data.
155 // Note: At some point we should turn this into a template that can
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300156 // be modified. We also might want to make this data available to be logged
Barry Mienydd671972010-10-04 16:33:58 +0200157
Andrey Andreev195d3112011-12-25 03:59:13 +0200158 $output = "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300159 .'<fieldset id="ci_profiler_benchmarks" style="border:1px solid #900;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
160 ."\n"
161 .'<legend style="color:#900;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_benchmarks')."&nbsp;&nbsp;</legend>"
162 ."\n\n\n<table style=\"width:100%;\">\n";
Barry Mienydd671972010-10-04 16:33:58 +0200163
Derek Allard2067d1a2008-11-13 22:59:24 +0000164 foreach ($profile as $key => $val)
165 {
166 $key = ucwords(str_replace(array('_', '-'), ' ', $key));
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300167 $output .= '<tr><td style="padding:5px;width:50%;color:#000;font-weight:bold;background-color:#ddd;">'
168 .$key.'&nbsp;&nbsp;</td><td style="padding:5px;width:50%;color:#900;font-weight:normal;background-color:#ddd;">'
169 .$val."</td></tr>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 }
Barry Mienydd671972010-10-04 16:33:58 +0200171
Andrey Andreev195d3112011-12-25 03:59:13 +0200172 return $output."</table>\n</fieldset>";
Barry Mienydd671972010-10-04 16:33:58 +0200173 }
174
Derek Allard2067d1a2008-11-13 22:59:24 +0000175 // --------------------------------------------------------------------
176
177 /**
178 * Compile Queries
179 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000180 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200181 */
Greg Aker5ac55942010-11-10 14:59:47 -0600182 protected function _compile_queries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000183 {
184 $dbs = array();
Derek Jonesf0a9b332009-07-29 14:19:18 +0000185
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 // Let's determine which databases are currently connected to
187 foreach (get_object_vars($this->CI) as $CI_object)
188 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300189 if (is_object($CI_object) && is_subclass_of(get_class($CI_object), 'CI_DB'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000190 {
191 $dbs[] = $CI_object;
192 }
193 }
Barry Mienydd671972010-10-04 16:33:58 +0200194
Andrey Andreev195d3112011-12-25 03:59:13 +0200195 if (count($dbs) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000196 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200197 return "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300198 .'<fieldset id="ci_profiler_queries" style="border:1px solid #0000FF;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
199 ."\n"
200 .'<legend style="color:#0000FF;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_queries').'&nbsp;&nbsp;</legend>'
201 ."\n\n\n<table style=\"border:none; width:100%;\">\n"
202 .'<tr><td style="width:100%;color:#0000FF;font-weight:normal;background-color:#eee;padding:5px;">'
203 .$this->CI->lang->line('profiler_no_db')
204 ."</td></tr>\n</table>\n</fieldset>";
Derek Allard2067d1a2008-11-13 22:59:24 +0000205 }
Barry Mienydd671972010-10-04 16:33:58 +0200206
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 // Load the text helper so we can highlight the SQL
208 $this->CI->load->helper('text');
209
210 // Key words we want bolded
Greg Aker3424bf72010-09-14 17:53:10 -0500211 $highlight = array('SELECT', 'DISTINCT', 'FROM', 'WHERE', 'AND', 'LEFT&nbsp;JOIN', 'ORDER&nbsp;BY', 'GROUP&nbsp;BY', 'LIMIT', 'INSERT', 'INTO', 'VALUES', 'UPDATE', 'OR&nbsp;', 'HAVING', 'OFFSET', 'NOT&nbsp;IN', 'IN', 'LIKE', 'NOT&nbsp;LIKE', 'COUNT', 'MAX', 'MIN', 'ON', 'AS', 'AVG', 'SUM', '(', ')');
Derek Allard2067d1a2008-11-13 22:59:24 +0000212
Derek Jones4b9c6292011-07-01 17:40:48 -0500213 $output = "\n\n";
Greg Akere6e6e642011-04-18 15:54:13 -0500214 $count = 0;
Razicanc24f49b2011-04-25 13:43:57 +0200215
Derek Allard2067d1a2008-11-13 22:59:24 +0000216 foreach ($dbs as $db)
217 {
Greg Akere6e6e642011-04-18 15:54:13 -0500218 $hide_queries = (count($db->queries) > $this->_query_toggle_count) ? ' display:none' : '';
Razicanc24f49b2011-04-25 13:43:57 +0200219
Greg Akere6e6e642011-04-18 15:54:13 -0500220 $show_hide_js = '(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_queries_db_'.$count.'\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_hide').'\'?\''.$this->CI->lang->line('profiler_section_show').'\':\''.$this->CI->lang->line('profiler_section_hide').'\';">'.$this->CI->lang->line('profiler_section_hide').'</span>)';
Razicanc24f49b2011-04-25 13:43:57 +0200221
Greg Akere6e6e642011-04-18 15:54:13 -0500222 if ($hide_queries != '')
223 {
224 $show_hide_js = '(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_queries_db_'.$count.'\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show').'</span>)';
225 }
Razicanc24f49b2011-04-25 13:43:57 +0200226
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300227 $output .= '<fieldset style="border:1px solid #0000FF;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
228 ."\n"
229 .'<legend style="color:#0000FF;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_database')
230 .':&nbsp; '.$db->database.'&nbsp;&nbsp;&nbsp;'.$this->CI->lang->line('profiler_queries')
231 .': '.count($db->queries).'&nbsp;&nbsp;'.$show_hide_js."</legend>\n\n\n"
232 .'<table style="width:100%;'.$hide_queries.'" id="ci_profiler_queries_db_'.$count."\">\n";
Barry Mienydd671972010-10-04 16:33:58 +0200233
Andrey Andreev195d3112011-12-25 03:59:13 +0200234 if (count($db->queries) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000235 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300236 $output .= '<tr><td style="width:100%;color:#0000FF;font-weight:normal;background-color:#eee;padding:5px;">'
237 .$this->CI->lang->line('profiler_no_queries')."</td></tr>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000238 }
239 else
Barry Mienydd671972010-10-04 16:33:58 +0200240 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000241 foreach ($db->queries as $key => $val)
Barry Mienydd671972010-10-04 16:33:58 +0200242 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000243 $time = number_format($db->query_times[$key], 4);
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 $val = highlight_code($val, ENT_QUOTES);
Barry Mienydd671972010-10-04 16:33:58 +0200245
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 foreach ($highlight as $bold)
247 {
Barry Mienydd671972010-10-04 16:33:58 +0200248 $val = str_replace($bold, '<strong>'.$bold.'</strong>', $val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000249 }
Barry Mienydd671972010-10-04 16:33:58 +0200250
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300251 $output .= '<tr><td style="padding:5px;vertical-align:top;width:1%;color:#900;font-weight:normal;background-color:#ddd;">'
252 .$time.'&nbsp;&nbsp;</td><td style="padding:5px;color:#000;font-weight:normal;background-color:#ddd;">'
253 .$val."</td></tr>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000254 }
255 }
Barry Mienydd671972010-10-04 16:33:58 +0200256
Andrey Andreev195d3112011-12-25 03:59:13 +0200257 $output .= "</table>\n</fieldset>";
Derek Allard2067d1a2008-11-13 22:59:24 +0000258 }
Barry Mienydd671972010-10-04 16:33:58 +0200259
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 return $output;
261 }
262
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 // --------------------------------------------------------------------
264
265 /**
266 * Compile $_GET Data
267 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000268 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200269 */
Greg Aker5ac55942010-11-10 14:59:47 -0600270 protected function _compile_get()
Barry Mienydd671972010-10-04 16:33:58 +0200271 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300272 $output = "\n\n"
273 .'<fieldset id="ci_profiler_get" style="border:1px solid #cd6e00;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
274 ."\n"
275 .'<legend style="color:#cd6e00;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_get_data')."&nbsp;&nbsp;</legend>\n";
Barry Mienydd671972010-10-04 16:33:58 +0200276
Andrey Andreev195d3112011-12-25 03:59:13 +0200277 if (count($_GET) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000278 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300279 $output .= '<div style="color:#cd6e00;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_get').'</div>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000280 }
281 else
282 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300283 $output .= "\n\n<table style=\"width:100%;border:none;\">\n";
Barry Mienydd671972010-10-04 16:33:58 +0200284
Derek Allard2067d1a2008-11-13 22:59:24 +0000285 foreach ($_GET as $key => $val)
286 {
287 if ( ! is_numeric($key))
288 {
289 $key = "'".$key."'";
290 }
Barry Mienydd671972010-10-04 16:33:58 +0200291
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300292 $output .= '<tr><td style="width:50%;color:#000;background-color:#ddd;padding:5px;">&#36;_GET['
293 .$key.']&nbsp;&nbsp; </td><td style="width:50%;padding:5px;color:#cd6e00;font-weight:normal;background-color:#ddd;">'
294 .((is_array($val) OR is_object($val)) ? '<pre>'.htmlspecialchars(stripslashes(print_r($val, TRUE))).'</pre>' : htmlspecialchars(stripslashes($val)))
295 ."</td></tr>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000296 }
Barry Mienydd671972010-10-04 16:33:58 +0200297
Derek Allard2067d1a2008-11-13 22:59:24 +0000298 $output .= "</table>\n";
299 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000300
Andrey Andreev195d3112011-12-25 03:59:13 +0200301 return $output.'</fieldset>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 }
Barry Mienydd671972010-10-04 16:33:58 +0200303
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200305
Derek Allard2067d1a2008-11-13 22:59:24 +0000306 /**
307 * Compile $_POST Data
308 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200310 */
Greg Aker5ac55942010-11-10 14:59:47 -0600311 protected function _compile_post()
Barry Mienydd671972010-10-04 16:33:58 +0200312 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200313 $output = "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300314 .'<fieldset id="ci_profiler_post" style="border:1px solid #009900;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
315 ."\n"
316 .'<legend style="color:#009900;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_post_data')."&nbsp;&nbsp;</legend>\n";
Barry Mienydd671972010-10-04 16:33:58 +0200317
Derek Allard2067d1a2008-11-13 22:59:24 +0000318 if (count($_POST) == 0)
319 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300320 $output .= '<div style="color:#009900;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_post').'</div>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000321 }
322 else
323 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300324 $output .= "\n\n<table style=\"width:100%;\">\n";
Barry Mienydd671972010-10-04 16:33:58 +0200325
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 foreach ($_POST as $key => $val)
327 {
328 if ( ! is_numeric($key))
329 {
330 $key = "'".$key."'";
331 }
Barry Mienydd671972010-10-04 16:33:58 +0200332
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300333 $output .= '<tr><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">&#36;_POST['
334 .$key.']&nbsp;&nbsp; </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">';
335
Andrey Andreev963386b2012-03-02 01:52:01 +0200336 if (is_array($val) OR is_object($val))
Derek Allard2067d1a2008-11-13 22:59:24 +0000337 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300338 $output .= '<pre>'.htmlspecialchars(stripslashes(print_r($val, TRUE))).'</pre>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000339 }
340 else
341 {
342 $output .= htmlspecialchars(stripslashes($val));
343 }
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300344
Derek Allard2067d1a2008-11-13 22:59:24 +0000345 $output .= "</td></tr>\n";
346 }
Barry Mienydd671972010-10-04 16:33:58 +0200347
Derek Allard2067d1a2008-11-13 22:59:24 +0000348 $output .= "</table>\n";
349 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000350
Andrey Andreev195d3112011-12-25 03:59:13 +0200351 return $output.'</fieldset>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000352 }
Barry Mienydd671972010-10-04 16:33:58 +0200353
Derek Allard2067d1a2008-11-13 22:59:24 +0000354 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200355
Derek Allard2067d1a2008-11-13 22:59:24 +0000356 /**
357 * Show query string
358 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000359 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200360 */
Greg Aker5ac55942010-11-10 14:59:47 -0600361 protected function _compile_uri_string()
Barry Mienydd671972010-10-04 16:33:58 +0200362 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200363 return "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300364 .'<fieldset id="ci_profiler_uri_string" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
365 ."\n"
366 .'<legend style="color:#000;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_uri_string')."&nbsp;&nbsp;</legend>\n"
367 .'<div style="color:#000;font-weight:normal;padding:4px 0 4px 0;">'
368 .($this->CI->uri->uri_string == '' ? $this->CI->lang->line('profiler_no_uri') : $this->CI->uri->uri_string)
369 .'</div></fieldset>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000370 }
371
372 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200373
Derek Allard2067d1a2008-11-13 22:59:24 +0000374 /**
375 * Show the controller and function that were called
376 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000377 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200378 */
Greg Aker5ac55942010-11-10 14:59:47 -0600379 protected function _compile_controller_info()
Barry Mienydd671972010-10-04 16:33:58 +0200380 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200381 return "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300382 .'<fieldset id="ci_profiler_controller_info" style="border:1px solid #995300;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
383 ."\n"
384 .'<legend style="color:#995300;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_controller_info')."&nbsp;&nbsp;</legend>\n"
385 .'<div style="color:#995300;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->router->fetch_class().'/'.$this->CI->router->fetch_method()
386 .'</div></fieldset>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000387 }
Derek Allard76af4092010-01-16 19:20:49 +0000388
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200390
Derek Allard2067d1a2008-11-13 22:59:24 +0000391 /**
392 * Compile memory usage
393 *
394 * Display total used memory
395 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 * @return string
397 */
Greg Aker5ac55942010-11-10 14:59:47 -0600398 protected function _compile_memory_usage()
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200400 return "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300401 .'<fieldset id="ci_profiler_memory_usage" style="border:1px solid #5a0099;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
402 ."\n"
403 .'<legend style="color:#5a0099;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_memory_usage')."&nbsp;&nbsp;</legend>\n"
404 .'<div style="color:#5a0099;font-weight:normal;padding:4px 0 4px 0;">'
405 .((function_exists('memory_get_usage') && ($usage = memory_get_usage()) != '') ? number_format($usage).' bytes' : $this->CI->lang->line('profiler_no_memory'))
406 .'</div></fieldset>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000407 }
408
409 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200410
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 /**
Derek Allard76af4092010-01-16 19:20:49 +0000412 * Compile header information
413 *
414 * Lists HTTP headers
415 *
Derek Allard76af4092010-01-16 19:20:49 +0000416 * @return string
417 */
Greg Aker5ac55942010-11-10 14:59:47 -0600418 protected function _compile_http_headers()
Derek Allard76af4092010-01-16 19:20:49 +0000419 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200420 $output = "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300421 .'<fieldset id="ci_profiler_http_headers" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
422 ."\n"
423 .'<legend style="color:#000;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_headers')
424 .'&nbsp;&nbsp;(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_httpheaders_table\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show')."</span>)</legend>\n\n\n"
425 .'<table style="width:100%;display:none;" id="ci_profiler_httpheaders_table">'."\n";
Derek Allard76af4092010-01-16 19:20:49 +0000426
Pascal Kriete14287f32011-02-14 13:39:34 -0500427 foreach (array('HTTP_ACCEPT', 'HTTP_USER_AGENT', 'HTTP_CONNECTION', 'SERVER_PORT', 'SERVER_NAME', 'REMOTE_ADDR', 'SERVER_SOFTWARE', 'HTTP_ACCEPT_LANGUAGE', 'SCRIPT_NAME', 'REQUEST_METHOD',' HTTP_HOST', 'REMOTE_HOST', 'CONTENT_TYPE', 'SERVER_PROTOCOL', 'QUERY_STRING', 'HTTP_ACCEPT_ENCODING', 'HTTP_X_FORWARDED_FOR') as $header)
Derek Allard76af4092010-01-16 19:20:49 +0000428 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300429 $val = isset($_SERVER[$header]) ? $_SERVER[$header] : '';
430 $output .= '<tr><td style="vertical-align:top;width:50%;padding:5px;color:#900;background-color:#ddd;">'
431 .$header.'&nbsp;&nbsp;</td><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">'.$val."</td></tr>\n";
Derek Allard76af4092010-01-16 19:20:49 +0000432 }
433
Andrey Andreev195d3112011-12-25 03:59:13 +0200434 return $output."</table>\n</fieldset>";
Derek Allard76af4092010-01-16 19:20:49 +0000435 }
436
437 // --------------------------------------------------------------------
438
439 /**
440 * Compile config information
441 *
442 * Lists developer config variables
443 *
Derek Allard76af4092010-01-16 19:20:49 +0000444 * @return string
445 */
Greg Aker5ac55942010-11-10 14:59:47 -0600446 protected function _compile_config()
Derek Allard76af4092010-01-16 19:20:49 +0000447 {
Andrey Andreev195d3112011-12-25 03:59:13 +0200448 $output = "\n\n"
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300449 .'<fieldset id="ci_profiler_config" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
450 ."\n"
451 .'<legend style="color:#000;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_config').'&nbsp;&nbsp;(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_config_table\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show')."</span>)</legend>\n\n\n"
452 .'<table style="width:100%;display:none;" id="ci_profiler_config_table">'."\n";
Derek Allard76af4092010-01-16 19:20:49 +0000453
Andrey Andreev963386b2012-03-02 01:52:01 +0200454 foreach ($this->CI->config->config as $config => $val)
Derek Allard76af4092010-01-16 19:20:49 +0000455 {
Andrey Andreev963386b2012-03-02 01:52:01 +0200456 if (is_array($val) OR is_object($val))
Greg Akere6026832010-04-29 13:41:39 -0500457 {
458 $val = print_r($val, TRUE);
459 }
Barry Mienydd671972010-10-04 16:33:58 +0200460
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300461 $output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">'
462 .$config.'&nbsp;&nbsp;</td><td style="padding:5px;color:#000;background-color:#ddd;">'.htmlspecialchars($val)."</td></tr>\n";
Derek Allard76af4092010-01-16 19:20:49 +0000463 }
464
Andrey Andreev195d3112011-12-25 03:59:13 +0200465 return $output."</table>\n</fieldset>";
Derek Allard76af4092010-01-16 19:20:49 +0000466 }
467
468 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200469
Derek Allard76af4092010-01-16 19:20:49 +0000470 /**
Greg Aker62df1312011-04-18 11:18:02 -0500471 * Compile session userdata
472 *
473 * @return string
474 */
yterajima8310c9a2011-08-22 07:26:54 +0900475 protected function _compile_session_data()
Greg Aker62df1312011-04-18 11:18:02 -0500476 {
477 if ( ! isset($this->CI->session))
478 {
479 return;
480 }
481
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300482 $output = '<fieldset id="ci_profiler_csession" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">'
483 .'<legend style="color:#000;">&nbsp;&nbsp;'.$this->CI->lang->line('profiler_session_data').'&nbsp;&nbsp;(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_session_data\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show').'</span>)</legend>'
484 .'<table style="width:100%;display:none;" id="ci_profiler_session_data">';
Greg Aker62df1312011-04-18 11:18:02 -0500485
486 foreach ($this->CI->session->all_userdata() as $key => $val)
487 {
Andrey Andreev963386b2012-03-02 01:52:01 +0200488 if (is_array($val) OR is_object($val))
Greg Aker62df1312011-04-18 11:18:02 -0500489 {
490 $val = print_r($val, TRUE);
491 }
492
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300493 $output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">'
494 .$key.'&nbsp;&nbsp;</td><td style="padding:5px;color:#000;background-color:#ddd;">'.htmlspecialchars($val)."</td></tr>\n";
Greg Aker62df1312011-04-18 11:18:02 -0500495 }
496
Andrey Andreev195d3112011-12-25 03:59:13 +0200497 return $output."</table>\n</fieldset>";
Greg Aker62df1312011-04-18 11:18:02 -0500498 }
499
500 // --------------------------------------------------------------------
501
502 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 * Run the Profiler
504 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000505 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200506 */
Greg Aker5ac55942010-11-10 14:59:47 -0600507 public function run()
Derek Allard2067d1a2008-11-13 22:59:24 +0000508 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300509 $output = '<div id="codeigniter_profiler" style="clear:both;background-color:#fff;padding:10px;">';
Derek Jonesee71c802010-03-10 10:05:05 -0600510 $fields_displayed = 0;
Barry Mienydd671972010-10-04 16:33:58 +0200511
Derek Jonesee71c802010-03-10 10:05:05 -0600512 foreach ($this->_available_sections as $section)
513 {
514 if ($this->_compile_{$section} !== FALSE)
515 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300516 $func = '_compile_'.$section;
Derek Jonesee71c802010-03-10 10:05:05 -0600517 $output .= $this->{$func}();
518 $fields_displayed++;
519 }
520 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000521
Andrey Andreev195d3112011-12-25 03:59:13 +0200522 if ($fields_displayed === 0)
Derek Jonesee71c802010-03-10 10:05:05 -0600523 {
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300524 $output .= '<p style="border:1px solid #5a0099;padding:10px;margin:20px 0;background-color:#eee;">'
525 .$this->CI->lang->line('profiler_no_profiles').'</p>';
Derek Jonesee71c802010-03-10 10:05:05 -0600526 }
Barry Mienydd671972010-10-04 16:33:58 +0200527
Andrey Andreev195d3112011-12-25 03:59:13 +0200528 return $output.'</div>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000529 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000530}
531
Derek Allard2067d1a2008-11-13 22:59:24 +0000532/* End of file Profiler.php */
Andrey Andreev0d1c0a72012-04-03 16:59:54 +0300533/* Location: ./system/libraries/Profiler.php */