Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * 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. |
Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 18 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | /** |
| 29 | * CodeIgniter Benchmark Class |
| 30 | * |
| 31 | * This class enables you to mark points and calculate the time difference |
Andrey Andreev | 92ebfb6 | 2012-05-17 12:49:24 +0300 | [diff] [blame] | 32 | * between them. Memory consumption can also be displayed. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 33 | * |
| 34 | * @package CodeIgniter |
| 35 | * @subpackage Libraries |
| 36 | * @category Libraries |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 37 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 38 | * @link http://codeigniter.com/user_guide/libraries/benchmark.html |
| 39 | */ |
| 40 | class CI_Benchmark { |
| 41 | |
root | 83e7a8e | 2011-08-14 19:55:57 +0200 | [diff] [blame] | 42 | /** |
| 43 | * List of all benchmark markers and when they were added |
| 44 | * |
| 45 | * @var array |
| 46 | */ |
Timothy Warren | 48a7fbb | 2012-04-23 11:58:16 -0400 | [diff] [blame] | 47 | public $marker = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 48 | |
| 49 | // -------------------------------------------------------------------- |
| 50 | |
| 51 | /** |
| 52 | * Set a benchmark marker |
| 53 | * |
| 54 | * Multiple calls to this function can be made so that several |
| 55 | * execution points can be timed |
| 56 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 57 | * @param string $name name of the marker |
| 58 | * @return void |
| 59 | */ |
Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 60 | public function mark($name) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 61 | { |
dixy | ab3cab5 | 2012-04-21 00:58:00 +0200 | [diff] [blame] | 62 | $this->marker[$name] = microtime(TRUE); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | // -------------------------------------------------------------------- |
| 66 | |
| 67 | /** |
| 68 | * Calculates the time difference between two marked points. |
| 69 | * |
| 70 | * If the first parameter is empty this function instead returns the |
| 71 | * {elapsed_time} pseudo-variable. This permits the full system |
| 72 | * execution time to be shown in a template. The output class will |
| 73 | * swap the real value for this variable. |
| 74 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 75 | * @param string a particular marked point |
| 76 | * @param string a particular marked point |
| 77 | * @param integer the number of decimal places |
| 78 | * @return mixed |
| 79 | */ |
Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 80 | public function elapsed_time($point1 = '', $point2 = '', $decimals = 4) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 81 | { |
Alex Bilbie | ed944a3 | 2012-06-02 11:07:47 +0100 | [diff] [blame^] | 82 | if ($point1 === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 83 | { |
| 84 | return '{elapsed_time}'; |
| 85 | } |
| 86 | |
| 87 | if ( ! isset($this->marker[$point1])) |
| 88 | { |
| 89 | return ''; |
| 90 | } |
| 91 | |
| 92 | if ( ! isset($this->marker[$point2])) |
| 93 | { |
dixy | ab3cab5 | 2012-04-21 00:58:00 +0200 | [diff] [blame] | 94 | $this->marker[$point2] = microtime(TRUE); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 95 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 96 | |
dixy | ab3cab5 | 2012-04-21 00:58:00 +0200 | [diff] [blame] | 97 | return number_format($this->marker[$point2] - $this->marker[$point1], $decimals); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 98 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 99 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 100 | // -------------------------------------------------------------------- |
| 101 | |
| 102 | /** |
| 103 | * Memory Usage |
| 104 | * |
| 105 | * This function returns the {memory_usage} pseudo-variable. |
| 106 | * This permits it to be put it anywhere in a template |
| 107 | * without the memory being calculated until the end. |
| 108 | * The output class will swap the real value for this variable. |
| 109 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 110 | * @return string |
| 111 | */ |
Andrey Andreev | 2fbbfe3 | 2012-01-07 18:37:15 +0200 | [diff] [blame] | 112 | public function memory_usage() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 113 | { |
| 114 | return '{memory_usage}'; |
| 115 | } |
| 116 | |
| 117 | } |
| 118 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 119 | /* End of file Benchmark.php */ |
Andrey Andreev | 92ebfb6 | 2012-05-17 12:49:24 +0300 | [diff] [blame] | 120 | /* Location: ./system/core/Benchmark.php */ |