ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/cms_cmssw.py
Revision: 1.332
Committed: Mon Aug 17 18:42:23 2009 UTC (15 years, 8 months ago) by ewv
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_2_6_2_pre1
Changes since 1.331: +2 -4 lines
Log Message:
Move from limiting # of created jobs to # of submitted jobs

File Contents

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