surrealpatch/sql/cond.go

69 lines
1.6 KiB
Go
Raw Normal View History

2016-02-26 17:27:07 +00:00
// 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
2016-05-23 12:32:02 +00:00
func (p *Parser) parseCond() (mul []Expr, err error) {
2016-02-26 17:27:07 +00:00
var tok Token
var lit string
2016-05-23 12:32:02 +00:00
// Remove the WHERE keyword
if _, _, exi := p.mightBe(WHERE); !exi {
return nil, nil
}
2016-02-26 17:27:07 +00:00
for {
one := &BinaryExpression{}
2016-05-23 12:32:02 +00:00
tok, lit, err = p.shouldBe(IDENT, ID, TIME, TRUE, FALSE, STRING, NUMBER, DOUBLE)
2016-02-26 17:27:07 +00:00
if err != nil {
return nil, &ParseError{Found: lit, Expected: []string{"field name"}}
}
2016-05-23 12:32:02 +00:00
one.LHS, err = declare(tok, lit)
if err != nil {
return nil, err
}
tok, lit, err = p.shouldBe(IN, EQ, NEQ, GT, LT, GTE, LTE, EQR, NER, SEQ, SNE)
2016-02-26 17:27:07 +00:00
if err != nil {
return nil, err
}
one.Op = lit
2016-05-23 12:32:02 +00:00
tok, lit, err = p.shouldBe(IDENT, ID, NULL, EMPTY, NOW, DATE, TIME, TRUE, FALSE, STRING, REGION, NUMBER, DOUBLE, REGEX, JSON, ARRAY)
2016-02-26 17:27:07 +00:00
if err != nil {
return nil, &ParseError{Found: lit, Expected: []string{"field value"}}
}
2016-05-23 12:32:02 +00:00
one.RHS, err = declare(tok, lit)
if err != nil {
return nil, err
}
2016-02-26 17:27:07 +00:00
mul = append(mul, one)
2016-05-23 12:32:02 +00:00
// Remove the WHERE keyword
if _, _, exi := p.mightBe(AND, OR); !exi {
2016-02-26 17:27:07 +00:00
break
}
}
return mul, nil
}