123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package metadata
- import (
- "fmt"
- "strings"
- "unicode"
- )
- type CommentSyntax struct {
- Dash bool
- Hash bool
- SlashStar bool
- }
- const (
- CmdExec = ":exec"
- CmdExecResult = ":execresult"
- CmdExecRows = ":execrows"
- CmdMany = ":many"
- CmdOne = ":one"
- CmdCopyFrom = ":copyfrom"
- )
- // 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 Parse(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) == 2 {
- return "", "", fmt.Errorf("missing query type [':one', ':many', ':exec', ':execrows', ':execresult', ':copyfrom']: %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, CmdCopyFrom:
- default:
- return "", "", fmt.Errorf("invalid query type: %s", queryType)
- }
- if err := validateQueryName(queryName); err != nil {
- return "", "", err
- }
- return queryName, queryType, nil
- }
- return "", "", nil
- }
|