2023-03-11 12:04:29 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Zend Framework (http://framework.zend.com/)
|
|
|
|
*
|
|
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
2023-04-01 09:03:34 +03:00
|
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
2023-03-11 12:04:29 +03:00
|
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Zend\Db\Adapter\Profiler;
|
|
|
|
|
|
|
|
use Zend\Db\Adapter\StatementContainerInterface;
|
|
|
|
use Zend\Db\Adapter\Exception;
|
|
|
|
|
|
|
|
class Profiler implements ProfilerInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $profiles = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var null
|
|
|
|
*/
|
|
|
|
protected $currentIndex = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string|StatementContainerInterface $target
|
|
|
|
* @throws \Zend\Db\Adapter\Exception\InvalidArgumentException
|
|
|
|
* @return Profiler
|
|
|
|
*/
|
|
|
|
public function profilerStart($target)
|
|
|
|
{
|
|
|
|
$profileInformation = array(
|
|
|
|
'sql' => '',
|
|
|
|
'parameters' => null,
|
|
|
|
'start' => microtime(true),
|
|
|
|
'end' => null,
|
|
|
|
'elapse' => null
|
|
|
|
);
|
|
|
|
if ($target instanceof StatementContainerInterface) {
|
|
|
|
$profileInformation['sql'] = $target->getSql();
|
|
|
|
$profileInformation['parameters'] = clone $target->getParameterContainer();
|
|
|
|
} elseif (is_string($target)) {
|
|
|
|
$profileInformation['sql'] = $target;
|
|
|
|
} else {
|
|
|
|
throw new Exception\InvalidArgumentException(__FUNCTION__ . ' takes either a StatementContainer or a string');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->profiles[$this->currentIndex] = $profileInformation;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Profiler
|
|
|
|
*/
|
|
|
|
public function profilerFinish()
|
|
|
|
{
|
|
|
|
if (!isset($this->profiles[$this->currentIndex])) {
|
|
|
|
throw new Exception\RuntimeException('A profile must be started before ' . __FUNCTION__ . ' can be called.');
|
|
|
|
}
|
|
|
|
$current = &$this->profiles[$this->currentIndex];
|
|
|
|
$current['end'] = microtime(true);
|
|
|
|
$current['elapse'] = $current['end'] - $current['start'];
|
|
|
|
$this->currentIndex++;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array|null
|
|
|
|
*/
|
|
|
|
public function getLastProfile()
|
|
|
|
{
|
|
|
|
return end($this->profiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getProfiles()
|
|
|
|
{
|
|
|
|
return $this->profiles;
|
|
|
|
}
|
|
|
|
}
|