-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.go
418 lines (350 loc) · 9.13 KB
/
collection.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
package main
import (
"fmt"
"os"
"strconv"
"text/tabwriter"
"time"
"github.com/jackc/pgx/v5"
"github.com/urfave/cli/v2"
"golang.org/x/exp/slog"
)
var collectionCommand = &cli.Command{
Name: "collection",
Usage: "Commands for managing collections",
Subcommands: []*cli.Command{
{
Name: "list",
Usage: "List known collections.",
Action: CollectionList,
Flags: union([]cli.Flag{}, dbFlags, loggingFlags, hlogDefaultTrue),
},
{
Name: "gaps",
Usage: "List missing sequences in a collection.",
Action: CollectionGaps,
Flags: union([]cli.Flag{
&cli.IntFlag{
Name: "id",
Required: true,
Usage: "ID of query.",
},
}, dbFlags, loggingFlags),
},
{
Name: "fill",
Usage: "Fill missing sequences in a collection.",
Action: CollectionFill,
Flags: union([]cli.Flag{
&cli.IntFlag{
Name: "id",
Required: true,
Usage: "ID of query.",
},
}, dbFlags, loggingFlags),
},
{
Name: "collect",
Usage: "Collect a result from a query and write to the collection.",
Action: CollectionCollect,
Flags: union([]cli.Flag{
&cli.IntFlag{
Name: "id",
Required: true,
Usage: "ID of query.",
},
&cli.IntFlag{
Name: "seq",
Usage: "Sequence number of query series to collect.",
},
&cli.BoolFlag{
Name: "force",
Usage: "Force collected value to be written to sequence.",
},
}, dbFlags, loggingFlags),
},
{
Name: "get",
Usage: "Get values from a collection.",
Action: CollectionGet,
Flags: union([]cli.Flag{
&cli.IntFlag{
Name: "id",
Required: true,
Usage: "ID of query.",
},
&cli.IntFlag{
Name: "from",
Required: false,
Usage: "Show values with sequence equal to or greater than this number.",
},
&cli.IntFlag{
Name: "to",
Required: false,
Usage: "Show values with sequence equal to or less than this number.",
},
}, dbFlags, loggingFlags),
},
{
Name: "set",
Usage: "Set a sequence value in a collection.",
Action: CollectionSet,
Flags: union([]cli.Flag{
&cli.IntFlag{
Name: "id",
Required: true,
Usage: "ID of query.",
},
&cli.IntFlag{
Name: "seq",
Required: true,
Usage: "Sequence number of value in collection.",
},
&cli.Float64Flag{
Name: "value",
Required: true,
Usage: "Value to set.",
},
}, dbFlags, loggingFlags),
},
},
}
func CollectionList(cc *cli.Context) error {
ctx := cc.Context
setupLogging()
db := NewDB(dbConnStr())
conn, err := db.NewConn(ctx)
if err != nil {
return fmt.Errorf("connect: %w", err)
}
rows, err := conn.Query(ctx, "select q.id, q.name, max(c.seq) from queries q left join collections c on q.id=c.query_id group by q.id, q.name order by q.id, q.name")
if err != nil {
return fmt.Errorf("query: %w", err)
}
type CollectionInfoRow struct {
QueryID int
Name string
Seq *int
}
cis, err := pgx.CollectRows(rows, pgx.RowToAddrOfStructByPos[CollectionInfoRow])
if err != nil {
return fmt.Errorf("collect: %w", err)
}
if len(cis) == 0 {
fmt.Println("No collections found")
return nil
}
w := tabwriter.NewWriter(os.Stdout, 1, 1, 4, ' ', 0)
fmt.Fprintln(w, "Query ID\t| Name\t| Last Seq")
for _, ci := range cis {
seq := "--"
if ci.Seq != nil {
seq = strconv.Itoa(*ci.Seq)
}
fmt.Fprintf(w, "%d\t| %s\t| %s\n", ci.QueryID, ci.Name, seq)
}
return w.Flush()
}
func CollectionGaps(cc *cli.Context) error {
ctx := cc.Context
setupLogging()
queryID := cc.Int("id")
if queryID < 0 {
return fmt.Errorf("ID must be a positive integer")
}
db := NewDB(dbConnStr())
seqs, err := FindCollectionGaps(ctx, db, queryID)
if err != nil {
return fmt.Errorf("find collection gaps: %w", err)
}
if len(seqs) == 0 {
fmt.Println("No gaps found")
return nil
}
q, err := GetQuery(ctx, db, queryID)
if err != nil {
return fmt.Errorf("get query: %w", err)
}
w := tabwriter.NewWriter(os.Stdout, 1, 1, 4, ' ', 0)
fmt.Fprintln(w, "Time\t| Seq")
for _, seq := range seqs {
fmt.Fprintf(w, "%s\t| %d\n", q.SeqTime(seq).Format("2006-01-02T15:04:05Z"), seq)
}
return w.Flush()
}
func CollectionFill(cc *cli.Context) error {
ctx := cc.Context
setupLogging()
queryID := cc.Int("id")
if queryID < 0 {
return fmt.Errorf("ID must be a positive integer")
}
db := NewDB(dbConnStr())
seqs, err := FindCollectionGaps(ctx, db, queryID)
if err != nil {
return fmt.Errorf("find collection gaps: %w", err)
}
if len(seqs) == 0 {
fmt.Println("No gaps found")
return nil
}
conn, err := db.NewConn(ctx)
if err != nil {
return fmt.Errorf("connect: %w", err)
}
qry, err := GetQuery(ctx, db, queryID)
if err != nil {
return fmt.Errorf("get query: %w", err)
}
ss := new(SecretStore)
secrets, err := ss.Secrets(qry.ProviderID, qry.AuthType)
if err != nil {
return fmt.Errorf("failed to get secrets for provider: %w", err)
}
for _, seq := range seqs {
slog.Info("filling gap", "query_id", queryID, "seq", seq)
points, err := DispatchQuery(ctx, qry, seq, secrets)
if err != nil {
return fmt.Errorf("failed to execute query: %w", err)
}
if len(points) == 0 {
return fmt.Errorf("no points found")
}
if len(points) > 1 {
return fmt.Errorf("too many points found: %d", len(points))
}
tx, err := conn.Begin(ctx)
if err != nil {
return fmt.Errorf("begin transaction: %w", err)
}
defer tx.Rollback(ctx)
slog.Info("inserting collected value", "query_id", queryID, "seq", points[0].Seq, "value", points[0].Value)
_, err = tx.Exec(ctx, "insert into collections(query_id,seq,value) values ($1,$2,$3)", queryID, points[0].Seq, points[0].Value)
if err != nil {
return fmt.Errorf("exec (%T): %w", err, err)
}
err = tx.Commit(ctx)
if err != nil {
return fmt.Errorf("commit: %w", err)
}
time.Sleep(time.Second)
}
return nil
}
func CollectionCollect(cc *cli.Context) error {
ctx := cc.Context
setupLogging()
queryID := cc.Int("id")
seq := cc.Int("seq")
force := cc.Bool("force")
if queryID < 0 {
return fmt.Errorf("ID must be a positive integer")
}
if seq <= 0 {
return fmt.Errorf("sequence must be greater than zero")
}
db := NewDB(dbConnStr())
qry, err := GetQuery(ctx, db, queryID)
if err != nil {
return fmt.Errorf("get query: %w", err)
}
ss := new(SecretStore)
secrets, err := ss.Secrets(qry.ProviderID, qry.AuthType)
if err != nil {
return fmt.Errorf("failed to get secrets for provider: %w", err)
}
points, err := DispatchQuery(ctx, qry, seq, secrets)
if err != nil {
return fmt.Errorf("failed to execute query: %w", err)
}
if len(points) == 0 {
return fmt.Errorf("no points found")
}
if len(points) > 1 {
return fmt.Errorf("too many points found: %d", len(points))
}
slog.Info("inserting collected value", "query_id", queryID, "seq", points[0].Seq, "value", points[0].Value)
if err := WriteCollectionSeq(ctx, db, queryID, points[0].Seq, points[0].Value, force); err != nil {
return fmt.Errorf("write collection sequence: %w", err)
}
return nil
}
func CollectionGet(cc *cli.Context) error {
ctx := cc.Context
setupLogging()
queryID := cc.Int("id")
if queryID < 0 {
return fmt.Errorf("ID must be a positive integer")
}
var fromSeq *int
var toSeq *int
if cc.IsSet("from") {
from := cc.Int("from")
fromSeq = &from
if *fromSeq <= 0 {
return fmt.Errorf("from must be greater than zero")
}
}
if cc.IsSet("to") {
to := cc.Int("to")
toSeq = &to
if *toSeq <= 0 {
return fmt.Errorf("to must be greater than zero")
}
if fromSeq != nil && *fromSeq > *toSeq {
return fmt.Errorf("from must not be greater than to")
}
}
slog.Debug("getting collection values", "query_id", queryID, "from", fromSeq, "to", toSeq)
db := NewDB(dbConnStr())
points, err := GetCollectionValues(ctx, db, queryID, fromSeq, toSeq)
if err != nil {
return fmt.Errorf("failed to execute query: %w", err)
}
if len(points) == 0 {
return fmt.Errorf("no points found")
}
w := tabwriter.NewWriter(os.Stdout, 1, 1, 4, ' ', 0)
fmt.Fprintln(w, "Seq\t| Time\t| Value")
for _, pt := range points {
v := "(missing)"
if pt.Value != nil {
v = formatFloat64(*pt.Value)
}
fmt.Fprintf(w, "%d\t| %s\t| %v\t\n", pt.Seq, pt.Time.Format("2006-01-02T15:04:05Z"), v)
}
return w.Flush()
}
func CollectionSet(cc *cli.Context) error {
ctx := cc.Context
setupLogging()
queryID := cc.Int("id")
if queryID < 0 {
return fmt.Errorf("ID must be a positive integer")
}
seq := cc.Int("seq")
if seq < 0 {
return fmt.Errorf("sequence must be zero or greater")
}
value := cc.Float64("value")
db := NewDB(dbConnStr())
conn, err := db.NewConn(ctx)
if err != nil {
return fmt.Errorf("connect: %w", err)
}
tx, err := conn.Begin(ctx)
if err != nil {
return fmt.Errorf("begin transaction: %w", err)
}
defer tx.Rollback(ctx)
slog.Info("inserting collected value", "query_id", queryID, "seq", seq, "value", value)
_, err = tx.Exec(ctx, "insert into collections(query_id,seq,value) values ($1,$2,$3)", queryID, seq, value)
if err != nil {
return fmt.Errorf("exec (%T): %w", err, err)
}
err = tx.Commit(ctx)
if err != nil {
return fmt.Errorf("commit: %w", err)
}
return nil
}