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
|
/*
* This file is part of Go Responsiveness.
*
* Go Responsiveness is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software Foundation,
* either version 2 of the License, or (at your option) any later version.
* Go Responsiveness is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with Go Responsiveness. If not, see <https://www.gnu.org/licenses/>.
*/
package series
import (
"fmt"
"sync"
"github.com/network-quality/goresponsiveness/utilities"
"golang.org/x/exp/constraints"
)
type WindowSeriesDuration int
const (
Forever WindowSeriesDuration = iota
WindowOnly WindowSeriesDuration = iota
)
type WindowSeries[Data any, Bucket constraints.Ordered] interface {
fmt.Stringer
Reserve(b Bucket) error
Fill(b Bucket, d Data) error
Count() (some int, none int)
ForEach(func(Bucket, *utilities.Optional[Data]))
GetValues() []utilities.Optional[Data]
Complete() bool
GetType() WindowSeriesDuration
}
type windowSeriesWindowOnlyImpl[Data any, Bucket constraints.Ordered] struct {
windowSize int
data []utilities.Pair[Bucket, utilities.Optional[Data]]
latestIndex int
empty bool
}
/*
* Beginning of WindowSeries interface methods.
*/
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) Reserve(b Bucket) error {
if !wsi.empty && b <= wsi.data[wsi.latestIndex].First {
return fmt.Errorf("reserving must be monotonically increasing")
}
if wsi.empty {
/* Special case if we are empty: The latestIndex is where we want this value to go! */
wsi.data[wsi.latestIndex] = utilities.Pair[Bucket, utilities.Optional[Data]]{
First: b, Second: utilities.None[Data](),
}
} else {
/* Otherwise, bump ourselves forward and place the new reservation there. */
wsi.latestIndex = wsi.nextIndex(wsi.latestIndex)
wsi.data[wsi.latestIndex] = utilities.Pair[Bucket, utilities.Optional[Data]]{
First: b, Second: utilities.None[Data](),
}
}
wsi.empty = false
return nil
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) Fill(b Bucket, d Data) error {
iterator := wsi.latestIndex
for {
if wsi.data[iterator].First == b {
wsi.data[iterator].Second = utilities.Some[Data](d)
return nil
}
iterator = wsi.nextIndex(iterator)
if iterator == wsi.latestIndex {
break
}
}
return fmt.Errorf("attempting to fill a bucket that does not exist")
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) Count() (some int, none int) {
some = 0
none = 0
for _, v := range wsi.data {
if utilities.IsSome[Data](v.Second) {
some++
} else {
none++
}
}
return
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) Complete() bool {
for _, v := range wsi.data {
if utilities.IsNone(v.Second) {
return false
}
}
return true
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) nextIndex(currentIndex int) int {
return (currentIndex + 1) % wsi.windowSize
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) previousIndex(currentIndex int) int {
nextIndex := currentIndex - 1
if nextIndex < 0 {
nextIndex += wsi.windowSize
}
return nextIndex
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) toArray() []utilities.Optional[Data] {
result := make([]utilities.Optional[Data], wsi.windowSize)
if wsi.empty {
return result
}
iterator := wsi.latestIndex
parallelIterator := 0
for {
result[parallelIterator] = wsi.data[iterator].Second
iterator = wsi.previousIndex(iterator)
parallelIterator++
if iterator == wsi.latestIndex {
break
}
}
return result
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) GetValues() []utilities.Optional[Data] {
return wsi.toArray()
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) GetType() WindowSeriesDuration {
return WindowOnly
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) ForEach(eacher func(b Bucket, d *utilities.Optional[Data])) {
for _, v := range wsi.data {
eacher(v.First, &v.Second)
}
}
func (wsi *windowSeriesWindowOnlyImpl[Data, Bucket]) String() string {
result := fmt.Sprintf("Window series (window (%d) only, latest index: %v): ", wsi.windowSize, wsi.latestIndex)
for _, v := range wsi.data {
valueString := "None"
if utilities.IsSome[Data](v.Second) {
valueString = fmt.Sprintf("%v", utilities.GetSome[Data](v.Second))
}
result += fmt.Sprintf("%v: %v; ", v.First, valueString)
}
return result
}
func newWindowSeriesWindowOnlyImpl[Data any, Bucket constraints.Ordered](
windowSize int,
) *windowSeriesWindowOnlyImpl[Data, Bucket] {
result := windowSeriesWindowOnlyImpl[Data, Bucket]{windowSize: windowSize, latestIndex: 0, empty: true}
result.data = make([]utilities.Pair[Bucket, utilities.Optional[Data]], windowSize)
return &result
}
/*
* End of WindowSeries interface methods.
*/
type windowSeriesForeverImpl[Data any, Bucket constraints.Ordered] struct {
data []utilities.Pair[Bucket, utilities.Optional[Data]]
empty bool
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) Reserve(b Bucket) error {
if !wsi.empty && b <= wsi.data[len(wsi.data)-1].First {
return fmt.Errorf("reserving must be monotonically increasing")
}
wsi.empty = false
wsi.data = append(wsi.data, utilities.Pair[Bucket, utilities.Optional[Data]]{First: b, Second: utilities.None[Data]()})
return nil
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) Fill(b Bucket, d Data) error {
for i := range wsi.data {
if wsi.data[i].First == b {
wsi.data[i].Second = utilities.Some[Data](d)
return nil
}
}
return fmt.Errorf("attempting to fill a bucket that does not exist")
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) GetValues() []utilities.Optional[Data] {
result := make([]utilities.Optional[Data], len(wsi.data))
for i, v := range utilities.Reverse(wsi.data) {
result[i] = v.Second
}
return result
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) Count() (some int, none int) {
some = 0
none = 0
for _, v := range wsi.data {
if utilities.IsSome[Data](v.Second) {
some++
} else {
none++
}
}
return
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) Complete() bool {
for _, v := range wsi.data {
if utilities.IsNone(v.Second) {
return false
}
}
return true
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) GetType() WindowSeriesDuration {
return Forever
}
func newWindowSeriesForeverImpl[Data any, Bucket constraints.Ordered]() *windowSeriesForeverImpl[Data, Bucket] {
result := windowSeriesForeverImpl[Data, Bucket]{empty: true}
result.data = nil
return &result
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) ForEach(eacher func(b Bucket, d *utilities.Optional[Data])) {
for _, v := range wsi.data {
eacher(v.First, &v.Second)
}
}
func (wsi *windowSeriesForeverImpl[Data, Bucket]) String() string {
result := "Window series (forever): "
for _, v := range wsi.data {
valueString := "None"
if utilities.IsSome[Data](v.Second) {
valueString = fmt.Sprintf("%v", utilities.GetSome[Data](v.Second))
}
result += fmt.Sprintf("%v: %v; ", v.First, valueString)
}
return result
}
/*
* End of WindowSeries interface methods.
*/
func NewWindowSeries[Data any, Bucket constraints.Ordered](tipe WindowSeriesDuration, windowSize int) WindowSeries[Data, Bucket] {
if tipe == WindowOnly {
return newWindowSeriesWindowOnlyImpl[Data, Bucket](windowSize)
} else if tipe == Forever {
return newWindowSeriesForeverImpl[Data, Bucket]()
}
panic("")
}
type NumericBucketGenerator[T utilities.Number] struct {
mt sync.Mutex
currentValue T
}
func (bg *NumericBucketGenerator[T]) Generate() T {
bg.mt.Lock()
defer bg.mt.Unlock()
bg.currentValue++
return bg.currentValue
}
func NewNumericBucketGenerator[T utilities.Number](initialValue T) NumericBucketGenerator[T] {
return NumericBucketGenerator[T]{currentValue: initialValue}
}
|