-
Notifications
You must be signed in to change notification settings - Fork 35
/
accum.go
186 lines (171 loc) · 4.2 KB
/
accum.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
// Copyright 2018 GRAIL, Inc. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package bigslice
import (
"context"
"reflect"
"github.com/grailbio/bigslice/frame"
"github.com/grailbio/bigslice/slicefunc"
"github.com/grailbio/bigslice/sliceio"
)
// An Accumulator represents a stateful accumulation of values of
// a certain type. Accumulators maintain their state in memory.
//
// Accumulators should be read only after accumulation is complete.
type Accumulator interface {
// Accumulate the provided columns of length n.
Accumulate(in frame.Frame, n int)
// Read a batch of accumulated values into keys and values. These
// are slices of the key type and accumulator type respectively.
Read(keys, values reflect.Value) (int, error)
}
func canMakeAccumulatorForKey(keyType reflect.Type) bool {
switch keyType.Kind() {
case reflect.String, reflect.Int, reflect.Int64:
return true
default:
return false
}
}
func makeAccumulator(keyType, accType reflect.Type, fn slicefunc.Func) Accumulator {
switch keyType.Kind() {
case reflect.String:
return &stringAccumulator{
accType: accType,
fn: fn,
state: make(map[string]reflect.Value),
}
case reflect.Int:
return &intAccumulator{
accType: accType,
fn: fn,
state: make(map[int]reflect.Value),
}
case reflect.Int64:
return &int64Accumulator{
accType: accType,
fn: fn,
state: make(map[int64]reflect.Value),
}
default:
return nil
}
}
// StringAccumulator accumulates values by string keys.
type stringAccumulator struct {
accType reflect.Type
fn slicefunc.Func
state map[string]reflect.Value
}
func (s *stringAccumulator) Accumulate(in frame.Frame, n int) {
ctx := context.Background()
keys := in.Interface(0).([]string)
args := make([]reflect.Value, in.NumOut())
for i := 0; i < n; i++ {
key := keys[i]
val, ok := s.state[key]
if !ok {
val = reflect.Zero(s.accType)
}
args[0] = val
for j := 1; j < in.NumOut(); j++ {
args[j] = in.Index(j, i)
}
s.state[key] = s.fn.Call(ctx, args)[0]
}
}
func (s *stringAccumulator) Read(keys, values reflect.Value) (n int, err error) {
max := keys.Len()
for key, val := range s.state {
if n >= max {
break
}
keys.Index(n).Set(reflect.ValueOf(key))
values.Index(n).Set(val)
delete(s.state, key)
n++
}
if len(s.state) == 0 {
return n, sliceio.EOF
}
return n, nil
}
// IntAccumulator accumulates values by integer keys.
type intAccumulator struct {
accType reflect.Type
fn slicefunc.Func
state map[int]reflect.Value
}
func (s *intAccumulator) Accumulate(in frame.Frame, n int) {
ctx := context.Background()
keys := in.Interface(0).([]int)
args := make([]reflect.Value, in.NumOut())
for i := 0; i < n; i++ {
key := keys[i]
val, ok := s.state[key]
if !ok {
val = reflect.Zero(s.accType)
}
args[0] = val
for j := 1; j < in.NumOut(); j++ {
args[j] = in.Index(j, i)
}
s.state[key] = s.fn.Call(ctx, args)[0]
}
}
func (s *intAccumulator) Read(keys, values reflect.Value) (n int, err error) {
max := keys.Len()
for key, val := range s.state {
if n >= max {
break
}
keys.Index(n).Set(reflect.ValueOf(key))
values.Index(n).Set(val)
delete(s.state, key)
n++
}
if len(s.state) == 0 {
return n, sliceio.EOF
}
return n, nil
}
// Int64Accumulator accumulates values by integer keys.
type int64Accumulator struct {
accType reflect.Type
fn slicefunc.Func
state map[int64]reflect.Value
}
func (s *int64Accumulator) Accumulate(in frame.Frame, n int) {
ctx := context.Background()
keys := in.Interface(0).([]int64)
args := make([]reflect.Value, in.NumOut())
for i := 0; i < n; i++ {
key := keys[i]
val, ok := s.state[key]
if !ok {
val = reflect.Zero(s.accType)
}
args[0] = val
for j := 1; j < in.NumOut(); j++ {
args[j] = in.Index(j, i)
}
s.state[key] = s.fn.Call(ctx, args)[0]
}
}
func (s *int64Accumulator) Read(keys, values reflect.Value) (n int, err error) {
max := keys.Len()
for key, val := range s.state {
if n >= max {
break
}
keys.Index(n).Set(reflect.ValueOf(key))
values.Index(n).Set(val)
delete(s.state, key)
n++
}
if len(s.state) == 0 {
return n, sliceio.EOF
}
return n, nil
}