[HttpKernel] added purge() in the profiler storage interface

This commit is contained in:
Fabien Potencier 2010-09-01 08:21:38 +02:00
parent afa8bfcdd6
commit ad835f8a16
3 changed files with 37 additions and 9 deletions

View File

@ -89,6 +89,19 @@ class Profiler
return $profiler;
}
/**
* Purges all data from the storage.
*/
public function purge()
{
$this->storage->purge();
}
/**
* Exports the current profiler data.
*
* @return string The exported data
*/
public function export()
{
$unpack = unpack('H*', serialize(array($this->token, $this->collectors, $this->ip, $this->url, $this->time)));
@ -96,6 +109,13 @@ class Profiler
return $unpack[1];
}
/**
* Imports data into the profiler storage.
*
* @param string $data A data string as exported by the export() method
*
* @return string The token associated with the imported data
*/
public function import($data)
{
list($token, $collectors, $ip, $url, $time) = unserialize(pack('H*', $data));

View File

@ -50,4 +50,9 @@ interface ProfilerStorageInterface
* @param integer $time The time of the data
*/
function write($token, $data, $ip, $url, $time);
/**
* Purges all data from the database.
*/
function purge();
}

View File

@ -89,21 +89,24 @@ class SQLiteProfilerStorage implements ProfilerStorageInterface
':time' => $time,
);
$this->exec($db, 'INSERT INTO data (token, data, ip, url, time) VALUES (:token, :data, :ip, :url, :time)', $args);
$this->purge();
$this->cleanup();
$this->close($db);
}
public function purge($all = false)
/**
* {@inheritdoc}
*/
public function purge()
{
$db = $this->initDb();
$this->exec($db, 'DELETE FROM data');
$this->close($db);
}
if (true === $all) {
$this->exec($db, 'DELETE FROM data');
} else {
$args = array(':time' => time() - $this->lifetime);
$this->exec($db, 'DELETE FROM data WHERE time < :time', $args);
}
protected function cleanup()
{
$db = $this->initDb();
$this->exec($db, 'DELETE FROM data WHERE time < :time', array(':time' => time() - $this->lifetime));
$this->close($db);
}