-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sample.php
126 lines (95 loc) · 2.44 KB
/
Sample.php
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
namespace Debuggy\Gauger;
use Debuggy\Gauger\Presenter\Txt;
use Closure;
use Exception as BaseException;
/**
* Sample of the Gauger components usage.
* It also can be used as a pattern for some often situations.
*/
abstract class Sample {
/**
* Initializes the object with a gauge
*
* @param Gauge $gauge Gauge instance
*/
public function __construct (Gauge $gauge = null) {
if (!isset ($gauge))
$gauge = new Gauge;
$this->_gauge = $gauge;
$this->initGauge ($this->_gauge);
}
/**
* Calls a gauge's method with the same name
*
* @param string $id Stamp identifier
* @param mixed $extra Extra data provided by a user
*
* @return void
*/
public function stamp ($id, $extra = null) {
$this->getGauge ()->stamp ($id, $extra);
}
/**
* Benchmarks the subject's evaluation.
* If there is any exception, it will be kept in the details of a stamp and thrown forth.
*
* @param Closure $subject Subject to be benchmarked
* @param string $stampId Identifier for the stamps
* @param mixed $extra Extra data provided by users
* @param array $arguments Arguments for a subject's invocation
* @param bool $rememberResult Whether result of the subject should be kept as extra
*
* @return mixed Result of the subject's invocation
*
* @throws Exteption Any exception that is thrown by the subject
*/
public function benchmark (Closure $subject, $stampId, $extra = null, $arguments = array (), $rememberResult = false) {
$this->stamp ($stampId, $extra);
try {
$result = call_user_func_array ($subject, $arguments);
} catch (BaseException $e) {
$this->stamp ($stampId, array ('exception' => $e));
throw $e;
}
$this->stamp ($stampId, $rememberResult ? array ('result' => $result) : null);
return $result;
}
/**
* Returns an instance of a gauge
*
* @return Gauge
*/
public function getGauge () {
return $this->_gauge;
}
/**
* Makes the recount through the Txt reporter
*
* @return string
*/
public function toString () {
$presenter = new Txt;
return $presenter->represent ($this->toArray ());
}
/**
* Returns the recount as an array
*
* @return array
*/
abstract public function toArray ();
/**
* Initializes the $gauge by dials
*
* @param Gauge $gauge Gauge to be initialized by dials
*
* @return void
*/
abstract protected function initGauge (Gauge $gauge);
/**
* An instance of the Gauge
*
* @var Gauge
*/
private $_gauge;
}