Example #1
0
 public function testGetDuration()
 {
     $profile = new Twig_Profiler_Profile();
     usleep(1);
     $profile->leave();
     $this->assertTrue($profile->getDuration() > 0, sprintf('Expected duration > 0, got: %f', $profile->getDuration()));
 }
 private function dumpProfile($edge, Twig_Profiler_Profile $profile, &$data)
 {
     if (isset($data[$edge])) {
         $data[$edge]['ct'] += 1;
         $data[$edge]['wt'] += floor($profile->getDuration() * 1000000);
         $data[$edge]['mu'] += $profile->getMemoryUsage();
         $data[$edge]['pmu'] += $profile->getPeakMemoryUsage();
     } else {
         $data[$edge] = array('ct' => 1, 'wt' => floor($profile->getDuration() * 1000000), 'mu' => $profile->getMemoryUsage(), 'pmu' => $profile->getPeakMemoryUsage());
     }
 }
Example #3
0
 private function dumpProfile(Twig_Profiler_Profile $profile, $prefix = '', $sibling = false)
 {
     if ($profile->isRoot()) {
         $this->root = $profile->getDuration();
         $start = $profile->getName();
     } else {
         if ($profile->isTemplate()) {
             $start = $this->formatTemplate($profile, $prefix);
         } else {
             $start = $this->formatNonTemplate($profile, $prefix);
         }
         $prefix .= $sibling ? '│ ' : '  ';
     }
     $percent = $this->root ? $profile->getDuration() / $this->root * 100 : 0;
     if ($profile->getDuration() * 1000 < 1) {
         $str = $start . "\n";
     } else {
         $str = sprintf("%s %s\n", $start, $this->formatTime($profile, $percent));
     }
     $nCount = count($profile->getProfiles());
     foreach ($profile as $i => $p) {
         $str .= $this->dumpProfile($p, $prefix, $i + 1 !== $nCount);
     }
     return $str;
 }
Example #4
0
 private function format(\Twig_Profiler_Profile $profile)
 {
     $tmp = array();
     $tmp["template"] = $profile->getTemplate();
     $tmp["name"] = $profile->getName();
     $tmp["duration"] = $profile->getDuration();
     $tmp["type"] = $profile->getType();
     return $tmp;
 }
Example #5
0
 protected function formatTime(Twig_Profiler_Profile $profile, $percent)
 {
     return sprintf('<span style="color: %s">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDuration() * 1000, $percent);
 }
 protected function formatTime(Twig_Profiler_Profile $profile, $percent)
 {
     return sprintf('%.2fms/%.0f%%', $profile->getDuration() * 1000, $percent);
 }
Example #7
0
 public function testGetDuration()
 {
     $profile = new Twig_Profiler_Profile();
     $profile->leave();
     $this->assertTrue($profile->getDuration() > 0);
 }