This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 171
/
attrs.go
252 lines (226 loc) · 6 KB
/
attrs.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
// Copyright 2020 CUE Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package internal
import (
"fmt"
"strconv"
"strings"
"unicode"
"cuelang.org/go/cue/errors"
"cuelang.org/go/cue/literal"
"cuelang.org/go/cue/token"
)
// AttrKind indicates the location of an attribute within CUE source.
type AttrKind uint8
const (
// FieldAttr indicates an attribute is a field attribute.
// foo: bar @attr()
FieldAttr AttrKind = 1 << iota
// DeclAttr indicates an attribute was specified at a declaration position.
// foo: {
// @attr()
// }
DeclAttr
// TODO: Possible future attr kinds
// ElemAttr
// FileAttr
// ValueAttr = FieldAttr|DeclAttr|ElemAttr
)
// Attr holds positional information for a single Attr.
type Attr struct {
Name string // e.g. "json" or "protobuf"
Body string
Kind AttrKind
Fields []KeyValue
Err error
}
// NewNonExisting creates a non-existing attribute.
func NewNonExisting(key string) Attr {
const msgNotExist = "attribute %q does not exist"
return Attr{Err: errors.Newf(token.NoPos, msgNotExist, key)}
}
type KeyValue struct {
data string
equal int // index of equal sign or 0 if non-existing
}
func (kv *KeyValue) Text() string { return kv.data }
func (kv *KeyValue) Key() string {
if kv.equal == 0 {
return kv.data
}
s := kv.data[:kv.equal]
s = strings.TrimSpace(s)
return s
}
func (kv *KeyValue) Value() string {
if kv.equal == 0 {
return ""
}
return strings.TrimSpace(kv.data[kv.equal+1:])
}
func (a *Attr) hasPos(p int) error {
if a.Err != nil {
return a.Err
}
if p >= len(a.Fields) {
return fmt.Errorf("field does not exist")
}
return nil
}
// String reports the possibly empty string value at the given position or
// an error the attribute is invalid or if the position does not exist.
func (a *Attr) String(pos int) (string, error) {
if err := a.hasPos(pos); err != nil {
return "", err
}
return a.Fields[pos].Text(), nil
}
// Int reports the integer at the given position or an error if the attribute is
// invalid, the position does not exist, or the value at the given position is
// not an integer.
func (a *Attr) Int(pos int) (int64, error) {
if err := a.hasPos(pos); err != nil {
return 0, err
}
// TODO: use CUE's literal parser once it exists, allowing any of CUE's
// number types.
return strconv.ParseInt(a.Fields[pos].Text(), 10, 64)
}
// Flag reports whether an entry with the given name exists at position pos or
// onwards or an error if the attribute is invalid or if the first pos-1 entries
// are not defined.
func (a *Attr) Flag(pos int, key string) (bool, error) {
if err := a.hasPos(pos - 1); err != nil {
return false, err
}
for _, kv := range a.Fields[pos:] {
if kv.Text() == key {
return true, nil
}
}
return false, nil
}
// Lookup searches for an entry of the form key=value from position pos onwards
// and reports the value if found. It reports an error if the attribute is
// invalid or if the first pos-1 entries are not defined.
func (a *Attr) Lookup(pos int, key string) (val string, found bool, err error) {
if err := a.hasPos(pos - 1); err != nil {
return "", false, err
}
for _, kv := range a.Fields[pos:] {
if kv.Key() == key {
return kv.Value(), true, nil
}
}
return "", false, nil
}
func ParseAttrBody(pos token.Pos, s string) (a Attr) {
a.Body = s
i := 0
for {
i += skipSpace(s[i:])
// always scan at least one, possibly empty element.
n, err := scanAttributeElem(pos, s[i:], &a)
if err != nil {
return Attr{Err: err}
}
if i += n; i >= len(s) {
break
}
i += skipSpace(s[i:])
if s[i] != ',' {
return Attr{Err: errors.Newf(pos, "invalid attribute: expected comma")}
}
i++
}
return a
}
func skipSpace(s string) int {
for n, r := range s {
if !unicode.IsSpace(r) {
return n
}
}
return 0
}
func scanAttributeElem(pos token.Pos, s string, a *Attr) (n int, err errors.Error) {
// try CUE string
kv := KeyValue{}
if n, kv.data, err = scanAttributeString(pos, s); n == 0 {
// try key-value pair
p := strings.IndexAny(s, ",=") // ) is assumed to be stripped.
switch {
case p < 0:
kv.data = strings.TrimSpace(s)
n = len(s)
default: // ','
n = p
kv.data = strings.TrimSpace(s[:n])
case s[p] == '=':
kv.equal = p
offset := p + 1
offset += skipSpace(s[offset:])
var str string
if p, str, err = scanAttributeString(pos, s[offset:]); p > 0 {
n = offset + p
kv.data = s[:offset] + str
} else {
n = len(s)
if p = strings.IndexByte(s[offset:], ','); p >= 0 {
n = offset + p
}
kv.data = strings.TrimSpace(s[:n])
}
}
}
if a != nil {
a.Fields = append(a.Fields, kv)
}
return n, err
}
func scanAttributeString(pos token.Pos, s string) (n int, str string, err errors.Error) {
if s == "" || (s[0] != '#' && s[0] != '"' && s[0] != '\'') {
return 0, "", nil
}
nHash := 0
for {
if nHash < len(s) {
if s[nHash] == '#' {
nHash++
continue
}
if s[nHash] == '\'' || s[nHash] == '"' {
break
}
}
return nHash, s[:nHash], errors.Newf(pos, "invalid attribute string")
}
// Determine closing quote.
nQuote := 1
if c := s[nHash]; nHash+6 < len(s) && s[nHash+1] == c && s[nHash+2] == c {
nQuote = 3
}
close := s[nHash:nHash+nQuote] + s[:nHash]
// Search for closing quote.
index := strings.Index(s[len(close):], close)
if index == -1 {
return len(s), "", errors.Newf(pos, "attribute string not terminated")
}
index += 2 * len(close)
s, err2 := literal.Unquote(s[:index])
if err2 != nil {
return index, "", errors.Newf(pos, "invalid attribute string: %v", err2)
}
return index, s, nil
}