171 lines
2.9 KiB
Go
171 lines
2.9 KiB
Go
// Copyright © 2016 Abcum Ltd
|
|
//
|
|
// 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 sql
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
json "github.com/hjson/hjson-go"
|
|
)
|
|
|
|
func in(token Token, tokens []Token) bool {
|
|
|
|
for _, t := range tokens {
|
|
if token == t {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func is(token Token, tokens ...Token) bool {
|
|
|
|
for _, t := range tokens {
|
|
if token == t {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func contains(search string, strings []string) bool {
|
|
|
|
for _, str := range strings {
|
|
if str == search {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func (p *parser) declare(tok Token, lit string) (interface{}, error) {
|
|
|
|
if val := p.hold(tok); val != nil {
|
|
return val, nil
|
|
}
|
|
|
|
switch tok {
|
|
|
|
case TRUE:
|
|
return true, nil
|
|
|
|
case FALSE:
|
|
return false, nil
|
|
|
|
case NULL:
|
|
return &Null{}, nil
|
|
|
|
case VOID:
|
|
return &Void{}, nil
|
|
|
|
case MISSING:
|
|
return &Void{}, nil
|
|
|
|
case EMPTY:
|
|
return &Empty{}, nil
|
|
|
|
case MUL:
|
|
return &All{}, nil
|
|
|
|
case QMARK:
|
|
return &Any{}, nil
|
|
|
|
case STRING:
|
|
return &Value{lit}, nil
|
|
|
|
case REGION:
|
|
return &Value{lit}, nil
|
|
|
|
case EXPR:
|
|
return &Ident{lit}, nil
|
|
|
|
case IDENT:
|
|
return &Ident{lit}, nil
|
|
|
|
case TABLE:
|
|
return &Table{lit}, nil
|
|
|
|
case PARAM:
|
|
return &Param{lit}, nil
|
|
|
|
case REGEX:
|
|
return &Regex{lit}, nil
|
|
|
|
case DATE:
|
|
return time.Parse(RFCDate, lit)
|
|
|
|
case TIME:
|
|
return time.Parse(RFCTime, lit)
|
|
|
|
case NUMBER:
|
|
val, err := strconv.ParseFloat(lit, 64)
|
|
if err != nil {
|
|
return val, fmt.Errorf("Invalid number: %s", lit)
|
|
}
|
|
return val, nil
|
|
|
|
case DOUBLE:
|
|
val, err := strconv.ParseFloat(lit, 64)
|
|
if err != nil {
|
|
return val, fmt.Errorf("Invalid number: %s", lit)
|
|
}
|
|
return val, nil
|
|
|
|
case DURATION:
|
|
var mul time.Duration
|
|
switch {
|
|
default:
|
|
mul = 1
|
|
case strings.HasSuffix(lit, "d"):
|
|
mul, lit = 24, strings.Replace(lit, "d", "h", -1)
|
|
case strings.HasSuffix(lit, "w"):
|
|
mul, lit = 168, strings.Replace(lit, "w", "h", -1)
|
|
}
|
|
val, err := time.ParseDuration(lit)
|
|
if err != nil {
|
|
return val, fmt.Errorf("Invalid duration: %s", lit)
|
|
}
|
|
return val * mul, nil
|
|
|
|
case ARRAY:
|
|
var j []interface{}
|
|
json.Unmarshal([]byte(lit), &j)
|
|
if j == nil {
|
|
return j, fmt.Errorf("Invalid JSON: %s", lit)
|
|
}
|
|
return j, nil
|
|
|
|
case JSON:
|
|
var j map[string]interface{}
|
|
json.Unmarshal([]byte(lit), &j)
|
|
if j == nil {
|
|
return j, fmt.Errorf("Invalid JSON: %s", lit)
|
|
}
|
|
return j, nil
|
|
|
|
}
|
|
|
|
return lit, nil
|
|
|
|
}
|