File indexing completed on 2023-03-17 11:14:27
0001 from __future__ import print_function
0002 import re
0003 import os, sys, shutil
0004 import subprocess
0005 """
0006 A simple helper script that provided with no arguments dumps a list of
0007 top-level keys, and provided with any key from this list as an argument,
0008 dumps a list of sub-keys and saves corresponding configuration to local
0009 files.
0010 """
0011
0012
0013 sqlplusCmd = ['env',
0014 'sqlplus',
0015 '-S',
0016 'cms_trg_r/@cms_omds_adg'
0017 ]
0018
0019 if hash( sqlplusCmd[-1] ) != 1687624727082866629:
0020 print('Do not forget to plug password to this script')
0021 print('Exiting.')
0022 exit(0)
0023
0024 myre = re.compile(r'(ID)|(-{80})')
0025
0026
0027 if len(sys.argv) == 1:
0028 sqlplus = subprocess.Popen(sqlplusCmd, shell=False, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
0029 print('No args specified, querying and printing only top-level config keys:')
0030 for line in re.split('\n',sqlplus.communicate('select unique ID from CMS_TRG_L1_CONF.BMTF_KEYS;')[0]):
0031 if myre.search(line) == None :
0032 print(line)
0033 sqlplus = subprocess.Popen(sqlplusCmd, shell=False, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
0034 print('No args specified, querying and printing only top-level Run Settings keys:')
0035 for line in re.split('\n',sqlplus.communicate('select unique ID from CMS_TRG_L1_CONF.BMTF_RS_KEYS;')[0]):
0036 if myre.search(line) == None :
0037 print(line)
0038 print('Pick any of these keys as an argument next time you run this script')
0039 exit(0)
0040
0041
0042 key = sys.argv[1]
0043 rsKey = sys.argv[2]
0044
0045
0046 queryKey = "select BMTF_KEY from CMS_TRG_L1_CONF.L1_TRG_CONF_KEYS where ID='{0}'".format(key)
0047 queryRsKey = "select BMTF_RS_KEY from CMS_TRG_L1_CONF.L1_TRG_RS_KEYS where ID='{0}'".format(rsKey)
0048
0049 sqlplus = subprocess.Popen(sqlplusCmd, shell=False, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
0050 for line in re.split('\n',sqlplus.communicate(queryKey+';')[0]):
0051 print(line)
0052 if re.search('/v',line) :
0053 key=line
0054
0055 sqlplus = subprocess.Popen(sqlplusCmd, shell=False, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
0056 for line in re.split('\n',sqlplus.communicate(queryRsKey+';')[0]):
0057 print(line)
0058 if re.search('/v',line) :
0059 rsKey=line
0060
0061 print(key+":"+rsKey)
0062
0063 queryKeys = """
0064 select
0065 CONF.HW as HW, CONF.ALGO as ALGO, RS.MP7 as MP7, RS.AMC13 as AMC13
0066 from
0067 CMS_TRG_L1_CONF.BMTF_KEYS CONF, CMS_TRG_L1_CONF.BMTF_RS_KEYS RS
0068 where
0069 CONF.ID = '{0}' and RS.ID = '{1}'
0070 """.format(key,rsKey)
0071
0072
0073 batch = {
0074 'HW' : 'hw.xml',
0075 'ALGO' : 'algo.xml',
0076 'MP7' : 'mp7.xml',
0077 'AMC13' : 'amc13.xml'
0078 }
0079
0080
0081 for config,fileName in batch.items():
0082
0083 sqlplus = subprocess.Popen(sqlplusCmd, shell=False, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
0084 with open(fileName,'w') as f:
0085 query = """
0086 select
0087 CLOBS.CONF
0088 from
0089 CMS_TRG_L1_CONF.BMTF_CLOBS CLOBS, ({0}) KEY
0090 where
0091 CLOBS.ID = KEY.{1}
0092 """.format(queryKeys, config)
0093
0094 for line in re.split('\n',sqlplus.communicate('\n'.join(['set linesize 200', 'set longchunksize 200000 long 200000 pages 0',query+';']))[0]):
0095 f.write('\n')
0096 f.write(line)
0097 f.close()
0098
0099
0100 sqlplus = subprocess.Popen(sqlplusCmd, shell=False, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
0101 print('Following keys were found:')
0102 for line in re.split('\n',sqlplus.communicate(queryKeys+';')[0]):
0103 print(line)
0104
0105 print('Results are saved in ' + ' '.join(batch.values()) + ' files')
0106