1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- from pathlib import Path
- import re
- import plac
- class IqdConverter:
- commands = ['convert']
- target_schema_by_type = {
- 'csv': 'staging',
- 'ims': 'ims'
- }
- output_dir = 'C:\\GlobalCube_LOCOSOFT\\System\\LOCOSOFT\\SQL\\schema\\LOCOSOFT\\views'
- def convert(self, iqd_file, target_type='csv'):
- query = self.get_query_from_iqdfile(iqd_file)
- query = self.cleanup_query(query)
- output_file = iqd_file[:-4] + '.sql'
- with open(output_file, 'w') as fwh:
- fwh.write(query)
- table = Path(iqd_file).stem
- schema = self.target_schema_by_type[target_type]
- create_view = "SET QUOTED_IDENTIFIER ON \nGO\nSET ANSI_NULLS ON \nGO\n" + \
- f"CREATE VIEW {schema}.{table} AS\n\n{query}\n" + \
- "GO\nSET QUOTED_IDENTIFIER OFF \nGO\nSET ANSI_NULLS OFF \nGO\n\nGO"
- view_file = f"{self.output_dir}\\{schema}.{table}.sql"
- with open(view_file, 'w') as fwh:
- fwh.write(create_view)
- def get_query_from_iqdfile(self, iqd_file):
- if iqd_file[-4:].lower() == '.imr':
- iqd_file = iqd_file[:-4] + '.iqd'
- iqd = open(iqd_file, 'r', encoding='latin-1').read()
- res = re.findall(r'BEGIN SQL\n(.*)\n\nEND SQL', iqd, re.MULTILINE | re.DOTALL)
- query = ''
- if len(res) > 0:
- query = res[0]
- columns = re.findall(r'COLUMN,\d+,(.*)', iqd)
- col_keys = [f'c{i}' for i in range(len(columns), 0, -1)]
- col_names = [f'"{c}"' for c in reversed(columns)]
- for col_key, col_name in zip(col_keys, col_names):
- query = re.sub(col_key + r'([^\d])', col_name + r'\1', query)
- return query
- def cleanup_query(self, query):
- query = re.sub(r' from (\d+) for (\d+)\)', r', \1, \2)', query)
- query = query.replace(' || ', ' + ')
- query = query.replace('truncate(', 'rtrim(')
- query = query.replace('char_length(', 'len(')
- query = query.replace('ascii(', 'convert(varchar(50), ')
- query = query.replace('extract(DAY FROM ', 'day(')
- query = query.replace('extract(MONTH FROM ', 'month(')
- query = query.replace('extract(YEAR FROM ', 'year(')
- query = query.replace('cdatetime(', 'convert(datetime, ')
- query = query.replace('cast_float(', 'convert(float, ')
- query = query.replace('sy_right(', 'right(')
- query = query.replace('od_left(', 'left(')
- query = query.replace('length(', 'len(')
- query = query.replace('{hour}', 'hour')
- query = query.replace('{minute}', 'minute')
- query = query.replace('{weekday}', 'weekday')
- query = query.replace('@CURRENT_DATE', 'getdate()')
- query = query.replace('cdate(', '(')
- query = re.sub(r'intdiv\(([^\)]+)\,1\)', r'\1', query)
- query = re.sub(r'XCOUNT\(([^\)]+) for ', r'COUNT(\1) OVER (partition by ', query)
- query = re.sub(r'XSUM\(([^\)]+) for ', r'SUM(\1) OVER (partition by ', query)
- query = re.sub(r'XMIN\(([^\)]+) for ', r'MIN(\1) OVER (partition by ', query)
- query = re.sub(r'XMAX\(([^\)]+) for ', r'MAX(\1) OVER (partition by ', query)
- query = re.sub(r'QSS\.\"[^\"]+\\([^\\]+)\.ims\"', r'"ims"."\1"', query)
- query = re.sub(r"DATE '([\d-]+)'", r"convert(date, '\1')", query)
- query = re.sub(r"TIMESTAMP '([\d\s\-\:\.]+)'", r"convert(datetime, '\1')", query)
- query = re.sub(r'asciiz\(([^\,]*)\,\d+\)', r'convert(varchar(50), \1)', query)
- query = re.sub(r'asciiz\(([^\+]*)\)', r'convert(varchar(50), \1)', query)
- query = re.sub(r'convert\(varchar\(50\)\, ([^,]+)\,\d+\)', r'convert(varchar(50), \1)', query)
- query = query.replace('cdate((convert(float, ', 'convert(datetime, ((')
- query = re.sub(r'(order by .*)', r'-- \1', query)
- return query
- def run_folder(base_dir: str):
- files = sorted([(f.stat().st_mtime, f) for f in Path(base_dir).rglob('*.iqd')])
- print(files)
- if __name__ == '__main__':
- IqdConverter().convert('C:\\GlobalCube_LOCOSOFT\\System\\LOCOSOFT\\IQD\\NW\\LOC_Belege_NW_GW_VK_Stk_FIBU.iqd')
- # plac.Interpreter.call(IqdConverter)
|