-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.y
135 lines (116 loc) · 2.93 KB
/
sql.y
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
%{
#include <iostream>
#include <cstring>
#include <vector>
#include "sql.cpp"
using namespace std;
extern int yylex();
void yyerror(const char *s);
char *tablename = (char *) malloc(100);
vector <string> attributes;
vector <string> dtypes;
vector <string> values;
char *condition = (char *) malloc(100);
char *cval= (char *) malloc(100);
%}
%union{
char *sval;
int ival;
}
%token CREATE
%token TABLE
%token SELECT
%token INSERT
%token INTO
%token FROM
%token VALUES
%token DROP
%token <sval> STRING
%token CHAR
%token NUMBER
%token SCOLON
%token OBR
%token CBR
%token ALL
%token EOL
%token COMMA
%token COUNT
%token WHERE
%token EQUALS
%token <sval> INTEGER
%token QUOTE
%start stmt_list
%type <sval> table_name arg_name
%type <ival> stmt
%%
stmt_list:
| line stmt_list
;
line:EOL
| stmt SCOLON EOL { execute(attributes, dtypes, values, tablename,condition,cval, $1);
attributes.clear();
dtypes.clear();
values.clear();
strcpy(tablename, "");
strcpy(condition,"");
strcpy(cval,"");
cout<<"Mini-sql>";}
;
stmt:
create_stmt { $$ = 1; }
| insert_stmt { $$ = 2; }
| select_stmt1 { $$ = 3; }
| select_stmt2 { $$ = 4; }
| drop_stmt { $$ = 5; }
| count_stmt1 {$$ = 6; }
| count_stmt2 { $$ = 7; }
;
drop_stmt: DROP TABLE table_name
;
select_stmt1: SELECT ALL FROM table_name
;
select_stmt2: SELECT ALL FROM table_name WHERE argC EQUALS term
;
term:
QUOTE STRING QUOTE {strcpy(cval,$2);}
| INTEGER {strcpy(cval,$1);}
;
argC:
STRING {strcpy(condition,$1);}
;
count_stmt1: SELECT COUNT OBR ALL CBR FROM table_name
;
count_stmt2: SELECT COUNT OBR ALL CBR FROM table_name WHERE argC EQUALS term
;
create_stmt: CREATE TABLE table_name OBR create_args CBR
;
create_args: create_args COMMA arg
| arg
;
insert_stmt: INSERT INTO table_name VALUES OBR insert_args CBR
;
insert_args: insert_args COMMA terminal
| terminal
;
terminal:
QUOTE STRING QUOTE { values.push_back($2); }
| INTEGER { values.push_back($1); }
;
arg:
arg_name CHAR { attributes.push_back($1); dtypes.push_back("1");}
| arg_name NUMBER { attributes.push_back($1); dtypes.push_back("0");}
;
arg_name: STRING { $$ = $1;}
;
table_name:
STRING { strcpy(tablename, $1);}
;
%%
int main(){
cout<<"Mini-sql>";
yyparse();
}
void yyerror(const char *s){
cout<<"Parse Err: "<<s<<endl;
exit(-1);
}