profiler.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php namespace Laravel\Profiling;
  2. use Laravel\View;
  3. use Laravel\File;
  4. use Laravel\Event;
  5. use Laravel\Config;
  6. use Laravel\Request;
  7. class Profiler {
  8. /**
  9. * An array of the recorded Profiler data.
  10. *
  11. * @var array
  12. */
  13. protected static $data = array('queries' => array(), 'logs' => array());
  14. /**
  15. * The time when the profiler was setup.
  16. *
  17. * This is used for generating the total page rendering time.
  18. *
  19. * @var float
  20. */
  21. protected static $start_time;
  22. /**
  23. * Get the rendered contents of the Profiler.
  24. *
  25. * @param Response $response
  26. * @return string
  27. */
  28. public static function render($response)
  29. {
  30. // We only want to send the profiler toolbar if the request is not an AJAX
  31. // request, as sending it on AJAX requests could mess up JSON driven API
  32. // type applications, so we will not send anything in those scenarios.
  33. if ( ! Request::ajax())
  34. {
  35. if ($this->start_time)
  36. {
  37. static::$data['time'] = number_format((microtime(true) - $this->start_time) * 1000, 2);
  38. }
  39. return render('path: '.__DIR__.'/template'.BLADE_EXT, static::$data);
  40. }
  41. }
  42. /**
  43. * Add a log entry to the log entries array.
  44. *
  45. * @return void
  46. */
  47. public static function log($type, $message)
  48. {
  49. static::$data['logs'][] = array($type, $message);
  50. }
  51. /**
  52. * Add a performed SQL query to the Profiler.
  53. *
  54. * @param string $sql
  55. * @param array $bindings
  56. * @param float $time
  57. * @return void
  58. */
  59. public static function query($sql, $bindings, $time)
  60. {
  61. foreach ($bindings as $binding)
  62. {
  63. $sql = preg_replace('/\?/', $binding, $sql, 1);
  64. }
  65. static::$data['queries'][] = array($sql, $time);
  66. }
  67. /**
  68. * Attach the Profiler's event listeners.
  69. *
  70. * @return void
  71. */
  72. public static function attach()
  73. {
  74. // Record when the profiler was setup (as a rough measure for render time)
  75. $this->start_time = microtime(true);
  76. // First we'll attach to the query and log events. These allow us to catch
  77. // all of the SQL queries and log messages that come through Laravel,
  78. // and we will pass them onto the Profiler for simple storage.
  79. Event::listen('laravel.log', function($type, $message)
  80. {
  81. Profiler::log($type, $message);
  82. });
  83. Event::listen('laravel.query', function($sql, $bindings, $time)
  84. {
  85. Profiler::query($sql, $bindings, $time);
  86. });
  87. // We'll attach the profiler to the "done" event so that we can easily
  88. // attach the profiler output to the end of the output sent to the
  89. // browser. This will display the profiler's nice toolbar.
  90. Event::listen('laravel.done', function($response)
  91. {
  92. echo Profiler::render($response);
  93. });
  94. }
  95. }