发布于 2015-08-27 16:38:22 | 224 次阅读 | 评论: 0 | 来源: 网络整理
The Symfony Profiler delegates data collecting to data collectors. Symfony comes bundled with a few of them, but you can easily create your own.
Creating a custom data collector is as simple as implementing the
DataCollectorInterface
:
interface DataCollectorInterface
{
/**
* Collects data for the given Request and Response.
*
* @param Request $request A Request instance
* @param Response $response A Response instance
* @param Exception $exception An Exception instance
*/
function collect(Request $request, Response $response, Exception $exception = null);
/**
* Returns the name of the collector.
*
* @return string The collector name
*/
function getName();
}
The getName()
method must return a unique name. This is used to access the
information later on (see How to Use the Profiler in a Functional Test for
instance).
The collect()
method is responsible for storing the data it wants to give
access to in local properties.
警告
As the profiler serializes data collector instances, you should not
store objects that cannot be serialized (like PDO objects), or you need
to provide your own serialize()
method.
Most of the time, it is convenient to extend
DataCollector
and
populate the $this->data
property (it takes care of serializing the
$this->data
property):
class MemoryDataCollector extends DataCollector
{
public function collect(Request $request, Response $response, Exception $exception = null)
{
$this->data = array(
'memory' => memory_get_peak_usage(true),
);
}
public function getMemory()
{
return $this->data['memory'];
}
public function getName()
{
return 'memory';
}
}
To enable a data collector, add it as a regular service in one of your
configuration, and tag it with data_collector
:
services:
data_collector.your_collector_name:
class: FullyQualifiedCollectorClassName
tags:
- { name: data_collector }
<service id="data_collector.your_collector_name" class="FullyQualifiedCollectorClassName">
<tag name="data_collector" />
</service>
$container
->register('data_collector.your_collector_name', 'FullyQualifiedCollectorClassName')
->addTag('data_collector')
;
When you want to display the data collected by your data collector in the web debug toolbar or the web profiler, create a Twig template following this skeleton:
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
{# the web debug toolbar content #}
{% endblock %}
{% block head %}
{# if the web profiler panel needs some specific JS or CSS files #}
{% endblock %}
{% block menu %}
{# the menu content #}
{% endblock %}
{% block panel %}
{# the panel content #}
{% endblock %}
Each block is optional. The toolbar
block is used for the web debug
toolbar and menu
and panel
are used to add a panel to the web
profiler.
All blocks have access to the collector
object.
小技巧
Built-in templates use a base64 encoded image for the toolbar:
<img src="data:image/png;base64,..." />
You can easily calculate the base64 value for an image with this little script:
#!/usr/bin/env php
<?php
echo base64_encode(file_get_contents($_SERVER['argv'][1]));
To enable the template, add a template
attribute to the data_collector
tag in your configuration. For example, assuming your template is in some
AcmeDebugBundle:
services:
data_collector.your_collector_name:
class: AcmeDebugBundleCollectorClassName
tags:
- { name: data_collector, template: "AcmeDebugBundle:Collector:templatename", id: "your_collector_name" }
<service id="data_collector.your_collector_name" class="AcmeDebugBundleCollectorClassName">
<tag name="data_collector" template="AcmeDebugBundle:Collector:templatename" id="your_collector_name" />
</service>
$container
->register('data_collector.your_collector_name', 'AcmeDebugBundleCollectorClassName')
->addTag('data_collector', array(
'template' => 'AcmeDebugBundle:Collector:templatename',
'id' => 'your_collector_name',
))
;