-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathTimer.php
189 lines (161 loc) · 3.08 KB
/
Timer.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
namespace PragmaRX\Support;
class Timer {
/**
* Started at time.
*
* @var
*/
private static $startedAt = [];
/**
* Stopped at time.
*
* @var
*/
private static $stoppedAt = [];
/**
* An internal instance of this class.
*
* @var
*/
private static $instance;
/**
* The format used by elapsed().
*
* @var string
*/
private static $format = "%.4f";
/**
* Create a timer.
*
*/
public function __construct()
{
static::$instance = $this;
}
/**
* @param string $format
*/
public static function setFormat($format)
{
self::$format = $format;
return static::$instance;
}
/**
* @return string
*/
public static function getFormat()
{
return self::$format;
}
/**
* Start a timer.
*
* @param string $timer
* @return Timer
*/
private function start($timer = 'default')
{
static::$startedAt[$timer] = microtime(true);
static::$stoppedAt[$timer] = null;
return static::$instance;
}
/**
* Put it to sleep a while.
*
* @param int $seconds
* @return Timer
*/
private function sleep($seconds = 1)
{
sleep($seconds);
return static::$instance;
}
/**
* Stop a timer.
*
* @param string $timer
* @internal param $
*/
private function stop($timer = 'default')
{
static::$stoppedAt[$timer] = microtime(true);
return static::$instance;
}
/**
* Check if timer is started.
*
* @param string $timer
* @return bool
*/
private function isStarted($timer = 'default')
{
return !$this->isStopped($timer) && ! is_null(static::$startedAt[$timer]);
}
/**
* Check if timer is stopped.
*
* @param string $timer
* @return bool
*/
private function isStopped($timer = 'default')
{
return ! is_null(static::$stoppedAt[$timer]);
}
/**
* Get elapsed time in microtime.
*
* @param string $timer
* @param bool $stop
* @return number
*/
private function elapsedRaw($timer = 'default', $stop = true)
{
if ($stop)
{
static::stop($timer);
}
$end = static::isStopped($timer)
? static::$stoppedAt[$timer]
: microtime(true);
return abs($end - static::$startedAt[$timer]);
}
/**
* Get the elapsed time in string.
*
* @param string $timer
* @param bool $stop
* @return string
*/
private function elapsed($timer = 'default', $stop = true)
{
return sprintf($this->getFormat(), static::elapsedRaw($timer, $stop));
}
/**
* Provides static calls.
*
* @param $name
* @param array $arguments
* @return mixed
*/
public static function __callStatic($name, array $arguments)
{
if ( ! static::$instance)
{
$class = __CLASS__;
static::$instance = new $class;
}
return call_user_func_array([static::$instance, $name], $arguments);
}
/**
* Provides dynamic calls.
*
* @param $name
* @param array $arguments
* @return mixed
*/
public function __call($name, array $arguments)
{
return call_user_func_array([$this, $name], $arguments);
}
}