CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
uploader Namespace Reference

Classes

class  FileObj
 

Functions

def main
 

Function Documentation

def uploader.main ( )

Definition at line 13 of file uploader.py.

References CommonMethods.appendSqliteFile(), cmsRelvalreport.exit, python.rootplot.root2matplotlib.replace(), split, and timeUnitHelper.unpackLumiid().

13 
14 def main():
15  payloadDir = "./archive_repro_13May/payloads/"
16  aCommand = "ls " + payloadDir + " | grep BeamSpotObjects_2009_LumiBased_ | grep txt"
17  output = commands.getstatusoutput( aCommand )
18  listOfFiles = output[1].split('\n')
19  print listOfFiles
20  finalList = {}
21  for fileName in listOfFiles:
22  file = open(payloadDir + fileName)
23  for line in file:
24  if line.find("since") != -1:
25  tmpObj = FileObj()
26  tmpObj.run = unpackLumiid(long(line.split(' ')[1]))["run"]
27  tmpObj.iovSince = line.split(' ')[1].replace('\n','')
28  tmpObj.fileName = fileName
29  finalList[tmpObj.run] = tmpObj
30  file.close()
31  break
32 
33  sortedKeys = finalList.keys()
34  sortedKeys.sort()
35 
36  databaseTag = ''
37  regExp = re.search('(\D+)(\d+)_(\d+)_(\w+)',listOfFiles[0])
38  if regExp:
39  databaseTag = regExp.group(4)
40  else:
41  exit("Can't find reg exp")
42 
43  uuid = commands.getstatusoutput('uuidgen -t')[1]
44  final_sqlite_file_name = databaseTag + '@' + uuid
45  megaNumber = "18446744073709551615"
46  print final_sqlite_file_name
47  for run in sortedKeys:
48  appendSqliteFile(final_sqlite_file_name + ".db", payloadDir+finalList[run].fileName.replace(".txt",".db"), databaseTag, finalList[run].iovSince, megaNumber,payloadDir)
49  print finalList[run].fileName.replace(".txt",".db")
50  aCommand = "cp " + payloadDir + finalList[sortedKeys[0]].fileName + " " + payloadDir + final_sqlite_file_name + ".txt"
51  output = commands.getstatusoutput( aCommand )
52  dropbox = "/DropBox"
53  print sortedKeys[0]
54  print finalList[sortedKeys[0]].fileName
55 # uploadSqliteFile(payloadDir, final_sqlite_file_name, dropbox)
56 
57 
58 
def main
Definition: uploader.py:13
double split
Definition: MVATrainer.cc:139