ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/SchedulerEdg.py
(Generate patch)

Comparing COMP/CRAB/python/SchedulerEdg.py (file contents):
Revision 1.5 by nsmirnov, Thu Jun 23 16:53:25 2005 UTC vs.
Revision 1.120 by fanzago, Mon Jun 25 13:54:32 2007 UTC

# Line 2 | Line 2 | from Scheduler import Scheduler
2   from crab_logger import Logger
3   from crab_exceptions import *
4   from crab_util import *
5 + from EdgConfig import *
6   import common
7  
8 < import os, sys, tempfile
8 > import os, sys, time
9  
10   class SchedulerEdg(Scheduler):
11      def __init__(self):
12          Scheduler.__init__(self,"EDG")
13 +        self.states = [ "Acl", "cancelReason", "cancelling","ce_node","children", \
14 +                      "children_hist","children_num","children_states","condorId","condor_jdl", \
15 +                      "cpuTime","destination", "done_code","exit_code","expectFrom", \
16 +                      "expectUpdate","globusId","jdl","jobId","jobtype", \
17 +                      "lastUpdateTime","localId","location", "matched_jdl","network_server", \
18 +                      "owner","parent_job", "reason","resubmitted","rsl","seed",\
19 +                      "stateEnterTime","stateEnterTimes","subjob_failed", \
20 +                      "user tags" , "status" , "status_code","hierarchy"]
21 +        
22          return
23  
24      def configure(self, cfg_params):
25  
26 <        try: self.edg_ui_cfg = cfg_params["EDG.rb_config"]
27 <        except KeyError: self.edg_ui_cfg = ''
28 <
29 <        try: self.edg_config = cfg_params["EDG.config"]
30 <        except KeyError: self.edg_config = ''
31 <
32 <        try: self.edg_config_vo = cfg_params["EDG.config_vo"]
33 <        except KeyError: self.edg_config_vo = ''
26 >        try:
27 >            RB=cfg_params["EDG.rb"]
28 >            self.rb_param_file=self.rb_configure(RB)
29 >        except KeyError:
30 >            self.rb_param_file=''
31 >            pass
32 >        try:
33 >            self.proxyServer = cfg_params["EDG.proxy_server"]
34 >        except KeyError:
35 >            self.proxyServer = 'myproxy.cern.ch'
36 >        common.logger.debug(5,'Setting myproxy server to '+self.proxyServer)
37  
38 +        try:
39 +            self.group = cfg_params["EDG.group"]
40 +        except KeyError:
41 +            self.group = None
42 +            
43 +        try:
44 +            self.role = cfg_params["EDG.role"]
45 +        except KeyError:
46 +            self.role = None
47 +            
48          try: self.LCG_version = cfg_params["EDG.lcg_version"]
49          except KeyError: self.LCG_version = '2'
50  
51 +        try:
52 +            self.EDG_ce_black_list = cfg_params['EDG.ce_black_list']
53 +        except KeyError:
54 +            self.EDG_ce_black_list  = ''
55 +
56 +        try:
57 +            self.EDG_ce_white_list = cfg_params['EDG.ce_white_list']
58 +        except KeyError: self.EDG_ce_white_list = ''
59 +
60 +        try: self.VO = cfg_params['EDG.virtual_organization']
61 +        except KeyError: self.VO = 'cms'
62 +
63 +        try: self.copy_input_data = cfg_params["USER.copy_input_data"]
64 +        except KeyError: self.copy_input_data = 0
65 +
66 +        try: self.return_data = cfg_params['USER.return_data']
67 +        except KeyError: self.return_data = 0
68 +
69 +        try:
70 +            self.copy_data = cfg_params["USER.copy_data"]
71 +            if int(self.copy_data) == 1:
72 +                try:
73 +                    self.SE = cfg_params['USER.storage_element']
74 +                    self.SE_PATH = cfg_params['USER.storage_path']
75 +                except KeyError:
76 +                    msg = "Error. The [USER] section does not have 'storage_element'"
77 +                    msg = msg + " and/or 'storage_path' entries, necessary to copy the output"
78 +                    common.logger.message(msg)
79 +                    raise CrabException(msg)
80 +        except KeyError: self.copy_data = 0
81 +
82 +        if ( int(self.return_data) == 0 and int(self.copy_data) == 0 ):
83 +           msg = 'Warning: return_data = 0 and copy_data = 0 ==> your exe output will be lost\n'
84 +           msg = msg + 'Please modify return_data or copy_data value in your crab.cfg file\n'
85 +           raise CrabException(msg)
86 +
87 +        if ( int(self.return_data) == 1 and int(self.copy_data) == 1 ):
88 +           msg = 'Warning: return_data = 1 and copy_data = 1\n'
89 +           msg = msg + 'Please modify return_data or copy_data value in your crab.cfg file\n'
90 +           raise CrabException(msg)
91 +
92 +        ########### FEDE FOR DBS2 ##############################
93 +        try:
94 +            self.publish_data = cfg_params["USER.publish_data"]
95 +            if int(self.publish_data) == 1:
96 +                try:
97 +                    self.publish_data_name = cfg_params['USER.publish_data_name']
98 +                except KeyError:
99 +                    msg = "Error. The [USER] section does not have 'publish_data_name'"
100 +                    common.logger.message(msg)
101 +                    raise CrabException(msg)
102 +        except KeyError: self.publish_data = 0
103 +
104 +        if ( int(self.copy_data) == 0 and int(self.publish_data) == 1 ):
105 +           msg = 'Warning: publish_data = 1 must be used with copy_data = 1\n'
106 +           msg = msg + 'Please modify copy_data value in your crab.cfg file\n'
107 +           common.logger.message(msg)
108 +           raise CrabException(msg)
109 +        #################################################
110 +        try:
111 +            self.lfc_host = cfg_params['EDG.lfc_host']
112 +        except KeyError:
113 +            msg = "Error. The [EDG] section does not have 'lfc_host' value"
114 +            msg = msg + " it's necessary to know the LFC host name"
115 +            common.logger.message(msg)
116 +            raise CrabException(msg)
117 +        try:
118 +            self.lcg_catalog_type = cfg_params['EDG.lcg_catalog_type']
119 +        except KeyError:
120 +            msg = "Error. The [EDG] section does not have 'lcg_catalog_type' value"
121 +            msg = msg + " it's necessary to know the catalog type"
122 +            common.logger.message(msg)
123 +            raise CrabException(msg)
124 +        try:
125 +            self.lfc_home = cfg_params['EDG.lfc_home']
126 +        except KeyError:
127 +            msg = "Error. The [EDG] section does not have 'lfc_home' value"
128 +            msg = msg + " it's necessary to know the home catalog dir"
129 +            common.logger.message(msg)
130 +            raise CrabException(msg)
131 +      
132 +        try:
133 +            self.register_data = cfg_params["USER.register_data"]
134 +            if int(self.register_data) == 1:
135 +                try:
136 +                    self.LFN = cfg_params['USER.lfn_dir']
137 +                except KeyError:
138 +                    msg = "Error. The [USER] section does not have 'lfn_dir' value"
139 +                    msg = msg + " it's necessary for LCF registration"
140 +                    common.logger.message(msg)
141 +                    raise CrabException(msg)
142 +        except KeyError: self.register_data = 0
143 +
144 +        if ( int(self.copy_data) == 0 and int(self.register_data) == 1 ):
145 +           msg = 'Warning: register_data = 1 must be used with copy_data = 1\n'
146 +           msg = msg + 'Please modify copy_data value in your crab.cfg file\n'
147 +           common.logger.message(msg)
148 +           raise CrabException(msg)
149 +
150          try: self.EDG_requirements = cfg_params['EDG.requirements']
151          except KeyError: self.EDG_requirements = ''
152  
153 +        try: self.EDG_addJdlParam = string.split(cfg_params['EDG.additional_jdl_parameters'],',')
154 +        except KeyError: self.EDG_addJdlParam = []
155 +
156          try: self.EDG_retry_count = cfg_params['EDG.retry_count']
157          except KeyError: self.EDG_retry_count = ''
158  
159 <        try:
160 <            self.VO = cfg_params['EDG.virtual_organization']
36 <        except KeyError:
37 <            msg = 'EDG.virtual_organization is mandatory.'
38 <            raise CrabException(msg)
159 >        try: self.EDG_shallow_retry_count= cfg_params['EDG.shallow_retry_count']
160 >        except KeyError: self.EDG_shallow_retry_count = ''
161  
162 <        
163 <        #self.scripts_dir = common.bin_dir + '/scripts'
164 <        #self.cmd_prefix = 'edg'
165 <        #if common.LCG_version == '0' : self.cmd_prefix = 'dg'
162 >        try: self.EDG_clock_time = cfg_params['EDG.max_wall_clock_time']
163 >        except KeyError: self.EDG_clock_time= ''
164 >
165 >        try: self.EDG_cpu_time = cfg_params['EDG.max_cpu_time']
166 >        except KeyError: self.EDG_cpu_time = ''
167  
168          # Add EDG_WL_LOCATION to the python path
169  
# Line 55 | Line 178 | class SchedulerEdg(Scheduler):
178          libPath=os.path.join(path, "lib", "python")
179          sys.path.append(libPath)
180  
181 <        self.checkProxy_()
181 >        self.proxyValid=0
182 >
183 >        try:
184 >            self._taskId = cfg_params['taskId']
185 >        except:
186 >            self._taskId = ''
187 >
188 >        try: self.jobtypeName = cfg_params['CRAB.jobtype']
189 >        except KeyError: self.jobtypeName = ''
190 >
191 >        try: self.schedulerName = cfg_params['CRAB.scheduler']
192 >        except KeyError: self.scheduler = ''
193 >
194 >        try: self.dontCheckProxy=cfg_params["EDG.dont_check_proxy"]
195 >        except KeyError: self.dontCheckProxy = 0
196 >
197          return
198      
199 +
200 +    def rb_configure(self, RB):
201 +        self.edg_config = ''
202 +        self.edg_config_vo = ''
203 +        self.rb_param_file = ''
204 +
205 +        edgConfig = EdgConfig(RB)
206 +        self.edg_config = edgConfig.config()
207 +        self.edg_config_vo = edgConfig.configVO()
208 +
209 +        if (self.edg_config and self.edg_config_vo != ''):
210 +            self.rb_param_file = 'RBconfig = "'+self.edg_config+'";\nRBconfigVO = "'+self.edg_config_vo+'";'
211 +            #print "rb_param_file = ", self.rb_param_file
212 +        return self.rb_param_file
213 +      
214 +
215 +    def sched_parameter(self):
216 +        """
217 +        Returns file with requirements and scheduler-specific parameters
218 +        """
219 +        index = int(common.jobDB.nJobs()) - 1
220 +        job = common.job_list[index]
221 +        jbt = job.type()
222 +        
223 +        lastBlock=-1
224 +        first = []
225 +        for n in range(common.jobDB.nJobs()):
226 +            currBlock=common.jobDB.block(n)
227 +            if (currBlock!=lastBlock):
228 +                lastBlock = currBlock
229 +                first.append(n)
230 +  
231 +        req = ''
232 +        req = req + jbt.getRequirements()
233 +    
234 +        if self.EDG_requirements:
235 +            if (req == ' '):
236 +                req = req + self.EDG_requirements
237 +            else:
238 +                req = req +  ' && ' + self.EDG_requirements
239 +
240 +        if self.EDG_ce_white_list:
241 +            ce_white_list = string.split(self.EDG_ce_white_list,',')
242 +            for i in range(len(ce_white_list)):
243 +                if i == 0:
244 +                    if (req == ' '):
245 +                        req = req + '((RegExp("' + string.strip(ce_white_list[i]) + '", other.GlueCEUniqueId))'
246 +                    else:
247 +                        req = req +  ' && ((RegExp("' +  string.strip(ce_white_list[i]) + '", other.GlueCEUniqueId))'
248 +                    pass
249 +                else:
250 +                    req = req +  ' || (RegExp("' +  string.strip(ce_white_list[i]) + '", other.GlueCEUniqueId))'
251 +            req = req + ')'
252 +        
253 +        if self.EDG_ce_black_list:
254 +            ce_black_list = string.split(self.EDG_ce_black_list,',')
255 +            for ce in ce_black_list:
256 +                if (req == ' '):
257 +                    req = req + '(!RegExp("' + string.strip(ce) + '", other.GlueCEUniqueId))'
258 +                else:
259 +                    req = req +  ' && (!RegExp("' + string.strip(ce) + '", other.GlueCEUniqueId))'
260 +                pass
261 +        if self.EDG_clock_time:
262 +            if (req == ' '):
263 +                req = req + 'other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
264 +            else:
265 +                req = req + ' && other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
266 +
267 +        if self.EDG_cpu_time:
268 +            if (req == ' '):
269 +                req = req + ' other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
270 +            else:
271 +                req = req + ' && other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
272 +                
273 +        for i in range(len(first)): # Add loop DS
274 +            groupReq = req
275 +            self.param='sched_param_'+str(i)+'.clad'
276 +            param_file = open(common.work_space.shareDir()+'/'+self.param, 'w')
277 +
278 +            itr4=self.findSites_(first[i])
279 +            for arg in itr4:
280 +                groupReq = groupReq + ' && anyMatch(other.storage.CloseSEs, ('+str(arg)+'))'
281 +            param_file.write('Requirements = '+groupReq +';\n')  
282 +  
283 +            if (self.rb_param_file != ''):
284 +                param_file.write(self.rb_param_file)  
285 +
286 +            if len(self.EDG_addJdlParam):
287 +                for p in self.EDG_addJdlParam:
288 +                    param_file.write(p)
289 +
290 +            param_file.close()  
291 +
292 +
293      def wsSetupEnvironment(self):
294          """
295          Returns part of a job script which does scheduler-specific work.
296          """
297 <        txt = '\n'
298 <        txt += 'CloseCEs=`edg-brokerinfo getCE`\n'
299 <        txt += 'echo "CloseCEs = $CloseCEs"\n'
300 <        txt += 'CE=`echo $CloseCEs | sed -e "s/:.*//"`\n'
301 <        txt += 'echo "CE = $CE"\n'
297 >        txt = ''
298 >        txt += '# strip arguments\n'
299 >        txt += 'echo "strip arguments"\n'
300 >        txt += 'args=("$@")\n'
301 >        txt += 'nargs=$#\n'
302 >        txt += 'shift $nargs\n'
303 >        txt += "# job number (first parameter for job wrapper)\n"
304 >        #txt += "NJob=$1\n"
305 >        txt += "NJob=${args[0]}\n"
306 >
307 >        txt += '# job identification to DashBoard \n'
308 >        txt += 'MonitorJobID=`echo ${NJob}_$EDG_WL_JOBID`\n'
309 >        txt += 'SyncGridJobId=`echo $EDG_WL_JOBID`\n'
310 >        txt += 'MonitorID=`echo ' + self._taskId + '`\n'
311 >        txt += 'echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
312 >        txt += 'echo "SyncGridJobId=`echo $SyncGridJobId`" | tee -a $RUNTIME_AREA/$repo \n'
313 >        txt += 'echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
314 >
315 >        txt += 'echo "middleware discovery " \n'
316 >        txt += 'if [ $GRID3_APP_DIR ]; then\n'
317 >        txt += '    middleware=OSG \n'
318 >        txt += '    echo "SyncCE=`echo $EDG_WL_LOG_DESTINATION`" | tee -a $RUNTIME_AREA/$repo \n'
319 >        txt += '    echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
320 >        txt += '    echo "middleware =$middleware" \n'
321 >        txt += 'elif [ $OSG_APP ]; then \n'
322 >        txt += '    middleware=OSG \n'
323 >        txt += '    echo "SyncCE=`echo $EDG_WL_LOG_DESTINATION`" | tee -a $RUNTIME_AREA/$repo \n'
324 >        txt += '    echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
325 >        txt += '    echo "middleware =$middleware" \n'
326 >        txt += 'elif [ $VO_CMS_SW_DIR ]; then \n'
327 >        txt += '    middleware=LCG \n'
328 >        txt += '    echo "SyncCE=`edg-brokerinfo getCE`" | tee -a $RUNTIME_AREA/$repo \n'
329 >        txt += '    echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
330 >        txt += '    echo "middleware =$middleware" \n'
331 >        txt += 'else \n'
332 >        txt += '    echo "SET_CMS_ENV 10030 ==> middleware not identified" \n'
333 >        txt += '    echo "JOB_EXIT_STATUS = 10030" \n'
334 >        txt += '    echo "JobExitCode=10030" | tee -a $RUNTIME_AREA/$repo \n'
335 >        txt += '    dumpStatus $RUNTIME_AREA/$repo \n'
336 >        txt += '    rm -f $RUNTIME_AREA/$repo \n'
337 >        txt += '    echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
338 >        txt += '    echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
339 >        txt += '    exit 1 \n'
340 >        txt += 'fi \n'
341 >
342 >        txt += '# report first time to DashBoard \n'
343 >        txt += 'dumpStatus $RUNTIME_AREA/$repo \n'
344 >        txt += 'rm -f $RUNTIME_AREA/$repo \n'
345 >        txt += 'echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
346 >        txt += 'echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
347 >        
348 >        txt += '\n\n'
349 >
350 > #        if int(self.copy_data) == 1:
351 > #           if self.SE:
352 > #              txt += 'export SE='+self.SE+'\n'
353 > #              txt += 'echo "SE = $SE"\n'
354 > #           if self.SE_PATH:
355 > #              if ( self.SE_PATH[-1] != '/' ) : self.SE_PATH = self.SE_PATH + '/'
356 > #              txt += 'export SE_PATH='+self.SE_PATH+'\n'
357 > #              txt += 'echo "SE_PATH = $SE_PATH"\n'
358 >
359 >        txt += 'export VO='+self.VO+'\n'
360 >        ### add some line for LFC catalog setting
361 >        txt += 'if [ $middleware == LCG ]; then \n'
362 >        txt += '    if [[ $LCG_CATALOG_TYPE != \''+self.lcg_catalog_type+'\' ]]; then\n'
363 >        txt += '        export LCG_CATALOG_TYPE='+self.lcg_catalog_type+'\n'
364 >        txt += '    fi\n'
365 >        txt += '    if [[ $LFC_HOST != \''+self.lfc_host+'\' ]]; then\n'
366 >        txt += '        export LFC_HOST='+self.lfc_host+'\n'
367 >        txt += '    fi\n'
368 >        txt += '    if [[ $LFC_HOME != \''+self.lfc_home+'\' ]]; then\n'
369 >        txt += '        export LFC_HOME='+self.lfc_home+'\n'
370 >        txt += '    fi\n'
371 >        txt += 'elif [ $middleware == OSG ]; then\n'
372 >        txt += '    echo "LFC catalog setting to be implemented for OSG"\n'
373 >        txt += 'fi\n'
374 >        #####
375 >        if int(self.register_data) == 1:
376 >           txt += 'if [ $middleware == LCG ]; then \n'
377 >           txt += '    export LFN='+self.LFN+'\n'
378 >           txt += '    lfc-ls $LFN\n'
379 >           txt += '    result=$?\n'
380 >           txt += '    echo $result\n'
381 >           ### creation of LFN dir in LFC catalog, under /grid/cms dir  
382 >           txt += '    if [ $result != 0 ]; then\n'
383 >           txt += '       lfc-mkdir $LFN\n'
384 >           txt += '       result=$?\n'
385 >           txt += '       echo $result\n'
386 >           txt += '    fi\n'
387 >           txt += 'elif [ $middleware == OSG ]; then\n'
388 >           txt += '    echo " Files registration to be implemented for OSG"\n'
389 >           txt += 'fi\n'
390 >           txt += '\n'
391 >
392 >           if self.VO:
393 >              txt += 'export VO='+self.VO+'\n'
394 >           if self.LFN:
395 >              txt += 'if [ $middleware == LCG ]; then \n'
396 >              txt += '    export LFN='+self.LFN+'\n'
397 >              txt += 'fi\n'
398 >              txt += '\n'
399 >
400 >        txt += 'if [ $middleware == LCG ]; then\n'
401 >        txt += '    CloseCEs=`edg-brokerinfo getCE`\n'
402 >        txt += '    echo "CloseCEs = $CloseCEs"\n'
403 >        txt += '    CE=`echo $CloseCEs | sed -e "s/:.*//"`\n'
404 >        txt += '    echo "CE = $CE"\n'
405 >        txt += 'elif [ $middleware == OSG ]; then \n'
406 >        txt += '    if [ $OSG_JOB_CONTACT ]; then \n'
407 >        txt += '        CE=`echo $OSG_JOB_CONTACT | /usr/bin/awk -F\/ \'{print $1}\'` \n'
408 >        txt += '    else \n'
409 >        txt += '        echo "SET_CMS_ENV 10099 ==> OSG mode: ERROR in setting CE name from OSG_JOB_CONTACT" \n'
410 >        txt += '        echo "JOB_EXIT_STATUS = 10099" \n'
411 >        txt += '        echo "JobExitCode=10099" | tee -a $RUNTIME_AREA/$repo \n'
412 >        txt += '        dumpStatus $RUNTIME_AREA/$repo \n'
413 >        txt += '        rm -f $RUNTIME_AREA/$repo \n'
414 >        txt += '        echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
415 >        txt += '        echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
416 >        txt += '        exit 1 \n'
417 >        txt += '    fi \n'
418 >        txt += 'fi \n'
419 >
420          return txt
421  
422 <    def submit(self, nj):
422 >    def wsCopyInput(self):
423          """
424 <        Submit one EDG job.
424 >        Copy input data from SE to WN    
425          """
426 +        txt = ''
427 +        if not self.copy_input_data: return txt
428  
429 <        jid = None
430 <        jdl = common.job_list[nj].jdlFilename()
431 <        id_tmp = tempfile.mktemp()
432 <        edg_ui_cfg_opt = ' '
433 <        if self.edg_config:
434 <          edg_ui_cfg_opt = ' -c ' + self.edg_config + ' '
435 <        if self.edg_config_vo:
436 <          edg_ui_cfg_opt += ' --config-vo ' + self.edg_config_vo + ' '
437 <        cmd = 'edg-job-submit -o ' + id_tmp + edg_ui_cfg_opt + jdl
438 <        cmd_out = runCommand(cmd)
439 <        if cmd_out != None:
440 <            idfile = open(id_tmp)
441 <            jid_line = idfile.readline()
442 <            while jid_line[0] == '#':
443 <                jid_line = idfile.readline()
444 <                pass
445 <            jid = string.strip(jid_line)
446 <            os.unlink(id_tmp)
447 <            pass
448 <        return jid
429 >        ## OLI_Daniele deactivate for OSG (wait for LCG UI installed on OSG)
430 >        txt += 'if [ $middleware == OSG ]; then\n'
431 >        txt += '   #\n'
432 >        txt += '   #   Copy Input Data from SE to this WN deactivated in OSG mode\n'
433 >        txt += '   #\n'
434 >        txt += '   echo "Copy Input Data from SE to this WN deactivated in OSG mode"\n'
435 >        txt += 'elif [ $middleware == LCG ]; then \n'
436 >        txt += '   #\n'
437 >        txt += '   #   Copy Input Data from SE to this WN\n'
438 >        txt += '   #\n'
439 >        ### changed by georgia (put a loop copying more than one input files per jobs)          
440 >        txt += '   for input_file in $cur_file_list \n'
441 >        txt += '   do \n'
442 >        txt += '      lcg-cp --vo $VO --verbose -t 1200 lfn:$input_lfn/$input_file file:`pwd`/$input_file 2>&1\n'
443 >        txt += '      copy_input_exit_status=$?\n'
444 >        txt += '      echo "COPY_INPUT_EXIT_STATUS = $copy_input_exit_status"\n'
445 >        txt += '      if [ $copy_input_exit_status -ne 0 ]; then \n'
446 >        txt += '         echo "Problems with copying to WN" \n'
447 >        txt += '      else \n'
448 >        txt += '         echo "input copied into WN" \n'
449 >        txt += '      fi \n'
450 >        txt += '   done \n'
451 >        ### copy a set of PU ntuples (same for each jobs -- but accessed randomly)
452 >        txt += '   for file in $cur_pu_list \n'
453 >        txt += '   do \n'
454 >        txt += '      lcg-cp --vo $VO --verbose -t 1200 lfn:$pu_lfn/$file file:`pwd`/$file 2>&1\n'
455 >        txt += '      copy_input_pu_exit_status=$?\n'
456 >        txt += '      echo "COPY_INPUT_PU_EXIT_STATUS = $copy_input_pu_exit_status"\n'
457 >        txt += '      if [ $copy_input_pu_exit_status -ne 0 ]; then \n'
458 >        txt += '         echo "Problems with copying pu to WN" \n'
459 >        txt += '      else \n'
460 >        txt += '         echo "input pu files copied into WN" \n'
461 >        txt += '      fi \n'
462 >        txt += '   done \n'
463 >        txt += '   \n'
464 >        txt += '   ### Check SCRATCH space available on WN : \n'
465 >        txt += '   df -h \n'
466 >        txt += 'fi \n'
467 >          
468 >        return txt
469 >
470 >    def wsCopyOutput(self):
471 >        """
472 >        Write a CopyResults part of a job script, e.g.
473 >        to copy produced output into a storage element.
474 >        """
475 >        txt = ''
476 >
477 >        ##### FEDE MOVED FROM SET_ENVIRONMENT ##############
478 >        
479 >        SE_PATH=''
480 >        if int(self.copy_data) == 1:
481 >           if self.SE:
482 >              txt += 'export SE='+self.SE+'\n'
483 >              txt += 'echo "SE = $SE"\n'
484 >           if self.SE_PATH:
485 >              if ( self.SE_PATH[-1] != '/' ) : self.SE_PATH = self.SE_PATH + '/'
486 >              SE_PATH=self.SE_PATH
487 >              ####### FEDE FOR DBS2
488 >              if int(self.publish_data) == 1:
489 >                  txt += '### publish_data = 1 so the SE path where to copy the output is: \n'
490 >                  txt += 'subject=`voms-proxy-info -subject | awk -F\'CN\' \'{print $2$3$4}\' | tr -d \'=/ \'` \n'
491 >                  txt += 'echo "subject = $subject" \n'
492 >                  
493 >                  path_add = '${subject}/'+ self.publish_data_name +'_${PSETHASH}/'
494 >                  SE_PATH = SE_PATH + path_add
495 >
496 >              txt += 'export SE_PATH='+SE_PATH+'\n'
497 >              txt += 'echo "SE_PATH = $SE_PATH"\n'
498 >
499 >        ##########################################################  
500 >
501 >        #if int(self.copy_data) == 1:
502 >           txt += '#\n'
503 >           txt += '#   Copy output to SE = $SE\n'
504 >           txt += '#\n'
505 >           txt += '    if [ $middleware == OSG ]; then\n'
506 >           txt += '        echo "X509_USER_PROXY = $X509_USER_PROXY"\n'
507 >           txt += '        echo "source $OSG_APP/glite/setup_glite_ui.sh"\n'
508 >           txt += '        source $OSG_APP/glite/setup_glite_ui.sh\n'
509 >           txt += '        export X509_CERT_DIR=$OSG_APP/glite/etc/grid-security/certificates\n'
510 >           txt += '        echo "export X509_CERT_DIR=$X509_CERT_DIR"\n'
511 >           txt += '    fi \n'
512 >
513 >           txt += '    for out_file in $file_list ; do\n'
514 >           txt += '        echo "Trying to copy output file to $SE using srmcp"\n'
515 >           txt += '        echo "mkdir -p $HOME/.srmconfig"\n'
516 >           txt += '        mkdir -p $HOME/.srmconfig\n'
517 >           txt += '        if [ $middleware == LCG ]; then\n'
518 >           txt += '           echo "srmcp -retry_num 3 -retry_timeout 480000 file:////`pwd`/$out_file srm://${SE}:8443${SE_PATH}$out_file"\n'
519 >           txt += '           exitstring=`srmcp -retry_num 3 -retry_timeout 480000 file:////\`pwd\`/$out_file srm://${SE}:8443${SE_PATH}$out_file 2>&1`\n'
520 >           txt += '        elif [ $middleware == OSG ]; then\n'
521 >           txt += '           echo "srmcp -retry_num 3 -retry_timeout 240000 -x509_user_trusted_certificates $X509_CERT_DIR file:////`pwd`/$out_file srm://${SE}:8443${SE_PATH}$out_file"\n'
522 >           txt += '           exitstring=`srmcp -retry_num 3 -retry_timeout 240000 -x509_user_trusted_certificates $X509_CERT_DIR file:////\`pwd\`/$out_file srm://${SE}:8443${SE_PATH}$out_file 2>&1`\n'
523 >           txt += '        fi \n'
524 >           txt += '        copy_exit_status=$?\n'
525 >           txt += '        echo "COPY_EXIT_STATUS for srmcp = $copy_exit_status"\n'
526 >           txt += '        echo "STAGE_OUT = $copy_exit_status"\n'
527 >
528 >           txt += '        if [ $copy_exit_status -ne 0 ]; then\n'
529 >           txt += '            echo "Possible problem with SE = $SE"\n'
530 >           txt += '            echo "StageOutExitStatus = 198" | tee -a $RUNTIME_AREA/$repo\n'
531 >           txt += '            echo "StageOutExitStatusReason = $exitstring" | tee -a $RUNTIME_AREA/$repo\n'
532 >           txt += '            echo "srmcp failed, attempting lcg-cp."\n'
533 >           if common.logger.debugLevel() >= 5:
534 >               ########### FEDE CHANGES TO WRITE IN SRM LNL.INFN.IT #################
535 >               #txt += '            echo "lcg-cp --vo $VO -t 2400 --verbose file://`pwd`/$out_file gsiftp://${SE}${SE_PATH}$out_file"\n'
536 >               #txt += '            exitstring=`lcg-cp --vo $VO -t 2400 --verbose file://\`pwd\`/$out_file gsiftp://${SE}${SE_PATH}$out_file 2>&1`\n'
537 >               txt += '            echo "lcg-cp --vo $VO -t 2400 --verbose file://`pwd`/$out_file srm://${SE}:8443${SE_PATH}$out_file"\n'
538 >               txt += '            exitstring=`lcg-cp --vo $VO -t 2400 --verbose file://\`pwd\`/$out_file srm://${SE}:8443${SE_PATH}$out_file 2>&1`\n'
539 >           else:              
540 >               #txt += '            echo "lcg-cp --vo $VO -t 2400 file://`pwd`/$out_file gsiftp://${SE}${SE_PATH}$out_file"\n'
541 >               #txt += '            exitstring=`lcg-cp --vo $VO -t 2400 file://\`pwd\`/$out_file gsiftp://${SE}${SE_PATH}$out_file 2>&1`\n'
542 >               txt += '            echo "lcg-cp --vo $VO -t 2400 file://`pwd`/$out_file srm://${SE}:8443${SE_PATH}$out_file"\n'
543 >               txt += '            exitstring=`lcg-cp --vo $VO -t 2400 file://\`pwd\`/$out_file srm://${SE}:8443${SE_PATH}$out_file 2>&1`\n'
544 >           txt += '            copy_exit_status=$?\n'
545 >           txt += '            echo "COPY_EXIT_STATUS for lcg-cp = $copy_exit_status"\n'
546 >           txt += '            echo "STAGE_OUT = $copy_exit_status"\n'
547 >
548 >           txt += '            if [ $copy_exit_status -ne 0 ]; then\n'
549 >           txt += '               echo "Problems with SE = $SE"\n'
550 >           txt += '               echo "StageOutExitStatus = 198" | tee -a $RUNTIME_AREA/$repo\n'
551 >           txt += '               echo "StageOutExitStatusReason = $exitstring" | tee -a $RUNTIME_AREA/$repo\n'
552 >           txt += '               echo "srmcp and lcg-cp and failed!"\n'
553 >           txt += '               SE=""\n'
554 >           txt += '               echo "SE = $SE"\n'
555 >           txt += '               SE_PATH=""\n'
556 >           txt += '               echo "SE_PATH = $SE_PATH"\n'
557 >           txt += '            else\n'
558 >           txt += '               echo "StageOutSE = $SE" | tee -a $RUNTIME_AREA/$repo\n'
559 >           txt += '               echo "StageOutCatalog = " | tee -a $RUNTIME_AREA/$repo\n'
560 >           txt += '               echo "output copied into $SE/$SE_PATH directory"\n'
561 >           txt += '               echo "StageOutExitStatus = 0" | tee -a $RUNTIME_AREA/$repo\n'
562 >           txt += '               echo "lcg-cp succeeded"\n'
563 >           txt += '            fi\n'
564 >           txt += '        else\n'
565 >           txt += '            echo "StageOutSE = $SE" | tee -a $RUNTIME_AREA/$repo\n'
566 >           txt += '            echo "StageOutCatalog = " | tee -a $RUNTIME_AREA/$repo\n'
567 >           txt += '            echo "output copied into $SE/$SE_PATH directory"\n'
568 >           txt += '            echo "StageOutExitStatus = 0" | tee -a $RUNTIME_AREA/$repo\n'
569 >           txt += '            echo "srmcp succeeded"\n'
570 >           txt += '         fi\n'
571 >           txt += '     done\n'
572 >           txt += '     exit_status=$copy_exit_status\n'
573 >        return txt
574 >
575 >    def wsRegisterOutput(self):
576 >        """
577 >        Returns part of a job script which does scheduler-specific work.
578 >        """
579 >
580 >        txt = ''
581 >        if int(self.register_data) == 1:
582 >        ## OLI_Daniele deactivate for OSG (wait for LCG UI installed on OSG)
583 >           txt += 'if [ $middleware == OSG ]; then\n'
584 >           txt += '   #\n'
585 >           txt += '   #   Register output to LFC deactivated in OSG mode\n'
586 >           txt += '   #\n'
587 >           txt += '   echo "Register output to LFC deactivated in OSG mode"\n'
588 >           txt += 'elif [ $middleware == LCG ]; then \n'
589 >           txt += '#\n'
590 >           txt += '#  Register output to LFC\n'
591 >           txt += '#\n'
592 >           txt += '   if [ $copy_exit_status -eq 0 ]; then\n'
593 >           txt += '      for out_file in $file_list ; do\n'
594 >           txt += '         echo "Trying to register the output file into LFC"\n'
595 >           txt += '         echo "lcg-rf -l $LFN/$out_file --vo $VO -t 1200 sfn://$SE$SE_PATH/$out_file 2>&1"\n'
596 >           txt += '         lcg-rf -l $LFN/$out_file --vo $VO -t 1200 sfn://$SE$SE_PATH/$out_file 2>&1 \n'
597 >           txt += '         register_exit_status=$?\n'
598 >           txt += '         echo "REGISTER_EXIT_STATUS = $register_exit_status"\n'
599 >           txt += '         echo "STAGE_OUT = $register_exit_status"\n'
600 >           txt += '         if [ $register_exit_status -ne 0 ]; then \n'
601 >           txt += '            echo "Problems with the registration to LFC" \n'
602 >           txt += '            echo "Try with srm protocol" \n'
603 >           txt += '            echo "lcg-rf -l $LFN/$out_file --vo $VO -t 1200 srm://$SE$SE_PATH/$out_file 2>&1"\n'
604 >           txt += '            lcg-rf -l $LFN/$out_file --vo $VO -t 1200 srm://$SE$SE_PATH/$out_file 2>&1 \n'
605 >           txt += '            register_exit_status=$?\n'
606 >           txt += '            echo "REGISTER_EXIT_STATUS = $register_exit_status"\n'
607 >           txt += '            echo "STAGE_OUT = $register_exit_status"\n'
608 >           txt += '            if [ $register_exit_status -ne 0 ]; then \n'
609 >           txt += '               echo "Problems with the registration into LFC" \n'
610 >           txt += '            fi \n'
611 >           txt += '         else \n'
612 >           txt += '            echo "output registered to LFC"\n'
613 >           txt += '         fi \n'
614 >           txt += '         echo "StageOutExitStatus = $register_exit_status" | tee -a $RUNTIME_AREA/$repo\n'
615 >           txt += '      done\n'
616 >           txt += '   else \n'
617 >           txt += '      echo "Trying to copy output file to CloseSE"\n'
618 >           txt += '      CLOSE_SE=`edg-brokerinfo getCloseSEs | head -1`\n'
619 >           txt += '      for out_file in $file_list ; do\n'
620 >           txt += '         echo "lcg-cr -v -l lfn:${LFN}/$out_file -d $CLOSE_SE -P $LFN/$out_file --vo $VO file://$RUNTIME_AREA/$out_file 2>&1" \n'
621 >           txt += '         lcg-cr -v -l lfn:${LFN}/$out_file -d $CLOSE_SE -P $LFN/$out_file --vo $VO file://$RUNTIME_AREA/$out_file 2>&1 \n'
622 >           txt += '         register_exit_status=$?\n'
623 >           txt += '         echo "REGISTER_EXIT_STATUS = $register_exit_status"\n'
624 >           txt += '         echo "STAGE_OUT = $register_exit_status"\n'
625 >           txt += '         if [ $register_exit_status -ne 0 ]; then \n'
626 >           txt += '            echo "Problems with CloseSE or Catalog" \n'
627 >           txt += '         else \n'
628 >           txt += '            echo "The program was successfully executed"\n'
629 >           txt += '            echo "SE = $CLOSE_SE"\n'
630 >           txt += '            echo "LFN for the file is LFN=${LFN}/$out_file"\n'
631 >           txt += '         fi \n'
632 >           txt += '         echo "StageOutExitStatus = $register_exit_status" | tee -a $RUNTIME_AREA/$repo\n'
633 >           txt += '      done\n'
634 >           txt += '   fi \n'
635 >           txt += '   exit_status=$register_exit_status\n'
636 >           txt += 'fi \n'
637 >        return txt
638  
639 <    def queryStatus(self, id):
640 <        """ Query a status of the job with id """
641 <        cmd0 = 'edg-job-status '
642 <        cmd = cmd0 + id
639 >    def loggingInfo(self, id):
640 >        """
641 >        retrieve the logging info from logging and bookkeeping and return it
642 >        """
643 >        self.checkProxy()
644 >        cmd = 'edg-job-get-logging-info -v 2 ' + id
645          cmd_out = runCommand(cmd)
646 <        if cmd_out == None:
104 <            common.logger.message('Error. No output from `'+cmd+'`')
105 <            return None
106 <        # parse output
107 <        status_prefix = 'Current Status:'
108 <        status_index = string.find(cmd_out, status_prefix)
109 <        if status_index == -1:
110 <            common.logger.message('Error. Bad output of `'+cmd0+'`:\n'+cmd_out)
111 <            return None
112 <        status = cmd_out[(status_index+len(status_prefix)):]
113 <        nl = string.find(status,'\n')
114 <        status = string.strip(status[0:nl])
115 <        return status
646 >        return cmd_out
647  
648      def queryDetailedStatus(self, id):
649          """ Query a detailed status of the job with id """
# Line 120 | Line 651 | class SchedulerEdg(Scheduler):
651          cmd_out = runCommand(cmd)
652          return cmd_out
653  
654 <    def getOutput(self, id):
654 >    def findSites_(self, n):
655 >        itr4 =[]
656 >        sites = common.jobDB.destination(n)
657 >        if len(sites)>0 and sites[0]=="Any":
658 >            return itr4
659 >        itr = ''
660 >        if sites != [""]:#CarlosDaniele
661 >            for site in sites:
662 >                #itr = itr + 'target.GlueSEUniqueID==&quot;'+site+'&quot; || '
663 >                itr = itr + 'target.GlueSEUniqueID=="'+site+'" || '
664 >            itr = itr[0:-4]
665 >            itr4.append( itr )
666 >        return itr4
667 >
668 >    def createXMLSchScript(self, nj, argsList):
669 >      
670          """
671 <        Get output for a finished job with id.
126 <        Returns the name of directory with results.
671 >        Create a XML-file for BOSS4.
672          """
673 <        cmd = 'edg-job-get-output --dir ' + common.work_space.resDir() +' '+id
129 <        cmd_out = runCommand(cmd)
130 <
131 <        # Determine the output directory name
132 <        dir = common.work_space.resDir()
133 <        dir += os.getlogin()
134 <        dir += '_' + os.path.basename(id)
135 <        return dir
136 <
137 <    def cancel(self, id):
138 <        """ Cancel the EDG job with id """
139 <        cmd = 'edg-job-cancel --noint ' + id
140 <        cmd_out = runCommand(cmd)
141 <        return cmd_out
142 <
143 <    def checkProxy_(self):
673 >  #      job = common.job_list[nj]
674          """
675 <        Function to check the Globus proxy.
675 >        INDY
676 >        [begin] FIX-ME:
677 >        I would pass jobType instead of job
678          """
679 <        cmd = 'grid-proxy-info -timeleft'
680 <        cmd_out = runCommand(cmd)
681 <        ok = 1
682 <        timeleft = -999
683 <        try: timeleft = int(cmd_out)
684 <        except ValueError: ok=0
153 <        except TypeError: ok=0
154 <        if timeleft < 1:  ok=0
155 <
156 <        if ok==0:
157 <            msg = 'No valid proxy found !\n'
158 <            msg += "Please do 'grid-proxy-init'."
159 <            raise CrabException(msg)
160 <        return
161 <    
162 <    def createJDL(self, nj):
679 >        index = nj - 1
680 >        job = common.job_list[index]
681 >        jbt = job.type()
682 >        
683 >        inp_sandbox = jbt.inputSandbox(index)
684 >        #out_sandbox = jbt.outputSandbox(index)
685          """
686 <        Create a JDL-file for EDG.
686 >        [end] FIX-ME
687          """
688  
167        job = common.job_list[nj]
168        jbt = job.type()
169 #        jbt.loadJobInfo()
170        inp_sandbox = jbt.inputSandbox(nj)
171        out_sandbox = jbt.outputSandbox(nj)
172        inp_storage_subdir = ''#jbt.inputStorageSubdir()
689          
690 <        title = '# This JDL was generated by '+\
175 <                common.prog_name+' (version '+common.prog_version_str+')\n'
690 >        title = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'
691          jt_string = ''
692          
693 <        SPL = inp_storage_subdir
694 <        if ( SPL and SPL[-1] != '/' ) : SPL = SPL + '/'
693 >        xml_fname = str(self.jobtypeName)+'.xml'
694 >        xml = open(common.work_space.shareDir()+'/'+xml_fname, 'a')
695  
696 <        jdl_fname = job.jdlFilename()
697 <        jdl = open(jdl_fname, 'w')
698 <        jdl.write(title)
696 >        #TaskName  
697 >        dir = string.split(common.work_space.topDir(), '/')
698 >        taskName = dir[len(dir)-2]
699 >  
700 >        to_write = ''
701 >
702 >        req=' '
703 >        req = req + jbt.getRequirements()
704 >
705 >        if self.EDG_requirements:
706 >            if (req == ' '):
707 >                req = req + self.EDG_requirements
708 >            else:
709 >                req = req +  ' && ' + self.EDG_requirements
710 >        if self.EDG_ce_white_list:
711 >            ce_white_list = string.split(self.EDG_ce_white_list,',')
712 >            for i in range(len(ce_white_list)):
713 >                if i == 0:
714 >                    if (req == ' '):
715 >                        req = req + '((RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
716 >                    else:
717 >                        req = req +  ' && ((RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
718 >                    pass
719 >                else:
720 >                    req = req +  ' || (RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
721 >            req = req + ')'
722 >        
723 >        if self.EDG_ce_black_list:
724 >            ce_black_list = string.split(self.EDG_ce_black_list,',')
725 >            for ce in ce_black_list:
726 >                if (req == ' '):
727 >                    req = req + '(!RegExp("' + ce + '", other.GlueCEUniqueId))'
728 >                else:
729 >                    req = req +  ' && (!RegExp("' + ce + '", other.GlueCEUniqueId))'
730 >                pass
731 >        if self.EDG_clock_time:
732 >            if (req == ' '):
733 >                req = req + 'other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
734 >            else:
735 >                req = req + ' && other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
736 >
737 >        if self.EDG_cpu_time:
738 >            if (req == ' '):
739 >                req = req + ' other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
740 >            else:
741 >                req = req + ' && other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
742 >                                                                                          
743 >        if ( self.EDG_retry_count ):              
744 >            to_write = to_write + 'RetryCount = "'+self.EDG_retry_count+'"\n'
745 >            pass
746  
747 <        script = job.scriptFilename()
748 <        jdl.write('Executable = "' + os.path.basename(script) +'";\n')
749 <        jdl.write(jt_string)
747 >        if ( self.EDG_shallow_retry_count ):              
748 >            to_write = to_write + 'ShallowRetryCount = "'+self.EDG_shallow_retry_count+'"\n'
749 >            pass
750 >
751 >        to_write = to_write + 'MyProxyServer = "&quot;' + self.proxyServer + '&quot;"\n'
752 >        to_write = to_write + 'VirtualOrganisation = "&quot;' + self.VO + '&quot;"\n'
753  
754 <        inp_box = 'InputSandbox = { '
755 <        inp_box = inp_box + '"' + script + '",'
754 >        #TaskName  
755 >        dir = string.split(common.work_space.topDir(), '/')
756 >        taskName = dir[len(dir)-2]
757 >
758 >        xml.write(str(title))
759 >        #xml.write('<task name="' +str(taskName)+'" sub_path="' +common.work_space.pathForTgz() + 'share/.boss_cache">\n')
760 >
761 >        #xml.write('<task name="' +str(taskName)+ '" sub_path="' +common.work_space.pathForTgz() + 'share/.boss_cache"' + '" task_info="' + os.path.expandvars('X509_USER_PROXY') + '">\n')
762 >        xml.write('<task name="' +str(taskName)+ '" sub_path="' +common.work_space.pathForTgz() + 'share/.boss_cache"' + ' task_info="' + os.environ["X509_USER_PROXY"] + '">\n')
763 >        xml.write(jt_string)
764 >        
765 >        if (to_write != ''):
766 >            xml.write('<extraTags\n')
767 >            xml.write(to_write)
768 >            xml.write('/>\n')
769 >            pass
770 >
771 >        xml.write('<iterator>\n')
772 >        xml.write('\t<iteratorRule name="ITR1">\n')
773 >        xml.write('\t\t<ruleElement> 1:'+ str(nj) + ' </ruleElement>\n')
774 >        xml.write('\t</iteratorRule>\n')
775 >        xml.write('\t<iteratorRule name="ITR2">\n')
776 >        for arg in argsList:
777 >            xml.write('\t\t<ruleElement> <![CDATA[\n'+ arg + '\n\t\t]]> </ruleElement>\n')
778 >            pass
779 >        xml.write('\t</iteratorRule>\n')
780 >        #print jobList
781 >        xml.write('\t<iteratorRule name="ITR3">\n')
782 >        xml.write('\t\t<ruleElement> 1:'+ str(nj) + ':1:6 </ruleElement>\n')
783 >        xml.write('\t</iteratorRule>\n')
784 >
785 >        '''
786 >        indy: here itr4
787 >        '''
788 >        
789 >        xml.write('<chain name="' +str(taskName)+'__ITR1_" scheduler="'+str(self.schedulerName)+'">\n')
790 >       # xml.write('<chain scheduler="'+str(self.schedulerName)+'">\n')
791 >        xml.write(jt_string)
792 >
793 >        #executable
794 >
795 >        """
796 >        INDY
797 >        script depends on jobType: it should be probably get in a different way
798 >        """        
799 >        script = job.scriptFilename()
800 >        xml.write('<program>\n')
801 >        xml.write('<exec> ' + os.path.basename(script) +' </exec>\n')
802 >        xml.write(jt_string)
803 >
804 >        xml.write('<args> <![CDATA[\n _ITR2_ \n]]> </args>\n')
805 >        xml.write('<program_types> crabjob </program_types>\n')
806 >        inp_box = common.work_space.pathForTgz() + 'job/' + jbt.scriptName + ','
807  
808          if inp_sandbox != None:
809              for fl in inp_sandbox:
810 <                inp_box = inp_box + ' "' + fl + '",'
810 >                inp_box = inp_box + '' + fl + ','
811                  pass
812              pass
813  
814 <        #if common.use_jam:
815 <        #   inp_box = inp_box+' "'+common.bin_dir+'/'+common.run_jam+'",'
816 <
817 <        # ??? Should be local, i.e. self.additional_inbox_files
818 <        #     and filled in ctor from cfg_params
819 <        #for addFile in common.additional_inbox_files:
204 <        #    addFile = os.path.abspath(addFile)
205 <        #    inp_box = inp_box+' "'+addFile+'",'
206 <        #    pass
814 > #        if (not jbt.additional_inbox_files == []):
815 > #            inp_box = inp_box + ','
816 > #            for addFile in jbt.additional_inbox_files:
817 > #                #addFile = os.path.abspath(addFile)
818 > #                inp_box = inp_box+''+addFile+','
819 > #                pass
820  
821          if inp_box[-1] == ',' : inp_box = inp_box[:-1]
822 <        inp_box = inp_box + ' };\n'
823 <        jdl.write(inp_box)
822 >        inp_box = '<infiles> <![CDATA[\n' + inp_box + '\n]]> </infiles>\n'
823 >        xml.write(inp_box)
824 >        
825 >        base = jbt.name()
826 >        stdout = base + '__ITR3_.stdout'
827 >        stderr = base + '__ITR3_.stderr'
828 >        
829 >        xml.write('<stderr> ' + stderr + '</stderr>\n')
830 >        xml.write('<stdout> ' + stdout + '</stdout>\n')
831 >        
832  
833 <        jdl.write('StdOutput     = "' + job.stdout() + '";\n')
834 <        jdl.write('StdError      = "' + job.stderr() + '";\n')
833 >        out_box = stdout + ',' + \
834 >                  stderr + ',.BrokerInfo,'
835  
836 +        """
837 +        if int(self.return_data) == 1:
838 +            if out_sandbox != None:
839 +                for fl in out_sandbox:
840 +                    out_box = out_box + '' + fl + ','
841 +                    pass
842 +                pass
843 +            pass
844 +        """
845  
846 < ### SL check if stdout==stderr: in case put just one in the out_box
847 <        if job.stdout() == job.stderr():
848 <          out_box = 'OutputSandbox = { "' + \
849 <                    job.stdout() + '", ".BrokerInfo",'
850 <        else:
851 <          out_box = 'OutputSandbox = { "' + \
852 <                    job.stdout() + '", "' + \
853 <                    job.stderr() + '", ".BrokerInfo",'
854 <          pass
855 <
856 <        #if common.flag_return_data :
857 <        #    for fl in job.outputDataFiles():
858 <        #        out_box = out_box + ' "' + fl + '",'
859 <        #        pass
230 <        #    pass
231 <
232 <        if out_sandbox != None:
233 <            for fl in out_sandbox:
234 <                out_box = out_box + ' "' + fl + '",'
846 >        """
847 >        INDY
848 >        something similar should be also done for infiles (if it makes sense!)
849 >        """
850 >        # Stuff to be returned _always_ via sandbox
851 >        for fl in jbt.output_file_sandbox:
852 >            out_box = out_box + '' + jbt.numberFile_(fl, '_ITR1_') + ','
853 >            pass
854 >        pass
855 >
856 >        # via sandbox iif required return_data
857 >        if int(self.return_data) == 1:
858 >            for fl in jbt.output_file:
859 >                out_box = out_box + '' + jbt.numberFile_(fl, '_ITR1_') + ','
860                  pass
861              pass
862  
863          if out_box[-1] == ',' : out_box = out_box[:-1]
864 <        out_box = out_box + ' };'
865 <        jdl.write(out_box+'\n')
864 >        out_box = '<outfiles> <![CDATA[\n' + out_box + '\n]]></outfiles>\n'
865 >        xml.write(out_box)
866 >
867 >        xml.write('<BossAttr> crabjob.INTERNAL_ID=_ITR1_ </BossAttr>\n')
868  
869 <        # If CloseCE is used ...
870 <        #if common.flag_usecloseCE and job.inputDataFiles():
244 <        #    indata = 'InputData = { '
245 <        #    for fl in job.inputDataFiles():
246 <        #       indata = indata + ' "lfn:' + SPL + fl + '",'
247 <        #    if indata[-1] == ',' : indata = indata[:-1]
248 <        #    indata = indata + ' };'
249 <        #    jdl.write(indata+'\n')
250 <        #    jdl.write('DataAccessProtocol = { "gsiftp" };\n')
251 <
252 <        if common.analisys_common_info['sites']:
253 <           if common.analisys_common_info['sw_version']:
254 <
255 <             req='Requirements = '
256 <         ### First ORCA version
257 <             req=req + 'Member("VO-cms-' + \
258 <                 common.analisys_common_info['sw_version'] + \
259 <                 '", other.GlueHostApplicationSoftwareRunTimeEnvironment)'
260 <         ## then sites
261 <             if len(common.analisys_common_info['sites'])>0:
262 <               req = req + ' && ('
263 <             for i in range(len(common.analisys_common_info['sites'])):
264 <                req = req + 'other.GlueCEInfoHostName == "' \
265 <                      + common.analisys_common_info['sites'][i] + '"'
266 <                if ( i < (int(len(common.analisys_common_info['sites']) - 1)) ):
267 <                    req = req + ' || '
268 <             req = req + ')'
269 <         ## then user requirement
270 <             if self.EDG_requirements:
271 <               req = req +  ' && ' + self.EDG_requirements
272 <             req = req + ';\n'
273 <        jdl.write(req)
869 >        xml.write('</program>\n')
870 >        xml.write('</chain>\n')
871  
872 <        jdl.write('VirtualOrganisation = "' + self.VO + '";\n')
872 >        xml.write('</iterator>\n')
873 >        xml.write('</task>\n')
874  
875 <        if ( self.EDG_retry_count ):              
876 <            jdl.write('RetryCount = '+self.EDG_retry_count+';\n')
875 >        xml.close()
876 >      
877 >
878 >        return
879 >
880 >    def checkProxy(self):
881 >        """
882 >        Function to check the Globus proxy.
883 >        """
884 >        if (self.proxyValid): return
885 >
886 >        ### Just return if asked to do so
887 >        if (self.dontCheckProxy==1):
888 >            self.proxyValid=1
889 >            return
890 >
891 >        minTimeLeft=10*3600 # in seconds
892 >
893 >        minTimeLeftServer = 100 # in hours
894 >
895 >        mustRenew = 0
896 >        timeLeftLocal = runCommand('voms-proxy-info -timeleft 2>/dev/null')
897 >        timeLeftServer = -999
898 >        if not timeLeftLocal or int(timeLeftLocal) <= 0 or not isInt(timeLeftLocal):
899 >            mustRenew = 1
900 >        else:
901 >            timeLeftServer = runCommand('voms-proxy-info -actimeleft 2>/dev/null | head -1')
902 >            if not timeLeftServer or not isInt(timeLeftServer):
903 >                mustRenew = 1
904 >            elif timeLeftLocal<minTimeLeft or timeLeftServer<minTimeLeft:
905 >                mustRenew = 1
906 >            pass
907 >        pass
908 >
909 >        if mustRenew:
910 >            common.logger.message( "No valid proxy found or remaining time of validity of already existing proxy shorter than 10 hours!\n Creating a user proxy with default length of 192h\n")
911 >            cmd = 'voms-proxy-init -voms '+self.VO
912 >            if self.group:
913 >                cmd += ':/'+self.VO+'/'+self.group
914 >            if self.role:
915 >                cmd += '/role='+self.role
916 >            cmd += ' -valid 192:00'
917 >            try:
918 >                # SL as above: damn it!
919 >                common.logger.debug(10,cmd)
920 >                out = os.system(cmd)
921 >                if (out>0): raise CrabException("Unable to create a valid proxy!\n")
922 >            except:
923 >                msg = "Unable to create a valid proxy!\n"
924 >                raise CrabException(msg)
925 >            pass
926 >
927 >        ## now I do have a voms proxy valid, and I check the myproxy server
928 >        renewProxy = 0
929 >        cmd = 'myproxy-info -d -s '+self.proxyServer
930 >        cmd_out = runCommand(cmd,0,20)
931 >        if not cmd_out:
932 >            common.logger.message('No credential delegated to myproxy server '+self.proxyServer+' will do now')
933 >            renewProxy = 1
934 >        else:
935 >            # if myproxy exist but not long enough, renew
936 >            reTime = re.compile( r'timeleft: (\d+)' )
937 >            #print "<"+str(reTime.search( cmd_out ).group(1))+">"
938 >            if reTime.match( cmd_out ):
939 >                time = reTime.search( cmd_out ).group(1)
940 >                if time < minTimeLeftServer:
941 >                    renewProxy = 1
942 >                    common.logger.message('No credential delegation will expire in '+time+' hours: renew it')
943 >                pass
944 >            pass
945 >        
946 >        # if not, create one.
947 >        if renewProxy:
948 >            cmd = 'myproxy-init -d -n -s '+self.proxyServer
949 >            out = os.system(cmd)
950 >            if (out>0):
951 >                raise CrabException("Unable to delegate the proxy to myproxyserver "+self.proxyServer+" !\n")
952              pass
953  
954 <        jdl.close()
954 >        # cache proxy validity
955 >        self.proxyValid=1
956          return
957 +
958 +    def configOpt_(self):
959 +        edg_ui_cfg_opt = ' '
960 +        if self.edg_config:
961 +            edg_ui_cfg_opt = ' -c ' + self.edg_config + ' '
962 +        if self.edg_config_vo:
963 +            edg_ui_cfg_opt += ' --config-vo ' + self.edg_config_vo + ' '
964 +        return edg_ui_cfg_opt

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines