The Gaudi Framework  master (766b6f4b)
Loading...
Searching...
No Matches
genconf.cpp
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2026 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#ifdef __ICC
12// disable icc warning #279: controlling expression is constant
13// ... a lot of noise produced by the boost/filesystem/operations.hpp
14# pragma warning( disable : 279 )
15#endif
16
17#include <Gaudi/Algorithm.h>
18#include <Gaudi/Auditor.h>
19#include <Gaudi/IAuditor.h>
20#include <Gaudi/PluginService.h>
21#include <GaudiKernel/AlgTool.h>
26#include <GaudiKernel/HashMap.h>
32#include <GaudiKernel/Service.h>
33#include <GaudiKernel/SmartIF.h>
34#include <GaudiKernel/System.h>
35#include <GaudiKernel/Time.h>
36#include <algorithm>
37#include <boost/algorithm/string/case_conv.hpp>
38#include <boost/algorithm/string/classification.hpp>
39#include <boost/algorithm/string/replace.hpp>
40#include <boost/algorithm/string/split.hpp>
41#include <boost/algorithm/string/trim.hpp>
42#include <boost/filesystem/exception.hpp>
43#include <boost/filesystem/operations.hpp>
44#include <boost/log/core.hpp>
45#include <boost/log/expressions.hpp>
46#include <boost/log/trivial.hpp>
47#include <boost/log/utility/setup/common_attributes.hpp>
48#include <boost/log/utility/setup/console.hpp>
49#include <boost/program_options.hpp>
50#include <boost/regex.hpp>
51#include <boost/tokenizer.hpp>
52
53#include <exception>
54#include <fmt/format.h>
55#include <fstream>
56#include <iostream>
57#include <set>
58#include <sstream>
59#include <type_traits>
60#include <vector>
61
62namespace po = boost::program_options;
63namespace fs = boost::filesystem;
64
65#define LOG_ERROR BOOST_LOG_TRIVIAL( error )
66#define LOG_WARNING BOOST_LOG_TRIVIAL( warning )
67#define LOG_INFO BOOST_LOG_TRIVIAL( info )
68
69using namespace std;
71
72class IConverter;
73
74// useful typedefs
75typedef std::vector<std::string> Strings_t;
76typedef std::vector<fs::path> LibPathNames_t;
77
78namespace {
79
80 std::string quote( std::string_view sv ) {
81 std::ostringstream s;
82 s << std::quoted( sv, '\'' );
83 return s.str();
84 }
85
86 const std::string py_tab = " ";
87
90 const boost::regex pythonIdentifier( "^[a-zA-Z_][a-zA-Z0-9_]*$" );
91
92 //-----------------------------------------------------------------------------
93 enum class component_t {
94 Module,
95 DefaultName,
97 AlgTool,
98 Auditor,
99 Service,
102 Converter,
104 Unknown
105 };
106
107 enum class conf_t {
108 CONF, // legacy configurables
109 CONF2 // GaudiConfig2 configurables
110 };
111
112 const std::map<std::string, component_t> allowedFactories{
113 { typeid( Gaudi::Algorithm::Factory::FactoryType ).name(), component_t::Algorithm },
114 { typeid( Service::Factory::FactoryType ).name(), component_t::Service },
115 { typeid( AlgTool::Factory::FactoryType ).name(), component_t::AlgTool },
116 // factories for new Auditors
117 { typeid( Gaudi::Auditor::Factory::FactoryType ).name(), component_t::Auditor },
118 };
119
120 const std::string& toString( component_t type ) {
121 static const std::array<std::string, 11> names = { "Module", "DefaultName", "Algorithm", "AlgTool",
122 "Auditor", "Service", "ApplicationMgr", "IInterface",
123 "Converter", "DataObject", "Unknown" };
124 return names.at( static_cast<std::underlying_type_t<component_t>>( type ) );
125 }
126 std::ostream& operator<<( std::ostream& os, component_t type ) { return os << toString( type ); }
127
128 std::set<std::string> ignored_interfaces{
129 { "IInterface", "IProperty", "INamedInterface", "IAlgorithm", "IAlgTool", "IService", "IAuditor" } };
130
131 //-----------------------------------------------------------------------------
133 std::string pythonizeName( const std::string& name ) {
134 static const string in( "<>&*,: ()." );
135 static const string out( "__rp__s___" );
136 auto r = boost::algorithm::replace_all_copy( name, ", ", "," );
137 for ( auto& c : r ) {
138 auto rep = in.find( c );
139 if ( rep != string::npos ) c = out[rep];
140 }
141 return r;
142 }
143 //-----------------------------------------------------------------------------
144 template <typename T>
145 std::type_index typeIndex() {
146 return std::type_index{ typeid( T ) };
147 }
148 //-----------------------------------------------------------------------------
149 inline std::string libNativeName( const std::string& libName ) {
150#if defined( __linux ) || defined( __APPLE__ )
151 return "lib" + libName + ".so";
152#else
153 // variant of the GIGO design pattern
154 return libName;
155#endif
156 }
157} // namespace
158
161 string m_pkgName;
162
166
168 stringstream m_pyBuf;
169
174
176 std::set<conf_t> m_confTypes;
177
182 stringstream m_dbBuf;
183
185 stringstream m_db2Buf;
186
192 std::map<component_t, std::string> m_configurable;
193
194public:
195 configGenerator( const string& pkgName, const string& outputDirName )
196 : m_pkgName( pkgName ), m_outputDirName( outputDirName ) {}
197
202 int genConfig( const Strings_t& modules, const string& userModule );
203
205 void setConfigurableTypes( const std::set<conf_t>& types ) { m_confTypes = types; }
206
208 void setConfigurableModule( const std::string& moduleName ) { m_configurable[component_t::Module] = moduleName; }
209
211 void setConfigurableDefaultName( const std::string& defaultName ) {
212 m_configurable[component_t::DefaultName] = defaultName;
213 }
214
216 void setConfigurableAlgorithm( const std::string& cfgAlgorithm ) {
217 m_configurable[component_t::Algorithm] = cfgAlgorithm;
218 }
219
221 void setConfigurableAlgTool( const std::string& cfgAlgTool ) { m_configurable[component_t::AlgTool] = cfgAlgTool; }
222
224 void setConfigurableAuditor( const std::string& cfgAuditor ) { m_configurable[component_t::Auditor] = cfgAuditor; }
225
227 void setConfigurableService( const std::string& cfgService ) {
228 m_configurable[component_t::Service] = cfgService;
229 m_configurable[component_t::ApplicationMgr] = cfgService;
230 }
231
232private:
233 bool genComponent( const std::string& libName, const std::string& componentName, component_t componentType,
234 const vector<PropertyBase*>& properties,
235 const Gaudi::PluginService::Details::Registry::FactoryInfo& info );
236
237 bool genComponent2( const std::string& componentName, component_t componentType,
238 const vector<PropertyBase*>& properties, const std::vector<std::string>& interfaces,
239 const Gaudi::PluginService::Details::Registry::FactoryInfo& info );
240
241 void genImport( std::ostream& s, std::string_view frmt, std::string indent );
242 void genHeader( std::ostream& pyOut, std::ostream& dbOut );
243 void genBody( std::ostream& pyOut, std::ostream& dbOut ) {
244 pyOut << m_pyBuf.str() << flush;
245 dbOut << m_dbBuf.str() << flush;
246 }
247 void genTrailer( std::ostream& pyOut, std::ostream& dbOut );
248
250 void pythonizeValue( const PropertyBase* prop, string& pvalue, string& ptype );
251};
252
253int createAppMgr();
254
255void init_logging( boost::log::trivial::severity_level level ) {
256 namespace logging = boost::log;
257 namespace keywords = boost::log::keywords;
258 namespace expr = boost::log::expressions;
259
260 logging::add_console_log( std::cout, keywords::format =
261 ( expr::stream << "[" << std::setw( 7 ) << std::left
262 << logging::trivial::severity << "] " << expr::smessage ) );
263
264 logging::core::get()->set_filter( logging::trivial::severity >= level );
265}
266
267//--- Command main program-----------------------------------------------------
268int main( int argc, char** argv )
269//-----------------------------------------------------------------------------
270{
271 init_logging( ( System::isEnvSet( "VERBOSE" ) && !System::getEnv( "VERBOSE" ).empty() )
272 ? boost::log::trivial::info
273 : boost::log::trivial::warning );
274
275 fs::path pwd = fs::initial_path();
276 fs::path out;
277 Strings_t libs;
278 std::string pkgName;
279 std::string userModule;
280
281 // declare a group of options that will be allowed only on command line
282 po::options_description generic( "Generic options" );
283 generic.add_options()( "help,h", "produce this help message" )(
284 "package-name,p", po::value<string>(), "name of the package for which we create the configurables file" )(
285 "input-libraries,i", po::value<string>(), "libraries to extract the component configurables from" )(
286 "input-cfg,c", po::value<string>(),
287 "path to the cfg file holding the description of the Configurable base "
288 "classes, the python module holding the Configurable definitions, etc..." )(
289 "output-dir,o", po::value<string>()->default_value( "../genConfDir" ),
290 "output directory for genconf files." )( "debug-level,d", po::value<int>()->default_value( 0 ), "debug level" )(
291 "load-library,l", po::value<Strings_t>()->composing(), "preloading library" )(
292 "user-module,m", po::value<string>(), "user-defined module to be imported by the genConf-generated one" )(
293 "no-init", "do not generate the (empty) __init__.py [deprecated]" )(
294 "type", po::value<string>()->default_value( "conf,conf2" ), "comma-separate types of configurables to generate" );
295
296 // declare a group of options that will be allowed both on command line
297 // _and_ in configuration file
298 po::options_description config( "Configuration" );
299 config.add_options()( "configurable-module", po::value<string>()->default_value( "AthenaCommon" ),
300 "Name of the module holding the configurable classes" )(
301 "configurable-default-name", po::value<string>()->default_value( "Configurable.DefaultName" ),
302 "Default name for the configurable instance" )( "configurable-algorithm",
303 po::value<string>()->default_value( "ConfigurableAlgorithm" ),
304 "Name of the configurable base class for Algorithm components" )(
305 "configurable-algtool", po::value<string>()->default_value( "ConfigurableAlgTool" ),
306 "Name of the configurable base class for AlgTool components" )(
307 "configurable-auditor", po::value<string>()->default_value( "ConfigurableAuditor" ),
308 "Name of the configurable base class for Auditor components" )(
309 "configurable-service", po::value<string>()->default_value( "ConfigurableService" ),
310 "Name of the configurable base class for Service components" );
311
312 po::options_description cmdline_options;
313 cmdline_options.add( generic ).add( config );
314
315 po::options_description config_file_options;
316 config_file_options.add( config );
317
318 po::options_description visible( "Allowed options" );
319 visible.add( generic ).add( config );
320
321 po::variables_map vm;
322
323 try {
324 po::store( po::command_line_parser( argc, argv ).options( cmdline_options ).run(), vm );
325
326 po::notify( vm );
327
328 // try to read configuration from the optionally given configuration file
329 if ( vm.contains( "input-cfg" ) ) {
330 string cfgFileName = vm["input-cfg"].as<string>();
331 cfgFileName = fs::system_complete( fs::path( cfgFileName ) ).string();
332 std::ifstream ifs( cfgFileName );
333 po::store( parse_config_file( ifs, config_file_options ), vm );
334 }
335
336 po::notify( vm );
337 } catch ( po::error& err ) {
338 LOG_ERROR << "error detected while parsing command options: " << err.what();
339 return EXIT_FAILURE;
340 }
341
342 //--- Process command options -----------------------------------------------
343 if ( vm.contains( "help" ) ) {
344 cout << visible << endl;
345 return EXIT_FAILURE;
346 }
347
348 if ( vm.contains( "no-init" ) ) { cout << "WARNING: option --no-init is deprecated as it is not needed anymore.\n"; }
349
350 if ( vm.contains( "package-name" ) ) {
351 pkgName = vm["package-name"].as<string>();
352 } else {
353 LOG_ERROR << "'package-name' required";
354 cout << visible << endl;
355 return EXIT_FAILURE;
356 }
357
358 if ( vm.contains( "user-module" ) ) {
359 userModule = vm["user-module"].as<string>();
360 LOG_INFO << "INFO: will import user module " << userModule;
361 }
362
363 if ( vm.contains( "input-libraries" ) ) {
364 // re-shape the input arguments:
365 // - removes spurious spaces,
366 // - split into tokens.
367 std::string tmp = vm["input-libraries"].as<std::string>();
368 boost::trim( tmp );
369 boost::split( libs, tmp, boost::is_any_of( " " ), boost::token_compress_on );
370 } else {
371 LOG_ERROR << "input component library(ies) required";
372 cout << visible << endl;
373 return EXIT_FAILURE;
374 }
375
376 if ( vm.contains( "output-dir" ) ) { out = fs::system_complete( fs::path( vm["output-dir"].as<string>() ) ); }
377
378 if ( vm.contains( "debug-level" ) ) { Gaudi::PluginService::SetDebug( vm["debug-level"].as<int>() ); }
379
380 if ( vm.contains( "load-library" ) ) {
381 for ( const auto& lLib : vm["load-library"].as<Strings_t>() ) {
382 // load done through Gaudi helper class
383 System::ImageHandle tmp; // we ignore the library handle
384 unsigned long err = System::loadDynamicLib( lLib, &tmp );
385 if ( err != 1 ) LOG_WARNING << "failed to load: " << lLib;
386 }
387 }
388
389 std::set<conf_t> confTypes;
390 if ( vm.contains( "type" ) ) {
391 for ( const std::string& type : boost::tokenizer{ vm["type"].as<std::string>(), boost::char_separator{ "," } } ) {
392 if ( type == "conf" ) {
393 confTypes.insert( conf_t::CONF );
394 } else if ( type == "conf2" ) {
395 confTypes.insert( conf_t::CONF2 );
396 } else {
397 LOG_ERROR << "unknown configurable type: " << type;
398 cout << visible << endl;
399 return EXIT_FAILURE;
400 }
401 }
402 }
403
404 if ( !fs::exists( out ) ) {
405 try {
406 fs::create_directory( out );
407 } catch ( fs::filesystem_error& err ) {
408 LOG_ERROR << "error creating directory: " << err.what();
409 return EXIT_FAILURE;
410 }
411 }
412
413 {
414 std::ostringstream msg;
415 msg << ":::::: libraries : [ ";
416 std::copy( libs.begin(), libs.end(), std::ostream_iterator<std::string>( msg, " " ) );
417 msg << "] ::::::";
418 LOG_INFO << msg.str();
419 }
420
421 configGenerator py( pkgName, out.string() );
422 py.setConfigurableModule( vm["configurable-module"].as<string>() );
423 py.setConfigurableTypes( confTypes );
424 py.setConfigurableDefaultName( vm["configurable-default-name"].as<string>() );
425 py.setConfigurableAlgorithm( vm["configurable-algorithm"].as<string>() );
426 py.setConfigurableAlgTool( vm["configurable-algtool"].as<string>() );
427 py.setConfigurableAuditor( vm["configurable-auditor"].as<string>() );
428 py.setConfigurableService( vm["configurable-service"].as<string>() );
429
430 int sc = EXIT_FAILURE;
431 try {
432 sc = py.genConfig( libs, userModule );
433 } catch ( exception& e ) {
434 cout << "ERROR: Could not generate Configurable(s) !\n"
435 << "ERROR: Got exception: " << e.what() << endl;
436 return EXIT_FAILURE;
437 }
438
439 {
440 std::ostringstream msg;
441 msg << ":::::: libraries : [ ";
442 std::copy( libs.begin(), libs.end(), std::ostream_iterator<std::string>( msg, " " ) );
443 msg << "] :::::: [DONE]";
444 LOG_INFO << msg.str();
445 }
446 return sc;
447}
448
449//-----------------------------------------------------------------------------
450int configGenerator::genConfig( const Strings_t& libs, const string& userModule )
451//-----------------------------------------------------------------------------
452{
453 const auto endLib = libs.end();
454
455 static const std::string gaudiSvc = "GaudiCoreSvc";
456 const bool isGaudiSvc =
457 std::find_if( libs.begin(), endLib, []( const auto& s ) {
458 return s.find( gaudiSvc ) != std::string::npos; // libs can be <name> or path/to/lib<name>.so
459 } ) != endLib;
460
461 //--- Instantiate ApplicationMgr --------------------------------------------
462 if ( !isGaudiSvc && createAppMgr() ) {
463 cout << "ERROR: ApplicationMgr can not be created. Check environment" << endl;
464 return EXIT_FAILURE;
465 }
466
467 //--- Iterate over component factories --------------------------------------
468 using Gaudi::PluginService::Details::Registry;
469 const Registry& registry = Registry::instance();
470
471 auto bkgNames = registry.loadedFactoryNames();
472
473 ISvcLocator* svcLoc = Gaudi::svcLocator();
474 IInterface* dummySvc = new Service( "DummySvc", svcLoc );
475 dummySvc->addRef();
476
477 bool allGood = true;
478
479 // iterate over all the requested libraries
480 for ( const auto& iLib : libs ) {
481 std::string lib = fs::path( iLib ).stem().string();
482 if ( lib.compare( 0, 3, "lib" ) == 0 ) {
483 lib = lib.substr( 3 ); // For *NIX remove "lib"
484 }
485 LOG_INFO << ":::: processing library: " << iLib << "...";
486
487 // reset state
488 m_importGaudiHandles = false;
489 m_importDataHandles = false;
490 m_pyBuf.str( "" );
491 m_dbBuf.str( "" );
492 m_db2Buf.str( "" );
493
494 //--- Load component library ----------------------------------------------
495 if ( !registry.loadPluginLibrary( iLib ) ) {
497 allGood = false;
498 continue;
499 }
500
501 const auto& factories = registry.factories();
502 for ( const auto& factoryName : registry.loadedFactoryNames() ) {
503 if ( bkgNames.find( factoryName ) != bkgNames.end() ) {
504 if ( Gaudi::PluginService::Details::logger().level() <= 1 ) {
505 LOG_INFO << "\t==> skipping [" << factoryName << "]...";
506 }
507 continue;
508 }
509 auto entry = factories.find( factoryName );
510 if ( entry == end( factories ) ) {
511 LOG_ERROR << "inconsistency in component factories list: I cannot find anymore " << factoryName;
512 continue;
513 }
514 const auto& info = entry->second;
515 if ( !info.is_set() ) continue;
516
517 // do not generate configurables for the Reflex-compatible aliases
518 if ( !info.getprop( "ReflexName" ).empty() ) continue;
519
520 // Atlas contributed code (patch #1247)
521 // Skip the generation of configurables if the component does not come
522 // from the same library we are processing (i.e. we found a symbol that
523 // is coming from a library loaded by the linker).
524 if ( libNativeName( lib ) != info.library ) {
525 LOG_WARNING << "library [" << lib << "] exposes factory [" << factoryName << "] which is declared in ["
526 << info.library << "] !!";
527 continue;
528 }
529
530 component_t type = component_t::Unknown;
531 {
532 const auto ft = allowedFactories.find( info.factory.type().name() );
533 if ( ft != allowedFactories.end() ) {
534 type = ft->second;
535 } else if ( factoryName == "ApplicationMgr" ) {
536 type = component_t::ApplicationMgr;
537 } else
538 continue;
539 }
540
541 // handle possible problems with templated components
542 std::string name = boost::trim_copy( factoryName );
543
544 const auto className = info.getprop( "ClassName" );
545 LOG_INFO << " - component: " << className << " (" << ( className != name ? ( name + ": " ) : std::string() )
546 << type << ")";
547
548 string cname = "DefaultName";
550 try {
551 switch ( type ) {
552 case component_t::Algorithm:
553 prop = SmartIF<IAlgorithm>( Gaudi::Algorithm::Factory::create( factoryName, cname, svcLoc ).release() );
554 break;
555 case component_t::Service:
556 prop = SmartIF<IService>( Service::Factory::create( factoryName, cname, svcLoc ).release() );
557 break;
558 case component_t::AlgTool:
559 prop =
560 SmartIF<IAlgTool>( AlgTool::Factory::create( factoryName, cname, toString( type ), dummySvc ).release() );
561 // FIXME: AlgTool base class increase artificially by 1 the refcount.
562 prop->release();
563 break;
564 case component_t::Auditor:
565 prop = SmartIF<Gaudi::IAuditor>( Gaudi::Auditor::Factory::create( factoryName, cname, svcLoc ).release() );
566 break;
567 case component_t::ApplicationMgr:
568 prop = SmartIF<ISvcLocator>( svcLoc );
569 break;
570 default:
571 continue; // unknown
572 }
573 } catch ( exception& e ) {
574 LOG_ERROR << "Error instantiating " << name << " from " << iLib;
575 LOG_ERROR << "Got exception: " << e.what();
576 allGood = false;
577 continue;
578 } catch ( ... ) {
579 LOG_ERROR << "Error instantiating " << name << " from " << iLib;
580 allGood = false;
581 continue;
582 }
583 if ( prop ) {
584 if ( m_confTypes.contains( conf_t::CONF ) && !genComponent( lib, name, type, prop->getProperties(), info ) ) {
585 allGood = false;
586 }
587 if ( m_confTypes.contains( conf_t::CONF2 ) &&
588 !genComponent2( name, type, prop->getProperties(), prop->getInterfaceNames(), info ) ) {
589 allGood = false;
590 }
591 prop.reset();
592 } else {
593 LOG_ERROR << "could not cast IInterface* object to an IProperty* !";
594 LOG_ERROR << "NO Configurable will be generated for [" << name << "] !";
595 allGood = false;
596 }
597 } //> end loop over factories
598
602 if ( m_confTypes.contains( conf_t::CONF ) ) {
603 const std::string pyName = ( fs::path( m_outputDirName ) / fs::path( lib + "Conf.py" ) ).string();
604 const std::string dbName = ( fs::path( m_outputDirName ) / fs::path( lib + ".confdb" ) ).string();
605
606 std::fstream py( pyName, std::ios_base::out | std::ios_base::trunc );
607 std::fstream db( dbName, std::ios_base::out | std::ios_base::trunc );
608
609 genHeader( py, db );
610 if ( !userModule.empty() ) py << "from " << userModule << " import *" << endl;
611 genBody( py, db );
612 genTrailer( py, db );
613 }
614 if ( m_confTypes.contains( conf_t::CONF2 ) ) {
615 const std::string db2Name = ( fs::path( m_outputDirName ) / fs::path( lib + ".confdb2_part" ) ).string();
616 std::fstream db2( db2Name, std::ios_base::out | std::ios_base::trunc );
617 db2 << "{\n" << m_db2Buf.str() << "}\n";
618 }
619
620 } //> end loop over libraries
621
622 dummySvc->release();
623 dummySvc = 0;
624
625 return allGood ? EXIT_SUCCESS : EXIT_FAILURE;
626}
627
628void configGenerator::genImport( std::ostream& s, std::string_view frmt, std::string indent = "" ) {
629
630 std::string::size_type pos = 0, nxtpos = 0;
631 std::string mod;
632
633 while ( std::string::npos != pos ) {
634 // find end of module name
635 nxtpos = m_configurable[component_t::Module].find_first_of( ',', pos );
636
637 // Prepare import string
638 mod = m_configurable[component_t::Module].substr( pos, nxtpos - pos );
639 std::ostringstream import;
640 import << fmt::format( fmt::runtime( frmt ), mod );
641
642 // append a normal import or a try/except enclosed one depending
643 // on availability of a fall-back module (next in the list)
644 if ( std::string::npos == nxtpos ) {
645 // last possible module
646 s << indent << import.str() << "\n" << flush;
647 pos = std::string::npos;
648 } else {
649 // we have a fallback for this
650 s << indent << "try:\n" << indent << py_tab << import.str() << "\n" << indent << "except ImportError:\n" << flush;
651 pos = nxtpos + 1;
652 }
653 // increase indentation level for next iteration
654 indent += py_tab;
655 }
656}
657
658//-----------------------------------------------------------------------------
659void configGenerator::genHeader( std::ostream& py, std::ostream& db )
660//-----------------------------------------------------------------------------
661{
662 // python file part
663 std::string now = Gaudi::Time::current().format( true );
664 py << "#" << now //<< "\n"
665 << "\"\"\"Automatically generated. DO NOT EDIT please\"\"\"\n";
666
667 if ( m_importGaudiHandles ) { py << "from GaudiKernel.GaudiHandles import *\n"; }
668
669 if ( m_importDataHandles ) { py << "from GaudiKernel.DataHandle import DataHandle\n"; }
670
671 genImport( py, "from {}.Configurable import *" );
672
673 // db file part
674 db << "## -*- ascii -*- \n"
675 << "# db file automatically generated by genconf on: " << now << "\n"
676 << flush;
677}
678//-----------------------------------------------------------------------------
679void configGenerator::genTrailer( std::ostream& /*py*/, std::ostream& db )
680//-----------------------------------------------------------------------------
681{
682 // db file part
683 db << "## " << m_pkgName << "\n" << std::flush;
684}
685
686//-----------------------------------------------------------------------------
687bool configGenerator::genComponent( const std::string& libName, const std::string& componentName,
688 component_t componentType, const vector<PropertyBase*>& properties,
689 const Gaudi::PluginService::Details::Registry::FactoryInfo& info )
690//-----------------------------------------------------------------------------
691{
692 auto cname = pythonizeName( componentName );
693 const auto decl_loc = info.getprop( "declaration_location" );
694
695 std::vector<std::pair<std::string, std::string>> propDoc;
696 propDoc.reserve( properties.size() );
697
698 m_pyBuf << "\nclass " << cname << "( " << m_configurable[componentType] << " ) :\n";
699 m_pyBuf << " __slots__ = { \n";
700 for ( const auto& prop : properties ) {
701 const string& pname = prop->name();
702 // Validate property name (it must be a valid Python identifier)
703 if ( !boost::regex_match( pname, pythonIdentifier ) ) {
704 LOG_ERROR << "invalid property name \"" << pname << "\" in component " << cname << " (invalid Python identifier)"
705 << std::endl;
706 // try to make the buffer at least more or less valid python code.
707 m_pyBuf << " #ERROR-invalid identifier '" << pname << "'\n"
708 << " }\n";
709 return false;
710 }
711
712 string pvalue, ptype;
713 pythonizeValue( prop, pvalue, ptype );
714 m_pyBuf << " '" << pname << "' : " << pvalue << ",\n";
715
716 if ( prop->documentation() != "none" ) {
717 propDoc.emplace_back( pname, prop->documentation() + " [" + prop->ownerTypeName() + "]" );
718 }
719 }
720 m_pyBuf << " }\n";
721 m_pyBuf << " _propertyDocDct = { \n";
722 for ( const auto& prop : propDoc ) {
723 m_pyBuf << std::setw( 5 ) << "'" << prop.first << "' : "
724 << "\"\"\" " << prop.second << " \"\"\",\n";
725 }
726 m_pyBuf << " }\n";
727
728 if ( !decl_loc.empty() ) { m_pyBuf << " __declaration_location__ = '" << decl_loc << "'\n"; }
729 m_pyBuf << " def __init__(self, name = " << m_configurable[component_t::DefaultName] << ", **kwargs):\n"
730 << " super(" << cname << ", self).__init__(name)\n"
731 << " for n,v in kwargs.items():\n"
732 << " setattr(self, n, v)\n"
733 << " def getDlls( self ):\n"
734 << " return '" << libName << "'\n"
735 << " def getType( self ):\n"
736 << " return '" << componentName << "'\n"
737 << " pass # class " << cname << "\n"
738 << flush;
739
740 // name of the auto-generated module
741 const string pyName = ( fs::path( m_outputDirName ) / fs::path( libName + "Conf.py" ) ).string();
742 const string modName = fs::path( pyName ).filename().stem().string();
743
744 // now the db part
745 m_dbBuf << m_pkgName << "." << modName << " " << libName << " " << cname << "\n" << flush;
746
747 return true;
748}
749
750//-----------------------------------------------------------------------------
751bool configGenerator::genComponent2( const std::string& componentName, component_t componentType,
752 const vector<PropertyBase*>& properties, const vector<std::string>& interfaces,
753 const Gaudi::PluginService::Details::Registry::FactoryInfo& info )
754//-----------------------------------------------------------------------------
755{
756 m_db2Buf << " '" << componentName << "': {\n";
757 m_db2Buf << " '__component_type__': '";
758 switch ( componentType ) {
759 case component_t::Algorithm:
760 m_db2Buf << "Algorithm";
761 break;
762 case component_t::AlgTool:
763 m_db2Buf << "AlgTool";
764 break;
765 case component_t::ApplicationMgr: // FALLTROUGH
766 case component_t::Service:
767 m_db2Buf << "Service";
768 break;
769 case component_t::Auditor:
770 m_db2Buf << "Auditor";
771 break;
772 default:
773 m_db2Buf << "Unknown";
774 }
775
776 const auto decl_loc = info.getprop( "declaration_location" );
777 if ( !decl_loc.empty() ) { m_db2Buf << "',\n '__declaration_location__': '" << decl_loc; }
778
779 m_db2Buf << "',\n '__interfaces__': (";
780 for ( const auto& intf : std::set<std::string>{ begin( interfaces ), end( interfaces ) } ) {
781 if ( ignored_interfaces.find( intf ) == end( ignored_interfaces ) ) { m_db2Buf << '\'' << intf << "', "; }
782 }
783 m_db2Buf << "),\n 'properties': {\n";
784
785 bool success = true;
786 for ( const auto& prop : properties ) {
787 const string& pname = prop->name();
788 // Validate property name (it must be a valid Python identifier)
789 if ( !boost::regex_match( pname, pythonIdentifier ) ) {
790 LOG_ERROR << "invalid property name \"" << pname << "\" in component " << componentName
791 << " (invalid Python identifier)" << std::endl;
792 m_db2Buf << " #ERROR-invalid identifier '" << pname << "'\n";
793 success = false;
794 break;
795 }
796
797 string pvalue, ptype;
798 pythonizeValue( prop, pvalue, ptype );
799
800 m_db2Buf << " '" << pname << "': ('" << ptype << "', " << pvalue << ", '''" << prop->documentation()
801 << " [" << prop->ownerTypeName() << "]'''";
802 auto sem = prop->semantics();
803 if ( !sem.empty() ) { m_db2Buf << ", '" << sem << '\''; }
804 m_db2Buf << "),\n";
805 }
806
807 m_db2Buf << " },\n },\n";
808
809 return success;
810}
811
812//-----------------------------------------------------------------------------
813void configGenerator::pythonizeValue( const PropertyBase* p, string& pvalue, string& ptype )
814//-----------------------------------------------------------------------------
815{
816 const std::string cvalue = p->toString();
817 const std::type_index ti = std::type_index( *p->type_info() );
818 ptype = System::typeinfoName( *p->type_info() );
819
820 if ( ti == typeIndex<bool>() ) {
821 pvalue = ( cvalue == "0" || cvalue == "False" || cvalue == "false" ) ? "False" : "True";
822 } else if ( ti == typeIndex<char>() || ti == typeIndex<signed char>() || ti == typeIndex<unsigned char>() ||
823 ti == typeIndex<short>() || ti == typeIndex<unsigned short>() || ti == typeIndex<int>() ||
824 ti == typeIndex<unsigned int>() || ti == typeIndex<long>() || ti == typeIndex<unsigned long>() ||
825 ti == typeIndex<long long>() || ti == typeIndex<unsigned long long>() ) {
826 pvalue = cvalue;
827 } else if ( ti == typeIndex<float>() || ti == typeIndex<double>() || ti == typeIndex<long double>() ) {
828 // forces python to handle this as a float: put a dot in there...
829 pvalue = boost::to_lower_copy( cvalue );
830 if ( std::string::npos != pvalue.find( "nan" ) ) {
831 pvalue = "float('nan')";
832 } else if ( std::string::npos == pvalue.find( "." ) && std::string::npos == pvalue.find( "e" ) ) {
833 pvalue = cvalue + ".0";
834 }
835 } else if ( ti == typeIndex<string>() ) {
836 pvalue = quote( cvalue );
837 } else if ( ti == typeIndex<GaudiHandleBase>() ) {
838 const GaudiHandleProperty& hdl = dynamic_cast<const GaudiHandleProperty&>( *p );
839 const GaudiHandleBase& base = hdl.value();
840
841 pvalue = base.pythonRepr();
842 ptype = base.pythonPropertyClassName();
844 } else if ( ti == typeIndex<GaudiHandleArrayBase>() ) {
845 const GaudiHandleArrayProperty& hdl = dynamic_cast<const GaudiHandleArrayProperty&>( *p );
846 const GaudiHandleArrayBase& base = hdl.value();
847
848 pvalue = base.pythonRepr();
849 ptype = base.pythonPropertyClassName();
851 } else if ( auto hdl = dynamic_cast<const DataHandleProperty*>( p ); hdl ) {
852 // dynamic_cast to support also classes derived from DataHandleProperty
853 const Gaudi::DataHandle& base = hdl->value();
854
855 pvalue = base.pythonRepr();
856 m_importDataHandles = true;
857 } else {
858 std::ostringstream v_str;
859 v_str.setf( std::ios::showpoint ); // to correctly display floats
860 p->toStream( v_str );
861 pvalue = v_str.str();
862 }
863}
864
865//-----------------------------------------------------------------------------
867//-----------------------------------------------------------------------------
868{
870 SmartIF<IAppMgrUI> appUI( iface );
871 auto propMgr = appUI.as<IProperty>();
872 if ( !propMgr || !appUI ) return EXIT_FAILURE;
873
874 propMgr->setProperty( "JobOptionsType", "NONE" ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ ); // No job
875 // options
876 propMgr->setProperty( "AppName", "" ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ ); // No initial printout
877 // message
878 propMgr->setProperty( "OutputLevel", 7 ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ ); // No other printout
879 // messages
880 appUI->configure().ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
881 auto msgSvc = SmartIF<IMessageSvc>{ iface }.as<IProperty>();
882 msgSvc->setPropertyRepr( "setWarning", "['DefaultName', 'PropertyHolder']" )
883 .ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
884 msgSvc->setProperty( "Format", "%T %0W%M" ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
885 return EXIT_SUCCESS;
886}
std::ostream & operator<<(std::ostream &s, AlgsExecutionStates::State x)
Streaming of State values.
int main()
Base class from which all the concrete tool classes should be derived.
Definition AlgTool.h:55
Alias for backward compatibility.
Definition Algorithm.h:58
The Application Manager class.
Converter base class.
Definition Converter.h:33
DataHandleProperty.h GaudiKernel/DataHandleProperty.h.
A DataObject is the base class of any identifiable object on any data store.
Definition DataObject.h:37
PropertyBase base class allowing PropertyBase* collections to be "homogeneous".
const std::type_info * type_info() const
property type-info
virtual std::string toString() const =0
value -> string
virtual void toStream(std::ostream &out) const =0
value -> stream
Base class of array's of various gaudihandles.
const GaudiHandleArrayBase & value() const
Definition Property.h:684
Base class to handles to be used in lieu of naked pointers to various Gaudi components.
const GaudiHandleBase & value() const
Definition Property.h:647
The data converters are responsible to translate data from one representation into another.
Definition IConverter.h:65
Definition of the basic interface.
Definition IInterface.h:225
virtual unsigned long addRef() const =0
Increment the reference count of Interface instance.
virtual unsigned long release() const =0
Release Interface instance.
The IProperty is the basic interface for all components which have properties that can be set or get.
Definition IProperty.h:32
StatusCode setProperty(const Gaudi::Details::PropertyBase &p)
Set the property from a property.
Definition IProperty.h:38
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition ISvcLocator.h:42
Base class for all services.
Definition Service.h:39
Small smart pointer class with automatic reference counting for IInterface.
Definition SmartIF.h:28
SmartIF< IFace > as() const
return a new SmartIF instance to another interface
Definition SmartIF.h:110
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition SmartIF.h:88
const StatusCode & ignore() const
Allow discarding a StatusCode without warning.
Definition StatusCode.h:139
void pythonizeValue(const PropertyBase *prop, string &pvalue, string &ptype)
handle the "marshalling" of Properties
Definition genconf.cpp:813
void setConfigurableDefaultName(const std::string &defaultName)
customize the default name for configurable instances
Definition genconf.cpp:211
void setConfigurableTypes(const std::set< conf_t > &types)
customize configurable types to generate
Definition genconf.cpp:205
configGenerator(const string &pkgName, const string &outputDirName)
Definition genconf.cpp:195
string m_outputDirName
absolute path to the directory where genconf will store auto-generated files (Configurables and Confi...
Definition genconf.cpp:165
void genHeader(std::ostream &pyOut, std::ostream &dbOut)
Definition genconf.cpp:659
void setConfigurableAuditor(const std::string &cfgAuditor)
customize the configurable base class for AlgTool component
Definition genconf.cpp:224
void genImport(std::ostream &s, std::string_view frmt, std::string indent)
Definition genconf.cpp:628
std::set< conf_t > m_confTypes
Types of configurables to generate.
Definition genconf.cpp:176
stringstream m_pyBuf
buffer of auto-generated configurables
Definition genconf.cpp:168
bool m_importGaudiHandles
switch to decide if the generated configurables need to import GaudiHandles (ie: if one of the compon...
Definition genconf.cpp:172
void genTrailer(std::ostream &pyOut, std::ostream &dbOut)
Definition genconf.cpp:679
bool m_importDataHandles
Definition genconf.cpp:173
bool genComponent2(const std::string &componentName, component_t componentType, const vector< PropertyBase * > &properties, const std::vector< std::string > &interfaces, const Gaudi::PluginService::Details::Registry::FactoryInfo &info)
Definition genconf.cpp:751
stringstream m_dbBuf
buffer of generated configurables informations for the "Db" file The "Db" file is holding information...
Definition genconf.cpp:182
std::map< component_t, std::string > m_configurable
Configurable customization.
Definition genconf.cpp:192
int genConfig(const Strings_t &modules, const string &userModule)
main entry point of this class:
Definition genconf.cpp:450
void setConfigurableModule(const std::string &moduleName)
customize the Module name where configurable base classes are defined
Definition genconf.cpp:208
void genBody(std::ostream &pyOut, std::ostream &dbOut)
Definition genconf.cpp:243
stringstream m_db2Buf
buffer of generated GaudiConfig2 configurables
Definition genconf.cpp:185
void setConfigurableService(const std::string &cfgService)
customize the configurable base class for Service component
Definition genconf.cpp:227
void setConfigurableAlgorithm(const std::string &cfgAlgorithm)
customize the configurable base class for Algorithm component
Definition genconf.cpp:216
bool genComponent(const std::string &libName, const std::string &componentName, component_t componentType, const vector< PropertyBase * > &properties, const Gaudi::PluginService::Details::Registry::FactoryInfo &info)
Definition genconf.cpp:687
void setConfigurableAlgTool(const std::string &cfgAlgTool)
customize the configurable base class for AlgTool component
Definition genconf.cpp:221
string m_pkgName
name of the package we are processing
Definition genconf.cpp:161
std::vector< std::string > Strings_t
Definition genconf.cpp:75
void init_logging(boost::log::trivial::severity_level level)
Definition genconf.cpp:255
std::vector< fs::path > LibPathNames_t
Definition genconf.cpp:76
int createAppMgr()
Definition genconf.cpp:866
#define LOG_ERROR
Definition genconf.cpp:65
#define LOG_WARNING
Definition genconf.cpp:66
#define LOG_INFO
Definition genconf.cpp:67
GAUDI_API ISvcLocator * svcLocator()
GAUDI_API IAppMgrUI * createApplicationMgr()
GAUDI_API bool isEnvSet(const char *var)
Check if an environment variable is set or not.
Definition System.cpp:349
GAUDI_API unsigned long loadDynamicLib(const std::string &name, ImageHandle *handle)
Load dynamic link library.
Definition System.cpp:115
GAUDI_API const std::string getLastErrorString()
Get last system error as string.
Definition System.cpp:234
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition System.cpp:260
void * ImageHandle
Definition of an image handle.
Definition ModuleInfo.h:25
GAUDI_API std::string getEnv(const char *var)
get a particular environment variable (returning "UNKNOWN" if not set)
Definition System.cpp:329
STL namespace.