-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDuration.php
More file actions
455 lines (404 loc) · 12.2 KB
/
Duration.php
File metadata and controls
455 lines (404 loc) · 12.2 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<?php
namespace Icecave\Chrono\TimeSpan;
use DateInterval;
use Icecave\Chrono\DateTime;
use Icecave\Chrono\Detail\Calendar;
use Icecave\Chrono\Detail\Iso8601;
use Icecave\Chrono\Interval\Interval;
use Icecave\Chrono\Interval\IntervalInterface;
use Icecave\Chrono\Iso8601Interface;
use Icecave\Chrono\TimePointInterface;
use Icecave\Parity\Exception\NotComparableException;
use Icecave\Parity\ExtendedComparableTrait;
use Icecave\Parity\SubClassComparable;
use InvalidArgumentException;
/**
* A duration represents a concrete amount of time.
*/
class Duration implements TimeSpanInterface, Iso8601Interface, SubClassComparable
{
use ExtendedComparableTrait;
/**
* @param int $seconds The total number of seconds in the duration.
*/
public function __construct($seconds = 0)
{
$this->seconds = $seconds;
}
/**
* Create a duration from the supplied amounts of standard time increments.
*
* @param int $weeks The number of weeks in the duration.
* @param int $days The number of days in the duration.
* @param int $hours The number of hours in the duration.
* @param int $minutes The number of minutes in the duration.
* @param int $seconds The number of seconds in the duration.
*
* @return Duration The resulting duration.
*/
public static function fromComponents($weeks = 0, $days = 0, $hours = 0, $minutes = 0, $seconds = 0)
{
$days += $weeks * 7;
$hours += $days * 24;
$minutes += $hours * 60;
$seconds += $minutes * 60;
return new self($seconds);
}
/**
* Create a duration from the supplied amount of weeks.
*
* @param int $weeks The number of weeks in the duration.
*
* @return Duration The resulting duration.
*/
public static function fromWeeks($weeks)
{
return static::fromComponents($weeks);
}
/**
* Create a duration from the supplied amount of days.
*
* @param int $days The number of days in the duration.
*
* @return Duration The resulting duration.
*/
public static function fromDays($days)
{
return static::fromComponents(0, $days);
}
/**
* Create a duration from the supplied amount of hours.
*
* @param int $hours The number of hours in the duration.
*
* @return Duration The resulting duration.
*/
public static function fromHours($hours)
{
return static::fromComponents(0, 0, $hours);
}
/**
* Create a duration from the supplied amount of minutes.
*
* @param int $minutes The number of minutes in the duration.
*
* @return Duration The resulting duration.
*/
public static function fromMinutes($minutes)
{
return static::fromComponents(0, 0, 0, $minutes);
}
/**
* Create a duration from the supplied amount of seconds.
*
* @param int $seconds The number of seconds in the duration.
*
* @return Duration The resulting duration.
*/
public static function fromSeconds($seconds)
{
return static::fromComponents(0, 0, 0, 0, $seconds);
}
/**
* Standard duration formats:
* PnYnMnDTnHnMnS (zero periods may be ommitted)
* PnW
* P<date>T<time>
*
* See link for the full specifics on formats.
* @link http://en.wikipedia.org/wiki/ISO_8601#Durations
*
* Note: Decimal fractions are currently not supported.
*
* @param string $isoString A string containing a duration in any ISO-8601 compatible duration format.
*
* @return Duration The Duration constructed from the ISO compatible string.
*/
public static function fromIsoString($isoString)
{
$duration = Iso8601::parseDuration($isoString);
$seconds = Calendar::approximateTotalSeconds(
$duration['years'],
$duration['months'],
0,
$duration['days'],
$duration['hours'],
$duration['minutes'],
$duration['seconds']
);
return new self($seconds);
}
/**
* @param DateInterval $dateInterval The native PHP DateInterval.
*
* @return Duration The Duration constructed from the native PHP DateInterval.
*/
public static function fromNativeDateInterval(DateInterval $dateInterval)
{
if ($dateInterval->y !== 0 || $dateInterval->m !== 0) {
throw new InvalidArgumentException('Duration\'s can not be created from date intervals containing years or months.');
}
$duration = self::fromComponents(
0,
$dateInterval->d,
$dateInterval->h,
$dateInterval->i,
$dateInterval->s
);
if ($dateInterval->invert) {
return $duration->inverse();
}
return $duration;
}
/**
* @return int The number of weeks in the duration.
*/
public function weeks()
{
return intval($this->totalSeconds() / 604800);
}
/**
* @return int The number of days in the duration, not including those that comprise whole weeks.
*/
public function days()
{
return intval(($this->totalSeconds() % 604800) / 86400);
}
/**
* @return int The number of hours in the duration, not including those that comprise whole days.
*/
public function hours()
{
return intval(($this->totalSeconds() % 86400) / 3600);
}
/**
* @return int The number of minutes in the duration, not including those that comprise whole hours.
*/
public function minutes()
{
return intval(($this->totalSeconds() % 3600) / 60);
}
/**
* @return int The number of seconds in the duration, not including those that comprise whole minutes.
*/
public function seconds()
{
return intval($this->totalSeconds() % 60);
}
/**
* @return int The total number of whole days in the duration.
*/
public function totalDays()
{
return intval($this->totalSeconds() / 86400);
}
/**
* @return int The total number of whole hours in the duration.
*/
public function totalHours()
{
return intval($this->totalSeconds() / 3600);
}
/**
* @return int The total number of whole minutes in the duration.
*/
public function totalMinutes()
{
return intval($this->totalSeconds() / 60);
}
/**
* @return int The total number seconds in the duration.
*/
public function totalSeconds()
{
return $this->seconds;
}
/**
* Compare this object with another value, yielding a result according to the following table:
*
* +--------------------+---------------+
* | Condition | Result |
* +--------------------+---------------+
* | $this == $value | $result === 0 |
* | $this < $value | $result < 0 |
* | $this > $value | $result > 0 |
* +--------------------+---------------+
*
* @param mixed $duration The duration to compare.
*
* @return int 0 if $this and $duration are equal, <0 if $this < $duration, or >0 if $this > $duration.
* @throws NotComparableException Indicates that the implementation does not know how to compare $this to $duration.
*/
public function compare($duration): int
{
if (!$duration instanceof self) {
throw new NotComparableException($this, $duration);
}
return $this->totalSeconds() - $duration->totalSeconds();
}
/**
* @return bool True if the duration is zero seconds in length; otherwise, false.
*/
public function isEmpty()
{
return 0 === $this->totalSeconds();
}
/**
* @return TimeSpanInterface
*/
public function inverse()
{
return new self(-$this->totalSeconds());
}
/**
* Resolve the time span to a total number of seconds, using the given time point as the start of the span.
*
* @param TimePointInterface $timePoint The start of the time span.
*
* @return int The total number of seconds.
*/
public function resolveToSeconds(TimePointInterface $timePoint)
{
return $this->totalSeconds();
}
/**
* Resolve the time span to a {@see Duration}, using the given time point as the start of the span.
*
* @param TimePointInterface $timePoint The start of the time span.
*
* @return Duration
*/
public function resolveToDuration(TimePointInterface $timePoint)
{
return $this;
}
/**
* Resolve the time span to a {@see Period}, using the given time point as the start of the span.
*
* @param TimePointInterface $timePoint The start of the time span.
*
* @return Period
*/
public function resolveToPeriod(TimePointInterface $timePoint)
{
return new Period(
0,
0,
$this->totalDays(),
$this->hours(),
$this->minutes(),
$this->seconds()
);
}
/**
* Resolve the time span an an {@see IntervalInterface} starting at the given time point, with a length equal to this time span.
*
* @param TimePointInterface $timePoint The start of the interval.
*
* @return IntervalInterface The end of the time span.
*/
public function resolveToInterval(TimePointInterface $timePoint)
{
$end = $this->resolveToTimePoint($timePoint);
if ($end->isLessThan($timePoint)) {
return new Interval($end, $timePoint);
}
return new Interval($timePoint, $end);
}
/**
* Resolve the time span to a time point after the given time point by the length of this span.
*
* @param TimePointInterface $timePoint The start of the time span.
*
* @return TimePointInterface
*/
public function resolveToTimePoint(TimePointInterface $timePoint)
{
return new DateTime(
$timePoint->year(),
$timePoint->month(),
$timePoint->day(),
$timePoint->hour(),
$timePoint->minute(),
$timePoint->second() + $this->totalSeconds(),
$timePoint->timeZone()
);
}
/**
* @return DateInterval A native PHP DateInterval instance representing this span.
*/
public function nativeDateInterval()
{
return new DateInterval($this->isoString());
}
/**
* Add another duration to this duration.
*
* @param Duration|int $duration The duration to add.
*
* @return Duration
*/
public function add($duration)
{
if ($duration instanceof self) {
$duration = $duration->totalSeconds();
}
return new self($this->totalSeconds() + $duration);
}
/**
* Subtruct another duration from this duration.
*
* @param Duration|int $duration The duration to subtract.
*
* @return Duration
*/
public function subtract($duration)
{
if ($duration instanceof self) {
$duration = $duration->totalSeconds();
}
return new self($this->totalSeconds() - $duration);
}
/**
* @return string
*/
public function string()
{
$chunks = [];
if ($this->weeks()) {
$chunks[] = $this->weeks() . 'w';
}
if ($this->days()) {
$chunks[] = $this->days() . 'd';
}
$chunks[] = sprintf(
'%02d:%02d:%02d',
$this->hours(),
$this->minutes(),
$this->seconds()
);
return implode(' ', $chunks);
}
/**
* @return string A string representing this object in an ISO compatible duration format (PnYnMnDTnHnMnS).
*/
public function isoString()
{
return Iso8601::formatDuration(
0,
0,
$this->totalDays(),
$this->hours(),
$this->minutes(),
$this->seconds()
);
}
/**
* @return string A string representing this object in an ISO compatible duration format (PnYnMnDTnHnMnS).
*/
public function __toString()
{
return $this->isoString();
}
private $seconds;
}