aboutsummaryrefslogtreecommitdiff
path: root/src/sqlhist-parse.h
blob: d5b86cacd8ce60ec2ab7f9dcae91e7c9ed0a8706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#ifndef __SQLHIST_PARSE_H
#define __SQLHIST_PARSE_H

#include <stdarg.h>
#include <tracefs.h>

struct str_hash;
#define HASH_BITS 10

struct sql_table;

struct sqlhist_bison {
	void			*scanner;
	const char		*buffer;
	size_t			buffer_size;
	size_t			buffer_idx;
	int			line_no;
	int			line_idx;
	struct sql_table	*table;
	char			*parse_error_str;
	struct str_hash         *str_hash[1 << HASH_BITS];
};

#include "sqlhist.tab.h"

enum filter_type {
	FILTER_GROUP,
	FILTER_NOT_GROUP,
	FILTER_EQ,
	FILTER_NE,
	FILTER_LE,
	FILTER_LT,
	FILTER_GE,
	FILTER_GT,
	FILTER_BIN_AND,
	FILTER_STR_CMP,
	FILTER_AND,
	FILTER_OR,
};

enum compare_type {
	COMPARE_GROUP,
	COMPARE_ADD,
	COMPARE_SUB,
	COMPARE_MUL,
	COMPARE_DIV,
	COMPARE_BIN_AND,
	COMPARE_BIN_OR,
	COMPARE_AND,
	COMPARE_OR,
};

char * store_str(struct sqlhist_bison *sb, const char *str);

int table_start(struct sqlhist_bison *sb);

void *add_field(struct sqlhist_bison *sb, const char *field, const char *label);

void *add_filter(struct sqlhist_bison *sb, void *A, void *B, enum filter_type op);

int add_match(struct sqlhist_bison *sb, void *A, void *B);
void *add_compare(struct sqlhist_bison *sb, void *A, void *B, enum compare_type type);
int add_where(struct sqlhist_bison *sb, void *expr);

int add_selection(struct sqlhist_bison *sb, void *item, const char *label);
int add_from(struct sqlhist_bison *sb, void *item);
int add_to(struct sqlhist_bison *sb, void *item);
void *add_cast(struct sqlhist_bison *sb, void *field, const char *type);

void *add_string(struct sqlhist_bison *sb, const char *str);
void *add_number(struct sqlhist_bison *sb, long val);

extern void sql_parse_error(struct sqlhist_bison *sb, const char *text,
			    const char *fmt, va_list ap);

#endif