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  Payload = session.get_dbtype(self.conddb.Payload)
166  # get payload from DB:
167  result = session.query(Payload.data, Payload.object_type).filter(Payload.hash == payload).one()
168  data, plType = result
169 
170  info = { "mdName" : "pl2xmlComp",
171  'plType' : plType,
172  'plTypeSan' : sanitize(plType),
173  }
174 
175  converter = self.discover(plType)
176  if converter: return converter
177 
178  code = payload2xmlCodeTemplate % info
179 
180  tmpDir = self._pl2xml_tmpDir
181  if ( os.path.exists( tmpDir ) ) :
182  msg = '\nERROR: %s already exists, please remove if you did not create that manually !!' % tmpDir
183  self.doCleanup = False
184  raise Exception(msg)
185 
186  os.makedirs( tmpDir+'/src' )
187 
188  buildFileName = "%s/BuildFile.xml" % (tmpDir,)
189  with open(buildFileName, 'w') as buildFile:
190  buildFile.write( buildFileTemplate )
191  buildFile.close()
192 
193  tmpFileName = "%s/src/%s" % (tmpDir, info['mdName'],)
194  with open(tmpFileName+'.cpp', 'w') as codeFile:
195  codeFile.write(code)
196  codeFile.close()
197 
198  libDir = os.path.join( os.environ["CMSSW_BASE"], 'tmp', os.environ["SCRAM_ARCH"], 'src', self.fakePkgName, 'src', self.fakePkgName.replace('/',''))
199  libName = libDir + '/lib%s.so' % self.fakePkgName.replace('/','')
200  cmd = "source /afs/cern.ch/cms/cmsset_default.sh;"
201  cmd += "(cd %s ; scram b 2>&1 >build.log && cp %s $CMSSW_BASE/src/pl2xmlComp.so )" % (tmpDir, libName)
202  ret = os.system(cmd)
203  if ret != 0 : self.doCleanup = False
204 
205  buildTime = time.time()-startTime
206  print >> sys.stderr, "buillding done in ", buildTime, 'sec., return code from build: ', ret
207 
208  if (ret != 0):
209  return None
210 
211  return importlib.import_module( 'pl2xmlComp' )
212 
213  def payload2xml(self, session, payload):
214 
215  if not self._pl2xml_isPrepared:
216  xmlConverter = self.prepPayload2xml(session, payload)
217  if not xmlConverter:
218  msg = "Error preparing code for "+payload
219  raise Exception(msg)
220  self._pl2xml_isPrepared = True
221 
222 
223  Payload = session.get_dbtype(self.conddb.Payload)
224  # get payload from DB:
225  result = session.query(Payload.data, Payload.object_type).filter(Payload.hash == payload).one()
226  data, plType = result
227 
228  convFuncName = sanitize(plType)+'2xml'
229  sys.path.append('.')
230  func = getattr(xmlConverter, convFuncName)
231  resultXML = func( str(data), str(plType) )
232 
233  print resultXML
234 
def sanitize
Definition: cond2xml.py:108
static std::string join(char **cmd)
Definition: RemoteFile.cc:18