11 from XML2Python
import xml2obj
18 'unsigned int' : [
'unsignedint',
'UInt32_t',
'uint32_t'],
19 'unsigned long': [
'unsignedlong'],
21 'float' : [
'Float_t'],
22 'double' : [
'Double_t'],
35 {
'L1TCalorimeter' : [
'l1t::CaloTower.*']},
36 {
'GsfTracking' : [
'reco::GsfTrack(Collection|).*(MomentumConstraint|VertexConstraint)',
'Trajectory.*reco::GsfTrack']},
37 {
'ParallelAnalysis' : [
'examples::TrackAnalysisAlgorithm']},
38 {
'PatCandidates' : [
'pat::PATObject',
'pat::Lepton']},
39 {
'BTauReco' : [
'reco::.*SoftLeptonTagInfo',
'reco::SoftLeptonProperties',
'reco::SecondaryVertexTagInfo',
'reco::IPTagInfo',
'reco::TemplatedSecondaryVertexTagInfo']},
40 {
'CastorReco' : [
'reco::CastorJet']},
41 {
'JetMatching' : [
'reco::JetFlavourInfo',
'reco::JetFlavour',
'reco::MatchedPartons']},
42 {
'TrackingAnalysis' : [
'TrackingParticle']},
43 {
'Egamma' : [
'reco::ElectronID']},
44 {
'TopObjects' : [
'reco::CATopJetProperties']},
45 {
'TauReco' : [
'reco::L2TauIsolationInfo',
'reco::RecoTauPiZero',
'reco::BaseTau']},
46 {
'ValidationFormats' : [
'PGlobalDigi::.+',
'PGlobalRecHit::.+']},
47 {
'TrajectorySeed' : [
'TrajectorySeed']},
48 {
'TrackCandidate' : [
'TrackCandidate']},
49 {
'PatternTools' : [
'MomentumConstraint',
'VertexConstraint',
'Trajectory']},
50 {
'TrackerRecHit2D' : [
'SiStrip(Matched|)RecHit[12]D',
'SiTrackerGSRecHit[12]D',
'SiPixelRecHit']},
51 {
'MuonReco' : [
'reco::Muon(Ref|)(Vector|)']},
52 {
'MuonSeed' : [
'L3MuonTrajectorySeed']},
53 {
'HepMCCandidate' : [
'reco::GenParticle.*']},
54 {
'L1Trigger' : [
'l1extra::L1.+Particle']},
55 {
'TrackInfo' : [
'reco::TrackingRecHitInfo']},
56 {
'EgammaCandidates' : [
'reco::GsfElectron.*',
'reco::Photon.*']},
57 {
'HcalIsolatedTrack' : [
'reco::IsolatedPixelTrackCandidate',
'reco::EcalIsolatedParticleCandidate']},
58 {
'HcalRecHit' : [
'HFRecHit',
'HORecHit',
'ZDCRecHit',
'HBHERecHit']},
59 {
'PFRootEvent' : [
'EventColin::']},
60 {
'CaloTowers' : [
'CaloTower.*']},
61 {
'GsfTrackReco' : [
'GsfTrack.*']},
62 {
'METReco' : [
'reco::(Calo|PF|Gen|)MET',
'reco::PFClusterMET']},
63 {
'ParticleFlowReco' : [
'reco::RecoPFClusterRefCandidateRef.*']},
64 {
'ParticleFlowCandidate' : [
'reco::PFCandidateRef',
'reco::PFCandidateFwdRef',
'reco::PFCandidate']},
65 {
'PhysicsToolsObjects' : [
'PhysicsTools::Calibration']},
66 {
'RecoCandidate' : [
'reco::Candidate']},
67 {
'TrackReco' : [
'reco::Track',
'reco::TrackRef']},
68 {
'VertexReco' : [
'reco::Vertex']},
69 {
'TFWLiteSelectorTest' : [
'tfwliteselectortest']},
70 {
'PatCandidates' : [
'reco::RecoCandidate',
'pat::[A-Za-z]+Ref(Vector|)']},
71 {
'JetReco' : [
'reco::.*Jet',
'reco::.*Jet(Collection|Ref)']},
75 'LCGReflex/__gnu_cxx::__normal_iterator<std::basic_string<char>*,std::vector<std::basic_string<char>%>%>' : 1,
80 """ Searches through the requested directory looking at
81 'classes_def.xml' files looking for duplicate Reflex definitions."""
83 classNameRE = re.compile (
r'class\s+name\s*=\s*"([^"]*)"')
84 spacesRE = re.compile (
r'\s+')
85 stdRE = re.compile (
r'std::')
86 srcClassNameRE = re.compile (
r'(\w+)/src/classes_def.xml')
87 ignoreSrcRE = re.compile (
r'.*/FWCore/Skeletons/scripts/mkTemplates/.+')
88 braketRE = re.compile (
r'<.+>')
89 print "Searching for 'classes_def.xml' in '%s'." % os.path.join(os.environ.get(
'CMSSW_BASE'),
'src')
91 for srcDir
in [os.environ.get(
'CMSSW_BASE'),os.environ.get(
'CMSSW_RELEASE_BASE')]:
92 if not len(srcDir):
continue
93 for xml
in commands.getoutput (
'cd '+os.path.join(srcDir,
'src')+
'; find . -name "*classes_def.xml" -follow -print').split (
'\n'):
94 if xml
and (
not xml
in xmlFiles):
97 pprint.pprint (xmlFiles)
103 for item
in equivDict:
105 for equiv
in item[pack]:
106 explicitREs.append( (re.compile(
r'\b' + equiv +
r'\b'),pack))
108 for filename
in xmlFiles:
109 if (
not filename)
or (ignoreSrcRE.match(filename)):
continue
110 match = srcClassNameRE.search (filename)
111 if not match:
continue
112 packageName = match.group(1)
113 xmlPackages.append (packageName)
114 matchString =
r'\b' + packageName +
r'\b'
115 packagesREs[packageName] = re.compile (matchString)
116 equivList = equivREs.setdefault (packageName, [])
117 for item
in equivDict:
118 for equiv
in item.get (packageName, []):
119 matchString = re.compile(
r'\b' + equiv +
r'\b')
120 equivList.append( (matchString, equiv) )
121 equivList.append( (packagesREs[packageName], packageName) )
123 ncdict = {
'class' :
'className'}
124 for filename
in xmlFiles:
125 if (
not filename)
or (ignoreSrcRE.match(filename)):
continue
132 lostMatch = srcClassNameRE.search (filename)
134 exceptName = lostMatch.group (1)
135 regexList = equivREs[exceptName]
136 xcount = len(regexList)-1
137 if not regexList[xcount][0].search (exceptName):
138 print '%s not found in' % exceptName,
139 print regexList[xcount][0]
143 print "filename", filename
145 filepath = os.path.join(os.environ.get(
'CMSSW_BASE'),
'src',filename)
146 if not os.path.exists(filepath):
147 filepath = os.path.join(os.environ.get(
'CMSSW_RELEASE_BASE'),
'src',filename)
148 xmlObj = xml2obj (filename = filepath,
150 nameChangeDict = ncdict)
151 except Exception
as detail:
152 print "File %s is malformed XML. Please fix." % filename
156 classList = xmlObj.selection.className
159 classList = xmlObj.className
162 print "**** SKIPPING '%s' - Doesn't seem to have proper information." % filename
164 for piece
in classList:
166 className = spacesRE.sub (
'', piece.name)
171 className = stdRE.sub (
'', className)
174 for typedef, tdList
in typedefsDict.iteritems():
176 className = re.sub (alias, typedef, className)
177 classDict.setdefault (className, set()).add (filename)
179 if not options.lostDefs:
181 localObjects.append (className)
182 if options.lazyLostDefs
and not braketRE.search (className):
184 matchString =
r'\b' + className +
r'\b'
185 simpleObjectREs.append( (re.compile (matchString), className ) )
186 for className
in localObjects:
190 for equivRE
in regexList:
192 if equivRE[0].search (className):
195 for simpleRE
in simpleObjectREs:
196 if simpleRE[0].search (className):
198 if options.verbose
and simpleRE[1] != className:
199 print " Using %s to ignore %s" \
200 % (simpleRE[1], className)
202 if foundEquiv:
continue
203 for exRes
in explicitREs:
204 if exRes[0].
search(className):
205 dupProblems +=
" %s : %s\n" % (exRes[1], className)
208 if foundEquiv:
continue
209 for packageName
in xmlPackages:
212 if packagesREs[packageName].search (className):
213 dupProblems +=
" %s : %s\n" % (packageName, className)
217 print '\n%s\n%s\n' % (filename, dupProblems)
220 for name, fileSet
in sorted( classDict.iteritems() ):
221 if len (fileSet) < 2:
224 fileList = list (fileSet)
226 for filename
in fileList:
235 """ Searches the edmpluginFile to find any duplicate
238 libenv =
'LD_LIBRARY_PATH'
239 if os.environ.get(
'SCRAM_ARCH').startswith(
'osx'): libenv =
'DYLD_FALLBACK_LIBRARY_PATH'
240 biglib =
'/biglib/'+os.environ.get(
'SCRAM_ARCH')
241 for libdir
in os.environ.get(libenv).
split(
':'):
242 if libdir.endswith(biglib):
continue
243 if os.path.exists(libdir+
'/.edmplugincache'): edmpluginFile = edmpluginFile +
' ' + libdir+
'/.edmplugincache'
244 if edmpluginFile ==
'': edmpluginFile = os.path.join(os.environ.get(
'CMSSW_BASE'),
'lib',os.environ.get(
'SCRAM_ARCH'),
'.edmplugincache')
245 cmd =
"cat %s | awk '{print $2\" \"$1}' | sort | uniq | awk '{print $1}' | sort | uniq -c | grep '2 ' | awk '{print $2}'" % edmpluginFile
246 output = commands.getoutput (cmd).
split(
'\n')
248 if ignoreEdmDP.has_key(line):
continue
249 line = line.replace(
"*",
"\*")
250 cmd =
"cat %s | grep ' %s ' | awk '{print $1}' | sort | uniq " % (edmpluginFile,line)
251 out1 = commands.getoutput (cmd).
split(
'\n')
255 print " **"+plugin+
"**"
258 if __name__ ==
"__main__":
260 parser = optparse.OptionParser (
"Usage: %prog [options]\n"\
261 "Searches classes_def.xml for wrong/duplicate "\
263 xmlGroup = optparse.OptionGroup (parser,
"ClassDef XML options")
264 dumpGroup = optparse.OptionGroup (parser,
"EdmPluginDump options")
265 xmlGroup.add_option (
'--dups', dest=
'dups', action=
'store_true',
267 help=
"Search for duplicate definitions")
268 xmlGroup.add_option (
'--lostDefs', dest=
'lostDefs', action=
'store_true',
270 help=
"Looks for definitions in the wrong libraries")
271 xmlGroup.add_option (
'--lazyLostDefs', dest=
'lazyLostDefs',
274 help=
"Will try to ignore as many lost defs as reasonable")
275 xmlGroup.add_option (
'--verbose', dest=
'verbose',
278 help=
"Prints out a lot of information")
279 xmlGroup.add_option (
'--showXMLs', dest=
'showXMLs', action=
'store_true',
281 help=
"Shows all 'classes_def.xml' files")
282 xmlGroup.add_option (
'--dir', dest=
'srcdir', type=
'string', default=
'',
284 dumpGroup.add_option (
'--edmPD', dest=
'edmPD', action=
'store_true',
286 help=
"Searches EDM Plugin Dump for duplicates")
287 dumpGroup.add_option (
'--edmFile', dest=
'edmFile', type=
'string',
290 parser.add_option_group (xmlGroup)
291 parser.add_option_group (dumpGroup)
292 (options, args) = parser.parse_args()
295 if options.lazyLostDefs:
296 options.lostDefs =
True
297 if options.showXMLs
or options.lostDefs
or options.dups:
300 searchDuplicatePlugins ()
def searchDuplicatePlugins
std::vector< T >::const_iterator search(const cond::Time_t &val, const std::vector< T > &container)