This repository has been archived by the owner on Oct 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ocdb.go
581 lines (463 loc) · 13.4 KB
/
ocdb.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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
// Copyright 2019 The Alice-Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package ocdb exposes types and functions to read and write OCDB files.
package ocdb
import (
"bytes"
"fmt"
"io"
"go-hep.org/x/hep/groot/rbase"
"go-hep.org/x/hep/groot/rbytes"
"go-hep.org/x/hep/groot/rcont"
"go-hep.org/x/hep/groot/root"
)
// Entry represents a single entry in an OCDB data file.
type Entry struct {
base rbase.Object
obj root.Object `groot:"fObject"`
id ID `groot:"fId"`
meta *MetaData `groot:"fMetaData"`
owner bool `groot:"fIsOwner"`
}
func (*Entry) Class() string { return "AliCDBEntry" }
func (*Entry) RVersion() int16 { return 1 }
func (entry *Entry) Display(w io.Writer) {
fmt.Fprintf(w, `=== Entry ===
ID: %v
Owner: %v
`,
entry.id, entry.owner,
)
if entry.meta != nil {
fmt.Fprintf(w, "MetaData:\n")
entry.meta.Display(w)
}
if entry.obj != nil {
fmt.Fprintf(w, "Object: %T\n%v\n===\n", entry.obj, entry.obj)
}
}
// MarshalROOT implements rbytes.Marshaler
func (entry *Entry) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(entry.RVersion())
entry.base.MarshalROOT(w)
w.WriteObjectAny(entry.obj)
entry.id.MarshalROOT(w)
w.WriteObjectAny(entry.meta)
w.WriteBool(entry.owner)
return w.SetByteCount(pos, entry.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (o *Entry) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(o.Class())
if err := o.base.UnmarshalROOT(r); err != nil {
return err
}
o.obj = r.ReadObjectAny()
if err := o.id.UnmarshalROOT(r); err != nil {
return err
}
o.meta = nil
if obj := r.ReadObjectAny(); obj != nil {
o.meta = obj.(*MetaData)
}
o.owner = r.ReadBool()
r.CheckByteCount(pos, bcnt, start, o.Class())
return r.Err()
}
// ID uniquely identifies an entry in an OCDB file.
type ID struct {
base rbase.Object
path Path `groot:"fPath"`
runs RunRange `groot:"fRunRange"`
vers int32 `groot:"fVersion"`
subvers int32 `groot:"fSubVersion"`
last string `groot:"fLastStorage"`
}
func (*ID) Class() string { return "AliCDBId" }
func (*ID) RVersion() int16 { return 1 }
func (id ID) String() string {
return fmt.Sprintf("AliCDBId{Path: %v, RunRange: %v, Version: 0x%x, SubVersion: 0x%x, Last: %q}",
id.path, id.runs, id.vers, id.subvers, id.last,
)
}
// MarshalROOT implements rbytes.Marshaler
func (id *ID) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(id.RVersion())
id.base.MarshalROOT(w)
id.path.MarshalROOT(w)
id.runs.MarshalROOT(w)
w.WriteI32(id.vers)
w.WriteI32(id.subvers)
w.WriteString(id.last)
return w.SetByteCount(pos, id.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (id *ID) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(id.Class())
if err := id.base.UnmarshalROOT(r); err != nil {
return err
}
if err := id.path.UnmarshalROOT(r); err != nil {
return err
}
if err := id.runs.UnmarshalROOT(r); err != nil {
return err
}
id.vers = r.ReadI32()
id.subvers = r.ReadI32()
id.last = r.ReadString()
r.CheckByteCount(pos, bcnt, start, id.Class())
return r.Err()
}
// Path represents a provenance path in an OCDB file.
type Path struct {
base rbase.Object
path string `groot:"fPath"`
lvl0 string `groot:"fLevel0"`
lvl1 string `groot:"fLevel1"`
lvl2 string `groot:"fLevel2"`
valid bool `groot:"fIsValid"`
wildcard bool `groot:"fIsWildCard"`
}
func (p Path) String() string {
return fmt.Sprintf("Path{Path: %q, Level0: %q, Level1: %q, Level2: %q, Valid: %v, WildCard: %v}",
p.path, p.lvl0, p.lvl1, p.lvl2, p.valid, p.wildcard,
)
}
func (*Path) Class() string { return "AliCDBPath" }
func (*Path) RVersion() int16 { return 1 }
// MarshalROOT implements rbytes.Marshaler
func (p *Path) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(p.RVersion())
p.base.MarshalROOT(w)
w.WriteString(p.path)
w.WriteString(p.lvl0)
w.WriteString(p.lvl1)
w.WriteString(p.lvl2)
w.WriteBool(p.valid)
w.WriteBool(p.wildcard)
return w.SetByteCount(pos, p.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (p *Path) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(p.Class())
if err := p.base.UnmarshalROOT(r); err != nil {
return err
}
p.path = r.ReadString()
p.lvl0 = r.ReadString()
p.lvl1 = r.ReadString()
p.lvl2 = r.ReadString()
p.valid = r.ReadBool()
p.wildcard = r.ReadBool()
r.CheckByteCount(pos, bcnt, start, p.Class())
return r.Err()
}
// RunRange represents a [first, last] range of run numbers.
type RunRange struct {
base rbase.Object
First int32 `groot:"fFirstRun"`
Last int32 `groot:"fLastRun"`
}
func (*RunRange) Class() string { return "AliCDBRunRange" }
func (*RunRange) RVersion() int16 { return 1 }
func (rr RunRange) String() string {
return fmt.Sprintf("RunRange{First: %d, Last: %d}", rr.First, rr.Last)
}
// MarshalROOT implements rbytes.Marshaler
func (rr *RunRange) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(rr.RVersion())
rr.base.MarshalROOT(w)
w.WriteI32(rr.First)
w.WriteI32(rr.Last)
return w.SetByteCount(pos, rr.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (rr *RunRange) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(rr.Class())
if err := rr.base.UnmarshalROOT(r); err != nil {
return err
}
rr.First = r.ReadI32()
rr.Last = r.ReadI32()
r.CheckByteCount(pos, bcnt, start, rr.Class())
return r.Err()
}
// MetaData stores optional metadata associated with an entry in an OCDB file.
type MetaData struct {
base rbase.Object
class string `groot:"fObjectClassName"`
resp string `groot:"fResponsible"`
beam uint32 `groot:"fBeamPeriod"`
vers string `groot:"fAliRootVersion"`
comment string `groot:"fComment"`
props rcont.Map `groot:"fProperties"`
}
func (*MetaData) Class() string { return "AliCDBMetaData" }
func (*MetaData) RVersion() int16 { return 1 }
func (meta *MetaData) Display(w io.Writer) {
fmt.Fprintf(w, "Class: %q\nResponsible: %q\nBeamPeriod: %d\nAliRoot Version: %q\nComment: %q\nProperties: %d\n",
meta.class, meta.resp, meta.beam, meta.vers, meta.comment, len(meta.props.Table()),
)
for k, v := range meta.props.Table() {
fmt.Fprintf(w, " key: %v\n val: %v\n", k, v)
}
}
// MarshalROOT implements rbytes.Marshaler
func (meta *MetaData) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(meta.RVersion())
meta.base.MarshalROOT(w)
w.WriteString(meta.class)
w.WriteString(meta.resp)
w.WriteU32(meta.beam)
w.WriteString(meta.vers)
w.WriteString(meta.comment)
meta.props.MarshalROOT(w)
return w.SetByteCount(pos, meta.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (meta *MetaData) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(meta.Class())
if err := meta.base.UnmarshalROOT(r); err != nil {
return err
}
meta.class = r.ReadString()
meta.resp = r.ReadString()
meta.beam = r.ReadU32()
meta.vers = r.ReadString()
meta.comment = r.ReadString()
if err := meta.props.UnmarshalROOT(r); err != nil {
return err
}
r.CheckByteCount(pos, bcnt, start, meta.Class())
return r.Err()
}
type AliMUON2DMap struct {
base AliMUONVStore
exmap *AliMpExMap `groot:"fMap"`
opt bool `groot:"fOptimizeForDEManu"`
}
func (*AliMUON2DMap) Class() string { return "AliMUON2DMap" }
func (*AliMUON2DMap) RVersion() int16 { return 1 }
func (m *AliMUON2DMap) String() string {
return fmt.Sprintf("MUON2DMap{Opt: %v, Map: %v}", m.opt, *m.exmap)
}
// MarshalROOT implements rbytes.Marshaler
func (o *AliMUON2DMap) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(o.RVersion())
o.base.MarshalROOT(w)
w.WriteObjectAny(o.exmap)
w.WriteBool(o.opt)
return w.SetByteCount(pos, o.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (o *AliMUON2DMap) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(o.Class())
if err := o.base.UnmarshalROOT(r); err != nil {
return err
}
o.exmap = nil
if obj := r.ReadObjectAny(); obj != nil {
o.exmap = obj.(*AliMpExMap)
}
o.opt = r.ReadBool()
r.CheckByteCount(pos, bcnt, start, o.Class())
return r.Err()
}
type AliMUONVStore struct {
base rbase.Object
}
func (*AliMUONVStore) Class() string { return "AliMUONVStore" }
func (*AliMUONVStore) RVersion() int16 { return 1 }
// MarshalROOT implements rbytes.Marshaler
func (o *AliMUONVStore) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(o.RVersion())
o.base.MarshalROOT(w)
return w.SetByteCount(pos, o.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (o *AliMUONVStore) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(o.Class())
if err := o.base.UnmarshalROOT(r); err != nil {
return err
}
r.CheckByteCount(pos, bcnt, start, o.Class())
return r.Err()
}
type AliMpExMap struct {
base rbase.Object
objs rcont.ObjArray `groot:"fObjects"`
keys rcont.ArrayL64 `groot:"fKeys"`
}
func (exmap AliMpExMap) String() string {
o := new(bytes.Buffer)
fmt.Fprintf(o, "ExMap{Objs: [")
for i := 0; i < exmap.objs.Len(); i++ {
if i > 0 {
fmt.Fprintf(o, ", ")
}
fmt.Fprintf(o, "%v", exmap.objs.At(i))
}
fmt.Fprintf(o, "], Keys: %v}", exmap.keys.Data)
return o.String()
}
func (*AliMpExMap) Class() string { return "AliMpExMap" }
func (*AliMpExMap) RVersion() int16 { return 1 }
// MarshalROOT implements rbytes.Marshaler
func (o *AliMpExMap) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(o.RVersion())
o.base.MarshalROOT(w)
o.objs.MarshalROOT(w)
o.keys.MarshalROOT(w)
return w.SetByteCount(pos, o.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (o *AliMpExMap) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(o.Class())
if err := o.base.UnmarshalROOT(r); err != nil {
return err
}
if err := o.objs.UnmarshalROOT(r); err != nil {
return err
}
if err := o.keys.UnmarshalROOT(r); err != nil {
return err
}
r.CheckByteCount(pos, bcnt, start, o.Class())
return r.Err()
}
type AliMUONCalibParamND struct {
base AliMUONVCalibParam
dim int32 `groot:"fDimension"`
size int32 `groot:"fSize"`
n int32 `groot:"fN"`
vs []float64 `groot:"fValues"`
}
func (*AliMUONCalibParamND) Class() string { return "AliMUONCalibParamND" }
func (*AliMUONCalibParamND) RVersion() int16 { return 1 }
// MarshalROOT implements rbytes.Marshaler
func (o *AliMUONCalibParamND) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(o.RVersion())
o.base.MarshalROOT(w)
w.WriteI32(o.dim)
w.WriteI32(o.size)
w.WriteI32(o.n)
w.WriteI8(1) // FIXME(sbinet)
w.WriteFastArrayF64(o.vs)
return w.SetByteCount(pos, o.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (o *AliMUONCalibParamND) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(o.Class())
if err := o.base.UnmarshalROOT(r); err != nil {
return err
}
o.dim = r.ReadI32()
o.size = r.ReadI32()
o.n = r.ReadI32()
_ = r.ReadI8() // FIXME(sbinet)
o.vs = r.ReadFastArrayF64(int(o.n))
r.CheckByteCount(pos, bcnt, start, o.Class())
return r.Err()
}
type AliMUONVCalibParam struct {
base rbase.Object
}
func (*AliMUONVCalibParam) Class() string { return "AliMUONVCalibParam" }
func (*AliMUONVCalibParam) RVersion() int16 { return 1 }
// MarshalROOT implements rbytes.Marshaler
func (o *AliMUONVCalibParam) MarshalROOT(w *rbytes.WBuffer) (int, error) {
if w.Err() != nil {
return 0, w.Err()
}
pos := w.WriteVersion(o.RVersion())
o.base.MarshalROOT(w)
return w.SetByteCount(pos, o.Class())
}
// ROOTUnmarshaler is the interface implemented by an object that can
// unmarshal itself from a ROOT buffer
func (o *AliMUONVCalibParam) UnmarshalROOT(r *rbytes.RBuffer) error {
if r.Err() != nil {
return r.Err()
}
start := r.Pos()
_, pos, bcnt := r.ReadVersion(o.Class())
if err := o.base.UnmarshalROOT(r); err != nil {
return err
}
r.CheckByteCount(pos, bcnt, start, o.Class())
return r.Err()
}