-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathmeta.go
More file actions
151 lines (135 loc) · 3.38 KB
/
meta.go
File metadata and controls
151 lines (135 loc) · 3.38 KB
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
package metadata
import (
"bufio"
"fmt"
"strings"
"unicode"
"github.com/sqlc-dev/sqlc/internal/source"
)
type CommentSyntax source.CommentSyntax
type Metadata struct {
Name string
Cmd string
Comments []string
Params map[string]string
Flags map[string]bool
Filename string
}
const (
CmdExec = ":exec"
CmdExecResult = ":execresult"
CmdExecRows = ":execrows"
CmdExecLastId = ":execlastid"
CmdMany = ":many"
CmdOne = ":one"
CmdCopyFrom = ":copyfrom"
CmdBatchExec = ":batchexec"
CmdBatchMany = ":batchmany"
CmdBatchOne = ":batchone"
)
// A query name must be a valid Go identifier
//
// https://golang.org/ref/spec#Identifiers
func validateQueryName(name string) error {
if len(name) == 0 {
return fmt.Errorf("invalid query name: %q", name)
}
for i, c := range name {
isLetter := unicode.IsLetter(c) || c == '_'
isDigit := unicode.IsDigit(c)
if i == 0 && !isLetter {
return fmt.Errorf("invalid query name %q", name)
} else if !(isLetter || isDigit) {
return fmt.Errorf("invalid query name %q", name)
}
}
return nil
}
func ParseQueryNameAndType(t string, commentStyle CommentSyntax) (string, string, error) {
for _, line := range strings.Split(t, "\n") {
var prefix string
if strings.HasPrefix(line, "--") {
if !commentStyle.Dash {
continue
}
prefix = "--"
}
if strings.HasPrefix(line, "/*") {
if !commentStyle.SlashStar {
continue
}
prefix = "/*"
}
if strings.HasPrefix(line, "#") {
if !commentStyle.Hash {
continue
}
prefix = "#"
}
if prefix == "" {
continue
}
rest := line[len(prefix):]
if !strings.HasPrefix(strings.TrimSpace(rest), "name") {
continue
}
if !strings.Contains(rest, ":") {
continue
}
if !strings.HasPrefix(rest, " name: ") {
return "", "", fmt.Errorf("invalid metadata: %s", line)
}
part := strings.Split(strings.TrimSpace(line), " ")
if prefix == "/*" {
part = part[:len(part)-1] // removes the trailing "*/" element
}
if len(part) == 3 {
return "", "", fmt.Errorf("missing query type [':one', ':many', ':exec', ':execrows', ':execlastid', ':execresult', ':copyfrom', 'batchexec', 'batchmany', 'batchone']: %s", line)
}
if len(part) != 4 {
return "", "", fmt.Errorf("invalid query comment: %s", line)
}
queryName := part[2]
queryType := strings.TrimSpace(part[3])
switch queryType {
case CmdOne, CmdMany, CmdExec, CmdExecResult, CmdExecRows, CmdExecLastId, CmdCopyFrom, CmdBatchExec, CmdBatchMany, CmdBatchOne:
default:
return "", "", fmt.Errorf("invalid query type: %s", queryType)
}
if err := validateQueryName(queryName); err != nil {
return "", "", err
}
return queryName, queryType, nil
}
return "", "", nil
}
func ParseParamsAndFlags(comments []string) (map[string]string, map[string]bool, error) {
params := make(map[string]string)
flags := make(map[string]bool)
for _, line := range comments {
s := bufio.NewScanner(strings.NewReader(line))
s.Split(bufio.ScanWords)
s.Scan()
token := s.Text()
if !strings.HasPrefix(token, "@") {
continue
}
switch token {
case "@param":
s.Scan()
name := s.Text()
var rest []string
for s.Scan() {
paramToken := s.Text()
rest = append(rest, paramToken)
}
params[name] = strings.Join(rest, " ")
default:
flags[token] = true
}
if s.Err() != nil {
return params, flags, s.Err()
}
}
return params, flags, nil
}