-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
187 lines (149 loc) · 7.27 KB
/
test.py
File metadata and controls
187 lines (149 loc) · 7.27 KB
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
# phát triển thêm phát hiện (+)
from antlr4 import *
from output.PlSqlLexer import PlSqlLexer
from output.PlSqlParser import PlSqlParser
import json
import re
def extract_select_info(tree):
select_info = {
"select_fields": [],
"from_tables": [],
"joins": [],
"where_conditions": [],
"group_by_fields": [],
"order_by_fields": []
}
table_alias_map = {}
def traverse_tree(node):
if not hasattr(node, "getRuleIndex"):
return
rule_index = node.getRuleIndex()
# SELECT fields
if rule_index == PlSqlParser.RULE_selected_list:
for child in node.children:
text = child.getText().strip()
if text and text != ",":
select_info["select_fields"].append(text)
# FROM tables (Lưu alias -> tên bảng)
elif rule_index == PlSqlParser.RULE_from_clause:
def extract_table_info(from_node, last_table=None):
table_name = last_table
alias = None
for child in from_node.children:
if hasattr(child, "getRuleIndex"):
child_rule = child.getRuleIndex()
if child_rule == PlSqlParser.RULE_tableview_name:
table_name = child.getText().strip()
if table_name not in select_info["from_tables"]:
select_info["from_tables"].append(table_name)
if table_name not in table_alias_map:
table_alias_map[table_name] = None
elif child_rule == PlSqlParser.RULE_table_alias:
alias = child.getText().strip()
if alias:
if table_name:
if table_name in table_alias_map and table_alias_map[table_name] is None:
table_alias_map[table_name] = alias
else:
for key in table_alias_map:
if table_alias_map[key] is None:
table_alias_map[key] = alias
break
elif child_rule in {
PlSqlParser.RULE_table_ref_list,
PlSqlParser.RULE_table_ref,
PlSqlParser.RULE_table_ref_aux,
PlSqlParser.RULE_table_ref_aux_internal,
PlSqlParser.RULE_dml_table_expression_clause
}:
extract_table_info(child, table_name)
print(f"Table to Alias Mapping save: {table_alias_map}")
print(f"table: {table_name}")
print(f"alias: {alias}")
extract_table_info(node)
elif rule_index == PlSqlParser.RULE_join_clause:
join_data = {
"table_from": select_info["from_tables"][0] if select_info["from_tables"] else None,
"table_to": None,
"join_type": "INNER",
"join_condition": None
}
def extract_join_table(join_node):
""" Duyệt sâu để lấy đúng bảng JOIN """
for child in join_node.children:
if hasattr(child, "getRuleIndex"):
child_rule = child.getRuleIndex()
if child_rule == PlSqlParser.RULE_tableview_name:
table_name = child.getText().strip()
if join_data["table_to"] is None:
join_data["table_to"] = table_name
elif child_rule in {
PlSqlParser.RULE_table_ref_aux,
PlSqlParser.RULE_table_ref_aux_internal,
PlSqlParser.RULE_dml_table_expression_clause
}:
extract_join_table(child)
extract_join_table(node)
for child in node.children:
if hasattr(child, "getRuleIndex"):
child_rule = child.getRuleIndex()
if child_rule == PlSqlParser.RULE_outer_join_type:
join_data["join_type"] = child.getText().upper()
elif child_rule == PlSqlParser.RULE_join_on_part:
join_data["join_condition"] = child.getText().replace("ON", "").strip()
select_info["joins"].append(join_data)
# WHERE conditions (Xử lý JOIN với dấu (+))
elif rule_index == PlSqlParser.RULE_where_clause:
where_text = " ".join([child.getText().strip() for child in node.children])
match = re.search(r"(\w+)\.(\w+)\s*=\s*(\w+)\.(\w+)\(\+\)", where_text)
if match:
left_alias, left_col, right_alias, right_col = match.groups()
table_from = next((k for k, v in table_alias_map.items() if v == left_alias), left_alias)
table_to = next((k for k, v in table_alias_map.items() if v == right_alias), right_alias)
join_condition = where_text.replace("WHERE", "").replace("(+)", "").strip()
join_data = {
"table_from": table_from,
"table_to": table_to,
"join_type": "LEFT OUTER",
"join_condition": join_condition
}
select_info["joins"].append(join_data)
else:
join_condition = where_text.replace("WHERE", "").strip()
select_info["where_conditions"].append(join_condition)
# GROUP BY
elif rule_index == PlSqlParser.RULE_group_by_clause:
group_by_text = " ".join([child.getText().strip() for child in node.children]).replace("GROUP BY", "").strip()
select_info["group_by_fields"].append(group_by_text)
# ORDER BY
elif rule_index == PlSqlParser.RULE_order_by_clause:
order_by_text = " ".join([child.getText().strip() for child in node.children]).replace("ORDER BY", "").strip()
select_info["order_by_fields"].append(order_by_text)
# Duyệt tiếp các node con
if hasattr(node, "children"):
for child in node.children:
traverse_tree(child)
traverse_tree(tree)
print(f"Table to Alias Mapping: {table_alias_map}")
return select_info
# Hàm phân tích cú pháp PL/SQL
def parse_plsql(input_text):
input_stream = InputStream(input_text)
lexer = PlSqlLexer(input_stream)
token_stream = CommonTokenStream(lexer)
parser = PlSqlParser(token_stream)
tree = parser.select_statement()
return tree
plsql_query = """
SELECT employees.emp_id, employees.emp_name, dept.dept_name
FROM (
SELECT emp_id, emp_name, dept_id
FROM employees
WHERE hire_date > TO_DATE('2020-01-01', 'YYYY-MM-DD')
) employees
JOIN departments dept ON employees.dept_id = dept.dept_id
WHERE dept.dept_name = 'Sales';
"""
tree = parse_plsql(plsql_query)
query_details = extract_select_info(tree)
print(json.dumps(query_details, indent=4, ensure_ascii=False))