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
|
/*
Copyright 2015 The Kubernetes 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 gengo
import (
"bytes"
"fmt"
"strings"
"unicode"
)
// ExtractCommentTags parses comments for lines of the form:
//
// 'marker' + "key=value".
//
// Values are optional; "" is the default. A tag can be specified more than
// one time and all values are returned. If the resulting map has an entry for
// a key, the value (a slice) is guaranteed to have at least 1 element.
//
// Example: if you pass "+" for 'marker', and the following lines are in
// the comments:
//
// +foo=value1
// +bar
// +foo=value2
// +baz="qux"
//
// Then this function will return:
//
// map[string][]string{"foo":{"value1, "value2"}, "bar": {""}, "baz": {`"qux"`}}
//
// Deprecated: Use ExtractFunctionStyleCommentTags.
func ExtractCommentTags(marker string, lines []string) map[string][]string {
out := map[string][]string{}
for _, line := range lines {
line = strings.Trim(line, " ")
if len(line) == 0 {
continue
}
if !strings.HasPrefix(line, marker) {
continue
}
kv := strings.SplitN(line[len(marker):], "=", 2)
if len(kv) == 2 {
out[kv[0]] = append(out[kv[0]], kv[1])
} else if len(kv) == 1 {
out[kv[0]] = append(out[kv[0]], "")
}
}
return out
}
// ExtractSingleBoolCommentTag parses comments for lines of the form:
//
// 'marker' + "key=value1"
//
// If the tag is not found, the default value is returned. Values are asserted
// to be boolean ("true" or "false"), and any other value will cause an error
// to be returned. If the key has multiple values, the first one will be used.
func ExtractSingleBoolCommentTag(marker string, key string, defaultVal bool, lines []string) (bool, error) {
tags, err := ExtractFunctionStyleCommentTags(marker, []string{key}, lines)
if err != nil {
return false, err
}
values := tags[key]
if values == nil {
return defaultVal, nil
}
if values[0].Value == "true" {
return true, nil
}
if values[0].Value == "false" {
return false, nil
}
return false, fmt.Errorf("tag value for %q is not boolean: %q", key, values[0])
}
// ExtractFunctionStyleCommentTags parses comments for special metadata tags. The
// marker argument should be unique enough to identify the tags needed, and
// should not be a marker for tags you don't want, or else the caller takes
// responsibility for making that distinction.
//
// The tagNames argument is a list of specific tags being extracted. If this is
// nil or empty, all lines which match the marker are considered. If this is
// specified, only lines with begin with marker + one of the tags will be
// considered. This is useful when a common marker is used which may match
// lines which fail this syntax (e.g. which predate this definition).
//
// This function looks for input lines of the following forms:
// - 'marker' + "key=value"
// - 'marker' + "key()=value"
// - 'marker' + "key(arg)=value"
//
// The arg is optional. If not specified (either as "key=value" or as
// "key()=value"), the resulting Tag will have an empty Args list.
//
// The value is optional. If not specified, the resulting Tag will have "" as
// the value.
//
// Tag comment-lines may have a trailing end-of-line comment.
//
// The map returned here is keyed by the Tag's name without args.
//
// A tag can be specified more than one time and all values are returned. If
// the resulting map has an entry for a key, the value (a slice) is guaranteed
// to have at least 1 element.
//
// Example: if you pass "+" as the marker, and the following lines are in
// the comments:
//
// +foo=val1 // foo
// +bar
// +foo=val2 // also foo
// +baz="qux"
// +foo(arg) // still foo
//
// Then this function will return:
//
// map[string][]Tag{
// "foo": []Tag{{
// Name: "foo",
// Args: nil,
// Value: "val1",
// }, {
// Name: "foo",
// Args: nil,
// Value: "val2",
// }, {
// Name: "foo",
// Args: []string{"arg"},
// Value: "",
// }, {
// Name: "bar",
// Args: nil,
// Value: ""
// }, {
// Name: "baz",
// Args: nil,
// Value: "\"qux\""
// }}
//
// This function should be preferred instead of ExtractCommentTags.
func ExtractFunctionStyleCommentTags(marker string, tagNames []string, lines []string) (map[string][]Tag, error) {
stripTrailingComment := func(in string) string {
parts := strings.SplitN(in, "//", 2)
return strings.TrimSpace(parts[0])
}
out := map[string][]Tag{}
for _, line := range lines {
line = strings.TrimSpace(line)
if len(line) == 0 {
continue
}
if !strings.HasPrefix(line, marker) {
continue
}
line = stripTrailingComment(line)
kv := strings.SplitN(line[len(marker):], "=", 2)
key := kv[0]
val := ""
if len(kv) == 2 {
val = kv[1]
}
tag := Tag{}
if name, args, err := parseTagKey(key, tagNames); err != nil {
return nil, err
} else if name != "" {
tag.Name, tag.Args = name, args
tag.Value = val
out[tag.Name] = append(out[tag.Name], tag)
}
}
return out, nil
}
// Tag represents a single comment tag.
type Tag struct {
// Name is the name of the tag with no arguments.
Name string
// Args is a list of optional arguments to the tag.
Args []string
// Value is the value of the tag.
Value string
}
func (t Tag) String() string {
buf := bytes.Buffer{}
buf.WriteString(t.Name)
if len(t.Args) > 0 {
buf.WriteString("(")
for i, a := range t.Args {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(a)
}
buf.WriteString(")")
}
return buf.String()
}
// parseTagKey parses the key part of an extended comment tag, including
// optional arguments. The input is assumed to be the entire text of the
// original input after the marker, up to the '=' or end-of-line.
//
// The tags argument is an optional list of tag names to match. If it is nil or
// empty, all tags match.
//
// At the moment, arguments are very strictly formatted (see parseTagArgs) and
// whitespace is not allowed.
//
// This function returns the key name and arguments, unless tagNames was
// specified and the input did not match, in which case it returns "".
func parseTagKey(input string, tagNames []string) (string, []string, error) {
parts := strings.SplitN(input, "(", 2)
key := parts[0]
if len(tagNames) > 0 {
found := false
for _, tn := range tagNames {
if key == tn {
found = true
break
}
}
if !found {
return "", nil, nil
}
}
var args []string
if len(parts) == 2 {
if ret, err := parseTagArgs(parts[1]); err != nil {
return key, nil, fmt.Errorf("failed to parse tag args: %v", err)
} else {
args = ret
}
}
return key, args, nil
}
// parseTagArgs parses the arguments part of an extended comment tag. The input
// is assumed to be the entire text of the original input after the opening
// '(', including the trailing ')'.
//
// At the moment this assumes that the entire string between the opening '('
// and the trailing ')' is a single Go-style identifier token, but in the
// future could be extended to have multiple arguments with actual syntax. The
// single token may consist only of letters and digits. Whitespace is not
// allowed.
func parseTagArgs(input string) ([]string, error) {
// This is really dumb, but should be extendable to a "real" parser if
// needed.
runes := []rune(input)
for i, r := range runes {
if unicode.IsLetter(r) || unicode.IsDigit(r) {
continue
}
if r == ',' {
return nil, fmt.Errorf("multiple arguments are not supported: %q", input)
}
if r == ')' {
if i != len(runes)-1 {
return nil, fmt.Errorf("unexpected characters after ')': %q", string(runes[i:]))
}
if i == 0 {
return nil, nil
}
return []string{string(runes[:i])}, nil
}
return nil, fmt.Errorf("unsupported character: %q", string(r))
}
return nil, fmt.Errorf("no closing ')' found: %q", input)
}
|