surrealpatch/sql/use.go
2016-05-24 10:27:29 +01:00

70 lines
1.8 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
func (p *Parser) parseUseStatement(explain bool) (stmt *UseStatement, err error) {
stmt = &UseStatement{}
var tok Token
var exi bool
tok, _, err = p.shouldBe(NAMESPACE, DATABASE, CIPHERKEY)
if err != nil {
return nil, err
}
for {
if is(tok, NAMESPACE) {
_, stmt.NS, err = p.shouldBe(IDENT, STRING)
if err != nil {
return nil, &ParseError{Found: stmt.NS, Expected: []string{"namespace name"}}
}
// TODO: need to make sure this user can access this NS
p.c.Set("NS", stmt.NS)
}
if is(tok, DATABASE) {
_, stmt.DB, err = p.shouldBe(IDENT, DATE, TIME, STRING, NUMBER, DOUBLE)
if err != nil {
return nil, &ParseError{Found: stmt.DB, Expected: []string{"database name"}}
}
// TODO: need to make sure this user can access this DB
p.c.Set("DB", stmt.DB)
}
if is(tok, CIPHERKEY) {
_, stmt.CK, err = p.shouldBe(IDENT, STRING)
if err != nil || (len(stmt.CK) != 16 && len(stmt.CK) != 24 && len(stmt.CK) != 32) {
return nil, &ParseError{Found: stmt.CK, Expected: []string{"16, 24, or 32 bit cipher key"}}
}
p.c.Set("CK", stmt.CK)
}
tok, _, exi = p.mightBe(NAMESPACE, DATABASE, CIPHERKEY)
if !exi {
break
}
}
if _, _, err = p.shouldBe(EOF, SEMICOLON); err != nil {
return nil, err
}
return
}