surrealpatch/sql/select.go

417 lines
8.2 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-09-20 23:34:21 +00:00
func (p *parser) parseSelectStatement() (stmt *SelectStatement, err error) {
2016-02-26 17:27:07 +00:00
2016-05-23 12:32:02 +00:00
stmt = &SelectStatement{}
2016-02-26 17:27:07 +00:00
if stmt.KV, stmt.NS, stmt.DB, err = p.a.get(AuthNO); err != nil {
return nil, err
}
2016-02-26 17:27:07 +00:00
2017-03-02 10:47:10 +00:00
if stmt.Expr, err = p.parseFields(); err != nil {
2016-02-26 17:27:07 +00:00
return nil, err
}
_, _, err = p.shouldBe(FROM)
if err != nil {
return nil, err
}
2016-05-23 12:32:02 +00:00
if stmt.What, err = p.parseWhat(); err != nil {
2016-02-26 17:27:07 +00:00
return nil, err
}
2016-05-23 12:32:02 +00:00
if stmt.Cond, err = p.parseCond(); err != nil {
2016-02-26 17:27:07 +00:00
return nil, err
}
if stmt.Split, err = p.parseSplit(); err != nil {
return nil, err
}
2016-02-26 17:27:07 +00:00
if stmt.Group, err = p.parseGroup(); err != nil {
return nil, err
}
if stmt.Order, err = p.parseOrder(); err != nil {
return nil, err
}
if stmt.Limit, err = p.parseLimit(); err != nil {
return nil, err
}
if stmt.Start, err = p.parseStart(); err != nil {
return nil, err
}
if stmt.Fetch, err = p.parseFetch(); err != nil {
return nil, err
}
2016-02-26 17:27:07 +00:00
if stmt.Version, err = p.parseVersion(); err != nil {
return nil, err
}
if stmt.Timeout, err = p.parseTimeout(); err != nil {
return nil, err
}
2017-11-16 20:53:13 +00:00
if err = checkExpression(aggrs, stmt.Expr, stmt.Group); err != nil {
2016-02-26 17:27:07 +00:00
return nil, err
}
2017-11-16 20:53:13 +00:00
// If this query has any subqueries which
// need to alter the database then mark
// this query as a writeable statement.
stmt.RW = p.buf.rw
return
2016-02-26 17:27:07 +00:00
}
2017-03-02 10:47:10 +00:00
func (p *parser) parseFields() (mul Fields, err error) {
for {
one := &Field{}
one.Expr, err = p.parseExpr()
if err != nil {
return
}
// Chec to see if the next token is an AS
// clause, and if it is read the defined
// field alias name from the scanner.
2017-11-16 20:53:13 +00:00
if _, _, exi := p.mightBe(AS); exi {
if _, one.Alias, err = p.shouldBe(IDENT, EXPR); err != nil {
2017-11-16 20:53:13 +00:00
return nil, &ParseError{Found: one.Alias, Expected: []string{"alias name"}}
}
one.Field = one.Alias
2017-11-16 20:53:13 +00:00
} else {
switch v := one.Expr.(type) {
case *Param:
one.Field = v.VA
2017-11-16 20:53:13 +00:00
case *Ident:
one.Field = v.VA
case *Value:
one.Field = v.VA
2017-11-16 20:53:13 +00:00
default:
one.Field = one.String()
}
}
// Append the single expression to the array
// of return statement expressions.
mul = append(mul, one)
// Check to see if the next token is a comma
// and if not, then break out of the loop,
// otherwise repeat until we find no comma.
2017-11-16 20:53:13 +00:00
if _, _, exi := p.mightBe(COMMA); !exi {
break
}
}
return
}
func (p *parser) parseSplit() (Idents, error) {
// The next token that we expect to see is a
// SPLIT token, and if we don't find one then
// return nil, with no error.
if _, _, exi := p.mightBe(SPLIT); !exi {
return nil, nil
}
// We don't need to have a ON token, but we
// allow it so that the SQL query would read
// better when compared to english.
_, _, _ = p.mightBe(ON)
return p.parseIdioms()
}
2017-03-02 10:47:10 +00:00
func (p *parser) parseGroup() (mul Groups, err error) {
2016-02-26 17:27:07 +00:00
// The next token that we expect to see is a
// GROUP token, and if we don't find one then
// return nil, with no error.
2016-02-26 17:27:07 +00:00
if _, _, exi := p.mightBe(GROUP); !exi {
return nil, nil
}
// We don't need to have a BY token, but we
// allow it so that the SQL query would read
// better when compared to english.
2016-02-26 17:27:07 +00:00
_, _, _ = p.mightBe(BY)
2018-10-24 11:25:07 +00:00
// If the next token is the ALL keyword then
// we will group all records together, which
// will prevent grouping by other fields.
if _, _, exi := p.mightBe(ALL); exi {
mul = append(mul, &Group{
Expr: new(All),
})
return
}
// Otherwise let's parse the fields with which
// we will group the selected data, with
// multiple fields grouped by commas.
for {
var tok Token
var lit string
one := &Group{}
2017-11-16 20:53:13 +00:00
tok, lit, err = p.shouldBe(IDENT, EXPR)
if err != nil {
return nil, &ParseError{Found: lit, Expected: []string{"field name"}}
}
one.Expr, err = p.declare(tok, lit)
if err != nil {
return nil, err
}
// Append the single expression to the array
// of return statement expressions.
mul = append(mul, one)
// Check to see if the next token is a comma
// and if not, then break out of the loop,
// otherwise repeat until we find no comma.
if _, _, exi := p.mightBe(COMMA); !exi {
break
}
}
2016-07-04 10:37:37 +00:00
return
2016-02-26 17:27:07 +00:00
}
2017-03-02 10:47:10 +00:00
func (p *parser) parseOrder() (mul Orders, err error) {
2016-02-26 17:27:07 +00:00
// The next token that we expect to see is a
// ORDER token, and if we don't find one then
// return nil, with no error.
2016-02-26 17:27:07 +00:00
if _, _, exi := p.mightBe(ORDER); !exi {
return nil, nil
}
// We don't need to have a BY token, but we
// allow it so that the SQL query would read
// better when compared to english.
2016-02-26 17:27:07 +00:00
_, _, _ = p.mightBe(BY)
for {
var exi bool
var tok Token
var lit string
2016-05-23 12:32:02 +00:00
one := &Order{}
2016-02-26 17:27:07 +00:00
2017-11-16 20:53:13 +00:00
tok, lit, err = p.shouldBe(IDENT, EXPR, RAND)
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
2017-11-16 20:53:13 +00:00
switch tok {
default:
one.Expr, err = p.declare(tok, lit)
if err != nil {
return nil, err
}
case RAND:
one.Expr = &FuncExpression{Name: "rand"}
if _, _, exi = p.mightBe(LPAREN); exi {
_, _, err = p.shouldBe(RPAREN)
if err != nil {
return nil, err
}
}
2016-05-23 12:32:02 +00:00
}
2016-02-26 17:27:07 +00:00
2017-11-16 20:53:13 +00:00
if _, _, exi = p.mightBe(COLLATE); exi {
one.Tag, err = p.parseLanguage()
if err != nil {
return nil, err
}
2016-02-26 17:27:07 +00:00
}
2017-11-16 20:53:13 +00:00
if tok, _, exi = p.mightBe(ASC, DESC); exi {
one.Dir = (tok == ASC)
} else {
one.Dir = true
2016-05-23 12:32:02 +00:00
}
// Append the single expression to the array
// of return statement expressions.
2016-05-23 12:32:02 +00:00
mul = append(mul, one)
2016-02-26 17:27:07 +00:00
// Check to see if the next token is a comma
// and if not, then break out of the loop,
// otherwise repeat until we find no comma.
2016-02-26 17:27:07 +00:00
if _, _, exi := p.mightBe(COMMA); !exi {
break
}
}
2016-07-04 10:37:37 +00:00
return
2016-02-26 17:27:07 +00:00
}
func (p *parser) parseLimit() (Expr, error) {
2016-02-26 17:27:07 +00:00
// The next token that we expect to see is a
// LIMIT token, and if we don't find one then
// return nil, with no error.
2016-02-26 17:27:07 +00:00
if _, _, exi := p.mightBe(LIMIT); !exi {
return nil, nil
}
// We don't need to have a BY token, but we
// allow it so that the SQL query would read
// better when compared to english.
2016-02-26 17:27:07 +00:00
_, _, _ = p.mightBe(BY)
tok, lit, err := p.shouldBe(NUMBER, PARAM)
2016-02-26 17:27:07 +00:00
if err != nil {
return nil, &ParseError{Found: lit, Expected: []string{"limit number"}}
}
return p.declare(tok, lit)
2016-02-26 17:27:07 +00:00
}
func (p *parser) parseStart() (Expr, error) {
2016-02-26 17:27:07 +00:00
// The next token that we expect to see is a
// START token, and if we don't find one then
// return nil, with no error.
2016-02-26 17:27:07 +00:00
if _, _, exi := p.mightBe(START); !exi {
return nil, nil
}
// We don't need to have a AT token, but we
// allow it so that the SQL query would read
// better when compared to english.
2016-02-26 17:27:07 +00:00
_, _, _ = p.mightBe(AT)
tok, lit, err := p.shouldBe(NUMBER, PARAM)
2016-09-20 23:37:03 +00:00
if err != nil {
return nil, &ParseError{Found: lit, Expected: []string{"start number"}}
2016-02-26 17:27:07 +00:00
}
2016-09-20 23:37:03 +00:00
return p.declare(tok, lit)
2016-02-26 17:27:07 +00:00
}
func (p *parser) parseFetch() (mul Fetchs, err error) {
// The next token that we expect to see is a
// GROUP token, and if we don't find one then
// return nil, with no error.
if _, _, exi := p.mightBe(FETCH); !exi {
return nil, nil
}
for {
var tok Token
var lit string
one := &Fetch{}
tok, lit, err = p.shouldBe(IDENT, EXPR)
if err != nil {
return nil, &ParseError{Found: lit, Expected: []string{"field name"}}
}
one.Expr, err = p.declare(tok, lit)
if err != nil {
return nil, err
}
// Append the single expression to the array
// of return statement expressions.
mul = append(mul, one)
// Check to see if the next token is a comma
// and if not, then break out of the loop,
// otherwise repeat until we find no comma.
if _, _, exi := p.mightBe(COMMA); !exi {
break
}
}
return
}
func (p *parser) parseVersion() (Expr, error) {
2016-02-26 17:27:07 +00:00
2016-09-20 23:37:03 +00:00
if _, _, exi := p.mightBe(VERSION, ON); !exi {
2016-02-26 17:27:07 +00:00
return nil, nil
}
return p.parseExpr()
2016-02-26 17:27:07 +00:00
}