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

Comparing COMP/CRAB/python/SchedulerGlite.py (file contents):
Revision 1.6 by slacapra, Thu Oct 12 14:51:12 2006 UTC vs.
Revision 1.49 by ewv, Thu Apr 24 15:10:42 2008 UTC

# Line 1 | Line 1
1 < #from Scheduler import Scheduler
2 < from SchedulerEdg import SchedulerEdg
1 > from SchedulerGrid import SchedulerGrid
2   from crab_logger import Logger
3   from crab_exceptions import *
4   from crab_util import *
6 #from EdgConfig import *
5   from GliteConfig import *
6 + import EdgLoggingInfo
7   import common
8  
9   import os, sys, time
10  
11 < class SchedulerGlite(SchedulerEdg):
12 <    def __init__(self):
13 <        SchedulerEdg.__init__(self)
11 > class SchedulerGlite(SchedulerGrid):
12 >    def __init__(self, name="GLITE"):
13 >        SchedulerGrid.__init__(self,name)
14 >
15 >    def configure(self,cfg_params):
16 >        SchedulerGrid.configure(self, cfg_params)
17 >        self.checkProxy()
18 >        self.environment_unique_identifier = 'GLITE_WMS_JOBID'
19  
20      def rb_configure(self, RB):
21 <        self.glite_config = ''
22 <        self.rb_param_file = ''
21 >        if not RB: return None
22 >        glite_config = None
23 >        rb_param_file = None
24  
25          gliteConfig = GliteConfig(RB)
26 <        self.glite_config = gliteConfig.config()
26 >        glite_config = gliteConfig.config()
27  
28 <        if (self.glite_config != ''):
29 <            self.rb_param_file = 'WMSconfig = '+self.glite_config+';\n'
30 <            #print "rb_param_file = ", self.rb_param_file
26 <        return self.rb_param_file
28 >        if (glite_config ):
29 >            rb_param_file = glite_config
30 >        return rb_param_file
31  
32 <    def sched_parameter(self):
32 >    def ce_list(self):
33          """
34 <        Returns file with requirements and scheduler-specific parameters
34 >        Returns string with requirement CE related
35          """
32        index = int(common.jobDB.nJobs()) - 1
33        job = common.job_list[index]
34        jbt = job.type()
35        
36        lastDest=''
37        first = []
38        last  = []
39        for n in range(common.jobDB.nJobs()):
40            currDest=common.jobDB.destination(n)
41            if (currDest!=lastDest):
42                lastDest = currDest
43                first.append(n)
44                if n != 0:last.append(n-1)
45        if len(first)>len(last) :last.append(common.jobDB.nJobs())
46  
36          req = ''
48        req = req + jbt.getRequirements()
49    
50        if self.EDG_requirements:
51            if (req == ' '):
52                req = req + self.EDG_requirements
53            else:
54                req = req +  ' && ' + self.EDG_requirements
37          if self.EDG_ce_white_list:
38 <            ce_white_list = string.split(self.EDG_ce_white_list,',')
39 <            for i in range(len(ce_white_list)):
40 <                if i == 0:
41 <                    if (req == ' '):
42 <                        req = req + '((RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
43 <                    else:
44 <                        req = req +  ' && ((RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
45 <                    pass
46 <                else:
47 <                    req = req +  ' || (RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
48 <            req = req + ')'
49 <        
38 >            ce_white_list = self.EDG_ce_white_list
39 >            tmpCe=[]
40 >            concString = '&&'
41 >            for ce in ce_white_list:
42 >                tmpCe.append('RegExp("' + string.strip(ce) + '", other.GlueCEUniqueId)')
43 >            if len(tmpCe) == 1:
44 >                req +=  " && (" + concString.join(tmpCe) + ") "
45 >            elif len(tmpCe) > 1:
46 >                firstCE = 0
47 >                for reqTemp in tmpCe:
48 >                    if firstCE == 0:
49 >                        req += " && ( (" + reqTemp + ") "
50 >                        firstCE = 1
51 >                    elif firstCE > 0:
52 >                        req += " || (" + reqTemp + ") "
53 >                if firstCE > 0:
54 >                    req += ") "
55 >
56          if self.EDG_ce_black_list:
57 <            ce_black_list = string.split(self.EDG_ce_black_list,',')
57 >            ce_black_list = self.EDG_ce_black_list
58 >            tmpCe=[]
59 >            concString = '&&'
60              for ce in ce_black_list:
61 <                if (req == ' '):
62 <                    req = req + '(!RegExp("' + ce + '", other.GlueCEUniqueId))'
63 <                else:
64 <                    req = req +  ' && (!RegExp("' + ce + '", other.GlueCEUniqueId))'
65 <                pass
61 >                tmpCe.append('(!RegExp("' + string.strip(ce) + '", other.GlueCEUniqueId))')
62 >            if len(tmpCe): req += " && (" + concString.join(tmpCe) + ") "
63 >
64 >        # requirement added to skip gliteCE
65 >        req += '&& (!RegExp("blah", other.GlueCEUniqueId))'
66 >
67 >        return req,self.EDG_ce_white_list,self.EDG_ce_black_list
68 >
69 >    def se_list(self, id, dest):
70 >        """
71 >        Returns string with requirement SE related
72 >        """
73 >        hostList=self.findSites_(id,dest)
74 >        req=''
75 >        reqtmp=[]
76 >        concString = '||'
77 >
78 >        for arg in hostList:
79 >            reqtmp.append(' Member("'+arg+'" , other.GlueCESEBindGroupSEUniqueID) ')
80 >
81 >        if len(reqtmp): req += " && (" + concString.join(reqtmp) + ") "
82 >
83 >        return req
84 >
85 >    def jdlParam(self):
86 >        """
87 >        Returns
88 >        """
89 >        req=''
90 >        if self.EDG_addJdlParam:
91 >            if self.EDG_addJdlParam[-1] == '': self.EDG_addJdlParam= self.EDG_addJdlParam[:-1]
92 >            for p in self.EDG_addJdlParam:
93 >             #   param_file.write(string.strip(p)+';\n')
94 >                req+=string.strip(p)+';\n' ## BL--DS
95 >        return req
96 >
97 >    def specific_req(self):
98 >        """
99 >        Returns string with specific requirements
100 >        """
101 >        req=''
102          if self.EDG_clock_time:
103 <            if (req == ' '):
104 <                req = req + 'other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
79 <            else:
80 <                req = req + ' && other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
103 >            if (not req == ' '): req = req + ' && '
104 >            req = req + 'other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
105  
106          if self.EDG_cpu_time:
107 <            if (req == ' '):
108 <                req = req + ' other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
109 <            else:
110 <                req = req + ' && other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
111 <                
112 <        for i in range(len(first)): # Add loop DS
89 <            self.param='sched_param_'+str(i)+'.clad'
90 <            param_file = open(common.work_space.shareDir()+'/'+self.param, 'w')
91 <
92 <            itr4=self.findSites_(first[i])
93 <            reqSites=''
94 <            reqtmp=[]  
95 <            j = 0
96 <            concString = '||'
97 <            for arg in itr4:
98 <                #############
99 <                # MC Changed matching syntax to avoid gang matching
100 <                #############
101 <                reqtmp.append(' Member("'+arg+'" , other.GlueCESEBindGroupSEUniqueID) ')
102 <            if len(reqtmp): reqSites = reqSites + " && (" + concString.join(reqtmp) + ')'
103 <            reqSites = reqSites + ';\n'
104 <            param_file.write('Requirements = ' + req + reqSites )
105 <  
106 < #            if (self.edg_config and self.edg_config_vo != ''):
107 < #               param_file.write('RBconfig = "'+self.edg_config+'";\n')  
108 < #                param_file.write('RBconfigVO = "'+self.edg_config_vo+'";')
109 <
110 <            if (self.rb_param_file != ''):
111 <                param_file.write(self.rb_param_file)  
112 <
113 <
114 <            param_file.close()  
115 <
116 <    def wsSetupEnvironment(self):
117 <        """
118 <        Returns part of a job script which does scheduler-specific work.
119 <        """
120 <        txt = ''
121 <        txt += '# strip arguments\n'
122 <        txt += 'echo "strip arguments"\n'
123 <        txt += 'args=("$@")\n'
124 <        txt += 'nargs=$#\n'
125 <        txt += 'shift $nargs\n'
126 <        txt += "# job number (first parameter for job wrapper)\n"
127 <        txt += "NJob=${args[0]}\n"
128 <
129 <        txt += '# job identification to DashBoard \n'
130 <        txt += 'MonitorJobID=`echo ${NJob}_$GLITE_WMS_JOBID`\n'
131 <        txt += 'SyncGridJobId=`echo $GLITE_WMS_JOBID`\n'
132 <        txt += 'MonitorID=`echo ' + self._taskId + '`\n'
133 <        txt += 'echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
134 <        txt += 'echo "SyncGridJobId=`echo $SyncGridJobId`" | tee -a $RUNTIME_AREA/$repo \n'
135 <        txt += 'echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
136 <
137 <        txt += 'echo "middleware discovery " \n'
138 <        txt += 'if [ $VO_CMS_SW_DIR ]; then \n'
139 <        txt += '    middleware=LCG \n'
140 <        txt += '    echo "SyncCE=`glite-brokerinfo getCE`" | tee -a $RUNTIME_AREA/$repo \n'
141 <        txt += '    echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
142 <        txt += '    echo "middleware =$middleware" \n'
143 <        txt += 'elif [ $GRID3_APP_DIR ]; then\n'
144 <        txt += '    middleware=OSG \n'
145 <        txt += '    echo "SyncCE=`echo $EDG_WL_LOG_DESTINATION`" | tee -a $RUNTIME_AREA/$repo \n'
146 <        txt += '    echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
147 <        txt += '    echo "middleware =$middleware" \n'
148 <        txt += 'elif [ $OSG_APP ]; then \n'
149 <        txt += '    middleware=OSG \n'
150 <        txt += '    echo "SyncCE=`echo $EDG_WL_LOG_DESTINATION`" | tee -a $RUNTIME_AREA/$repo \n'
151 <        txt += '    echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
152 <        txt += '    echo "middleware =$middleware" \n'
153 <        txt += 'else \n'
154 <        txt += '    echo "SET_CMS_ENV 10030 ==> middleware not identified" \n'
155 <        txt += '    echo "JOB_EXIT_STATUS = 10030" \n'
156 <        txt += '    echo "JobExitCode=10030" | tee -a $RUNTIME_AREA/$repo \n'
157 <        txt += '    dumpStatus $RUNTIME_AREA/$repo \n'
158 <        txt += '    rm -f $RUNTIME_AREA/$repo \n'
159 <        txt += '    echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
160 <        txt += '    echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
161 <        txt += '    exit 1 \n'
162 <        txt += 'fi \n'
163 <
164 <        txt += '# report first time to DashBoard \n'
165 <        txt += 'dumpStatus $RUNTIME_AREA/$repo \n'
166 <        txt += 'rm -f $RUNTIME_AREA/$repo \n'
167 <        txt += 'echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
168 <        txt += 'echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
169 <        
170 <        txt += '\n\n'
171 <
172 <        if int(self.copy_data) == 1:
173 <           if self.SE:
174 <              txt += 'export SE='+self.SE+'\n'
175 <              txt += 'echo "SE = $SE"\n'
176 <           if self.SE_PATH:
177 <              if ( self.SE_PATH[-1] != '/' ) : self.SE_PATH = self.SE_PATH + '/'
178 <              txt += 'export SE_PATH='+self.SE_PATH+'\n'
179 <              txt += 'echo "SE_PATH = $SE_PATH"\n'
180 <
181 <        txt += 'export VO='+self.VO+'\n'
182 <        ### some line for LFC catalog setting
183 <        txt += 'if [ $middleware == LCG ]; then \n'
184 <        txt += '    if [[ $LCG_CATALOG_TYPE != \''+self.lcg_catalog_type+'\' ]]; then\n'
185 <        txt += '        export LCG_CATALOG_TYPE='+self.lcg_catalog_type+'\n'
186 <        txt += '    fi\n'
187 <        txt += '    if [[ $LFC_HOST != \''+self.lfc_host+'\' ]]; then\n'
188 <        txt += '        export LFC_HOST='+self.lfc_host+'\n'
189 <        txt += '    fi\n'
190 <        txt += '    if [[ $LFC_HOME != \''+self.lfc_home+'\' ]]; then\n'
191 <        txt += '        export LFC_HOME='+self.lfc_home+'\n'
192 <        txt += '    fi\n'
193 <        txt += 'elif [ $middleware == OSG ]; then\n'
194 <        txt += '    echo "LFC catalog setting to be implemented for OSG"\n'
195 <        txt += 'fi\n'
196 <        #####
197 <        if int(self.register_data) == 1:
198 <           txt += 'if [ $middleware == LCG ]; then \n'
199 <           txt += '    export LFN='+self.LFN+'\n'
200 <           txt += '    lfc-ls $LFN\n'
201 <           txt += '    result=$?\n'
202 <           txt += '    echo $result\n'
203 <           ### creation of LFN dir in LFC catalog, under /grid/cms dir  
204 <           txt += '    if [ $result != 0 ]; then\n'
205 <           txt += '       lfc-mkdir $LFN\n'
206 <           txt += '       result=$?\n'
207 <           txt += '       echo $result\n'
208 <           txt += '    fi\n'
209 <           txt += 'elif [ $middleware == OSG ]; then\n'
210 <           txt += '    echo " Files registration to be implemented for OSG"\n'
211 <           txt += 'fi\n'
212 <           txt += '\n'
213 <
214 <           if self.VO:
215 <              txt += 'export VO='+self.VO+'\n'
216 <           if self.LFN:
217 <              txt += 'if [ $middleware == LCG ]; then \n'
218 <              txt += '    export LFN='+self.LFN+'\n'
219 <              txt += 'fi\n'
220 <              txt += '\n'
221 <
222 <        txt += 'if [ $middleware == LCG ]; then\n'
223 <        txt += '    CloseCEs=`glite-brokerinfo getCE`\n'
224 <        txt += '    echo "CloseCEs = $CloseCEs"\n'
225 <        txt += '    CE=`echo $CloseCEs | sed -e "s/:.*//"`\n'
226 <        txt += '    echo "CE = $CE"\n'
227 <        txt += 'elif [ $middleware == OSG ]; then \n'
228 <        txt += '    if [ $OSG_JOB_CONTACT ]; then \n'
229 <        txt += '        CE=`echo $OSG_JOB_CONTACT | /usr/bin/awk -F\/ \'{print $1}\'` \n'
230 <        txt += '    else \n'
231 <        txt += '        echo "SET_CMS_ENV 10099 ==> OSG mode: ERROR in setting CE name from OSG_JOB_CONTACT" \n'
232 <        txt += '        echo "JOB_EXIT_STATUS = 10099" \n'
233 <        txt += '        echo "JobExitCode=10099" | tee -a $RUNTIME_AREA/$repo \n'
234 <        txt += '        dumpStatus $RUNTIME_AREA/$repo \n'
235 <        txt += '        rm -f $RUNTIME_AREA/$repo \n'
236 <        txt += '        echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
237 <        txt += '        echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
238 <        txt += '        exit 1 \n'
239 <        txt += '    fi \n'
240 <        txt += 'fi \n'
241 <
242 <        return txt
243 <        
244 <    def loggingInfo(self, id):
107 >            if (not req == ' '): req = req + ' && '
108 >            req = req + ' other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
109 >
110 >        return req
111 >
112 >    def sched_fix_parameter(self):
113          """
114 <        retrieve the logging info from logging and bookkeeping and return it
114 >        Returns string with requirements and scheduler-specific parameters
115          """
116 <        self.checkProxy()
117 <        cmd = 'glite-job-logging-info -v 2 ' + id
118 <        cmd_out = runCommand(cmd)
119 <        return cmd_out
120 <
121 <    def queryDetailedStatus(self, id):
122 <        """ Query a detailed status of the job with id """
123 <        cmd = 'glite-job-status '+id
124 <        cmd_out = runCommand(cmd)
125 <        return cmd_out
116 >        index = int(common._db.nJobs())
117 >        job = common.job_list[index-1]
118 >        jbt = job.type()
119 >        req = ''
120 >        req = req + jbt.getRequirements()
121 >
122 >        if self.EDG_requirements:
123 >            if (not req == ' '): req = req +  ' && '
124 >            req = req + self.EDG_requirements
125 >
126 >        Task_Req={'jobType':req}## DS--BL
127 >        common._db.updateTask_(Task_Req)
128 >
129 >    def sched_parameter(self,i,task):
130 >        """
131 >        Returns string with requirements and scheduler-specific parameters
132 >        """
133 >        dest=  task.jobs[i-1]['dlsDestination'] ## DS--BL
134 >
135 >        req=''
136 >        req +=task['jobType']
137  
138 <    def findSites_(self, n):
139 <        sites = common.jobDB.destination(n)
138 >        sched_param=''
139 >        sched_param+='Requirements = ' + req +self.specific_req() + self.se_list(i,dest) +\
140 >                                        self.ce_list()[0] +';\n' ## BL--DS
141 >        if self.EDG_addJdlParam: sched_param+=self.jdlParam() ## BL--DS
142 >        sched_param+='MyProxyServer = "' + self.proxyServer + '";\n'
143 >        sched_param+='VirtualOrganisation = "' + self.VO + '";\n'
144 >        sched_param+='RetryCount = '+str(self.EDG_retry_count)+';\n'
145 >        sched_param+='ShallowRetryCount = '+str(self.EDG_shallow_retry_count)+';\n'
146 >
147 >        return sched_param
148 >
149 >    def decodeLogInfo(self, file):
150 >        """
151 >        Parse logging info file and return main info
152 >        """
153 >        loggingInfo = EdgLoggingInfo.EdgLoggingInfo()
154 >        reason = loggingInfo.decodeReason(file)
155 >        return reason
156 >
157 >    def findSites_(self, n, sites):
158 >        itr4 =[]
159          if len(sites)>0 and sites[0]=="":
160 <            return []
161 <        return sites
160 >            return itr4
161 >        if sites != [""]:
162 >            ##Addedd Daniele
163 >            replicas = self.blackWhiteListParser.checkBlackList(sites,n)
164 >            if len(replicas)!=0:
165 >                replicas = self.blackWhiteListParser.checkWhiteList(replicas,n)
166 >
167 >            itr4 = replicas
168 >            #####
169 >        return itr4
170 >
171 >
172 >
173 >
174 >    def tOut(self, list):
175 >        return 180

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines