284 ? boost::log::trivial::info
285 : boost::log::trivial::warning );
291 std::string userModule;
294 po::options_description
generic(
"Generic options" );
295 generic.add_options()(
"help,h",
"produce this help message" )(
296 "package-name,p", po::value<string>(),
"name of the package for which we create the configurables file" )(
297 "input-libraries,i", po::value<string>(),
"libraries to extract the component configurables from" )(
298 "input-cfg,c", po::value<string>(),
299 "path to the cfg file holding the description of the Configurable base "
300 "classes, the python module holding the Configurable definitions, etc..." )(
301 "output-dir,o", po::value<string>()->default_value(
"../genConfDir" ),
302 "output directory for genconf files." )(
"debug-level,d", po::value<int>()->default_value( 0 ),
"debug level" )(
303 "load-library,l", po::value<Strings_t>()->composing(),
"preloading library" )(
304 "user-module,m", po::value<string>(),
"user-defined module to be imported by the genConf-generated one" )(
305 "no-init",
"do not generate the (empty) __init__.py" )(
306 "type", po::value<string>()->default_value(
"conf,conf2" ),
"comma-separate types of configurables to generate" );
310 po::options_description
config(
"Configuration" );
311 config.add_options()(
"configurable-module", po::value<string>()->default_value(
"AthenaCommon" ),
312 "Name of the module holding the configurable classes" )(
313 "configurable-default-name", po::value<string>()->default_value(
"Configurable.DefaultName" ),
314 "Default name for the configurable instance" )(
"configurable-algorithm",
315 po::value<string>()->default_value(
"ConfigurableAlgorithm" ),
316 "Name of the configurable base class for Algorithm components" )(
317 "configurable-algtool", po::value<string>()->default_value(
"ConfigurableAlgTool" ),
318 "Name of the configurable base class for AlgTool components" )(
319 "configurable-auditor", po::value<string>()->default_value(
"ConfigurableAuditor" ),
320 "Name of the configurable base class for Auditor components" )(
321 "configurable-service", po::value<string>()->default_value(
"ConfigurableService" ),
322 "Name of the configurable base class for Service components" );
324 po::options_description cmdline_options;
325 cmdline_options.add(
generic ).add(
config );
327 po::options_description config_file_options;
328 config_file_options.add(
config );
330 po::options_description visible(
"Allowed options" );
331 visible.add(
generic ).add(
config );
333 po::variables_map vm;
336 po::store( po::command_line_parser(
argc,
argv ).
options( cmdline_options ).run(), vm );
341 if ( vm.contains(
"input-cfg" ) ) {
342 string cfgFileName = vm[
"input-cfg"].as<
string>();
343 cfgFileName = fs::system_complete(
fs::path( cfgFileName ) ).string();
344 std::ifstream ifs( cfgFileName );
345 po::store( parse_config_file( ifs, config_file_options ), vm );
349 }
catch ( po::error& err ) {
350 LOG_ERROR <<
"error detected while parsing command options: " << err.what();
355 if ( vm.contains(
"help" ) ) {
356 cout << visible << endl;
360 if ( vm.contains(
"package-name" ) ) {
361 pkgName = vm[
"package-name"].as<
string>();
364 cout << visible << endl;
368 if ( vm.contains(
"user-module" ) ) {
369 userModule = vm[
"user-module"].as<
string>();
370 LOG_INFO <<
"INFO: will import user module " << userModule;
373 if ( vm.contains(
"input-libraries" ) ) {
377 std::string tmp = vm[
"input-libraries"].as<std::string>();
379 boost::split( libs, tmp, boost::is_any_of(
" " ), boost::token_compress_on );
381 LOG_ERROR <<
"input component library(ies) required";
382 cout << visible << endl;
386 if ( vm.contains(
"output-dir" ) ) {
out = fs::system_complete(
fs::path( vm[
"output-dir"].as<string>() ) ); }
390 if ( vm.contains(
"load-library" ) ) {
391 for (
const auto& lLib : vm[
"load-library"].as<Strings_t>() ) {
395 if ( err != 1 )
LOG_WARNING <<
"failed to load: " << lLib;
399 std::set<conf_t> confTypes;
400 if ( vm.contains(
"type" ) ) {
401 for (
const std::string&
type : boost::tokenizer{ vm[
"type"].as<std::string>(), boost::char_separator{
"," } } ) {
402 if (
type ==
"conf" ) {
403 confTypes.insert( conf_t::CONF );
404 }
else if (
type ==
"conf2" ) {
405 confTypes.insert( conf_t::CONF2 );
408 cout << visible << endl;
414 if ( !fs::exists(
out ) ) {
416 fs::create_directory(
out );
417 }
catch ( fs::filesystem_error& err ) {
418 LOG_ERROR <<
"error creating directory: " << err.what();
424 std::ostringstream
msg;
425 msg <<
":::::: libraries : [ ";
426 std::copy( libs.begin(), libs.end(), std::ostream_iterator<std::string>(
msg,
" " ) );
432 py.setConfigurableModule( vm[
"configurable-module"].as<string>() );
433 py.setConfigurableTypes( confTypes );
434 py.setConfigurableDefaultName( vm[
"configurable-default-name"].as<string>() );
435 py.setConfigurableAlgorithm( vm[
"configurable-algorithm"].as<string>() );
436 py.setConfigurableAlgTool( vm[
"configurable-algtool"].as<string>() );
437 py.setConfigurableAuditor( vm[
"configurable-auditor"].as<string>() );
438 py.setConfigurableService( vm[
"configurable-service"].as<string>() );
440 int sc = EXIT_FAILURE;
442 sc = py.genConfig( libs, userModule );
443 }
catch ( exception& e ) {
444 cout <<
"ERROR: Could not generate Configurable(s) !\n"
445 <<
"ERROR: Got exception: " << e.what() << endl;
449 if ( EXIT_SUCCESS == sc && !vm.contains(
"no-init" ) ) {
452 initPy <<
"## Hook for " << pkgName <<
" genConf module\n" << flush;
456 std::ostringstream
msg;
457 msg <<
":::::: libraries : [ ";
458 std::copy( libs.begin(), libs.end(), std::ostream_iterator<std::string>(
msg,
" " ) );
459 msg <<
"] :::::: [DONE]";