Reworked profiler

This commit is contained in:
Anton Terekhov
2011-07-29 13:05:23 +04:00
parent 77a62925d8
commit 165bf08c09
12 changed files with 2351 additions and 65 deletions

View File

@ -61,39 +61,4 @@ class RedisManager
}
return self::$connections[$name];
}
}
class RedisDebug
{
private $redis;
public function __construct($redis)
{
if (!is_a($redis, 'Redis')) {
throw new MJException();
}
$this->redis = $redis;
}
public function __call($name, $arguments)
{
$command = $name . '(' . $this->r_implode(', ', $arguments) . ')';
$profiler = Profiler::getInstance()->profilerQuery($command);
$data = call_user_func_array(array($this->redis, $name), $arguments);
$profiler->end();
return $data;
}
protected function r_implode($glue, $pieces)
{
$retVal = array();
foreach ($pieces as $r_pieces) {
if (is_array($r_pieces)) {
$retVal[] = '(' . $this->r_implode($glue, $r_pieces) . ')';
} else {
$retVal[] = $r_pieces;
}
}
return implode($glue, $retVal);
}
}