-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
offsets.go
316 lines (261 loc) · 6.87 KB
/
offsets.go
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
package calends
import (
"github.com/danhunsaker/calends/calendars"
"github.com/go-errors/errors"
)
// Add creates a new Calends object a given offset after the current start
// point.
func (c Calends) Add(offset interface{}, calendar string) (out Calends, err error) {
if calendar == "" {
calendar = "unix"
}
if !calendars.Registered(calendar) {
err := errors.Wrap(calendars.ErrUnknownCalendar(calendar), 1)
return c, err
}
stamp, err := calendars.Offset(calendar, c.startTime, offset)
if err != nil {
return
}
out, err = c.SetDate(stamp, "tai64", "")
return
}
// Subtract creates a new Calends object a given offset before the current start
// point.
func (c Calends) Subtract(offset interface{}, calendar string) (Calends, error) {
return c.Add(negateOffset(offset), calendar)
}
// AddFromEnd creates a new Calends object a given offset after the current end
// point.
func (c Calends) AddFromEnd(offset interface{}, calendar string) (out Calends, err error) {
if calendar == "" {
calendar = "unix"
}
if !calendars.Registered(calendar) {
err := errors.Wrap(calendars.ErrUnknownCalendar(calendar), 1)
return c, err
}
stamp, err := calendars.Offset(calendar, c.endTime, offset)
if err != nil {
return
}
out, err = c.SetEndDate(stamp, "tai64", "")
return
}
// SubtractFromEnd creates a new Calends object a given offset before the
// current end point.
func (c Calends) SubtractFromEnd(offset interface{}, calendar string) (Calends, error) {
return c.AddFromEnd(negateOffset(offset), calendar)
}
// Next creates a new Calends object with a range spanning a given offset, and
// starting at the current end point.
func (c Calends) Next(offset interface{}, calendar string) (Calends, error) {
if emptyValue(offset) {
offset = c.duration.Text('f', 45)
calendar = "tai64"
}
if calendar == "" {
calendar = "unix"
}
newEndTime, err := calendars.Offset(calendar, c.endTime, offset)
if err != nil {
return c, err
}
return Create(map[string]interface{}{
"start": c.endTime,
"end": newEndTime,
}, "tai64", "")
}
// Previous creates a new Calends object with a range spanning a given offset,
// and ending at the current start point.
func (c Calends) Previous(offset interface{}, calendar string) (Calends, error) {
if emptyValue(offset) {
offset = c.duration.Text('f', 45)
calendar = "tai64"
}
if calendar == "" {
calendar = "unix"
}
newStartTime, err := calendars.Offset(calendar, c.startTime, negateOffset(offset))
if err != nil {
return c, err
}
return Create(map[string]interface{}{
"start": newStartTime,
"end": c.startTime,
}, "tai64", "")
}
// SetDate creates a new Calends object starting at a given date.
func (c Calends) SetDate(stamp interface{}, calendar, format string) (Calends, error) {
if calendar == "" {
calendar = "unix"
}
if !calendars.Registered(calendar) {
err := errors.Wrap(calendars.ErrUnknownCalendar(calendar), 1)
return c, err
}
if format == "" {
format = calendars.DefaultFormat(calendar)
}
startTime, err := calendars.ToInternal(calendar, stamp, format)
if err != nil {
return c, err
}
return Create(map[string]interface{}{
"start": startTime,
"end": c.endTime,
}, "tai64", "")
}
// SetEndDate creates a new Calends object ending at a given date.
func (c Calends) SetEndDate(stamp interface{}, calendar, format string) (Calends, error) {
if calendar == "" {
calendar = "unix"
}
if !calendars.Registered(calendar) {
err := errors.Wrap(calendars.ErrUnknownCalendar(calendar), 1)
return c, err
}
if format == "" {
format = calendars.DefaultFormat(calendar)
}
endTime, err := calendars.ToInternal(calendar, stamp, format)
if err != nil {
return c, err
}
return Create(map[string]interface{}{
"start": c.startTime,
"end": endTime,
}, "tai64", "")
}
// SetDuration creates a new Calends object spanning from the current start
// point for a given duration.
func (c Calends) SetDuration(duration interface{}, calendar string) (Calends, error) {
if calendar == "" {
calendar = "unix"
}
if !calendars.Registered(calendar) {
err := errors.Wrap(calendars.ErrUnknownCalendar(calendar), 1)
return c, err
}
offset, err := c.Add(duration, calendar)
if err != nil {
return c, err
}
return c.SetEndDate(offset.startTime, "tai64", "")
}
// SetDurationFromEnd creates a new Calends object spanning for a given duration
// to the current end point.
func (c Calends) SetDurationFromEnd(duration interface{}, calendar string) (Calends, error) {
if calendar == "" {
calendar = "unix"
}
if !calendars.Registered(calendar) {
err := errors.Wrap(calendars.ErrUnknownCalendar(calendar), 1)
return c, err
}
offset, err := c.SubtractFromEnd(duration, calendar)
if err != nil {
return c, err
}
return c.SetDate(offset.endTime, "tai64", "")
}
// Merge two Calends objects.
/*
Creates a new Calends object with the earlier start and later end points of the
current object and another one
*/
func (c Calends) Merge(z Calends) (Calends, error) {
startTime := c.startTime
if z.StartsBefore(c) {
startTime = z.startTime
}
endTime := c.endTime
if z.EndsAfter(c) {
endTime = z.endTime
}
return Create(map[string]interface{}{
"start": startTime,
"end": endTime,
}, "tai64", "")
}
// Intersect gets the intersection of two Calends objects.
/*
Creates a new Calends object with the overlapping time between the current
object and another one
*/
func (c Calends) Intersect(z Calends) (Calends, error) {
if !c.Overlaps(z) {
return c, errors.New("Times do not overlap; no intersection exists")
}
startTime := c.startTime
if z.StartsDuring(c) {
startTime = z.startTime
}
endTime := c.endTime
if z.EndsDuring(c) {
endTime = z.endTime
}
return Create(map[string]interface{}{
"start": startTime,
"end": endTime,
}, "tai64", "")
}
// Gap gets the gap between two Calends objects.
/*
Creates a new Calends object with the gap in time between the current object and
another one
*/
func (c Calends) Gap(z Calends) (Calends, error) {
if c.Overlaps(z) {
return c, errors.New("Times overlap; no gap exists")
}
startTime := c.endTime
if z.EndsBefore(c) {
startTime = z.endTime
}
endTime := c.startTime
if z.StartsAfter(c) {
endTime = z.startTime
}
return Create(map[string]interface{}{
"start": startTime,
"end": endTime,
}, "tai64", "")
}
func emptyValue(in interface{}) (out bool) {
switch in := in.(type) {
case []byte:
out = emptyValue(string(in))
case string:
out = (in == "")
case int:
out = false
case float64:
out = false
case calendars.TAI64NARUXTime:
out = false
default:
out = true
}
if in == nil {
out = true
}
return
}
func negateOffset(in interface{}) (out interface{}) {
switch in := in.(type) {
case []byte:
out = negateOffset(string(in))
case string:
out = "-" + in
case int:
out = 0 - in
case float64:
out = 0.0 - in
case calendars.TAI64NARUXTime:
out = (calendars.TAI64NARUXTime{}).Sub(in)
default:
out = ""
}
return
}