CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cond2xml.py
Go to the documentation of this file.
1 
2 import os
3 import shutil
4 import sys
5 import time
6 import glob
7 import importlib
8 
9 # as we need to load the shared lib from here, make sure it's in our path:
10 if os.path.join( os.environ['CMSSW_BASE'], 'src') not in sys.path:
11  sys.path.append( os.path.join( os.environ['CMSSW_BASE'], 'src') )
12 
13 # -------------------------------------------------------------------------------------------------------
14 
15 payload2xmlCodeTemplate = """
16 
17 #include <iostream>
18 #include <string>
19 #include <memory>
20 
21 #include <boost/python/class.hpp>
22 #include <boost/python/module.hpp>
23 #include <boost/python/init.hpp>
24 #include <boost/python/def.hpp>
25 #include <iostream>
26 #include <string>
27 #include <sstream>
28 
29 #include "boost/archive/xml_oarchive.hpp"
30 #include "CondFormats/Serialization/interface/Serializable.h"
31 #include "CondFormats/Serialization/interface/Archive.h"
32 
33 #include "CondCore/Utilities/src/CondFormats.h"
34 
35 namespace { // Avoid cluttering the global namespace.
36 
37  std::string %(plTypeSan)s2xml( const std::string &payloadData, const std::string &payloadType ) {
38 
39  // now to convert
40  std::unique_ptr< %(plType)s > payload;
41 
42  std::stringbuf sdataBuf;
43  sdataBuf.pubsetbuf( const_cast<char *> ( payloadData.c_str() ), payloadData.size() );
44 
45  std::istream inBuffer( &sdataBuf );
46  eos::portable_iarchive ia( inBuffer );
47  payload.reset( new %(plType)s );
48  ia >> (*payload);
49 
50  // now we have the object in memory, convert it to xml in a string and return it
51 
52  std::ostringstream outBuffer;
53  boost::archive::xml_oarchive xmlResult( outBuffer );
54  xmlResult << boost::serialization::make_nvp( "cmsCondPayload", *payload );
55 
56  return outBuffer.str();
57  }
58 
59 } // end namespace
60 
61 
62 BOOST_PYTHON_MODULE(%(mdName)s)
63 {
64  using namespace boost::python;
65  def ("%(plTypeSan)s2xml", %(plTypeSan)s2xml);
66 }
67 
68 """
69 
70 buildFileTemplate = """
71 <flags CXXFLAGS="-Wno-sign-compare -Wno-unused-variable -Os"/>
72 <use name="boost"/>
73 <use name="boost_python"/>
74 <use name="boost_iostreams"/>
75 <use name="boost_serialization"/>
76 <use name="boost_program_options"/>
77 <use name="CondCore/CondDB"/>
78 <use name="CondFormats/HLTObjects"/>
79 <use name="CondFormats/Alignment"/>
80 <use name="CondFormats/BeamSpotObjects"/>
81 <use name="CondFormats/CastorObjects"/>
82 <use name="CondFormats/HIObjects"/>
83 <use name="CondFormats/CSCObjects"/>
84 <use name="CondFormats/DTObjects"/>
85 <use name="CondFormats/ESObjects"/>
86 <use name="CondFormats/EcalObjects"/>
87 <use name="CondFormats/EgammaObjects"/>
88 <use name="CondFormats/Luminosity"/>
89 <use name="CondFormats/HcalObjects"/>
90 <use name="CondFormats/JetMETObjects"/>
91 <use name="CondFormats/L1TObjects"/>
92 <use name="CondFormats/PhysicsToolsObjects"/>
93 <use name="CondFormats/GeometryObjects"/>
94 <use name="CondFormats/RecoMuonObjects"/>
95 <use name="CondFormats/RPCObjects"/>
96 <use name="CondFormats/RunInfo"/>
97 <use name="CondFormats/SiPixelObjects"/>
98 <use name="CondFormats/SiStripObjects"/>
99 <use name="CondFormats/Common"/>
100 <use name="CondFormats/BTauObjects"/>
101 <use name="CondFormats/MFObjects"/>
102 <export>
103  <lib name="1"/>
104 </export>
105 """
106 
107 # helper function
108 def sanitize(typeName):
109  return typeName.replace(' ','').replace('<','_').replace('>','')
110 
111 class CondXmlProcessor(object):
112 
113  def __init__(self, condDBIn):
114  self.conddb = condDBIn
115  self._pl2xml_isPrepared = False
116 
117  if not os.path.exists( os.path.join( os.environ['CMSSW_BASE'], 'src') ):
118  raise Exception("Looks like you are not running in a CMSSW developer area, $CMSSW_BASE/src/ does not exist")
119 
120  self.fakePkgName = "fakeSubSys4pl/fakePkg4pl"
121  self._pl2xml_tmpDir = os.path.join( os.environ['CMSSW_BASE'], 'src', self.fakePkgName )
122 
123  self.doCleanup = True
124 
125  def __del__(self):
126 
127  if self.doCleanup:
128  shutil.rmtree( '/'.join( self._pl2xml_tmpDir.split('/')[:-1] ) )
129  os.unlink( os.path.join( os.environ['CMSSW_BASE'], 'src', './pl2xmlComp.so') )
130  return
131 
132  def discover(self, payloadType):
133 
134  # print "discover> checking for plugin of type %s" % payloadType
135 
136  # first search in developer area:
137  libDir = os.path.join( os.environ["CMSSW_BASE"], 'lib', os.environ["SCRAM_ARCH"] )
138  pluginList = glob.glob( libDir + '/plugin%s_toXML.so' % sanitize(payloadType) )
139 
140  # if nothing found there, check release:
141  if not pluginList:
142  libDir = os.path.join( os.environ["CMSSW_RELEASE_BASE"], 'lib', os.environ["SCRAM_ARCH"] )
143  pluginList = glob.glob( libDir + '/plugin%s_toXML.so' % sanitize(payloadType) )
144 
145  # if pluginList:
146  # print "found plugin for %s (in %s) : %s " % (payloadType, libDir, pluginList)
147  # else:
148  # print "no plugin found for type %s" % payloadType
149 
150  xmlConverter = None
151  if len(pluginList) > 0:
152  dirPath, libName = os.path.split( pluginList[0] )
153  sys.path.append(dirPath)
154  # print "going to import %s from %s" % (libName, dirPath)
155  xmlConverter = importlib.import_module( libName.replace('.so', '') )
156  # print "found methods: ", dir(xmlConverter)
157  self.doCleanup = False
158 
159  return xmlConverter
160 
161  def prepPayload2xml(self, session, payload):
162 
163  startTime = time.time()
164 
165  # get payload from DB:
166  result = session.query(self.conddb.Payload.data, self.conddb.Payload.object_type).filter(self.conddb.Payload.hash == payload).one()
167  data, plType = result
168 
169  info = { "mdName" : "pl2xmlComp",
170  'plType' : plType,
171  'plTypeSan' : sanitize(plType),
172  }
173 
174  converter = self.discover(plType)
175  if converter: return converter
176 
177  code = payload2xmlCodeTemplate % info
178 
179  tmpDir = self._pl2xml_tmpDir
180  if ( os.path.exists( tmpDir ) ) :
181  msg = '\nERROR: %s already exists, please remove if you did not create that manually !!' % tmpDir
182  self.doCleanup = False
183  raise Exception(msg)
184 
185  os.makedirs( tmpDir+'/src' )
186 
187  buildFileName = "%s/BuildFile.xml" % (tmpDir,)
188  with open(buildFileName, 'w') as buildFile:
189  buildFile.write( buildFileTemplate )
190  buildFile.close()
191 
192  tmpFileName = "%s/src/%s" % (tmpDir, info['mdName'],)
193  with open(tmpFileName+'.cpp', 'w') as codeFile:
194  codeFile.write(code)
195  codeFile.close()
196 
197  libDir = os.path.join( os.environ["CMSSW_BASE"], 'tmp', os.environ["SCRAM_ARCH"], 'src', self.fakePkgName, 'src', self.fakePkgName.replace('/',''))
198  libName = libDir + '/lib%s.so' % self.fakePkgName.replace('/','')
199  cmd = "source /afs/cern.ch/cms/cmsset_default.sh;"
200  cmd += "(cd %s ; scram b 2>&1 >build.log && cp %s $CMSSW_BASE/src/pl2xmlComp.so )" % (tmpDir, libName)
201  ret = os.system(cmd)
202  if ret != 0 : self.doCleanup = False
203 
204  buildTime = time.time()-startTime
205  print >> sys.stderr, "buillding done in ", buildTime, 'sec., return code from build: ', ret
206 
207  if (ret != 0):
208  return None
209 
210  return importlib.import_module( 'pl2xmlComp' )
211 
212  def payload2xml(self, session, payload):
213 
214  if not self._pl2xml_isPrepared:
215  xmlConverter = self.prepPayload2xml(session, payload)
216  if not xmlConverter:
217  msg = "Error preparing code for "+payload
218  raise Exception(msg)
219  self._pl2xml_isPrepared = True
220 
221 
222  # get payload from DB:
223  result = session.query(self.conddb.Payload.data, self.conddb.Payload.object_type).filter(self.conddb.Payload.hash == payload).one()
224  data, plType = result
225 
226  convFuncName = sanitize(plType)+'2xml'
227  sys.path.append('.')
228  func = getattr(xmlConverter, convFuncName)
229  resultXML = func( str(data), str(plType) )
230 
231  print resultXML
232 
def sanitize
Definition: cond2xml.py:108
static std::string join(char **cmd)
Definition: RemoteFile.cc:18