-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduration.ts
296 lines (269 loc) · 7.76 KB
/
duration.ts
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
import { truncateDivide } from "./helpers.ts";
/**
* A span of time as 2^31-1 seconds.
*
* `Duration` is complete successor of dart's [Duration](https://api.dart.dev/stable/2.10.5/dart-core/Duration-class.html) class.
*
* Duration is not depends on Date, Timezone. Duration based on microseconds,
* You can convert to days, hours, minutes, seconds, milliseconds and microseconds itself.
*
* To create a new Duration object, use single constructor giving the appropriate arguments:
*
* ```ts
* Duration fastestMarathon = new Duration({hours:2, minutes:3, seconds:2});
* ```
*
* The Duration is sum of all individual parts notice above.
*
* ```ts
* assert(fastestMarathon === 123);
* ```
* The parts of Duration can be a negative one.
*
* Duration has arithmetic and compare method, You can add, subtract, multiply, divide and compare like >, <, >=, <=.
*/
export default class Duration {
static microsecondsPerMillisecond = 1000;
static millisecondsPerSecond = 1000;
static secondsPerMinute = 60;
static minutesPerHour = 60;
static hoursPerDay = 24;
static microsecondsPerSecond = Duration.microsecondsPerMillisecond *
Duration.millisecondsPerSecond;
static microsecondsPerMinute = Duration.microsecondsPerSecond *
Duration.secondsPerMinute;
static microsecondsPerHour = Duration.microsecondsPerMinute *
Duration.minutesPerHour;
static microsecondsPerDay = Duration.microsecondsPerHour *
Duration.hoursPerDay;
static millisecondsPerMinute = Duration.millisecondsPerSecond *
Duration.secondsPerMinute;
static millisecondsPerHour = Duration.millisecondsPerMinute *
Duration.minutesPerHour;
static millisecondsPerDay = Duration.millisecondsPerHour *
Duration.hoursPerDay;
static secondsPerHour = Duration.secondsPerMinute * Duration.minutesPerHour;
static secondsPerDay = Duration.secondsPerHour * Duration.hoursPerDay;
static minutesPerDay = Duration.minutesPerHour * Duration.hoursPerDay;
static zero = new Duration({ seconds: 0 });
/*
* The value of this Duration object in **microseconds**.
*/
private _duration: number;
/**
*
* @param DurationOptions
*/
constructor(
{
days = 0,
hours = 0,
minutes = 0,
seconds = 0,
milliseconds = 0,
microseconds = 0,
}: DurationOptions,
) {
this._duration = Duration.microsecondsPerDay * days +
Duration.microsecondsPerHour * hours +
Duration.microsecondsPerMinute * minutes +
Duration.microsecondsPerSecond * seconds +
Duration.microsecondsPerMillisecond * milliseconds +
microseconds ?? 0;
}
/**
* Returns new Duration with microseconds
* @param microseconds
*/
_microseconds(microseconds = 0): Duration {
return new Duration({ microseconds });
}
/**
* Returns this Duration sum with given other Duration
* @param other
*/
add(other: Duration): Duration {
return this._microseconds(this.duration + other.duration);
}
/**
* Returns this Duration subtract with given other Duration
* @param other
*/
subtract(other: Duration): Duration {
return this._microseconds(this.duration - other.duration);
}
/**
* Returns this Duration multiply with given factor
* @param other
*/
multiply(factor: number): Duration {
return this._microseconds(Math.round(this.duration * factor));
}
/**
* Returns this Duration divide with given quotient
* @param other
*/
divide(quotient: number): Duration {
return this._microseconds(truncateDivide(this.duration, quotient));
}
/**
* Returns true if this Duration is greater than other Duration
* @param other
*/
moreThan(other: Duration): boolean {
return this.duration > other.duration;
}
/**
* Returns true if this Duration is greater than equal with other Duration
* @param other
*/
moreThanEqual(other: Duration): boolean {
return this.duration >= other.duration;
}
/**
* Returns true if this Duration is less than other Duration
* @param other
*/
lessThan(other: Duration): boolean {
return this.duration < other.duration;
}
/**
* Returns true if this Duration is less than equal with other Duration
* @param other
*/
lessThanEqual(other: Duration): boolean {
return this.duration <= other.duration;
}
/**
* Returns number of whole milliseconds spanned by this Duration
*
* Same as inMilliseconds
*/
get duration(): number {
return this._duration;
}
/**
* Returns the number of whole days spanned by this Duration.
*/
get inDays(): number {
return truncateDivide(this.duration, Duration.microsecondsPerDay);
}
/**
* Returns the number of whole hours spanned by this Duration.
*/
get inHours(): number {
return truncateDivide(this.duration, Duration.microsecondsPerHour);
}
/**
* Returns number of whole microseconds spanned by this Duration.
*/
get inMinutes(): number {
return truncateDivide(this.duration, Duration.microsecondsPerMinute);
}
/**
* Returns the number of whole seconds spanned by this Duration.
*/
get inSeconds(): number {
return truncateDivide(this.duration, Duration.microsecondsPerSecond);
}
/**
* Returns number of whole milliseconds spanned by this Duration.
*/
get inMilliseconds(): number {
return truncateDivide(this.duration, Duration.microsecondsPerMillisecond);
}
/**
* Returns number of whole microseconds spanned by this Duration.
*/
get inMicroseconds(): number {
return this.duration;
}
/**
* Returns whether this Duration is zero
*/
get isZero(): boolean {
return this.duration === 0;
}
/**
* Returns whether this Duration is negative
*/
get isNegative(): boolean {
return this.duration < 0;
}
/**
* Returns a new Duration representing the absolute value of this Duration.
*/
abs(): Duration {
return this._microseconds(Math.abs(this.duration));
}
/**
* Compares this Duration to other, returning zero if the values are equal.
*
* ```ts
* const duration1 = new Duration({ days: 2 });
* const duration2 = new Duration({ days: 1 });
*
* assert(duration1.compareTo(duration2) === 1)
*
* const duration1 = new Duration({ days: 1 });
* const duration2 = new Duration({ days: 2 });
*
* assert(duration1.compareTo(duration2) === -1)
*
* const duration1 = new Duration({ days: 1 });
* const duration2 = new Duration({ days: 1 });
*
* assert(duration1.compareTo(duration2) === 0)
*
* ```
* @param other {Duration}
*/
compareTo(other: Duration): number {
if (this.duration > other.duration) {
return 1;
} else if (this.duration < other.duration) {
return -1;
}
return 0;
}
toString(): string {
function sixDigits(n: number): string {
if (n >= 100000) return `${n}`;
if (n >= 10000) return `0${n}`;
if (n >= 1000) return `00${n}`;
if (n >= 100) return `000${n}`;
if (n >= 10) return `0000${n}`;
return `00000${n}`;
}
function twoDigits(n: number): string {
if (n >= 10) return `${n}`;
return `0${n}`;
}
if (this.inMicroseconds < 0) {
return `-${this._microseconds(-this._duration)}`;
}
const twoDigitMinutes = twoDigits(
this.inMinutes % (Duration.minutesPerHour),
);
const twoDigitSeconds = twoDigits(
this.inSeconds % (Duration.secondsPerMinute),
);
const sixDigitUs = sixDigits(
this.inMicroseconds % (Duration.microsecondsPerSecond),
);
return `${this.inHours}:${twoDigitMinutes}:${twoDigitSeconds}.${sixDigitUs}`;
}
}
/**
* DurationOptions using Duration constructor
*
* all properties can be omitted.
*/
interface DurationOptions {
days?: number;
hours?: number;
minutes?: number;
seconds?: number;
milliseconds?: number;
microseconds?: number;
}