CMS 3D CMS Logo

conddb_version_mgr.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 import cx_Oracle
4 import datetime
5 import calendar
6 import sys
7 import logging
8 import CondCore.Utilities.conddb_serialization_metadata as sm
9 import CondCore.Utilities.credentials as auth
10 import os
11 
12 authPathEnvVar = 'COND_AUTH_PATH'
13 prod_db_service = ('cms_orcon_prod',{'w':'cms_orcon_prod/cms_cond_general_w','r':'cms_orcon_prod/cms_cond_general_r'})
14 adg_db_service = ('cms_orcon_adg',{'r':'cms_orcon_adg/cms_cond_general_r'})
15 dev_db_service = ('cms_orcoff_prep',{'w':'cms_orcoff_prep/cms_cond_general_w','r':'cms_orcoff_prep/cms_cond_general_r'})
16 schema_name = 'CMS_CONDITIONS'
17 
18 fmt_str = "[%(asctime)s] %(levelname)s: %(message)s"
19 logLevel = logging.INFO
20 logFormatter = logging.Formatter(fmt_str)
21 
22 def print_table( headers, table ):
23  ws = []
24  for h in headers:
25  ws.append(len(h))
26  for row in table:
27  ind = 0
28  for c in row:
29  c = str(c)
30  if ind<len(ws):
31  if len(c)> ws[ind]:
32  ws[ind] = len(c)
33  ind += 1
34 
35  def printf( row ):
36  line = ''
37  ind = 0
38  for w in ws:
39  fmt = '{:<%s}' %w
40  if ind<len(ws):
41  line += (fmt.format( row[ind] )+' ')
42  ind += 1
43  print line
44  printf( headers )
45  hsep = ''
46  for w in ws:
47  fmt = '{:-<%s}' %w
48  hsep += (fmt.format('')+' ')
49  print hsep
50  for row in table:
51  printf( row )
52 
54  def __init__(self, db ):
55  self.db = db
56  self.cmssw_boost_map = {}
57  self.boost_run_map = []
58 
59  def fetch_cmssw_boost_map( self ):
60  cursor = self.db.cursor()
61  cursor.execute('SELECT BOOST_VERSION, CMSSW_VERSION FROM CMSSW_BOOST_MAP');
62  rows = cursor.fetchall()
63  self.cmssw_boost_map = {}
64  for r in rows:
65  self.cmssw_boost_map[r[1]]=r[0]
66  return self.cmssw_boost_map
67 
68  def fetch_boost_run_map( self ):
69  cursor = self.db.cursor()
70  cursor.execute('SELECT RUN_NUMBER, RUN_START_TIME, BOOST_VERSION, INSERTION_TIME FROM BOOST_RUN_MAP ORDER BY RUN_NUMBER, INSERTION_TIME')
71  rows = cursor.fetchall()
72  self.boost_run_map = []
73  for r in rows:
74  self.boost_run_map.append( (r[0],r[1],r[2],str(r[3])) )
75  return self.boost_run_map
76 
77  def insert_boost_run_range( self, run, boost_version ):
78  cursor = self.db.cursor()
79  cursor.execute('SELECT MIN(RUN_NUMBER) FROM RUN_INFO WHERE RUN_NUMBER >= :RUN',(run,))
80  min_run = cursor.fetchone()[0]
81  cursor.execute('SELECT START_TIME FROM RUN_INFO WHERE RUN_NUMBER=:RUN',(min_run,))
82  min_run_time = cursor.fetchone()[0]
83  min_run_ts = calendar.timegm( min_run_time.utctimetuple() ) << 32
84  now = datetime.datetime.utcnow()
85  cursor.execute('INSERT INTO BOOST_RUN_MAP ( RUN_NUMBER, RUN_START_TIME, BOOST_VERSION, INSERTION_TIME ) VALUES (:RUN, :RUN_START_T, :BOOST, :TIME)',(run,min_run_ts,boost_version,now) )
86 
87  def insert_cmssw_boost( self, cmssw_version,boost_version ):
88  cursor = self.db.cursor()
89  cursor.execute('INSERT INTO CMSSW_BOOST_MAP ( CMSSW_VERSION, BOOST_VERSION ) VALUES ( :CMSSW_VERSION, :BOOST_VERSION )',(cmssw_version,boost_version))
90 
91  def lookup_boost_in_cmssw( self, cmssw_version ):
92  cmssw_v = sm.check_cmssw_version( cmssw_version )
93  the_arch = None
94  releaseRoot = None
95  if sm.is_release_cycle( cmssw_v ):
96  cmssw_v = sm.strip_cmssw_version( cmssw_v )
97  archs = sm.get_production_arch( cmssw_v )
98  for arch in archs:
99  path = sm.get_release_root( cmssw_v, arch )
100  if os.path.exists(os.path.join(path,cmssw_v)):
101  releaseRoot = path
102  the_arch = arch
103  break
104  if releaseRoot is None:
105  for arch in archs:
106  the_arch = arch
107  releaseRoot = sm.get_release_root( cmssw_v, arch )
108  for r in sorted (os.listdir( releaseRoot )):
109  if r.startswith(cmssw_v):
110  cmssw_v = r
111  logging.debug('Boost version will be verified in release %s' %cmssw_v)
112 
113  if cmssw_v in self.cmssw_boost_map.keys():
114  return self.cmssw_boost_map[cmssw_v]
115 
116  if releaseRoot is None:
117  archs = sm.get_production_arch( cmssw_v )
118  for arch in archs:
119  path = sm.get_release_root( cmssw_v, arch )
120  if os.path.exists(os.path.join(path,cmssw_v)):
121  releaseRoot = path
122  the_arch = arch
123  break
124  logging.debug('Release path: %s' %releaseRoot)
125  boost_version = sm.get_cmssw_boost( the_arch, '%s/%s' %(releaseRoot,cmssw_v) )
126  if not boost_version is None:
127  self.cmssw_boost_map[cmssw_v] = boost_version
128  self.insert_cmssw_boost( cmssw_v,boost_version )
129  return boost_version
130 
131  def populate_for_gts( self ):
132  cursor = self.db.cursor()
133  cursor.execute('SELECT DISTINCT(RELEASE) FROM GLOBAL_TAG')
134  rows = cursor.fetchall()
135  for r in rows:
136  self.lookup_boost_in_cmssw( r[0] )
137 
139  def __init__( self ):
140  self.db = None
141  self.version_db = None
142  self.args = None
143  self.logger = logging.getLogger()
144  self.logger.setLevel(logLevel)
145  consoleHandler = logging.StreamHandler(sys.stdout)
146  consoleHandler.setFormatter(logFormatter)
147  self.logger.addHandler(consoleHandler)
148  self.iovs = None
149  self.versionIovs = None
150 
151  def connect( self ):
152  if self.args.db is None:
153  self.args.db = 'pro'
154  if self.args.db == 'dev' or self.args.db == 'oradev' :
155  db_service = dev_db_service
156  elif self.args.db == 'orapro':
157  db_service = adg_db_service
158  elif self.args.db != 'onlineorapro' or self.args.db != 'pro':
159  db_service = prod_db_service
160  else:
161  raise Exception("Database '%s' is not known." %args.db )
162  if self.args.accessType not in db_service[1].keys():
163  raise Exception('The specified database connection %s does not support the requested action.' %db_service[0])
164  service = db_service[1][self.args.accessType]
165  creds = auth.get_credentials( authPathEnvVar, service, self.args.auth )
166  if creds is None:
167  raise Exception("Could not find credentials for service %s" %service)
168  (username, account, pwd) = creds
169  connStr = '%s/%s@%s' %(username,pwd,db_service[0])
170  self.db = cx_Oracle.connect(connStr)
171  logging.info('Connected to %s as user %s' %(db_service[0],username))
172  self.db.current_schema = schema_name
173 
174  def process_tag_boost_version( self, t, timetype, tagBoostVersion, minIov, timeCut, validate ):
175  if self.iovs is None:
176  self.iovs = []
177  cursor = self.db.cursor()
178  stmt = 'SELECT IOV.SINCE SINCE, IOV.INSERTION_TIME INSERTION_TIME, P.STREAMER_INFO STREAMER_INFO FROM TAG, IOV, PAYLOAD P WHERE TAG.NAME = IOV.TAG_NAME AND P.HASH = IOV.PAYLOAD_HASH AND TAG.NAME = :TAG_NAME'
179  params = (t,)
180  if timeCut and tagBoostVersion is not None and not validate:
181  whereClauseOnSince = ' AND IOV.INSERTION_TIME>:TIME_CUT'
182  stmt = stmt + whereClauseOnSince
183  params = params + (timeCut,)
184  stmt = stmt + ' ORDER BY SINCE'
185  logging.debug('Executing: "%s"' %stmt)
186  cursor.execute(stmt,params)
187  for r in cursor:
188  streamer_info = str(r[2].read())
189  self.iovs.append((r[0],r[1],streamer_info))
190  niovs = 0
191  self.versionIovs = []
192  lastBoost = None
193  update = False
194  if tagBoostVersion is not None:
195  update = True
196  for iov in self.iovs:
197  if validate and timeCut is not None and timeCut < iov[1]:
198  continue
199  niovs += 1
200  iovBoostVersion, tagBoostVersion = sm.update_tag_boost_version( tagBoostVersion, minIov, iov[2], iov[0], timetype, self.version_db.boost_run_map )
201  if minIov is None or iov[0]<minIov:
202  minIov = iov[0]
203  logging.debug('iov: %s - inserted on %s - streamer: %s' %(iov[0],iov[1],iov[2]))
204  logging.debug('current tag boost version: %s minIov: %s' %(tagBoostVersion,minIov))
205  if lastBoost is None or lastBoost!=iovBoostVersion:
206  self.versionIovs.append((iov[0],iovBoostVersion))
207  lastBoost = iovBoostVersion
208 
209  if tagBoostVersion is None:
210  if niovs == 0:
211  logging.warning( 'No iovs found. boost version cannot be determined.')
212  return None, None
213  else:
214  logging.error('Could not determine the tag boost version.' )
215  return None, None
216  else:
217  if niovs == 0:
218  logging.info('Tag boost version has not changed.')
219  else:
220  msg = 'Found tag boost version %s ( min iov: %s ) combining payloads from %s iovs' %(tagBoostVersion,minIov,niovs)
221  if timeCut is not None:
222  if update:
223  msg += ' (iov insertion time>%s)' %str(timeCut)
224  else:
225  msg += ' (iov insertion time<%s)' %str(timeCut)
226  logging.info( msg )
227  return tagBoostVersion, minIov
228 
229  def validate_boost_version( self, t, timetype, tagBoostVersion ):
230  cursor = self.db.cursor()
231  cursor.execute('SELECT GT.NAME, GT.RELEASE, GT.SNAPSHOT_TIME FROM GLOBAL_TAG GT, GLOBAL_TAG_MAP GTM WHERE GT.NAME = GTM.GLOBAL_TAG_NAME AND GTM.TAG_NAME = :TAG_NAME',(t,))
232  rows = cursor.fetchall()
233  invalid_gts = []
234  ngt = 0
235  gts = []
236  for r in rows:
237  gts.append((r[0],r[1],r[2]))
238  if len(gts)>0:
239  logging.info('validating %s gts.' %len(gts))
240  boost_snapshot_map = {}
241  for gt in gts:
242  ngt += 1
243  logging.debug('Validating for GT %s (release %s)' %(gt[0],gt[1]))
244  gtCMSSWVersion = sm.check_cmssw_version( gt[1] )
245  gtBoostVersion = self.version_db.lookup_boost_in_cmssw( gtCMSSWVersion )
246  if sm.cmp_boost_version( gtBoostVersion, tagBoostVersion )<0:
247  logging.warning( 'The boost version computed from all the iovs in the tag (%s) is incompatible with the gt [%s] %s (consuming ver: %s, snapshot: %s)' %(tagBoostVersion,ngt,gt[0],gtBoostVersion,str(gt[2])))
248  if str(gt[2]) not in boost_snapshot_map.keys():
249  tagSnapshotBoostVersion = None
250  minIov = None
251  tagSnapshotBoostVersion, minIov = self.process_tag_boost_version(t, timetype, tagSnapshotBoostVersion, minIov, gt[2])
252  if tagSnapshotBoostVersion is not None:
253  boost_snapshot_map[str(gt[2])] = tagSnapshotBoostVersion
254  else:
255  continue
256  else:
257  tagSnapshotBoostVersion = boost_snapshot_map[str(gt[2])]
258  if sm.cmp_boost_version( gtBoostVersion, tagSnapshotBoostVersion )<0:
259  logging.error('The snapshot from tag used by gt %s (consuming ver: %s) has an incompatible combined boost version %s' %(gt[0],gtBoostVersion,tagSnapshotBoostVersion))
260  invalid_gts.append( ( gt[0], gtBoostVersion ) )
261  if len(invalid_gts)==0:
262  if ngt>0:
263  logging.info('boost version for the tag validated in %s referencing Gts' %(ngt))
264  else:
265  logging.info('No GT referencing this tag found.')
266  else:
267  logging.error( 'boost version for the tag is invalid.')
268  return invalid_gts
269 
270  def update_tag_boost_version_in_db( self, t, tagBoostVersion, minIov, update ):
271  cursor = self.db.cursor()
272  now = datetime.datetime.utcnow()
273  if update:
274  cursor.execute('UPDATE TAG_METADATA SET MIN_SERIALIZATION_V=:BOOST_V, MIN_SINCE=:MIN_IOV, MODIFICATION_TIME=:NOW WHERE TAG_NAME = :NAME',( tagBoostVersion,minIov,now,t))
275  else:
276  cursor.execute('INSERT INTO TAG_METADATA ( TAG_NAME, MIN_SERIALIZATION_V, MIN_SINCE, MODIFICATION_TIME ) VALUES ( :NAME, :BOOST_V, :MIN_IOV, :NOW )',(t, tagBoostVersion,minIov,now))
277  logging.info('Minimum boost version for the tag updated.')
278 
279  def update_tags( self ):
280  cursor = self.db.cursor()
281  self.version_db = version_db( self.db )
282  self.version_db.fetch_cmssw_boost_map()
283  self.version_db.fetch_boost_run_map()
284  tags = {}
285  wpars = ()
286  if self.args.name is not None:
287  stmt0 = 'SELECT NAME FROM TAG WHERE NAME = :TAG_NAME'
288  wpars = (self.args.name,)
289  cursor.execute(stmt0,wpars);
290  rows = cursor.fetchall()
291  found = False
292  for r in rows:
293  found = True
294  break
295  if not found:
296  raise Exception('Tag %s does not exists in the database.' %self.args.name )
297  tags[self.args.name] = None
298  stmt1 = 'SELECT MIN_SERIALIZATION_V, MIN_SINCE, CAST(MODIFICATION_TIME AS TIMESTAMP(0)) FROM TAG_METADATA WHERE TAG_NAME = :NAME'
299  cursor.execute(stmt1,wpars);
300  rows = cursor.fetchall()
301  for r in rows:
302  tags[self.args.name] = (r[0],r[1],r[2])
303  else:
304  stmt0 = 'SELECT NAME FROM TAG WHERE NAME NOT IN ( SELECT TAG_NAME FROM TAG_METADATA) ORDER BY NAME'
305  nmax = 100
306  if self.args.max is not None:
307  nmax = self.args.max
308  if self.args.all:
309  nmax = -1
310  if nmax >=0:
311  stmt0 = 'SELECT NAME FROM (SELECT NAME FROM TAG WHERE NAME NOT IN ( SELECT TAG_NAME FROM TAG_METADATA ) ORDER BY NAME) WHERE ROWNUM<= :MAXR'
312  wpars = (nmax,)
313  cursor.execute(stmt0,wpars);
314  rows = cursor.fetchall()
315  for r in rows:
316  tags[r[0]] = None
317  stmt1 = 'SELECT T.NAME NAME, TM.MIN_SERIALIZATION_V MIN_SERIALIZATION_V, TM.MIN_SINCE MIN_SINCE, CAST(TM.MODIFICATION_TIME AS TIMESTAMP(0)) MODIFICATION_TIME FROM TAG T, TAG_METADATA TM WHERE T.NAME=TM.TAG_NAME AND CAST(TM.MODIFICATION_TIME AS TIMESTAMP(0)) < (SELECT MAX(INSERTION_TIME) FROM IOV WHERE IOV.TAG_NAME=TM.TAG_NAME) ORDER BY NAME'
318  nmax = nmax-len(tags)
319  if nmax >=0:
320  stmt1 = 'SELECT NAME, MIN_SERIALIZATION_V, MIN_SINCE, MODIFICATION_TIME FROM (SELECT T.NAME NAME, TM.MIN_SERIALIZATION_V MIN_SERIALIZATION_V, TM.MIN_SINCE MIN_SINCE, CAST(TM.MODIFICATION_TIME AS TIMESTAMP(0)) MODIFICATION_TIME FROM TAG T, TAG_METADATA TM WHERE T.NAME=TM.TAG_NAME AND CAST(TM.MODIFICATION_TIME AS TIMESTAMP(0)) < (SELECT MAX(INSERTION_TIME) FROM IOV WHERE IOV.TAG_NAME=TM.TAG_NAME) ORDER BY NAME) WHERE ROWNUM<= :MAXR'
321  wpars = (nmax,)
322  cursor.execute(stmt1,wpars);
323  rows = cursor.fetchall()
324  i = 0
325  for r in rows:
326  i += 1
327  if nmax >=0 and i>nmax:
328  break
329  tags[r[0]] = (r[1],r[2],r[3])
330  logging.info( 'Processing boost version for %s tags' %len(tags))
331  count = 0
332  for t in sorted(tags.keys()):
333  count += 1
334  try:
335  update = False
336  cursor.execute('SELECT TIME_TYPE FROM TAG WHERE NAME= :TAG_NAME',(t,))
337  timetype = cursor.fetchone()[0]
338  self.iovs = None
339  logging.info('************************************************************************')
340  logging.info('Tag [%s] %s - timetype: %s' %(count,t,timetype))
341  tagBoostVersion = None
342  minIov = None
343  timeCut = None
344  if tags[t] is not None:
345  update = True
346  tagBoostVersion = tags[t][0]
347  minIov = tags[t][1]
348  timeCut = tags[t][2]
349  tagBoostVersion, minIov = self.process_tag_boost_version( t, timetype, tagBoostVersion, minIov, timeCut, self.args.validate )
350  if tagBoostVersion is None:
351  continue
352  logging.debug('boost versions in the %s iovs: %s' %(len(self.iovs),str(self.versionIovs)))
353  if self.args.validate:
354  invalid_gts = self.validate_boost_version( t, timetype, tagBoostVersion )
355  if len(invalid_gts)>0:
356  with open('invalid_tags_in_gts.txt','a') as error_file:
357  for gt in invalid_gts:
358  error_file.write('Tag %s (boost %s) is invalid for GT %s ( boost %s) \n' %(t,tagBoostVersion,gt[0],gt[1]))
359  if len(self.iovs):
360  if self.iovs[0][0]<minIov:
361  minIov = self.iovs[0]
362  self.update_tag_boost_version_in_db( t, tagBoostVersion, minIov, update )
363  self.db.commit()
364  except Exception as e:
365  logging.error(str(e))
366 
367  def insert_boost_run( self ):
368  cursor = self.db.cursor()
369  self.version_db = version_db( self.db )
370  self.version_db.insert_boost_run_range( self.args.since, self.args.label )
371  self.db.commit()
372  logging.info('boost version %s inserted with since %s' %(self.args.label,self.args.since))
373 
374  def list_boost_run( self ):
375  cursor = self.db.cursor()
376  self.version_db = version_db( self.db )
377  self.version_db.fetch_boost_run_map()
378  headers = ['Run','Run start time','Boost Version','Insertion time']
379  print_table( headers, self.version_db.boost_run_map )
380 
382  cursor = self.db.cursor()
383  tag = self.args.tag_name
384  cursor.execute('SELECT TIME_TYPE FROM TAG WHERE NAME= :TAG_NAME',(tag,))
385  rows = cursor.fetchall()
386  timeType = None
387  t_modificationTime = None
388  for r in rows:
389  timeType = r[0]
390  if timeType is None:
391  raise Exception("Tag %s does not exist in the database." %tag)
392  cursor.execute('SELECT MAX(INSERTION_TIME) FROM IOV WHERE TAG_NAME= :TAG_NAME',(tag,))
393  rows = cursor.fetchall()
394  for r in rows:
395  t_modificationTime = r[0]
396  if t_modificationTime is None:
397  raise Exception("Tag %s does not have any iov stored." %tag)
398  logging.info('Tag %s - timetype: %s' %(tag,timeType))
399  cursor.execute('SELECT MIN_SERIALIZATION_V, MIN_SINCE, MODIFICATION_TIME FROM TAG_METADATA WHERE TAG_NAME= :TAG_NAME',(tag,))
400  rows = cursor.fetchall()
401  tagBoostVersion = None
402  minIov = None
403  v_modificationTime = None
404  for r in rows:
405  tagBoostVersion = r[0]
406  minIov = r[1]
407  v_modificationTime = r[2]
408  if v_modificationTime is not None:
409  if t_modificationTime > v_modificationTime:
410  logging.warning('The minimum boost version stored is out of date.')
411  else:
412  logging.info('The minimum boost version stored is up to date.')
413  mt = '-'
414  if v_modificationTime is not None:
415  mt = str(v_modificationTime)
416  r_tagBoostVersion = None
417  if self.args.rebuild or self.args.full:
418  self.version_db = version_db( self.db )
419  self.version_db.fetch_boost_run_map()
420  timeCut = None
421  logging.info('Calculating minimum boost version for the available iovs...')
422  r_tagBoostVersion, r_minIov = self.process_tag_boost_version( tag, timeType, tagBoostVersion, minIov, timeCut )
423  print '# Currently stored: %s (min iov:%s)' %(tagBoostVersion,minIov)
424  print '# Last update: %s' %mt
425  print '# Last update on the iovs: %s' %str(t_modificationTime)
426  if self.args.rebuild or self.args.full:
427  print '# Based on the %s available IOVs: %s (min iov:%s)' %(len(self.iovs),r_tagBoostVersion,r_minIov)
428  if self.args.full:
429  headers = ['Run','Boost Version']
430  print_table( headers, self.versionIovs )
431 
432 import optparse
433 import argparse
434 
435 def main():
436  tool = conddb_tool()
437  parser = argparse.ArgumentParser(description='CMS conddb command-line tool for serialiation metadata. For general help (manual page), use the help subcommand.')
438  parser.add_argument('--db', type=str, help='The target database: pro ( for prod ) or dev ( for prep ). default=pro')
439  parser.add_argument("--auth","-a", type=str, help="The path of the authentication file")
440  parser.add_argument('--verbose', '-v', action='count', help='The verbosity level')
441  parser_subparsers = parser.add_subparsers(title='Available subcommands')
442  parser_update_tags = parser_subparsers.add_parser('update_tags', description='Update the existing tag headers with the boost version')
443  parser_update_tags.add_argument('--name', '-n', type=str, help='Name of the specific tag to process (default=None - in this case all of the tags will be processed.')
444  parser_update_tags.add_argument('--max', '-m', type=int, help='the maximum number of tags processed',default=100)
445  parser_update_tags.add_argument('--all',action='store_true', help='process all of the tags with boost_version = None')
446  parser_update_tags.add_argument('--validate',action='store_true', help='validate the tag/boost version under processing')
447  parser_update_tags.set_defaults(func=tool.update_tags,accessType='w')
448  parser_insert_boost_version = parser_subparsers.add_parser('insert', description='Insert a new boost version range in the run map')
449  parser_insert_boost_version.add_argument('--label', '-l',type=str, help='The boost version label',required=True)
450  parser_insert_boost_version.add_argument('--since', '-s',type=int, help='The since validity (run number)',required=True)
451  parser_insert_boost_version.set_defaults(func=tool.insert_boost_run,accessType='w')
452  parser_list_boost_versions = parser_subparsers.add_parser('list', description='list the boost versions in the run map')
453  parser_list_boost_versions.set_defaults(func=tool.list_boost_run,accessType='r')
454  parser_show_version = parser_subparsers.add_parser('show_tag', description='Display the minimum boost version for the specified tag (the value stored, by default)')
455  parser_show_version.add_argument('tag_name',help='The name of the tag')
456  parser_show_version.add_argument('--rebuild','-r',action='store_true',default=False,help='Re-calculate the minimum boost versio ')
457  parser_show_version.add_argument('--full',action='store_true',default=False,help='Recalulate the minimum boost version, listing the versions in the iov sequence')
458  parser_show_version.set_defaults(func=tool.show_tag_boost_version,accessType='r')
459  args = parser.parse_args()
460  tool.args = args
461  if args.verbose >=1:
462  tool.logger.setLevel(logging.DEBUG)
463  tool.connect()
464  return args.func()
465  else:
466  try:
467  tool.connect()
468  sys.exit( args.func())
469  except Exception as e:
470  logging.error(e)
471  sys.exit(1)
472 
473 if __name__ == '__main__':
474  main()
def print_table(headers, table)
def lookup_boost_in_cmssw(self, cmssw_version)
def insert_cmssw_boost(self, cmssw_version, boost_version)
def validate_boost_version(self, t, timetype, tagBoostVersion)
def insert_boost_run_range(self, run, boost_version)
Definition: main.py:1
#define str(s)
def process_tag_boost_version(self, t, timetype, tagBoostVersion, minIov, timeCut, validate)
def update_tag_boost_version_in_db(self, t, tagBoostVersion, minIov, update)