ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/cms_cmssw.py
Revision: 1.294
Committed: Mon May 4 12:15:25 2009 UTC (15 years, 11 months ago) by spiga
Content type: text/x-python
Branch: MAIN
Changes since 1.293: +4 -2 lines
Log Message:
argsList must be always 1... to be improved

File Contents

# User Rev Content
1 slacapra 1.1 from JobType import JobType
2     from crab_logger import Logger
3     from crab_exceptions import *
4     from crab_util import *
5     import common
6     import Scram
7 spiga 1.269 from Splitter import JobSplitter
8 slacapra 1.1
9 spiga 1.293 from IMProv.IMProvNode import IMProvNode
10 slacapra 1.105 import os, string, glob
11 slacapra 1.1
12     class Cmssw(JobType):
13 spiga 1.208 def __init__(self, cfg_params, ncjobs,skip_blocks, isNew):
14 slacapra 1.1 JobType.__init__(self, 'CMSSW')
15     common.logger.debug(3,'CMSSW::__init__')
16 spiga 1.208 self.skip_blocks = skip_blocks
17 spiga 1.294 self.argsList = 0
18 mcinquil 1.144
19 gutsche 1.3 self._params = {}
20     self.cfg_params = cfg_params
21 ewv 1.254
22 spiga 1.234 ### Temporary patch to automatically skip the ISB size check:
23     server=self.cfg_params.get('CRAB.server_name',None)
24 ewv 1.250 size = 9.5
25 spiga 1.249 if server or common.scheduler.name().upper() in ['LSF','CAF']: size = 99999
26 spiga 1.234 ### D.S.
27     self.MaxTarBallSize = float(self.cfg_params.get('EDG.maxtarballsize',size))
28 gutsche 1.72
29 gutsche 1.44 # number of jobs requested to be created, limit obj splitting
30 gutsche 1.38 self.ncjobs = ncjobs
31    
32 slacapra 1.1 log = common.logger
33 ewv 1.131
34 slacapra 1.1 self.scram = Scram.Scram(cfg_params)
35     self.additional_inbox_files = []
36     self.scriptExe = ''
37     self.executable = ''
38 slacapra 1.71 self.executable_arch = self.scram.getArch()
39 slacapra 1.1 self.tgz_name = 'default.tgz'
40 corvo 1.56 self.scriptName = 'CMSSW.sh'
41 ewv 1.192 self.pset = ''
42 spiga 1.187 self.datasetPath = ''
43 gutsche 1.3
44 gutsche 1.50 # set FJR file name
45     self.fjrFileName = 'crab_fjr.xml'
46    
47 slacapra 1.1 self.version = self.scram.getSWVersion()
48 slacapra 1.275 common.logger.write("CMSSW version is: "+str(self.version))
49 ewv 1.182 try:
50 slacapra 1.291 type, self.CMSSW_major, self.CMSSW_minor, self.CMSSW_patch = tuple(self.version.split('_'))
51 ewv 1.182 except:
52 ewv 1.184 msg = "Cannot parse CMSSW version string: " + self.version + " for major and minor release number!"
53 ewv 1.182 raise CrabException(msg)
54    
55 ewv 1.276 if self.CMSSW_major < 1 or (self.CMSSW_major == 1 and self.CMSSW_minor < 5):
56     msg = "CRAB supports CMSSW >= 1_5_x only. Use an older CRAB version."
57     raise CrabException(msg)
58     """
59     As CMSSW versions are dropped we can drop more code:
60     1.X dropped: drop support for running .cfg on WN
61     2.0 dropped: drop all support for cfg here and in writeCfg
62     2.0 dropped: Recheck the random number seed support
63     """
64    
65 slacapra 1.1 ### collect Data cards
66 gutsche 1.66
67 ewv 1.226
68 fanzago 1.221 ### Temporary: added to remove input file control in the case of PU
69 farinafa 1.224 self.dataset_pu = cfg_params.get('CMSSW.dataset_pu', None)
70 ewv 1.226
71 slacapra 1.153 tmp = cfg_params['CMSSW.datasetpath']
72     log.debug(6, "CMSSW::CMSSW(): datasetPath = "+tmp)
73 spiga 1.236
74     if tmp =='':
75     msg = "Error: datasetpath not defined "
76     raise CrabException(msg)
77     elif string.lower(tmp)=='none':
78 slacapra 1.153 self.datasetPath = None
79     self.selectNoInput = 1
80     else:
81     self.datasetPath = tmp
82     self.selectNoInput = 0
83 gutsche 1.5
84 slacapra 1.1 self.dataTiers = []
85 spiga 1.288
86     self.debugWrap=''
87 fanzago 1.285 self.debug_wrapper = int(cfg_params.get('USER.debug_wrapper',0))
88     if self.debug_wrapper == 1: self.debugWrap='--debug'
89 slacapra 1.291
90 slacapra 1.1 ## now the application
91 ewv 1.262 self.managedGenerators = ['madgraph','comphep']
92 ewv 1.258 self.generator = cfg_params.get('CMSSW.generator','pythia').lower()
93 slacapra 1.153 self.executable = cfg_params.get('CMSSW.executable','cmsRun')
94     log.debug(6, "CMSSW::CMSSW(): executable = "+self.executable)
95 slacapra 1.1
96 slacapra 1.153 if not cfg_params.has_key('CMSSW.pset'):
97 slacapra 1.1 raise CrabException("PSet file missing. Cannot run cmsRun ")
98 slacapra 1.153 self.pset = cfg_params['CMSSW.pset']
99     log.debug(6, "Cmssw::Cmssw(): PSet file = "+self.pset)
100     if self.pset.lower() != 'none' :
101     if (not os.path.exists(self.pset)):
102     raise CrabException("User defined PSet file "+self.pset+" does not exist")
103     else:
104     self.pset = None
105 slacapra 1.1
106     # output files
107 slacapra 1.53 ## stuff which must be returned always via sandbox
108     self.output_file_sandbox = []
109    
110     # add fjr report by default via sandbox
111     self.output_file_sandbox.append(self.fjrFileName)
112    
113     # other output files to be returned via sandbox or copied to SE
114 mcinquil 1.216 outfileflag = False
115 slacapra 1.153 self.output_file = []
116     tmp = cfg_params.get('CMSSW.output_file',None)
117     if tmp :
118 slacapra 1.207 self.output_file = [x.strip() for x in tmp.split(',')]
119 mcinquil 1.216 outfileflag = True #output found
120     #else:
121     # log.message("No output file defined: only stdout/err and the CRAB Framework Job Report will be available\n")
122 slacapra 1.1
123     # script_exe file as additional file in inputSandbox
124 slacapra 1.153 self.scriptExe = cfg_params.get('USER.script_exe',None)
125     if self.scriptExe :
126 slacapra 1.176 if not os.path.isfile(self.scriptExe):
127     msg ="ERROR. file "+self.scriptExe+" not found"
128     raise CrabException(msg)
129     self.additional_inbox_files.append(string.strip(self.scriptExe))
130 slacapra 1.70
131 spiga 1.42 if self.datasetPath == None and self.pset == None and self.scriptExe == '' :
132 slacapra 1.176 msg ="Error. script_exe not defined"
133     raise CrabException(msg)
134 spiga 1.42
135 ewv 1.226 # use parent files...
136 spiga 1.269 self.useParent = int(self.cfg_params.get('CMSSW.use_parent',0))
137 spiga 1.204
138 slacapra 1.1 ## additional input files
139 slacapra 1.153 if cfg_params.has_key('USER.additional_input_files'):
140 slacapra 1.29 tmpAddFiles = string.split(cfg_params['USER.additional_input_files'],',')
141 slacapra 1.70 for tmp in tmpAddFiles:
142     tmp = string.strip(tmp)
143     dirname = ''
144     if not tmp[0]=="/": dirname = "."
145 corvo 1.85 files = []
146     if string.find(tmp,"*")>-1:
147     files = glob.glob(os.path.join(dirname, tmp))
148     if len(files)==0:
149     raise CrabException("No additional input file found with this pattern: "+tmp)
150     else:
151     files.append(tmp)
152 slacapra 1.70 for file in files:
153     if not os.path.exists(file):
154     raise CrabException("Additional input file not found: "+file)
155 slacapra 1.45 pass
156 slacapra 1.105 self.additional_inbox_files.append(string.strip(file))
157 slacapra 1.1 pass
158     pass
159 slacapra 1.70 common.logger.debug(5,"Additional input files: "+str(self.additional_inbox_files))
160 slacapra 1.153 pass
161 gutsche 1.3
162 gutsche 1.35
163 ewv 1.160 ## New method of dealing with seeds
164     self.incrementSeeds = []
165     self.preserveSeeds = []
166     if cfg_params.has_key('CMSSW.preserve_seeds'):
167     tmpList = cfg_params['CMSSW.preserve_seeds'].split(',')
168     for tmp in tmpList:
169     tmp.strip()
170     self.preserveSeeds.append(tmp)
171     if cfg_params.has_key('CMSSW.increment_seeds'):
172     tmpList = cfg_params['CMSSW.increment_seeds'].split(',')
173     for tmp in tmpList:
174     tmp.strip()
175     self.incrementSeeds.append(tmp)
176    
177 slacapra 1.153 self.firstRun = cfg_params.get('CMSSW.first_run',None)
178 slacapra 1.90
179 ewv 1.147 # Copy/return
180 slacapra 1.153 self.copy_data = int(cfg_params.get('USER.copy_data',0))
181     self.return_data = int(cfg_params.get('USER.return_data',0))
182 ewv 1.276
183     self.conf = {}
184     self.conf['pubdata'] = None
185 spiga 1.269 # number of jobs requested to be created, limit obj splitting DD
186 slacapra 1.1 #DBSDLS-start
187 ewv 1.131 ## Initialize the variables that are extracted from DBS/DLS and needed in other places of the code
188 slacapra 1.1 self.maxEvents=0 # max events available ( --> check the requested nb. of evts in Creator.py)
189     self.DBSPaths={} # all dbs paths requested ( --> input to the site local discovery script)
190 gutsche 1.35 self.jobDestination=[] # Site destination(s) for each job (list of lists)
191 slacapra 1.1 ## Perform the data location and discovery (based on DBS/DLS)
192 slacapra 1.9 ## SL: Don't if NONE is specified as input (pythia use case)
193 gutsche 1.35 blockSites = {}
194 slacapra 1.9 if self.datasetPath:
195 gutsche 1.35 blockSites = self.DataDiscoveryAndLocation(cfg_params)
196 ewv 1.131 #DBSDLS-end
197 spiga 1.269 self.conf['blockSites']=blockSites
198    
199 slacapra 1.9 ## Select Splitting
200 spiga 1.269 splitByRun = int(cfg_params.get('CMSSW.split_by_run',0))
201    
202 ewv 1.131 if self.selectNoInput:
203 spiga 1.187 if self.pset == None:
204 ewv 1.276 self.algo = 'ForScript'
205 spiga 1.42 else:
206 spiga 1.271 self.algo = 'NoInput'
207 ewv 1.276 self.conf['managedGenerators']=self.managedGenerators
208     self.conf['generator']=self.generator
209     elif splitByRun ==1:
210     self.algo = 'RunBased'
211 spiga 1.269 else:
212 ewv 1.276 self.algo = 'EventBased'
213    
214     # self.algo = 'LumiBased'
215     splitter = JobSplitter(self.cfg_params,self.conf)
216 spiga 1.269 self.dict = splitter.Algos()[self.algo]()
217 gutsche 1.5
218 spiga 1.293 self.filepath= '%s/arguments.xml'%common.work_space.shareDir()
219     self.rootname= 'arguments'
220 spiga 1.208 # modify Pset only the first time
221     if isNew:
222 spiga 1.293 # modify Pset only the first time
223     if self.pset != None: self.ModifyPset()
224    
225 ewv 1.226 ## Prepare inputSandbox TarBall (only the first time)
226 spiga 1.293 # self.tgzNameWithPath = self.getTarBall(self.executable)
227    
228     def ModifyPset(self):
229     import PsetManipulator as pp
230     PsetEdit = pp.PsetManipulator(self.pset)
231     try:
232     # Add FrameworkJobReport to parameter-set, set max events.
233     # Reset later for data jobs by writeCFG which does all modifications
234     PsetEdit.maxEvent(-1)
235     PsetEdit.skipEvent(0)
236     PsetEdit.psetWriter(self.configFilename())
237     ## If present, add TFileService to output files
238     if not int(self.cfg_params.get('CMSSW.skip_TFileService_output',0)):
239     tfsOutput = PsetEdit.getTFileService()
240     if tfsOutput:
241     if tfsOutput in self.output_file:
242     common.logger.debug(5,"Output from TFileService "+tfsOutput+" already in output files")
243     else:
244     outfileflag = True #output found
245     self.output_file.append(tfsOutput)
246     common.logger.message("Adding "+tfsOutput+" (from TFileService) to list of output files")
247     pass
248     pass
249     ## If present and requested, add PoolOutputModule to output files
250     if int(self.cfg_params.get('CMSSW.get_edm_output',0)):
251     edmOutput = PsetEdit.getPoolOutputModule()
252     if edmOutput:
253     if edmOutput in self.output_file:
254     common.logger.debug(5,"Output from PoolOutputModule "+edmOutput+" already in output files")
255     else:
256     self.output_file.append(edmOutput)
257     common.logger.message("Adding "+edmOutput+" (from PoolOutputModule) to list of output files")
258     pass
259     pass
260     except CrabException:
261     msg='Error while manipulating ParameterSet: exiting...'
262     raise CrabException(msg)
263    
264 gutsche 1.3
265 slacapra 1.1 def DataDiscoveryAndLocation(self, cfg_params):
266    
267 slacapra 1.86 import DataDiscovery
268     import DataLocation
269 gutsche 1.3 common.logger.debug(10,"CMSSW::DataDiscoveryAndLocation()")
270    
271     datasetPath=self.datasetPath
272    
273 slacapra 1.1 ## Contact the DBS
274 gutsche 1.92 common.logger.message("Contacting Data Discovery Services ...")
275 slacapra 1.1 try:
276 spiga 1.208 self.pubdata=DataDiscovery.DataDiscovery(datasetPath, cfg_params,self.skip_blocks)
277 slacapra 1.1 self.pubdata.fetchDBSInfo()
278    
279 slacapra 1.41 except DataDiscovery.NotExistingDatasetError, ex :
280 slacapra 1.1 msg = 'ERROR ***: failed Data Discovery in DBS : %s'%ex.getErrorMessage()
281     raise CrabException(msg)
282 slacapra 1.41 except DataDiscovery.NoDataTierinProvenanceError, ex :
283 slacapra 1.1 msg = 'ERROR ***: failed Data Discovery in DBS : %s'%ex.getErrorMessage()
284     raise CrabException(msg)
285 slacapra 1.41 except DataDiscovery.DataDiscoveryError, ex:
286 gutsche 1.66 msg = 'ERROR ***: failed Data Discovery in DBS : %s'%ex.getErrorMessage()
287 slacapra 1.1 raise CrabException(msg)
288    
289 gutsche 1.35 self.filesbyblock=self.pubdata.getFiles()
290 slacapra 1.270 #print self.filesbyblock
291 spiga 1.269 self.conf['pubdata']=self.pubdata
292 gutsche 1.3
293 slacapra 1.1 ## get max number of events
294 ewv 1.192 self.maxEvents=self.pubdata.getMaxEvents()
295 slacapra 1.1
296     ## Contact the DLS and build a list of sites hosting the fileblocks
297     try:
298 slacapra 1.41 dataloc=DataLocation.DataLocation(self.filesbyblock.keys(),cfg_params)
299 gutsche 1.6 dataloc.fetchDLSInfo()
300 slacapra 1.263
301 slacapra 1.41 except DataLocation.DataLocationError , ex:
302 slacapra 1.1 msg = 'ERROR ***: failed Data Location in DLS \n %s '%ex.getErrorMessage()
303     raise CrabException(msg)
304 ewv 1.131
305 slacapra 1.1
306 slacapra 1.270 unsorted_sites = dataloc.getSites()
307     #print "Unsorted :",unsorted_sites
308     sites = self.filesbyblock.fromkeys(self.filesbyblock,'')
309     for lfn in self.filesbyblock.keys():
310     #print lfn
311     if unsorted_sites.has_key(lfn):
312     #print "Found ",lfn
313     sites[lfn]=unsorted_sites[lfn]
314     else:
315     #print "Not Found ",lfn
316     sites[lfn]=[]
317     #print sites
318    
319     #print "Sorted :",sites
320 slacapra 1.264 if len(sites)==0:
321 spiga 1.267 msg = 'ERROR ***: no location for any of the blocks of this dataset: \n\t %s \n'%datasetPath
322     msg += "\tMaybe the dataset is located only at T1's (or at T0), where analysis jobs are not allowed\n"
323     msg += "\tPlease check DataDiscovery page https://cmsweb.cern.ch/dbs_discovery/\n"
324 slacapra 1.264 raise CrabException(msg)
325    
326 gutsche 1.35 allSites = []
327     listSites = sites.values()
328 slacapra 1.63 for listSite in listSites:
329     for oneSite in listSite:
330 gutsche 1.35 allSites.append(oneSite)
331 slacapra 1.291 [allSites.append(it) for it in allSites if not allSites.count(it)]
332    
333 gutsche 1.3
334 gutsche 1.92 # screen output
335     common.logger.message("Requested dataset: " + datasetPath + " has " + str(self.maxEvents) + " events in " + str(len(self.filesbyblock.keys())) + " blocks.\n")
336    
337 gutsche 1.35 return sites
338 ewv 1.131
339 spiga 1.42
340 spiga 1.208 def split(self, jobParams,firstJobID):
341 ewv 1.276
342 spiga 1.293 jobParams = self.dict['args']
343 spiga 1.269 njobs = self.dict['njobs']
344     self.jobDestination = self.dict['jobDestination']
345 ewv 1.131
346 slacapra 1.263 if njobs==0:
347     raise CrabException("Ask to split "+str(njobs)+" jobs: aborting")
348    
349 gutsche 1.3 # create the empty structure
350     for i in range(njobs):
351     jobParams.append("")
352 ewv 1.131
353 spiga 1.165 listID=[]
354     listField=[]
355 spiga 1.293 listDictions=[]
356     exist= os.path.exists(self.filepath)
357 spiga 1.208 for id in range(njobs):
358     job = id + int(firstJobID)
359 spiga 1.167 listID.append(job+1)
360 spiga 1.162 job_ToSave ={}
361 spiga 1.169 concString = ' '
362 spiga 1.165 argu=''
363 spiga 1.293 str_argu = str(job+1)
364 spiga 1.208 if len(jobParams[id]):
365 spiga 1.293 argu = {'JobID': job+1}
366     for i in range(len(jobParams[id])):
367     argu[self.dict['params'][i]]=jobParams[id][i]
368     # just for debug
369     str_argu += concString.join(jobParams[id])
370     listDictions.append(argu)
371     job_ToSave['arguments']= str(job+1)# +' '+argu
372 spiga 1.208 job_ToSave['dlsDestination']= self.jobDestination[id]
373 spiga 1.165 listField.append(job_ToSave)
374 spiga 1.293 msg="Job %s Arguments: %s\n"%(str(job+1),str_argu)
375     msg+="\t Destination: %s "%(str(self.jobDestination[id]))
376 spiga 1.165 common.logger.debug(5,msg)
377 spiga 1.293 # write xml
378     if len(listDictions):
379     if exist==False: self.CreateXML()
380     self.addEntry(listDictions)
381 spiga 1.187 common._db.updateJob_(listID,listField)
382 spiga 1.294 # to be removed.... Daniele
383     self.argsList = 1 #(len(jobParams[0])+1)
384     # to be improved.... Daniele
385 spiga 1.293 self.tgzNameWithPath = self.getTarBall(self.executable)
386     return
387 gutsche 1.3
388 spiga 1.293 def CreateXML(self):
389     """
390     """
391     result = IMProvNode( self.rootname )
392     outfile = file( self.filepath, 'w').write(str(result))
393     return
394    
395     def addEntry(self, listDictions):
396     """
397     _addEntry_
398    
399     add an entry to the xml file
400     """
401     from IMProv.IMProvLoader import loadIMProvFile
402     ## load xml
403     improvDoc = loadIMProvFile(self.filepath)
404     entrname= 'Job'
405     for dictions in listDictions:
406     report = IMProvNode(entrname , None, **dictions)
407     improvDoc.addNode(report)
408     outfile = file( self.filepath, 'w').write(str(improvDoc))
409 gutsche 1.3 return
410 ewv 1.131
411 gutsche 1.3 def numberOfJobs(self):
412 spiga 1.269 return self.dict['njobs']
413 gutsche 1.3
414 slacapra 1.1 def getTarBall(self, exe):
415     """
416     Return the TarBall with lib and exe
417     """
418 slacapra 1.242 self.tgzNameWithPath = common.work_space.pathForTgz()+self.tgz_name
419 slacapra 1.1 if os.path.exists(self.tgzNameWithPath):
420     return self.tgzNameWithPath
421    
422     # Prepare a tar gzipped file with user binaries.
423     self.buildTar_(exe)
424    
425     return string.strip(self.tgzNameWithPath)
426    
427     def buildTar_(self, executable):
428    
429     # First of all declare the user Scram area
430     swArea = self.scram.getSWArea_()
431     swReleaseTop = self.scram.getReleaseTop_()
432 ewv 1.131
433 slacapra 1.1 ## check if working area is release top
434     if swReleaseTop == '' or swArea == swReleaseTop:
435 afanfani 1.172 common.logger.debug(3,"swArea = "+swArea+" swReleaseTop ="+swReleaseTop)
436 slacapra 1.1 return
437    
438 slacapra 1.61 import tarfile
439     try: # create tar ball
440     tar = tarfile.open(self.tgzNameWithPath, "w:gz")
441     ## First find the executable
442 slacapra 1.86 if (self.executable != ''):
443 slacapra 1.61 exeWithPath = self.scram.findFile_(executable)
444     if ( not exeWithPath ):
445     raise CrabException('User executable '+executable+' not found')
446 ewv 1.131
447 slacapra 1.61 ## then check if it's private or not
448     if exeWithPath.find(swReleaseTop) == -1:
449     # the exe is private, so we must ship
450     common.logger.debug(5,"Exe "+exeWithPath+" to be tarred")
451     path = swArea+'/'
452 corvo 1.85 # distinguish case when script is in user project area or given by full path somewhere else
453     if exeWithPath.find(path) >= 0 :
454     exe = string.replace(exeWithPath, path,'')
455 slacapra 1.129 tar.add(path+exe,exe)
456 corvo 1.85 else :
457     tar.add(exeWithPath,os.path.basename(executable))
458 slacapra 1.61 pass
459     else:
460     # the exe is from release, we'll find it on WN
461     pass
462 ewv 1.131
463 slacapra 1.61 ## Now get the libraries: only those in local working area
464 slacapra 1.256 tar.dereference=True
465 slacapra 1.61 libDir = 'lib'
466     lib = swArea+'/' +libDir
467     common.logger.debug(5,"lib "+lib+" to be tarred")
468     if os.path.exists(lib):
469     tar.add(lib,libDir)
470 ewv 1.131
471 slacapra 1.61 ## Now check if module dir is present
472     moduleDir = 'module'
473     module = swArea + '/' + moduleDir
474     if os.path.isdir(module):
475     tar.add(module,moduleDir)
476 slacapra 1.256 tar.dereference=False
477 slacapra 1.61
478     ## Now check if any data dir(s) is present
479 spiga 1.179 self.dataExist = False
480 slacapra 1.212 todo_list = [(i, i) for i in os.listdir(swArea+"/src")]
481 slacapra 1.206 while len(todo_list):
482     entry, name = todo_list.pop()
483 slacapra 1.211 if name.startswith('crab_0_') or name.startswith('.') or name == 'CVS':
484 slacapra 1.206 continue
485 slacapra 1.212 if os.path.isdir(swArea+"/src/"+entry):
486 slacapra 1.206 entryPath = entry + '/'
487 slacapra 1.212 todo_list += [(entryPath + i, i) for i in os.listdir(swArea+"/src/"+entry)]
488 slacapra 1.206 if name == 'data':
489     self.dataExist=True
490     common.logger.debug(5,"data "+entry+" to be tarred")
491 slacapra 1.212 tar.add(swArea+"/src/"+entry,"src/"+entry)
492 slacapra 1.206 pass
493     pass
494 ewv 1.182
495 spiga 1.179 ### CMSSW ParameterSet
496     if not self.pset is None:
497     cfg_file = common.work_space.jobDir()+self.configFilename()
498 ewv 1.182 tar.add(cfg_file,self.configFilename())
499 slacapra 1.61
500 fanzago 1.93
501 fanzago 1.152 ## Add ProdCommon dir to tar
502 slacapra 1.211 prodcommonDir = './'
503     prodcommonPath = os.environ['CRABDIR'] + '/' + 'external/'
504 spiga 1.244 neededStuff = ['ProdCommon/__init__.py','ProdCommon/FwkJobRep', 'ProdCommon/CMSConfigTools', \
505     'ProdCommon/Core', 'ProdCommon/MCPayloads', 'IMProv', 'ProdCommon/Storage']
506 slacapra 1.214 for file in neededStuff:
507     tar.add(prodcommonPath+file,prodcommonDir+file)
508 spiga 1.179
509     ##### ML stuff
510     ML_file_list=['report.py', 'DashboardAPI.py', 'Logger.py', 'ProcInfo.py', 'apmon.py']
511     path=os.environ['CRABDIR'] + '/python/'
512     for file in ML_file_list:
513     tar.add(path+file,file)
514    
515     ##### Utils
516 spiga 1.238 Utils_file_list=['parseCrabFjr.py','writeCfg.py', 'fillCrabFjr.py','cmscp.py']
517 spiga 1.179 for file in Utils_file_list:
518     tar.add(path+file,file)
519 ewv 1.131
520 ewv 1.182 ##### AdditionalFiles
521 slacapra 1.253 tar.dereference=True
522 spiga 1.179 for file in self.additional_inbox_files:
523     tar.add(file,string.split(file,'/')[-1])
524 slacapra 1.253 tar.dereference=False
525 slacapra 1.263 common.logger.debug(5,"Files in "+self.tgzNameWithPath+" : "+str(tar.getnames()))
526 spiga 1.293
527     if (os.path.exists(self.filepath)):
528     tar.add(self.filepath,'arguments.xml')
529 ewv 1.182
530 slacapra 1.61 tar.close()
531 mcinquil 1.241 except IOError, exc:
532     common.logger.write(str(exc))
533 slacapra 1.220 raise CrabException('Could not create tar-ball '+self.tgzNameWithPath)
534 mcinquil 1.241 except tarfile.TarError, exc:
535     common.logger.write(str(exc))
536 slacapra 1.206 raise CrabException('Could not create tar-ball '+self.tgzNameWithPath)
537 gutsche 1.72
538     ## check for tarball size
539     tarballinfo = os.stat(self.tgzNameWithPath)
540     if ( tarballinfo.st_size > self.MaxTarBallSize*1024*1024 ) :
541 spiga 1.238 msg = 'Input sandbox size of ' + str(float(tarballinfo.st_size)/1024.0/1024.0) + ' MB is larger than the allowed ' + str(self.MaxTarBallSize) \
542 ewv 1.250 +'MB input sandbox limit \n'
543 spiga 1.238 msg += ' and not supported by the direct GRID submission system.\n'
544     msg += ' Please use the CRAB server mode by setting server_name=<NAME> in section [CRAB] of your crab.cfg.\n'
545     msg += ' For further infos please see https://twiki.cern.ch/twiki/bin/view/CMS/CrabServer#CRABSERVER_for_Users'
546     raise CrabException(msg)
547 gutsche 1.72
548 slacapra 1.61 ## create tar-ball with ML stuff
549 slacapra 1.97
550 spiga 1.165 def wsSetupEnvironment(self, nj=0):
551 slacapra 1.1 """
552     Returns part of a job script which prepares
553     the execution environment for the job 'nj'.
554     """
555 ewv 1.276 # FUTURE: Drop support for .cfg when possible
556 ewv 1.184 if (self.CMSSW_major >= 2 and self.CMSSW_minor >= 1) or (self.CMSSW_major >= 3):
557     psetName = 'pset.py'
558     else:
559     psetName = 'pset.cfg'
560 slacapra 1.1 # Prepare JobType-independent part
561 ewv 1.160 txt = '\n#Written by cms_cmssw::wsSetupEnvironment\n'
562 fanzago 1.133 txt += 'echo ">>> setup environment"\n'
563 spiga 1.290 txt += 'if [ $middleware == LCG ] || [ $middleware == CAF ] || [ $middleware == LSF ]; then \n'
564 gutsche 1.3 txt += self.wsSetupCMSLCGEnvironment_()
565 ewv 1.283 txt += 'elif [ $middleware == OSG ]; then\n'
566 gutsche 1.43 txt += ' WORKING_DIR=`/bin/mktemp -d $OSG_WN_TMP/cms_XXXXXXXXXXXX`\n'
567 ewv 1.132 txt += ' if [ ! $? == 0 ] ;then\n'
568 fanzago 1.161 txt += ' echo "ERROR ==> OSG $WORKING_DIR could not be created on WN `hostname`"\n'
569     txt += ' job_exit_code=10016\n'
570     txt += ' func_exit\n'
571 gutsche 1.3 txt += ' fi\n'
572 fanzago 1.133 txt += ' echo ">>> Created working directory: $WORKING_DIR"\n'
573 gutsche 1.3 txt += '\n'
574     txt += ' echo "Change to working directory: $WORKING_DIR"\n'
575     txt += ' cd $WORKING_DIR\n'
576 fanzago 1.133 txt += ' echo ">>> current directory (WORKING_DIR): $WORKING_DIR"\n'
577 ewv 1.131 txt += self.wsSetupCMSOSGEnvironment_()
578 spiga 1.282 #Setup SGE Environment
579 ewv 1.283 txt += 'elif [ $middleware == SGE ]; then\n'
580 spiga 1.282 txt += self.wsSetupCMSLCGEnvironment_()
581    
582 edelmann 1.289 txt += 'elif [ $middleware == ARC ]; then\n'
583     txt += self.wsSetupCMSLCGEnvironment_()
584    
585 gutsche 1.3 txt += 'fi\n'
586 slacapra 1.1
587     # Prepare JobType-specific part
588     scram = self.scram.commandName()
589     txt += '\n\n'
590 fanzago 1.133 txt += 'echo ">>> specific cmssw setup environment:"\n'
591     txt += 'echo "CMSSW_VERSION = '+self.version+'"\n'
592 slacapra 1.1 txt += scram+' project CMSSW '+self.version+'\n'
593     txt += 'status=$?\n'
594     txt += 'if [ $status != 0 ] ; then\n'
595 fanzago 1.161 txt += ' echo "ERROR ==> CMSSW '+self.version+' not found on `hostname`" \n'
596     txt += ' job_exit_code=10034\n'
597 fanzago 1.163 txt += ' func_exit\n'
598 slacapra 1.1 txt += 'fi \n'
599     txt += 'cd '+self.version+'\n'
600 spiga 1.277 txt += 'SOFTWARE_DIR=`pwd`; export SOFTWARE_DIR\n'
601 fanzago 1.133 txt += 'echo ">>> current directory (SOFTWARE_DIR): $SOFTWARE_DIR" \n'
602 slacapra 1.1 txt += 'eval `'+scram+' runtime -sh | grep -v SCRAMRT_LSB_JOBNAME`\n'
603 fanzago 1.180 txt += 'if [ $? != 0 ] ; then\n'
604     txt += ' echo "ERROR ==> Problem with the command: "\n'
605     txt += ' echo "eval \`'+scram+' runtime -sh | grep -v SCRAMRT_LSB_JOBNAME \` at `hostname`"\n'
606     txt += ' job_exit_code=10034\n'
607     txt += ' func_exit\n'
608     txt += 'fi \n'
609 slacapra 1.1 # Handle the arguments:
610     txt += "\n"
611 gutsche 1.7 txt += "## number of arguments (first argument always jobnumber)\n"
612 slacapra 1.1 txt += "\n"
613 spiga 1.165 txt += "if [ $nargs -lt "+str(self.argsList)+" ]\n"
614 slacapra 1.1 txt += "then\n"
615 fanzago 1.161 txt += " echo 'ERROR ==> Too few arguments' +$nargs+ \n"
616     txt += ' job_exit_code=50113\n'
617     txt += " func_exit\n"
618 slacapra 1.1 txt += "fi\n"
619     txt += "\n"
620    
621     # Prepare job-specific part
622     job = common.job_list[nj]
623 ewv 1.131 if (self.datasetPath):
624 spiga 1.238 self.primaryDataset = self.datasetPath.split("/")[1]
625     DataTier = self.datasetPath.split("/")[2]
626 fanzago 1.93 txt += '\n'
627     txt += 'DatasetPath='+self.datasetPath+'\n'
628    
629 spiga 1.238 txt += 'PrimaryDataset='+self.primaryDataset +'\n'
630     txt += 'DataTier='+DataTier+'\n'
631 fanzago 1.96 txt += 'ApplicationFamily=cmsRun\n'
632 fanzago 1.93
633     else:
634 ewv 1.250 self.primaryDataset = 'null'
635 fanzago 1.93 txt += 'DatasetPath=MCDataTier\n'
636     txt += 'PrimaryDataset=null\n'
637     txt += 'DataTier=null\n'
638     txt += 'ApplicationFamily=MCDataTier\n'
639 ewv 1.170 if self.pset != None:
640 spiga 1.42 pset = os.path.basename(job.configFilename())
641     txt += '\n'
642 spiga 1.95 txt += 'cp $RUNTIME_AREA/'+pset+' .\n'
643 spiga 1.293 ### Daniele
644     """
645 spiga 1.42 if (self.datasetPath): # standard job
646 ewv 1.160 txt += 'InputFiles=${args[1]}; export InputFiles\n'
647 spiga 1.269 if (self.useParent==1):
648 spiga 1.204 txt += 'ParentFiles=${args[2]}; export ParentFiles\n'
649     txt += 'MaxEvents=${args[3]}; export MaxEvents\n'
650     txt += 'SkipEvents=${args[4]}; export SkipEvents\n'
651     else:
652     txt += 'MaxEvents=${args[2]}; export MaxEvents\n'
653     txt += 'SkipEvents=${args[3]}; export SkipEvents\n'
654 spiga 1.42 txt += 'echo "Inputfiles:<$InputFiles>"\n'
655 spiga 1.269 if (self.useParent==1): txt += 'echo "ParentFiles:<$ParentFiles>"\n'
656 spiga 1.42 txt += 'echo "MaxEvents:<$MaxEvents>"\n'
657     txt += 'echo "SkipEvents:<$SkipEvents>"\n'
658     else: # pythia like job
659 ewv 1.258 argNum = 1
660 spiga 1.293 """
661     ### Daniele
662 ewv 1.160 txt += 'PreserveSeeds=' + ','.join(self.preserveSeeds) + '; export PreserveSeeds\n'
663     txt += 'IncrementSeeds=' + ','.join(self.incrementSeeds) + '; export IncrementSeeds\n'
664     txt += 'echo "PreserveSeeds: <$PreserveSeeds>"\n'
665     txt += 'echo "IncrementSeeds:<$IncrementSeeds>"\n'
666 spiga 1.293 ### Daniele
667     """
668 slacapra 1.90 if (self.firstRun):
669 ewv 1.258 txt += 'export FirstRun=${args[%s]}\n' % argNum
670 spiga 1.57 txt += 'echo "FirstRun: <$FirstRun>"\n'
671 ewv 1.258 argNum += 1
672 ewv 1.262 if (self.generator == 'madgraph'):
673 ewv 1.259 txt += 'export FirstEvent=${args[%s]}\n' % argNum
674     txt += 'echo "FirstEvent:<$FirstEvent>"\n'
675     argNum += 1
676 ewv 1.262 elif (self.generator == 'comphep'):
677     txt += 'export CompHEPFirstEvent=${args[%s]}\n' % argNum
678     txt += 'echo "CompHEPFirstEvent:<$CompHEPFirstEvent>"\n'
679     argNum += 1
680 spiga 1.272 txt += 'MaxEvents=${args[%s]}; export MaxEvents\n' % argNum
681 spiga 1.293 """
682     ### Daniele
683 slacapra 1.90
684 ewv 1.184 txt += 'mv -f ' + pset + ' ' + psetName + '\n'
685 slacapra 1.1
686    
687 fanzago 1.163 if self.pset != None:
688 ewv 1.184 # FUTURE: Can simply for 2_1_x and higher
689 spiga 1.42 txt += '\n'
690 fanzago 1.285 if self.debug_wrapper == 1:
691 spiga 1.188 txt += 'echo "***** cat ' + psetName + ' *********"\n'
692     txt += 'cat ' + psetName + '\n'
693     txt += 'echo "****** end ' + psetName + ' ********"\n'
694     txt += '\n'
695 fanzago 1.286 txt += 'echo "***********************" \n'
696     txt += 'which edmConfigHash \n'
697     txt += 'echo "***********************" \n'
698 spiga 1.287 if (self.CMSSW_major >= 2 and self.CMSSW_minor >= 1) or (self.CMSSW_major >= 3):
699 fanzago 1.286 txt += 'edmConfigHash ' + psetName + ' \n'
700 spiga 1.287 txt += 'PSETHASH=`edmConfigHash ' + psetName + '` \n'
701     else:
702 ewv 1.226 txt += 'PSETHASH=`edmConfigHash < ' + psetName + '` \n'
703 fanzago 1.94 txt += 'echo "PSETHASH = $PSETHASH" \n'
704 fanzago 1.292 #### FEDE temporary fix for noEdm files #####
705     txt += 'if [ -z "$PSETHASH" ]; then \n'
706     txt += ' export PSETHASH=null\n'
707     txt += 'fi \n'
708     #############################################
709 fanzago 1.93 txt += '\n'
710 gutsche 1.3 return txt
711 slacapra 1.176
712 fanzago 1.166 def wsUntarSoftware(self, nj=0):
713 gutsche 1.3 """
714     Put in the script the commands to build an executable
715     or a library.
716     """
717    
718 fanzago 1.166 txt = '\n#Written by cms_cmssw::wsUntarSoftware\n'
719 gutsche 1.3
720     if os.path.isfile(self.tgzNameWithPath):
721 fanzago 1.133 txt += 'echo ">>> tar xzvf $RUNTIME_AREA/'+os.path.basename(self.tgzNameWithPath)+' :" \n'
722 slacapra 1.255 txt += 'tar xzf $RUNTIME_AREA/'+os.path.basename(self.tgzNameWithPath)+'\n'
723 fanzago 1.285 if self.debug_wrapper==1 :
724 slacapra 1.255 txt += 'tar tzvf $RUNTIME_AREA/'+os.path.basename(self.tgzNameWithPath)+'\n'
725 spiga 1.199 txt += 'ls -Al \n'
726 gutsche 1.3 txt += 'untar_status=$? \n'
727     txt += 'if [ $untar_status -ne 0 ]; then \n'
728 fanzago 1.161 txt += ' echo "ERROR ==> Untarring .tgz file failed"\n'
729     txt += ' job_exit_code=$untar_status\n'
730     txt += ' func_exit\n'
731 gutsche 1.3 txt += 'else \n'
732     txt += ' echo "Successful untar" \n'
733     txt += 'fi \n'
734 gutsche 1.50 txt += '\n'
735 slacapra 1.211 txt += 'echo ">>> Include $RUNTIME_AREA in PYTHONPATH:"\n'
736 gutsche 1.50 txt += 'if [ -z "$PYTHONPATH" ]; then\n'
737 slacapra 1.211 txt += ' export PYTHONPATH=$RUNTIME_AREA/\n'
738 gutsche 1.50 txt += 'else\n'
739 slacapra 1.211 txt += ' export PYTHONPATH=$RUNTIME_AREA/:${PYTHONPATH}\n'
740 fanzago 1.93 txt += 'echo "PYTHONPATH=$PYTHONPATH"\n'
741 gutsche 1.50 txt += 'fi\n'
742     txt += '\n'
743    
744 gutsche 1.3 pass
745 ewv 1.131
746 slacapra 1.1 return txt
747 ewv 1.170
748 fanzago 1.166 def wsBuildExe(self, nj=0):
749     """
750     Put in the script the commands to build an executable
751     or a library.
752     """
753    
754     txt = '\n#Written by cms_cmssw::wsBuildExe\n'
755     txt += 'echo ">>> moving CMSSW software directories in `pwd`" \n'
756    
757 ewv 1.170 txt += 'rm -r lib/ module/ \n'
758     txt += 'mv $RUNTIME_AREA/lib/ . \n'
759     txt += 'mv $RUNTIME_AREA/module/ . \n'
760 spiga 1.186 if self.dataExist == True:
761     txt += 'rm -r src/ \n'
762     txt += 'mv $RUNTIME_AREA/src/ . \n'
763 ewv 1.182 if len(self.additional_inbox_files)>0:
764 spiga 1.179 for file in self.additional_inbox_files:
765 spiga 1.191 txt += 'mv $RUNTIME_AREA/'+os.path.basename(file)+' . \n'
766 slacapra 1.214 # txt += 'mv $RUNTIME_AREA/ProdCommon/ . \n'
767     # txt += 'mv $RUNTIME_AREA/IMProv/ . \n'
768 ewv 1.170
769 slacapra 1.211 txt += 'echo ">>> Include $RUNTIME_AREA in PYTHONPATH:"\n'
770 fanzago 1.166 txt += 'if [ -z "$PYTHONPATH" ]; then\n'
771 slacapra 1.211 txt += ' export PYTHONPATH=$RUNTIME_AREA/\n'
772 fanzago 1.166 txt += 'else\n'
773 slacapra 1.211 txt += ' export PYTHONPATH=$RUNTIME_AREA/:${PYTHONPATH}\n'
774 fanzago 1.166 txt += 'echo "PYTHONPATH=$PYTHONPATH"\n'
775     txt += 'fi\n'
776     txt += '\n'
777    
778     return txt
779 slacapra 1.1
780 ewv 1.131
781 slacapra 1.1 def executableName(self):
782 ewv 1.192 if self.scriptExe:
783 spiga 1.42 return "sh "
784     else:
785     return self.executable
786 slacapra 1.1
787     def executableArgs(self):
788 ewv 1.160 # FUTURE: This function tests the CMSSW version. Can be simplified as we drop support for old versions
789 ewv 1.276 if self.scriptExe:
790     return self.scriptExe + " $NJob"
791 fanzago 1.115 else:
792 ewv 1.160 ex_args = ""
793 ewv 1.276 ex_args += " -j $RUNTIME_AREA/crab_fjr_$NJob.xml"
794     # Type of config file depends on CMSSW version
795 ewv 1.184 if self.CMSSW_major >= 2 :
796 ewv 1.171 ex_args += " -p pset.py"
797 fanzago 1.115 else:
798 ewv 1.160 ex_args += " -p pset.cfg"
799     return ex_args
800 slacapra 1.1
801     def inputSandbox(self, nj):
802     """
803     Returns a list of filenames to be put in JDL input sandbox.
804     """
805     inp_box = []
806     if os.path.isfile(self.tgzNameWithPath):
807     inp_box.append(self.tgzNameWithPath)
808 spiga 1.243 inp_box.append(common.work_space.jobDir() + self.scriptName)
809 slacapra 1.1 return inp_box
810    
811     def outputSandbox(self, nj):
812     """
813     Returns a list of filenames to be put in JDL output sandbox.
814     """
815     out_box = []
816    
817     ## User Declared output files
818 slacapra 1.54 for out in (self.output_file+self.output_file_sandbox):
819 ewv 1.131 n_out = nj + 1
820 slacapra 1.207 out_box.append(numberFile(out,str(n_out)))
821 slacapra 1.1 return out_box
822    
823    
824     def wsRenameOutput(self, nj):
825     """
826     Returns part of a job script which renames the produced files.
827     """
828    
829 ewv 1.160 txt = '\n#Written by cms_cmssw::wsRenameOutput\n'
830 fanzago 1.148 txt += 'echo ">>> current directory (SOFTWARE_DIR): $SOFTWARE_DIR" \n'
831     txt += 'echo ">>> current directory content:"\n'
832 fanzago 1.285 if self.debug_wrapper==1:
833 spiga 1.199 txt += 'ls -Al\n'
834 fanzago 1.145 txt += '\n'
835 slacapra 1.54
836 fanzago 1.128 for fileWithSuffix in (self.output_file):
837 slacapra 1.207 output_file_num = numberFile(fileWithSuffix, '$NJob')
838 slacapra 1.1 txt += '\n'
839 gutsche 1.7 txt += '# check output file\n'
840 slacapra 1.106 txt += 'if [ -e ./'+fileWithSuffix+' ] ; then\n'
841 ewv 1.147 if (self.copy_data == 1): # For OSG nodes, file is in $WORKING_DIR, should not be moved to $RUNTIME_AREA
842     txt += ' mv '+fileWithSuffix+' '+output_file_num+'\n'
843 spiga 1.209 txt += ' ln -s `pwd`/'+output_file_num+' $RUNTIME_AREA/'+fileWithSuffix+'\n'
844 ewv 1.147 else:
845     txt += ' mv '+fileWithSuffix+' $RUNTIME_AREA/'+output_file_num+'\n'
846     txt += ' ln -s $RUNTIME_AREA/'+output_file_num+' $RUNTIME_AREA/'+fileWithSuffix+'\n'
847 slacapra 1.106 txt += 'else\n'
848 fanzago 1.161 txt += ' job_exit_code=60302\n'
849     txt += ' echo "WARNING: Output file '+fileWithSuffix+' not found"\n'
850 ewv 1.156 if common.scheduler.name().upper() == 'CONDOR_G':
851 gutsche 1.7 txt += ' if [ $middleware == OSG ]; then \n'
852     txt += ' echo "prepare dummy output file"\n'
853     txt += ' echo "Processing of job output failed" > $RUNTIME_AREA/'+output_file_num+'\n'
854     txt += ' fi \n'
855 slacapra 1.1 txt += 'fi\n'
856 slacapra 1.105 file_list = []
857     for fileWithSuffix in (self.output_file):
858 spiga 1.246 file_list.append(numberFile('$SOFTWARE_DIR/'+fileWithSuffix, '$NJob'))
859 ewv 1.131
860 spiga 1.245 txt += 'file_list="'+string.join(file_list,',')+'"\n'
861 fanzago 1.149 txt += '\n'
862 fanzago 1.148 txt += 'echo ">>> current directory (SOFTWARE_DIR): $SOFTWARE_DIR" \n'
863     txt += 'echo ">>> current directory content:"\n'
864 fanzago 1.285 if self.debug_wrapper==1:
865 spiga 1.199 txt += 'ls -Al\n'
866 fanzago 1.148 txt += '\n'
867 gutsche 1.7 txt += 'cd $RUNTIME_AREA\n'
868 fanzago 1.133 txt += 'echo ">>> current directory (RUNTIME_AREA): $RUNTIME_AREA"\n'
869 slacapra 1.1 return txt
870    
871 slacapra 1.63 def getRequirements(self, nj=[]):
872 slacapra 1.1 """
873 ewv 1.131 return job requirements to add to jdl files
874 slacapra 1.1 """
875     req = ''
876 slacapra 1.47 if self.version:
877 slacapra 1.10 req='Member("VO-cms-' + \
878 slacapra 1.47 self.version + \
879 slacapra 1.10 '", other.GlueHostApplicationSoftwareRunTimeEnvironment)'
880 ewv 1.192 if self.executable_arch:
881 gutsche 1.107 req+=' && Member("VO-cms-' + \
882 slacapra 1.105 self.executable_arch + \
883     '", other.GlueHostApplicationSoftwareRunTimeEnvironment)'
884 gutsche 1.35
885     req = req + ' && (other.GlueHostNetworkAdapterOutboundIP)'
886 afanfani 1.229 if ( common.scheduler.name() == "glitecoll" ) or ( common.scheduler.name() == "glite"):
887 afanfani 1.158 req += ' && other.GlueCEStateStatus == "Production" '
888 gutsche 1.35
889 slacapra 1.1 return req
890 gutsche 1.3
891     def configFilename(self):
892     """ return the config filename """
893 ewv 1.182 # FUTURE: Can remove cfg mode for CMSSW >= 2_1_x
894 ewv 1.184 if (self.CMSSW_major >= 2 and self.CMSSW_minor >= 1) or (self.CMSSW_major >= 3):
895 ewv 1.182 return self.name()+'.py'
896     else:
897     return self.name()+'.cfg'
898 gutsche 1.3
899     def wsSetupCMSOSGEnvironment_(self):
900     """
901     Returns part of a job script which is prepares
902     the execution environment and which is common for all CMS jobs.
903     """
904 ewv 1.160 txt = '\n#Written by cms_cmssw::wsSetupCMSOSGEnvironment_\n'
905     txt += ' echo ">>> setup CMS OSG environment:"\n'
906 fanzago 1.133 txt += ' echo "set SCRAM ARCH to ' + self.executable_arch + '"\n'
907     txt += ' export SCRAM_ARCH='+self.executable_arch+'\n'
908 fanzago 1.136 txt += ' echo "SCRAM_ARCH = $SCRAM_ARCH"\n'
909 ewv 1.135 txt += ' if [ -f $OSG_APP/cmssoft/cms/cmsset_default.sh ] ;then\n'
910 mkirn 1.40 txt += ' # Use $OSG_APP/cmssoft/cms/cmsset_default.sh to setup cms software\n'
911 fanzago 1.133 txt += ' source $OSG_APP/cmssoft/cms/cmsset_default.sh '+self.version+'\n'
912     txt += ' else\n'
913 fanzago 1.161 txt += ' echo "ERROR ==> $OSG_APP/cmssoft/cms/cmsset_default.sh file not found"\n'
914     txt += ' job_exit_code=10020\n'
915     txt += ' func_exit\n'
916 fanzago 1.133 txt += ' fi\n'
917 gutsche 1.3 txt += '\n'
918 fanzago 1.161 txt += ' echo "==> setup cms environment ok"\n'
919 fanzago 1.136 txt += ' echo "SCRAM_ARCH = $SCRAM_ARCH"\n'
920 gutsche 1.3
921     return txt
922 ewv 1.131
923 gutsche 1.3 def wsSetupCMSLCGEnvironment_(self):
924     """
925     Returns part of a job script which is prepares
926     the execution environment and which is common for all CMS jobs.
927     """
928 ewv 1.160 txt = '\n#Written by cms_cmssw::wsSetupCMSLCGEnvironment_\n'
929     txt += ' echo ">>> setup CMS LCG environment:"\n'
930 fanzago 1.133 txt += ' echo "set SCRAM ARCH and BUILD_ARCH to ' + self.executable_arch + ' ###"\n'
931     txt += ' export SCRAM_ARCH='+self.executable_arch+'\n'
932     txt += ' export BUILD_ARCH='+self.executable_arch+'\n'
933     txt += ' if [ ! $VO_CMS_SW_DIR ] ;then\n'
934 fanzago 1.161 txt += ' echo "ERROR ==> CMS software dir not found on WN `hostname`"\n'
935     txt += ' job_exit_code=10031\n'
936     txt += ' func_exit\n'
937 fanzago 1.133 txt += ' else\n'
938     txt += ' echo "Sourcing environment... "\n'
939     txt += ' if [ ! -s $VO_CMS_SW_DIR/cmsset_default.sh ] ;then\n'
940 fanzago 1.161 txt += ' echo "ERROR ==> cmsset_default.sh file not found into dir $VO_CMS_SW_DIR"\n'
941     txt += ' job_exit_code=10020\n'
942     txt += ' func_exit\n'
943 fanzago 1.133 txt += ' fi\n'
944     txt += ' echo "sourcing $VO_CMS_SW_DIR/cmsset_default.sh"\n'
945     txt += ' source $VO_CMS_SW_DIR/cmsset_default.sh\n'
946     txt += ' result=$?\n'
947     txt += ' if [ $result -ne 0 ]; then\n'
948 fanzago 1.161 txt += ' echo "ERROR ==> problem sourcing $VO_CMS_SW_DIR/cmsset_default.sh"\n'
949     txt += ' job_exit_code=10032\n'
950     txt += ' func_exit\n'
951 fanzago 1.133 txt += ' fi\n'
952     txt += ' fi\n'
953     txt += ' \n'
954 fanzago 1.161 txt += ' echo "==> setup cms environment ok"\n'
955 gutsche 1.3 return txt
956 gutsche 1.5
957 spiga 1.238 def wsModifyReport(self, nj):
958 fanzago 1.93 """
959 ewv 1.131 insert the part of the script that modifies the FrameworkJob Report
960 fanzago 1.93 """
961 ewv 1.250
962 fanzago 1.281 txt = ''
963 fanzago 1.286 publish_data = int(self.cfg_params.get('USER.publish_data',0))
964 fanzago 1.292 #if (publish_data == 1):
965     if (self.copy_data == 1):
966 fanzago 1.281 txt = '\n#Written by cms_cmssw::wsModifyReport\n'
967 fanzago 1.292 publish_data = int(self.cfg_params.get('USER.publish_data',0))
968 ewv 1.283
969 spiga 1.238
970     txt += 'if [ $StageOutExitStatus -eq 0 ]; then\n'
971 fanzago 1.248 txt += ' FOR_LFN=$LFNBaseName\n'
972 fanzago 1.175 txt += 'else\n'
973     txt += ' FOR_LFN=/copy_problems/ \n'
974     txt += 'fi\n'
975 ewv 1.182
976 fanzago 1.175 txt += 'echo ">>> Modify Job Report:" \n'
977 fanzago 1.217 txt += 'chmod a+x $RUNTIME_AREA/ProdCommon/FwkJobRep/ModifyJobReport.py\n'
978 fanzago 1.175 txt += 'echo "SE = $SE"\n'
979     txt += 'echo "SE_PATH = $SE_PATH"\n'
980     txt += 'echo "FOR_LFN = $FOR_LFN" \n'
981     txt += 'echo "CMSSW_VERSION = $CMSSW_VERSION"\n\n'
982 fanzago 1.281
983    
984     args = 'fjr $RUNTIME_AREA/crab_fjr_$NJob.xml n_job $NJob for_lfn $FOR_LFN PrimaryDataset $PrimaryDataset ApplicationFamily $ApplicationFamily ApplicationName $executable cmssw_version $CMSSW_VERSION psethash $PSETHASH se_name $SE se_path $SE_PATH'
985 fanzago 1.292 if (publish_data == 1):
986     processedDataset = self.cfg_params['USER.publish_data_name']
987     txt += 'ProcessedDataset='+processedDataset+'\n'
988     txt += 'echo "ProcessedDataset = $ProcessedDataset"\n'
989     args += ' UserProcessedDataset $USER-$ProcessedDataset-$PSETHASH'
990 fanzago 1.281
991 fanzago 1.247 txt += 'echo "$RUNTIME_AREA/ProdCommon/FwkJobRep/ModifyJobReport.py '+str(args)+'"\n'
992     txt += '$RUNTIME_AREA/ProdCommon/FwkJobRep/ModifyJobReport.py '+str(args)+'\n'
993 fanzago 1.175 txt += 'modifyReport_result=$?\n'
994     txt += 'if [ $modifyReport_result -ne 0 ]; then\n'
995     txt += ' modifyReport_result=70500\n'
996     txt += ' job_exit_code=$modifyReport_result\n'
997     txt += ' echo "ModifyReportResult=$modifyReport_result" | tee -a $RUNTIME_AREA/$repo\n'
998     txt += ' echo "WARNING: Problem with ModifyJobReport"\n'
999     txt += 'else\n'
1000     txt += ' mv NewFrameworkJobReport.xml $RUNTIME_AREA/crab_fjr_$NJob.xml\n'
1001 spiga 1.103 txt += 'fi\n'
1002 fanzago 1.93 return txt
1003 ewv 1.283
1004 ewv 1.192 def wsParseFJR(self):
1005 spiga 1.189 """
1006 ewv 1.192 Parse the FrameworkJobReport to obtain useful infos
1007 spiga 1.189 """
1008     txt = '\n#Written by cms_cmssw::wsParseFJR\n'
1009     txt += 'echo ">>> Parse FrameworkJobReport crab_fjr.xml"\n'
1010     txt += 'if [ -s $RUNTIME_AREA/crab_fjr_$NJob.xml ]; then\n'
1011     txt += ' if [ -s $RUNTIME_AREA/parseCrabFjr.py ]; then\n'
1012 spiga 1.197 txt += ' cmd_out=`python $RUNTIME_AREA/parseCrabFjr.py --input $RUNTIME_AREA/crab_fjr_$NJob.xml --dashboard $MonitorID,$MonitorJobID '+self.debugWrap+'`\n'
1013 fanzago 1.285 if self.debug_wrapper==1 :
1014 spiga 1.197 txt += ' echo "Result of parsing the FrameworkJobReport crab_fjr.xml: $cmd_out"\n'
1015     txt += ' executable_exit_status=`python $RUNTIME_AREA/parseCrabFjr.py --input $RUNTIME_AREA/crab_fjr_$NJob.xml --exitcode`\n'
1016 spiga 1.189 txt += ' if [ $executable_exit_status -eq 50115 ];then\n'
1017     txt += ' echo ">>> crab_fjr.xml contents: "\n'
1018 spiga 1.222 txt += ' cat $RUNTIME_AREA/crab_fjr_$NJob.xml\n'
1019 spiga 1.189 txt += ' echo "Wrong FrameworkJobReport --> does not contain useful info. ExitStatus: $executable_exit_status"\n'
1020 spiga 1.197 txt += ' elif [ $executable_exit_status -eq -999 ];then\n'
1021     txt += ' echo "ExitStatus from FrameworkJobReport not available. not available. Using exit code of executable from command line."\n'
1022 spiga 1.189 txt += ' else\n'
1023     txt += ' echo "Extracted ExitStatus from FrameworkJobReport parsing output: $executable_exit_status"\n'
1024     txt += ' fi\n'
1025     txt += ' else\n'
1026     txt += ' echo "CRAB python script to parse CRAB FrameworkJobReport crab_fjr.xml is not available, using exit code of executable from command line."\n'
1027     txt += ' fi\n'
1028     #### Patch to check input data reading for CMSSW16x Hopefully we-ll remove it asap
1029 spiga 1.232 txt += ' if [ $executable_exit_status -eq 0 ];then\n'
1030 fanzago 1.273 txt += ' echo ">>> Executable succeded $executable_exit_status"\n'
1031 spiga 1.269 if (self.datasetPath and not (self.dataset_pu or self.useParent==1)) :
1032 spiga 1.189 # VERIFY PROCESSED DATA
1033 fanzago 1.273 txt += ' echo ">>> Verify list of processed files:"\n'
1034     txt += ' echo $InputFiles |tr -d \'\\\\\' |tr \',\' \'\\n\'|tr -d \'"\' > input-files.txt\n'
1035     txt += ' python $RUNTIME_AREA/parseCrabFjr.py --input $RUNTIME_AREA/crab_fjr_$NJob.xml --lfn > processed-files.txt\n'
1036     txt += ' cat input-files.txt | sort | uniq > tmp.txt\n'
1037     txt += ' mv tmp.txt input-files.txt\n'
1038     txt += ' echo "cat input-files.txt"\n'
1039     txt += ' echo "----------------------"\n'
1040     txt += ' cat input-files.txt\n'
1041     txt += ' cat processed-files.txt | sort | uniq > tmp.txt\n'
1042     txt += ' mv tmp.txt processed-files.txt\n'
1043     txt += ' echo "----------------------"\n'
1044     txt += ' echo "cat processed-files.txt"\n'
1045     txt += ' echo "----------------------"\n'
1046     txt += ' cat processed-files.txt\n'
1047     txt += ' echo "----------------------"\n'
1048 spiga 1.278 txt += ' diff -qbB input-files.txt processed-files.txt\n'
1049 fanzago 1.273 txt += ' fileverify_status=$?\n'
1050     txt += ' if [ $fileverify_status -ne 0 ]; then\n'
1051     txt += ' executable_exit_status=30001\n'
1052     txt += ' echo "ERROR ==> not all input files processed"\n'
1053     txt += ' echo " ==> list of processed files from crab_fjr.xml differs from list in pset.cfg"\n'
1054     txt += ' echo " ==> diff input-files.txt processed-files.txt"\n'
1055     txt += ' fi\n'
1056 spiga 1.232 txt += ' fi\n'
1057 spiga 1.189 txt += 'else\n'
1058     txt += ' echo "CRAB FrameworkJobReport crab_fjr.xml is not available, using exit code of executable from command line."\n'
1059     txt += 'fi\n'
1060     txt += '\n'
1061 fanzago 1.279 txt += 'if [ $executable_exit_status -ne 0 ] && [ $executable_exit_status -ne 50115 ] && [ $executable_exit_status -ne 50117 ] && [ $executable_exit_status -ne 30001 ];then\n'
1062 fanzago 1.273 txt += ' echo ">>> Executable failed $executable_exit_status"\n'
1063     txt += ' echo "ExeExitCode=$executable_exit_status" | tee -a $RUNTIME_AREA/$repo\n'
1064     txt += ' echo "EXECUTABLE_EXIT_STATUS = $executable_exit_status"\n'
1065     txt += ' job_exit_code=$executable_exit_status\n'
1066     txt += ' func_exit\n'
1067     txt += 'fi\n\n'
1068 spiga 1.189 txt += 'echo "ExeExitCode=$executable_exit_status" | tee -a $RUNTIME_AREA/$repo\n'
1069     txt += 'echo "EXECUTABLE_EXIT_STATUS = $executable_exit_status"\n'
1070     txt += 'job_exit_code=$executable_exit_status\n'
1071    
1072     return txt
1073    
1074 gutsche 1.5 def setParam_(self, param, value):
1075     self._params[param] = value
1076    
1077     def getParams(self):
1078     return self._params
1079 gutsche 1.8
1080 spiga 1.257 def outList(self,list=False):
1081 mcinquil 1.121 """
1082     check the dimension of the output files
1083     """
1084 spiga 1.169 txt = ''
1085     txt += 'echo ">>> list of expected files on output sandbox"\n'
1086 mcinquil 1.121 listOutFiles = []
1087 ewv 1.170 stdout = 'CMSSW_$NJob.stdout'
1088 spiga 1.169 stderr = 'CMSSW_$NJob.stderr'
1089 spiga 1.268 if len(self.output_file) <= 0:
1090     msg ="WARNING: no output files name have been defined!!\n"
1091     msg+="\tno output files will be reported back/staged\n"
1092     common.logger.message(msg)
1093 fanzago 1.148 if (self.return_data == 1):
1094 spiga 1.157 for file in (self.output_file+self.output_file_sandbox):
1095 slacapra 1.207 listOutFiles.append(numberFile(file, '$NJob'))
1096 spiga 1.169 listOutFiles.append(stdout)
1097     listOutFiles.append(stderr)
1098 ewv 1.156 else:
1099 spiga 1.157 for file in (self.output_file_sandbox):
1100 slacapra 1.207 listOutFiles.append(numberFile(file, '$NJob'))
1101 spiga 1.169 listOutFiles.append(stdout)
1102     listOutFiles.append(stderr)
1103 fanzago 1.161 txt += 'echo "output files: '+string.join(listOutFiles,' ')+'"\n'
1104 spiga 1.157 txt += 'filesToCheck="'+string.join(listOutFiles,' ')+'"\n'
1105 spiga 1.169 txt += 'export filesToCheck\n'
1106 ewv 1.276
1107 spiga 1.257 if list : return self.output_file
1108 ewv 1.170 return txt