iqd_convert.py 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. import re
  2. from collections import defaultdict
  3. from pathlib import Path
  4. class IqdConverter:
  5. commands = ["convert", "run_folder"]
  6. target_schema_by_type = {"csv": "staging", "ims": "ims"}
  7. output_dir = "C:\\GlobalCube\\System\\OPTIMA\\SQL\\schema\\OPTIMA\\views_imr"
  8. def convert(self, iqd_file, target_type="csv", force=True):
  9. if not Path(iqd_file).exists():
  10. print(f"File {iqd_file} does not exist!")
  11. return
  12. output_file = iqd_file[:-4] + ".sql"
  13. if (
  14. not force
  15. and Path(output_file).exists()
  16. and Path(output_file).stat().st_mtime >= Path(iqd_file).stat().st_mtime
  17. ):
  18. # no update needed
  19. return
  20. query = self.get_query_from_iqdfile(iqd_file)
  21. query = self.cleanup_query(query)
  22. with open(output_file, "w", encoding="latin-1") as fwh:
  23. fwh.write(query)
  24. create_view, view_file = self.get_create_view(iqd_file, target_type, query)
  25. with open(view_file, "w", encoding="latin-1") as fwh:
  26. fwh.write(create_view)
  27. # create_view_90 = self.get_create_view_90(query)
  28. # with open(view_file.replace("_imr.sql", "_90.sql"), "w", encoding="latin-1") as fwh:
  29. # fwh.write(create_view_90)
  30. def get_create_view(self, iqd_file, target_type, query):
  31. table = Path(iqd_file).stem.lower()
  32. if target_type == "csv":
  33. table += "_imr"
  34. schema = self.target_schema_by_type[target_type]
  35. create_view = (
  36. "SET QUOTED_IDENTIFIER ON \nGO\nSET ANSI_NULLS ON \nGO\n"
  37. + f"CREATE VIEW {schema}.{table} AS\n\n{query}\n"
  38. + "GO\nSET QUOTED_IDENTIFIER OFF \nGO\nSET ANSI_NULLS OFF \nGO\n\nGO"
  39. )
  40. view_file = f"{self.output_dir}\\{schema}.{table}.sql"
  41. return create_view, view_file
  42. def get_create_view_90(self, query):
  43. match = re.findall(r"(\"([^\"]+)\"\.)?\"([^\"]+)\"\ (T\d+)", query)
  44. tables = dict([(t[3], t[2]) for t in match])
  45. query_split = query.split("select")[-1]
  46. query_from_ori = re.search(r"from ([^\s].*)where", query_split, re.DOTALL)
  47. if not query_from_ori:
  48. return ""
  49. query_from = query_from_ori.group(1).replace("(", "").replace(")", "")
  50. query_where_ori = re.search(r"where (.*)", query_split, re.DOTALL).group(1)
  51. query_where = re.sub(r"-- order by.*", "", query_where_ori)
  52. # query_where = query_where_ori.replace("(", "").replace(")", "")
  53. match = re.findall(r"T\d+\.\"[^\"]+\"", query)
  54. columns = list(sorted(list(set(match))))
  55. cols_alias = []
  56. for col in columns:
  57. t_name, col_name = re.search(r"(T\d+)\.\"([^\"]+)\"", col).group(1, 2)
  58. if True or col_name in cols_alias:
  59. table_name = tables.get(t_name, t_name)
  60. cols_alias.append(f"{col_name}__{table_name}")
  61. else:
  62. cols_alias.append(col_name)
  63. columns_combined = [f'{c} AS "{a}"' for c, a in zip(columns, cols_alias)]
  64. return "SELECT " + ", ".join(columns_combined) + " FROM " + query_from + " WHERE " + query_where
  65. def get_query_from_iqdfile(self, iqd_file):
  66. if iqd_file[-4:].lower() == ".imr":
  67. iqd_file = iqd_file[:-4] + ".iqd"
  68. iqd = open(iqd_file, "r", encoding="latin-1").read()
  69. res = re.findall(r"BEGIN SQL\n(.*)\n\nEND SQL", iqd, re.MULTILINE | re.DOTALL)
  70. query = ""
  71. if len(res) > 0:
  72. query = res[0]
  73. columns = re.findall(r"COLUMN,\d+,(.*)", iqd)
  74. col_keys = [f"c{i}" for i in range(len(columns), 0, -1)]
  75. col_names = [f'"{c}"' for c in reversed(columns)]
  76. used_cols = defaultdict(int)
  77. for col_key, col_name in zip(col_keys, col_names):
  78. used_cols[col_name] += 1
  79. if used_cols[col_name] > 1:
  80. col_name = col_name[:-1] + "_" + str(used_cols[col_name]) + '"'
  81. query = re.sub(col_key + r"([^\d])", col_name + r"\1", query)
  82. columns2 = re.findall(r'\s+(c\d+) as (".*")', query)
  83. used_cols = defaultdict(int)
  84. for col in columns2:
  85. used_cols[col[1]] += 1
  86. col_name = col[1]
  87. if used_cols[col[1]] > 1:
  88. col_name = col[1][:-1] + "_" + str(used_cols[col[1]]) + '"'
  89. query = re.sub(col[0] + r" as " + col[1], col_name, query)
  90. query = re.sub(col[0] + r"([^\d])", col_name + r"\1", query)
  91. return query
  92. def cleanup_query(self, query):
  93. query = re.sub(r" from (\d+) for (\d+)\)", r", \1, \2)", query)
  94. query = query.replace(" || ", " + ")
  95. query = query.replace("truncate(", "rtrim(")
  96. query = query.replace("char_length(", "len(")
  97. query = query.replace("database(", "db_name(")
  98. query = query.replace("ascii(", "convert(varchar(50), ")
  99. query = query.replace("extract(DAY FROM ", "day(")
  100. query = query.replace("extract(MONTH FROM ", "month(")
  101. query = query.replace("extract(YEAR FROM ", "year(")
  102. query = query.replace("od_year(", "year(")
  103. query = query.replace("od_month(", "month(")
  104. query = query.replace("lastday(", "eomonth(")
  105. query = query.replace("cdatetime(", "convert(datetime, ")
  106. query = query.replace("cast_float(", "convert(float, ")
  107. query = query.replace("sy_right(", "right(")
  108. query = query.replace("od_left(", "left(")
  109. query = query.replace("od_right(", "right(")
  110. query = query.replace("length(", "len(")
  111. query = query.replace("{hour}", "hour")
  112. query = query.replace("{minute}", "minute")
  113. query = query.replace("{weekday}", "weekday")
  114. query = query.replace("dayofweek(", "datepart(weekday, ")
  115. query = query.replace("cast_numberToString(cast_integer(", "((")
  116. query = query.replace("@CURRENT_DATE", "getdate()")
  117. query = query.replace("now()", "getdate()")
  118. query = query.replace("INTERVAL '001 10:00:00.000'", "1")
  119. query = query.replace("INTERVAL '001 00:00:00.000'", "1")
  120. query = query.replace("cdate(", "(")
  121. query = re.sub(r"intdiv\(([^\)]+)\,1\)", r"\1", query)
  122. query = re.sub(r"XCOUNT\(([^\)]+) for ", r"COUNT(\1) OVER (partition by ", query)
  123. query = re.sub(r"XSUM\(([^\)]+) for ", r"SUM(\1) OVER (partition by ", query)
  124. query = re.sub(r"RSUM\(([^\)]+) for ", r"SUM(\1) OVER (partition by ", query)
  125. query = re.sub(r"XMIN\(([^\)]+) for ", r"MIN(\1) OVER (partition by ", query)
  126. query = re.sub(r"XMAX\(([^\)]+) for ", r"MAX(\1) OVER (partition by ", query)
  127. query = re.sub(r"XRANK\(([^\)]+) for ([^\)]+)", r"RANK() OVER (partition by \2 order by \1", query)
  128. query = re.sub(r"QSS\.\"[^\"]+\\([^\\]+)\.ims\"", r'"ims"."\1"', query)
  129. query = re.sub(r"DATE '([\d-]+)'", r"convert(date, '\1')", query)
  130. query = re.sub(r"TIMESTAMP '([\d\s\-\:\.]+)'", r"convert(datetime, '\1')", query)
  131. query = re.sub(r"asciiz\(([^\,]*)\,\d+\)", r"convert(varchar(50), \1)", query)
  132. query = re.sub(r"asciiz\(([^\+]*)\)", r"convert(varchar(50), \1)", query)
  133. # query = re.sub(r'day\(([^\-\<\>\=]*) \- ([^\-\<\>\=]*)\)\) as', r'datediff(day, \2, \1)) as', query)
  134. # query = re.sub(r'day\(([^\-\<\>\=]*) \- ([^\-\<\>\=]*)\)\)\)', r'datediff(day, \2, \1)))', query)
  135. query = re.sub(r"day\(([^\-\,\']*) \- ", r"-1 * datediff(day, \1, ", query)
  136. query = re.sub(r"convert\(varchar\(50\)\, ([^,]+)\,\d+\)", r"convert(varchar(50), \1)", query)
  137. query = query.replace("cdate((convert(float, ", "convert(datetime, ((")
  138. query = re.sub(r"[^ ](order by .*)", r"\n-- \1", query)
  139. return query
  140. def run_folder(self, base_dir):
  141. files = sorted([(f.stat().st_mtime, f) for f in Path(base_dir).rglob("*.iqd")])
  142. for timestamp, iqd in files:
  143. self.convert(str(iqd))
  144. if __name__ == "__main__":
  145. iqdconv = IqdConverter()
  146. iqdconv.output_dir = "C:\\GlobalCube_LOCOSOFT\\System\\LOCOSOFT\\SQL\\schema\\LOCOSOFT\\views_imr"
  147. iqdconv.run_folder("C:\\GlobalCube_LOCOSOFT\\System\\LOCOSOFT\\IQD")