parser

package
v0.3.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2013 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ValueRegex        ValueType = C.VALUE_REGEX
	ValueInt                    = C.VALUE_INT
	ValueFloat                  = C.VALUE_FLOAT
	ValueString                 = C.VALUE_STRING
	ValueTableName              = C.VALUE_TABLE_NAME
	ValueSimpleName             = C.VALUE_SIMPLE_NAME
	ValueDuration               = C.VALUE_DURATION
	ValueWildcard               = C.VALUE_WILDCARD
	ValueFunctionCall           = C.VALUE_FUNCTION_CALL
)
View Source
const (
	DEFAULT_LIMIT = 10000
)

Variables

View Source
var (
	ZERO_TIME = time.Unix(0, 0)
)

Functions

func GetStringArray

func GetStringArray(array *C.array) []string

Types

type BoolExpression

type BoolExpression struct {
	Left      *Expression
	Operation string
	Right     *Expression
}

func GetBoolExpression

func GetBoolExpression(expr *C.bool_expression) (*BoolExpression, error)

type Expression

type Expression struct {
	Left      interface{}
	Operation byte
	Right     *Expression
}

func GetExpression

func GetExpression(expr *C.expression) (*Expression, error)

func (*Expression) GetLeftExpression

func (self *Expression) GetLeftExpression() (*Expression, bool)

func (*Expression) GetLeftValue

func (self *Expression) GetLeftValue() (*Value, bool)

func (*Expression) GetLeftValues added in v0.3.1

func (self *Expression) GetLeftValues() ([]*Value, bool)

type From

type From struct {
	TableName string
}

type FromClause added in v0.0.5

type FromClause struct {
	Type  FromClauseType
	Names []*TableName
}

func GetFromClause added in v0.0.5

func GetFromClause(fromClause *C.from_clause) (*FromClause, error)

type FromClauseType added in v0.0.5

type FromClauseType int
const (
	FromClauseArray     FromClauseType = C.FROM_ARRAY
	FromClauseMerge     FromClauseType = C.FROM_MERGE
	FromClauseInnerJoin FromClauseType = C.FROM_INNER_JOIN
)

type GroupByClause

type GroupByClause []*Value

func (GroupByClause) GetGroupByTime

func (self GroupByClause) GetGroupByTime() (*time.Duration, error)

type Operation

type Operation int

type Query

type Query struct {
	ColumnNames []*Value
	FromClause  *FromClause
	Condition   *WhereCondition

	Limit     int
	Ascending bool
	// contains filtered or unexported fields
}

func ParseQuery

func ParseQuery(query string) (*Query, error)

func (*Query) GetColumnNames

func (self *Query) GetColumnNames() []*Value

func (*Query) GetEndTime

func (self *Query) GetEndTime() time.Time

Returns the start time of the query. Queries can only have one condition of the form time > start_time

func (*Query) GetFromClause

func (self *Query) GetFromClause() *FromClause

func (*Query) GetGroupByClause

func (self *Query) GetGroupByClause() GroupByClause

func (*Query) GetQueryString added in v0.0.9

func (self *Query) GetQueryString() string

func (*Query) GetReferencedColumns

func (self *Query) GetReferencedColumns() map[*Value][]string

Returns a mapping from the time series names (or regex) to the column names that are references

func (*Query) GetStartTime

func (self *Query) GetStartTime() time.Time

Returns the start time of the query. Queries can only have one condition of the form time > start_time

func (*Query) GetTableAliases added in v0.3.0

func (self *Query) GetTableAliases(name string) []string

func (*Query) GetWhereCondition

func (self *Query) GetWhereCondition() *WhereCondition

func (*Query) WillReturnSingleSeries added in v0.3.0

func (self *Query) WillReturnSingleSeries() bool

type TableName added in v0.3.0

type TableName struct {
	Name  *Value
	Alias string
}

func GetTableName added in v0.3.0

func GetTableName(name *C.table_name) (*TableName, error)

func GetTableNameArray added in v0.3.0

func GetTableNameArray(array *C.table_name_array) ([]*TableName, error)

func (*TableName) GetAlias added in v0.3.0

func (self *TableName) GetAlias() string

type Value

type Value struct {
	Name              string
	Type              ValueType
	IsCaseInsensitive bool
	Elems             []*Value
	// contains filtered or unexported fields
}

func GetValue

func GetValue(value *C.value) (*Value, error)

func GetValueArray

func GetValueArray(array *C.value_array) ([]*Value, error)

func (*Value) GetCompiledRegex

func (self *Value) GetCompiledRegex() (*regexp.Regexp, bool)

func (*Value) IsFunctionCall

func (self *Value) IsFunctionCall() bool

type ValueType

type ValueType int

type WhereCondition

type WhereCondition struct {
	Left      interface{}
	Operation string
	Right     *WhereCondition
	// contains filtered or unexported fields
}

func GetWhereCondition

func GetWhereCondition(condition *C.condition) (*WhereCondition, error)

func (*WhereCondition) GetBoolExpression

func (self *WhereCondition) GetBoolExpression() (*BoolExpression, bool)

func (*WhereCondition) GetLeftWhereCondition

func (self *WhereCondition) GetLeftWhereCondition() (*WhereCondition, bool)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL