1 |
|
#!/usr/bin/env python |
2 |
< |
import sys, os, string, re |
3 |
< |
from DBSInfo import * |
2 |
> |
import exceptions |
3 |
> |
import DBSAPI.dbsApi |
4 |
> |
from DBSAPI.dbsApiException import * |
5 |
> |
import common |
6 |
> |
from crab_util import * |
7 |
> |
import os |
8 |
|
|
9 |
|
|
10 |
+ |
# ####################################### |
11 |
+ |
class DBSError(exceptions.Exception): |
12 |
+ |
def __init__(self, errorName, errorMessage): |
13 |
+ |
args='\nERROR DBS %s : %s \n'%(errorName,errorMessage) |
14 |
+ |
exceptions.Exception.__init__(self, args) |
15 |
+ |
pass |
16 |
+ |
|
17 |
+ |
def getErrorMessage(self): |
18 |
+ |
""" Return error message """ |
19 |
+ |
return "%s" % (self.args) |
20 |
+ |
|
21 |
+ |
# ####################################### |
22 |
+ |
class DBSInvalidDataTierError(exceptions.Exception): |
23 |
+ |
def __init__(self, errorName, errorMessage): |
24 |
+ |
args='\nERROR DBS %s : %s \n'%(errorName,errorMessage) |
25 |
+ |
exceptions.Exception.__init__(self, args) |
26 |
+ |
pass |
27 |
+ |
|
28 |
+ |
def getErrorMessage(self): |
29 |
+ |
""" Return error message """ |
30 |
+ |
return "%s" % (self.args) |
31 |
+ |
|
32 |
+ |
# ####################################### |
33 |
+ |
class DBSInfoError: |
34 |
+ |
def __init__(self, url): |
35 |
+ |
print '\nERROR accessing DBS url : '+url+'\n' |
36 |
+ |
pass |
37 |
+ |
|
38 |
|
# #################################### |
39 |
|
class DataDiscoveryError(exceptions.Exception): |
40 |
|
def __init__(self, errorMessage): |
41 |
< |
args=errorMessage |
42 |
< |
exceptions.Exception.__init__(self, args) |
41 |
> |
self.args=errorMessage |
42 |
> |
exceptions.Exception.__init__(self, self.args) |
43 |
|
pass |
44 |
|
|
45 |
|
def getErrorMessage(self): |
49 |
|
# #################################### |
50 |
|
class NotExistingDatasetError(exceptions.Exception): |
51 |
|
def __init__(self, errorMessage): |
52 |
< |
args=errorMessage |
53 |
< |
exceptions.Exception.__init__(self, args) |
52 |
> |
self.args=errorMessage |
53 |
> |
exceptions.Exception.__init__(self, self.args) |
54 |
|
pass |
55 |
|
|
56 |
|
def getErrorMessage(self): |
60 |
|
# #################################### |
61 |
|
class NoDataTierinProvenanceError(exceptions.Exception): |
62 |
|
def __init__(self, errorMessage): |
63 |
< |
args=errorMessage |
64 |
< |
exceptions.Exception.__init__(self, args) |
63 |
> |
self.args=errorMessage |
64 |
> |
exceptions.Exception.__init__(self, self.args) |
65 |
|
pass |
66 |
|
|
67 |
|
def getErrorMessage(self): |
71 |
|
# #################################### |
72 |
|
# class to find and extact info from published data |
73 |
|
class DataDiscovery: |
74 |
< |
def __init__(self, datasetPath, dataTiers, cfg_params): |
74 |
> |
def __init__(self, datasetPath, cfg_params, skipAnBlocks): |
75 |
|
|
76 |
< |
# Attributes |
76 |
> |
# Attributes |
77 |
|
self.datasetPath = datasetPath |
46 |
– |
self.dataTiers = dataTiers |
78 |
|
self.cfg_params = cfg_params |
79 |
+ |
self.skipBlocks = skipAnBlocks |
80 |
|
|
81 |
|
self.eventsPerBlock = {} # DBS output: map fileblocks-events for collection |
82 |
|
self.eventsPerFile = {} # DBS output: map files-events |
83 |
< |
self.blocksinfo = {} # DBS output: map fileblocks-files |
84 |
< |
#DBS output: max events computed by method getMaxEvents |
83 |
> |
self.blocksinfo = {} # DBS output: map fileblocks-files |
84 |
> |
self.maxEvents = 0 # DBS output: max events |
85 |
> |
self.parent = {} # DBS output: max events |
86 |
|
|
87 |
|
# #################################### |
88 |
|
def fetchDBSInfo(self): |
89 |
|
""" |
90 |
|
Contact DBS |
91 |
|
""" |
59 |
– |
|
92 |
|
## get DBS URL |
93 |
< |
try: |
94 |
< |
dbs_url=self.cfg_params['CMSSW.dbs_url'] |
95 |
< |
except KeyError: |
96 |
< |
dbs_url="http://cmsdoc.cern.ch/cms/test/aprom/DBS/CGIServer/prodquery" |
97 |
< |
|
98 |
< |
## get info about the requested dataset |
99 |
< |
try: |
100 |
< |
dbs_instance=self.cfg_params['CMSSW.dbs_instance'] |
101 |
< |
except KeyError: |
102 |
< |
dbs_instance="MCGlobal/Writer" |
93 |
> |
global_url="http://cmsdbsprod.cern.ch/cms_dbs_prod_global/servlet/DBSServlet" |
94 |
> |
caf_url = "http://cmsdbsprod.cern.ch/cms_dbs_caf_analysis_01/servlet/DBSServlet" |
95 |
> |
dbs_url_map = {'glite': global_url, |
96 |
> |
'glitecoll':global_url,\ |
97 |
> |
'condor': global_url,\ |
98 |
> |
'condor_g': global_url,\ |
99 |
> |
'glidein': global_url,\ |
100 |
> |
'lsf': global_url,\ |
101 |
> |
'caf': caf_url,\ |
102 |
> |
'sge': global_url, |
103 |
> |
'arc': global_url |
104 |
> |
} |
105 |
> |
|
106 |
> |
dbs_url_default = dbs_url_map[(common.scheduler.name()).lower()] |
107 |
> |
dbs_url= self.cfg_params.get('CMSSW.dbs_url', dbs_url_default) |
108 |
> |
common.logger.debug(3,"Accessing DBS at: "+dbs_url) |
109 |
> |
|
110 |
> |
## check if runs are selected |
111 |
> |
runselection = [] |
112 |
> |
if (self.cfg_params.has_key('CMSSW.runselection')): |
113 |
> |
runselection = parseRange2(self.cfg_params['CMSSW.runselection']) |
114 |
> |
|
115 |
> |
|
116 |
> |
self.splitByRun = int(self.cfg_params.get('CMSSW.split_by_run', 0)) |
117 |
> |
|
118 |
> |
self.ads = int(self.cfg_params.get('CMSSW.ads', 0)) |
119 |
> |
|
120 |
> |
common.logger.debug(6,"runselection is: %s"%runselection) |
121 |
> |
## service API |
122 |
> |
args = {} |
123 |
> |
args['url'] = dbs_url |
124 |
> |
args['level'] = 'CRITICAL' |
125 |
> |
|
126 |
> |
## check if has been requested to use the parent info |
127 |
> |
useparent = int(self.cfg_params.get('CMSSW.use_parent',0)) |
128 |
> |
|
129 |
> |
## check if has been asked for a non default file to store/read analyzed fileBlocks |
130 |
> |
defaultName = common.work_space.shareDir()+'AnalyzedBlocks.txt' |
131 |
> |
fileBlocks_FileName = os.path.abspath(self.cfg_params.get('CMSSW.fileblocks_file',defaultName)) |
132 |
|
|
133 |
< |
dbs = DBSInfo(dbs_url, dbs_instance) |
73 |
< |
try: |
74 |
< |
self.datasets = dbs.getMatchingDatasets(self.datasetPath) |
75 |
< |
except dbsCgiApi.DbsCgiExecutionError, msg: |
76 |
< |
raise DataDiscoveryError(msg) |
133 |
> |
api = DBSAPI.dbsApi.DbsApi(args) |
134 |
|
|
135 |
< |
if len(self.datasets) == 0: |
79 |
< |
raise DataDiscoveryError("DatasetPath=%s unknown to DBS" %self.datasetPath) |
80 |
< |
if len(self.datasets) > 1: |
81 |
< |
raise DataDiscoveryError("DatasetPath=%s is ambiguous" %self.datasetPath) |
135 |
> |
self.files = self.queryDbs(api,path=self.datasetPath,runselection=runselection,useParent=useparent) |
136 |
|
|
137 |
< |
try: |
138 |
< |
self.dbsdataset = self.datasets[0].get('datasetPathName') |
137 |
> |
anFileBlocks = [] |
138 |
> |
if self.skipBlocks: anFileBlocks = readTXTfile(self, fileBlocks_FileName) |
139 |
|
|
140 |
< |
self.eventsPerBlock = dbs.getEventsPerBlock(self.dbsdataset) |
141 |
< |
self.blocksinfo = dbs.getDatasetFileBlocks(self.dbsdataset) |
142 |
< |
self.eventsPerFile = dbs.getEventsPerFile(self.dbsdataset) |
143 |
< |
except DBSError, ex: |
144 |
< |
raise DataDiscoveryError(ex.getErrorMessage()) |
145 |
< |
|
140 |
> |
# parse files and fill arrays |
141 |
> |
for file in self.files : |
142 |
> |
parList = [] |
143 |
> |
# skip already analyzed blocks |
144 |
> |
fileblock = file['Block']['Name'] |
145 |
> |
if fileblock not in anFileBlocks : |
146 |
> |
filename = file['LogicalFileName'] |
147 |
> |
# asked retry the list of parent for the given child |
148 |
> |
if useparent==1: parList = [x['LogicalFileName'] for x in file['ParentList']] |
149 |
> |
self.parent[filename] = parList |
150 |
> |
if filename.find('.dat') < 0 : |
151 |
> |
events = file['NumberOfEvents'] |
152 |
> |
# number of events per block |
153 |
> |
if fileblock in self.eventsPerBlock.keys() : |
154 |
> |
self.eventsPerBlock[fileblock] += events |
155 |
> |
else : |
156 |
> |
self.eventsPerBlock[fileblock] = events |
157 |
> |
# number of events per file |
158 |
> |
self.eventsPerFile[filename] = events |
159 |
> |
|
160 |
> |
# number of events per block |
161 |
> |
if fileblock in self.blocksinfo.keys() : |
162 |
> |
self.blocksinfo[fileblock].append(filename) |
163 |
> |
else : |
164 |
> |
self.blocksinfo[fileblock] = [filename] |
165 |
> |
|
166 |
> |
# total number of events |
167 |
> |
self.maxEvents += events |
168 |
> |
if self.skipBlocks and len(self.eventsPerBlock.keys()) == 0: |
169 |
> |
msg = "No new fileblocks available for dataset: "+str(self.datasetPath) |
170 |
> |
raise CrabException(msg) |
171 |
> |
|
172 |
> |
saveFblocks='' |
173 |
> |
for block in self.eventsPerBlock.keys() : |
174 |
> |
saveFblocks += str(block)+'\n' |
175 |
> |
common.logger.debug(6,"DBSInfo: total nevts %i in block %s "%(self.eventsPerBlock[block],block)) |
176 |
> |
writeTXTfile(self, fileBlocks_FileName , saveFblocks) |
177 |
> |
|
178 |
|
if len(self.eventsPerBlock) <= 0: |
179 |
< |
raise NotExistingDatasetError (("\nNo data for %s in DBS\nPlease check" |
179 |
> |
raise NotExistingDatasetError(("\nNo data for %s in DBS\nPlease check" |
180 |
|
+ " dataset path variables in crab.cfg") |
181 |
< |
% self.dbsdataset) |
181 |
> |
% self.datasetPath) |
182 |
> |
|
183 |
> |
|
184 |
> |
########################### |
185 |
> |
|
186 |
> |
def queryDbs(self,api,path=None,runselection=None,useParent=None): |
187 |
> |
|
188 |
> |
allowedRetriveValue = [#'retrive_parent', |
189 |
> |
'retrive_block', |
190 |
> |
#'retrive_lumi', |
191 |
> |
'retrive_run' |
192 |
> |
] |
193 |
> |
try: |
194 |
> |
if len(runselection) <=0 : |
195 |
> |
if useParent==1 or self.splitByRun==1 : |
196 |
> |
if self.ads==1 : |
197 |
> |
files = api.listFiles(analysisDataset=path, retriveList=allowedRetriveValue) |
198 |
> |
else : |
199 |
> |
files = api.listFiles(path=path, retriveList=allowedRetriveValue) |
200 |
> |
common.logger.debug(5,"Set of input parameters used for DBS query : \n"+str(allowedRetriveValue)) |
201 |
> |
common.logger.write("Set of input parameters used for DBS query : \n"+str(allowedRetriveValue)) |
202 |
> |
else: |
203 |
> |
files = api.listDatasetFiles(self.datasetPath) |
204 |
> |
else : |
205 |
> |
files=[] |
206 |
> |
for arun in runselection: |
207 |
> |
try: |
208 |
> |
if self.ads==1 : filesinrun = api.listFiles(analysisDataset=path,retriveList=allowedRetriveValue,runNumber=arun) |
209 |
> |
else: filesinrun = api.listFiles(path=path,retriveList=allowedRetriveValue,runNumber=arun) |
210 |
> |
files.extend(filesinrun) |
211 |
> |
except: |
212 |
> |
msg="WARNING: problem extracting info from DBS for run %s "%arun |
213 |
> |
common.logger.message(msg) |
214 |
> |
pass |
215 |
> |
|
216 |
> |
except DbsBadRequest, msg: |
217 |
> |
raise DataDiscoveryError(msg) |
218 |
> |
except DBSError, msg: |
219 |
> |
raise DataDiscoveryError(msg) |
220 |
|
|
221 |
+ |
return files |
222 |
|
|
223 |
|
# ################################################# |
224 |
|
def getMaxEvents(self): |
225 |
|
""" |
226 |
|
max events |
227 |
|
""" |
228 |
< |
## loop over the event collections |
104 |
< |
nevts=0 |
105 |
< |
for evc_evts in self.eventsPerBlock.values(): |
106 |
< |
nevts=nevts+evc_evts |
107 |
< |
|
108 |
< |
return nevts |
228 |
> |
return self.maxEvents |
229 |
|
|
230 |
|
# ################################################# |
231 |
|
def getEventsPerBlock(self): |
248 |
|
""" |
249 |
|
return self.blocksinfo |
250 |
|
|
251 |
+ |
# ################################################# |
252 |
+ |
def getParent(self): |
253 |
+ |
""" |
254 |
+ |
return parent grouped by file |
255 |
+ |
""" |
256 |
+ |
return self.parent |
257 |
+ |
|
258 |
+ |
# ################################################# |
259 |
+ |
def getListFiles(self): |
260 |
+ |
""" |
261 |
+ |
return parent grouped by file |
262 |
+ |
""" |
263 |
+ |
return self.files |
264 |
+ |
|
265 |
|
######################################################################## |