File: common.php

package info (click to toggle)
xhprof 0.9.4-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,344 kB
  • ctags: 676
  • sloc: php: 1,998; ansic: 1,086; makefile: 58
file content (35 lines) | stat: -rw-r--r-- 962 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

/**
 * Print xhprof raw data (essentially a callgraph) in a canonical style,
 * so that even if the ordering of things within the raw_data (which is
 * an associative array) changes in future implementations the output
 * remains stable.
 *
 * Also, suppress output of variable quantities (such as time, memory)
 * so that reference output of tests doesn't need any additional masking.
 *
 * @author Kannan
 */
function print_canonical($xhprof_data) {
  ksort($xhprof_data);
  foreach($xhprof_data as $func => $metrics) {
    echo str_pad($func, 40) . ":";
    ksort($metrics);
    foreach ($metrics as $name => $value) {

      // Only call counts are stable.
      // Wild card everything else. We still print
      // the metric name to ensure it was collected.
      if ($name != "ct") {
        $value = "*";
      } else {
        $value = str_pad($value, 8, " ", STR_PAD_LEFT);
      }

      echo " {$name}={$value};";
    }
    echo "\n";
  }
}