forked from quay/claircore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archop.go
85 lines (75 loc) · 1.43 KB
/
archop.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
package claircore
import (
"bytes"
"database/sql/driver"
"fmt"
"regexp"
)
type ArchOp uint
const (
opInvalid ArchOp = iota // invalid
OpEquals // equals
OpNotEquals // not equals
OpPatternMatch // pattern match
)
func (o ArchOp) Cmp(a, b string) bool {
switch {
case b == "":
return true
case a == "":
return false
default:
}
switch o {
case OpEquals:
return a == b
case OpNotEquals:
return a != b
case OpPatternMatch:
re, err := regexp.Compile(b)
if err != nil {
return false
}
return re.MatchString(a)
default:
}
return false
}
//go:generate stringer -type=ArchOp -linecomment
func (o ArchOp) MarshalText() (text []byte, err error) {
return []byte(o.String()), nil
}
func (o *ArchOp) UnmarshalText(text []byte) error {
i := bytes.Index([]byte(_ArchOp_name), text)
if i == -1 {
*o = ArchOp(0)
return nil
}
idx := uint8(i)
for i, off := range _ArchOp_index {
if off == idx {
*o = ArchOp(i)
return nil
}
}
panic("unreachable")
}
func (o ArchOp) Value() (driver.Value, error) {
return o.String(), nil
}
func (o *ArchOp) Scan(i interface{}) error {
switch v := i.(type) {
case []byte:
return o.UnmarshalText(v)
case string:
return o.UnmarshalText([]byte(v))
case int64:
if v >= int64(len(_ArchOp_index)-1) {
return fmt.Errorf("unable to scan ArchOp from enum %d", v)
}
*o = ArchOp(v)
default:
return fmt.Errorf("unable to scan ArchOp from type %T", i)
}
return nil
}