From 5dde7eaa1fb82dbee371c8830d25f3a6a351c313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=B9=E8=88=9F?= <13007110208@163.com> Date: Thu, 27 Feb 2025 17:36:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=962?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sqllineage.py | 26 ++-- templates/a.html | 90 +++++++++++ templates/b.html | 162 ++++++++++++++++++++ templates/c.html | 249 ++++++++++++++++++++++++++++++ templates/index.html | 351 +++++++++++++++++++++++++++++++++++-------- 5 files changed, 808 insertions(+), 70 deletions(-) create mode 100644 templates/a.html create mode 100644 templates/b.html create mode 100644 templates/c.html diff --git a/sqllineage.py b/sqllineage.py index 78c2e1d..d824b4f 100644 --- a/sqllineage.py +++ b/sqllineage.py @@ -2,30 +2,37 @@ from flask import Flask, render_template, request, jsonify from utils.sql_parse import parse_create_table_sql from utils.log import Log - app = Flask(__name__) log = Log().getlog() + @app.route('/') def index(): - return render_template('index.html') + return render_template('c.html') + + +@app.route('/a') +def index_a(): + return render_template('a.html') + + +@app.route('/b') +def index_b(): + return render_template('b.html') + @app.route('/convert', methods=['POST']) def convert_sql(): - sql_input = request.form['sql'] - if sql_input.strip()=='': - + if sql_input.strip() == '': return jsonify({ 'parsed_result': "请在上面输入框输入hologres建表语句", 'message': 'SQL processed.' }) - hologres_connection = request.form['hologresConnection'] log.info("SQL Input: %s", sql_input) - log.info("SQL hologres_connection: %s", hologres_connection) try: - parsed_result=parse_create_table_sql(sql_input,hologres_connection) + parsed_result = parse_create_table_sql(sql_input, '') print(parsed_result) result = { 'parsed_result': parsed_result, @@ -36,6 +43,7 @@ def convert_sql(): log.info("SQL result: %s", result) return jsonify(result) + if __name__ == '__main__': # 指定host和port,这里使用0.0.0.0可以让服务器被外部访问 - app.run(host='0.0.0.0', port=8778, debug=True) \ No newline at end of file + app.run(host='0.0.0.0', port=8778, debug=True) diff --git a/templates/a.html b/templates/a.html new file mode 100644 index 0000000..9da5db3 --- /dev/null +++ b/templates/a.html @@ -0,0 +1,90 @@ + + +
+ + +