-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutils.go
172 lines (140 loc) · 4.5 KB
/
utils.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
package kal
import (
"errors"
"fmt"
"time"
)
// Checks if the given time is at the given month and day
func atMD(date time.Time, month, day int) bool {
return (date.Month() == time.Month(month)) && (date.Day() == day)
}
// Checks if the two given times are at the same months and days
func atDate(t, when time.Time) bool {
return (t.Month() == when.Month()) && (t.Day() == when.Day())
}
// Return the count of a given weekday from day t, +- a few days
func numberOfWeekdaysInPeriod(date time.Time, days int, whichWeekday time.Weekday) int {
specialWeekdayCounter := 0
when := date
if days < 0 {
for i := days; i <= 0; i++ {
when = date.AddDate(0, 0, i)
if when.Weekday() == whichWeekday {
specialWeekdayCounter++
}
}
} else {
for i := 0; i <= days; i++ {
when = date.AddDate(0, 0, i)
if when.Weekday() == whichWeekday {
specialWeekdayCounter++
}
}
}
return specialWeekdayCounter
}
// Return the number of sundays from day t, +- a few days
func sundaysInPeriod(date time.Time, days int) int {
return numberOfWeekdaysInPeriod(date, days, time.Sunday)
}
// Find a preceding sunday, same year
func searchBackwardsForSunday(date time.Time) (time.Time, error) {
return searchBackwardsForDaySameYear(date, time.Sunday)
}
// Find the last weekday given a month/year
func lastDayOfMonth(date time.Time, weekday time.Weekday) time.Time {
var found time.Time
// Start with the first day in the given month
current := time.Date(date.Year(), date.Month(), 1, 0, 0, 0, 0, time.UTC)
// Stay within the same month
for current.Month() == date.Month() {
// Check if it's the given weekday
if current.Weekday() == weekday {
// Found one
found = current
}
// Go the next day
current = current.AddDate(0, 0, 1)
}
// Return the last found day
return found
}
// Find a later weekday, same month
func searchForwardsForDaySameMonth(date time.Time, weekday time.Weekday) (time.Time, error) {
// Start with the day after the given date
current := date.AddDate(0, 0, 1)
// Stay within the same month
for current.Month() == date.Month() {
// Check if it's the given weekday
if current.Weekday() == weekday {
// Found one
return current, nil
}
// Go the next day
current = current.AddDate(0, 0, 1)
}
return date, errors.New("Could not find a later " + weekday.String() + " the same month!")
}
// Find a preceding weekday, same year
func searchBackwardsForDaySameYear(date time.Time, weekday time.Weekday) (time.Time, error) {
// Start with the day before the given date
current := date.AddDate(0, 0, -1)
// Stay within the same year
for current.Year() == date.Year() {
// Check if it's the given weekday
if current.Weekday() == weekday {
// Found one
return current, nil
}
// Go the previous day
current = current.AddDate(0, 0, -1)
}
return date, errors.New("Could not find an earlier " + weekday.String() + " the same year!")
}
// Check if the given date is at the Nth weekday (for istance Sunday) of a given month
func atNthWeekdayOfMonth(date time.Time, n int, weekday time.Weekday, month time.Month) bool {
if date.Month() != month {
return false
}
nthDay, err := nthWeekdayOfMonth(date, n, weekday)
if err != nil {
return false
}
if atDate(date, nthDay) {
return true
}
return false
}
// Check if the given date is at the last type of weekday (like monday)
func atLastWeekday(date time.Time, weekday time.Weekday, month time.Month) bool {
return (date.Month() == month) && atDate(date, lastDayOfMonth(date, weekday))
}
// Find the Nth type of weekday of a given year and month
func nthWeekdayOfMonth(date time.Time, n int, whichWeekday time.Weekday) (time.Time, error) {
specialWeekdayCounter := 0
// Start at the first day in the given month
current := time.Date(date.Year(), date.Month(), 1, 0, 0, 0, 0, time.UTC)
// As long as we are in the same month
for current.Month() == date.Month() {
// Which weekday is it?
if current.Weekday() == whichWeekday {
specialWeekdayCounter++
}
// Is it the Nth occurrence?
if specialWeekdayCounter == n {
return current, nil
}
// If it's the given weekday, advance almost one week forward
if current.Weekday() == whichWeekday {
current = current.AddDate(0, 0, 7)
continue
}
// Advance to the next day
current = current.AddDate(0, 0, 1)
}
return date, fmt.Errorf("could not find the %dth %s in %s", n, whichWeekday, date.Month())
}
// Find the Nth sunday of a given year and month
func nthSundayOfMonth(date time.Time, n int) (time.Time, error) {
return nthWeekdayOfMonth(date, n, time.Sunday)
}