-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengine.py
491 lines (415 loc) · 21.2 KB
/
engine.py
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
import json
from typing import List, Callable, Dict, Union
import os
import shutil
from database import Database
class Engine:
def __init__(self) -> None:
self.current_database = None
####################### database start #########################
def create_database(self, database_name: str) -> None:
'''
Create a new database.
Args:
database_name: str, the name of the database to be created.
Returns:
None.
'''
os.mkdir(os.path.join('databases', database_name))
with open(os.path.join('databases', database_name, 'metadata.jsonl'), 'w') as f:
line = json.dumps({}) + '\n'
f.write(line)
def drop_database(self, database_name: str) -> None:
'''
Drop an existing database.
Args:
database_name: str, the name of the database to be dropped.
Returns:
None.
'''
shutil.rmtree(os.path.join('databases', database_name))
def show_database_names(self) -> None:
'''
Show available database names.
Args:
None.
Returns:
None.
'''
database_names = os.listdir('databases')
for database_name in database_names:
print(database_name)
def use_database(self, database_name: str) -> None:
'''
Specify the database to use.
Args:
database_name: str, the name of the database to use.
Returns:
None.
'''
self.current_database = Database(database_name)
####################### database end #########################
####################### interaction start #########################
def run(self) -> None:
if not os.path.exists('databases'):
os.mkdir('databases')
if not os.path.exists('tmp'):
os.mkdir('tmp')
while True:
response = input('>>>Chenning_DBMS: Please enter which function about database do you want to use? Options include: "1" for "create database", "2" for "drop database", "3" for "show database names", "4" for "use database". Enter "exit" to finish process.\nYour input: ')
if response == 'exit':
shutil.rmtree('tmp')
return
self.parser_database(response)
def parser_database(self, response: str) -> None:
if response == '1':
response = input('>>>Chenning_DBMS: Please enter the name of the database you want to create. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
database_name = response
self.create_database(database_name)
elif response == '2':
response = input('>>>Chenning_DBMS: Please enter the name of the database you want to drop. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
database_name = response
self.drop_database(database_name)
elif response == '3':
self.show_database_names()
elif response == '4':
response = input('>>>Chenning_DBMS: Please enter the name of the database you want to use. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
database_name = response
self.current_database = Database(database_name)
response = input('>>>Chenning_DBMS: Please enter which function about table do you want to use? Options include: "1" for "create table", "2" for "drop table", "3" for "show table names", "4" for "use table". Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
self.parser_table(response)
def parser_table(self, response: str) -> None:
if response == '1':
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to create. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
table_name = response
response = input('>>>Chenning_DBMS: Please enter the field-data_type pairs of the table you want to create. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
field_data_type_pairs = eval(response)
self.current_database.create_table(table_name, field_data_type_pairs)
elif response == '2':
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to drop. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
table_name = response
self.current_database.drop_table(table_name)
elif response == '3':
self.current_database.show_table_names()
elif response == '4':
response = input('>>>Chenning_DBMS: Please enter which function about record do you want to use? Options include: "1" for "insert record", "2" for "update record", "3" for "delete record", "4" for "query record". Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
self.parser_record(response)
def parser_record(self, response: str) -> None:
if response == '1':
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to insert record. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
table_name = response
response = input('>>>Chenning_DBMS: Please enter the record want to insert. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
record = eval(response)
record = self.convert_data_type(table_name, record)
self.current_database.insert_record(table_name, record)
elif response == '2':
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to update record. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
table_name = response
response = input('>>>Chenning_DBMS: Please enter the field-value pairs want to update. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
field_value_pairs = eval(response)
field_value_pairs = self.convert_data_type(table_name, field_value_pairs)
response = self.parser_conditions('>>>Chenning_DBMS: Please enter conditions one at a time to filter records that you want to update. Enter "stop" to stop adding conditions. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
conditions = response
self.current_database.update_record(table_name, field_value_pairs, conditions)
elif response == '3':
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to delete record. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
table_name = response
response = self.parser_conditions('>>>Chenning_DBMS: Please enter conditions one at a time to filter records that you want to delete. Enter "stop" to stop adding conditions. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
conditions = response
self.current_database.delete_record(table_name, conditions)
elif response == '4':
self.parser_query()
def parser_query(self) -> None:
# read_table
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to query record. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
table_name = response
current_table = self.current_database.read_table(os.path.join('databases', self.current_database.database_name, table_name+'.jsonl'))
# cross_product
response = input('>>>Chenning_DBMS: Do you want to do cross product? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
while True:
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to do cross product with. Enter "stop" to stop doing cross product. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'stop':
break
else:
table_name = response
new_table = self.current_database.read_table(os.path.join('databases', self.current_database.database_name, table_name+'.jsonl'))
current_table = self.current_database.cross_product(current_table, new_table)
elif response == 'n':
pass
# theta_inner_join
response = input('>>>Chenning_DBMS: Do you want to do theta inner join? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
while True:
response = input('>>>Chenning_DBMS: Please enter the name of the table you want to do theta inner join with. Enter "stop" to stop doing theta inner join. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'stop':
break
else:
table_name = response
new_table = self.current_database.read_table(os.path.join('databases', self.current_database.database_name, table_name+'.jsonl'))
response = self.parser_conditions('>>>Chenning_DBMS: Please enter conditions one at a time to decide how to do theta inner join. Enter "stop" to stop adding conditions. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
conditions = response
current_table = self.current_database.theta_inner_join(current_table, new_table, conditions)
elif response == 'n':
pass
# select
response = input('>>>Chenning_DBMS: Do you want to do selection? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
response = self.parser_conditions('>>>Chenning_DBMS: Please enter conditions one at a time to select records that you want. Enter "stop" to stop adding conditions. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
conditions = response
current_table = self.current_database.select(current_table, conditions)
elif response == 'n':
pass
# group_by_and_aggregate
response = input('>>>Chenning_DBMS: Do you want to do grouping by and aggregation? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
response = input('>>>Chenning_DBMS: Please enter all fields that you want to group by, using white space to separate fields. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
group_by_fields = response.split()
response = input('>>>Chenning_DBMS: Please enter all fields that you want to aggregate, using white space to separate fields. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
aggregate_fields = response.split()
aggregate_field_aggregate_function_pairs = {}
for aggregate_field in aggregate_fields:
response = input(f'>>>Chenning_DBMS: Please enter the lambda function that you want to use to aggregate "{aggregate_field}". Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
aggregate_function = eval(response)
aggregate_field_aggregate_function_pairs[aggregate_field] = aggregate_function
current_table = self.current_database.group_by_and_aggregate(current_table, group_by_fields, aggregate_field_aggregate_function_pairs)
elif response == 'n':
pass
# project
response = input('>>>Chenning_DBMS: Do you want to do projection? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
response = input('>>>Chenning_DBMS: Please enter all fields that you want to remain, using white space to separate fields. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
fields = response.split()
current_table = self.current_database.project(current_table, fields)
elif response == 'n':
pass
# sort_merge
response = input('>>>Chenning_DBMS: Do you want to do sorting using sort merge algorithm? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
response = input('>>>Chenning_DBMS: Please enter the field that you want to sort by. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
sort_field = response
response = input('>>>Chenning_DBMS: Please enter whether you want to sort in ascending order or not. Enter "a" for ascending order. Enter "d" for descending order. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'a':
response = input('>>>Chenning_DBMS: Please enter the chunk size when using sort merge algorithm. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
chunk_size = int(response)
current_table = self.current_database.sort_merge(current_table, sort_field, True, chunk_size)
elif response == 'd':
response = input('>>>Chenning_DBMS: Please enter the chunk size when using sort merge algorithm. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
chunk_size = int(response)
current_table = self.current_database.sort_merge(current_table, sort_field, False, chunk_size)
elif response == 'n':
pass
# show
response = input('>>>Chenning_DBMS: Do you want to show the query result? Enter "y" for yes. Enter "n" for no. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'y':
response = input('>>>Chenning_DBMS: Please enter the number of records that you want to show. Enter "all" to show all records. Enter "exit" to return to main menu.\nYour input: ')
if response == 'exit':
return
elif response == 'all':
self.current_database.show(current_table)
else:
head_n = int(response)
self.current_database.show(current_table, head_n)
elif response == 'n':
pass
####################### interaction end #########################
####################### tool start #########################
def convert_data_type(self, table_name: str, field_value_pairs: Dict[str, Union[int, float, bool, str]]) -> Dict[str, Union[int, float, bool, str]]:
'''
Convert data type according to table's schema.
Args:
table_name: str, the name of the table that the field-value pairs belongs to.
field_value_pairs: Dict[str, Union[int, float, bool, str]], the field-value pairs that need to be converted.
Returns:
field_value_pairs_convert_data_type: Dict[str, Union[int, float, bool, str]], the field-value pairs that have been converted.
'''
table_name_field_data_type_pairs_pairs = self.current_database.table_name_field_data_type_pairs_pairs
field_data_type_pairs = table_name_field_data_type_pairs_pairs[table_name]
field_value_pairs_convert_data_type = {}
for field, value in field_value_pairs.items():
data_type = field_data_type_pairs[field]
if data_type == 'int':
value_convert_data_type = int(value)
elif data_type == 'float':
value_convert_data_type = float(value)
elif data_type == 'bool':
value_convert_data_type = bool(value)
elif data_type == 'str':
value_convert_data_type = str(value)
field_value_pairs_convert_data_type[field] = value_convert_data_type
return field_value_pairs_convert_data_type
def parser_condition(self, response: str) -> Callable:
'''
Parse a condition and convert it into a lambda function.
Args:
response: str, the condition string.
Returns:
condition: Callable, the converted lambda function.
'''
if '==' in response:
left, right = response.split('==')
left = left.strip()
right = right.strip()
try:
left = eval(left)
return lambda x: left == x[right]
except:
try:
right = eval(right)
return lambda x: x[left] == right
except:
return lambda x: x[left] == x[right]
elif '!=' in response:
left, right = response.split('!=')
left = left.strip()
right = right.strip()
try:
left = eval(left)
return lambda x: left != x[right]
except:
try:
right = eval(right)
return lambda x: x[left] != right
except:
return lambda x: x[left] != x[right]
elif '>=' in response:
left, right = response.split('>=')
left = left.strip()
right = right.strip()
try:
left = eval(left)
return lambda x: left >= x[right]
except:
try:
right = eval(right)
return lambda x: x[left] >= right
except:
return lambda x: x[left] >= x[right]
elif '<=' in response:
left, right = response.split('<=')
left = left.strip()
right = right.strip()
try:
left = eval(left)
return lambda x: left <= x[right]
except:
try:
right = eval(right)
return lambda x: x[left] <= right
except:
return lambda x: x[left] <= x[right]
elif '>' in response:
left, right = response.split('>')
left = left.strip()
right = right.strip()
try:
left = eval(left)
return lambda x: left > x[right]
except:
try:
right = eval(right)
return lambda x: x[left] > right
except:
return lambda x: x[left] > x[right]
elif '<' in response:
left, right = response.split('<')
left = left.strip()
right = right.strip()
try:
left = eval(left)
return lambda x: left < x[right]
except:
try:
right = eval(right)
return lambda x: x[left] < right
except:
return lambda x: x[left] < x[right]
def parser_conditions(self, hint: str) -> Union[List[Callable], str]:
'''
Parse conditions and convert them into lambda functions.
Args:
hint: str, the hint when asking user to enter condition.
Returns:
conditions / "exit": Union[List[Callable], str], the converted lambda functions / "exit" signal.
'''
conditions = []
while True:
response = input(hint)
if response == 'exit':
return 'exit'
elif response == 'stop':
return conditions
else:
condition = self.parser_condition(response)
conditions.append(condition)
####################### tool end #########################