The Gaudi Framework  v29r0 (ff2e7097)
listcomponents.cpp
Go to the documentation of this file.
1 /*****************************************************************************\
2 * (c) Copyright 2013 CERN *
3 * *
4 * This software is distributed under the terms of the GNU General Public *
5 * Licence version 3 (GPL Version 3), copied verbatim in the file "LICENCE". *
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 
13 
14 #include <cstdlib>
15 #include <fstream>
16 #include <iostream>
17 #include <list>
18 #include <memory>
19 #include <set>
20 #include <string>
21 
22 #include <dlfcn.h>
23 #include <getopt.h>
24 
25 #include <Gaudi/PluginService.h>
26 
27 void help( std::string argv0 )
28 {
29  std::cout << "Usage: " << argv0 << " [option] library1 [library2 ...]\n"
30  "\n list the component factories present in the given libraries\n\n"
31  "Options:\n\n"
32  " -h, --help show this help message and exit\n"
33  " -o OUTPUT, --output OUTPUT\n"
34  " write the list of factories on the file OUTPUT, use - for\n"
35  " standard output (default)\n"
36  << std::endl;
37 }
38 
39 void usage( std::string argv0 )
40 {
41  std::cout << "Usage: " << argv0 << " [option] library1 [library2 ...]\n"
42  "Try `"
43  << argv0 << " -h' for more information.\n"
44  << std::endl;
45 }
46 
47 int main( int argc, char* argv[] )
48 {
51 
52  // cache to keep track of the loaded factories
54  // initialize the local cache
55  for ( const auto& elem : reg.loadedFactories() ) loaded.emplace( elem, "<preloaded>" );
56 
57  // Parse command line
58  std::list<char*> libs;
59  std::string output_opt( "-" );
60  {
61  std::string argv0( argv[0] );
62  {
63  auto i = argv0.rfind( '/' );
64  if ( i != std::string::npos ) argv0 = argv0.substr( i + 1 );
65  }
66 
67  int i = 1;
68  while ( i < argc ) {
69  const std::string arg( argv[i] );
70  if ( arg == "-o" || arg == "--output" ) {
71  if ( ++i < argc ) {
72  output_opt = argv[i];
73  } else {
74  std::cerr << "ERROR: missing argument for option " << arg << std::endl;
75  std::cerr << "See `" << argv0 << " -h' for more details." << std::endl;
76  return EXIT_FAILURE;
77  }
78  } else if ( arg == "-h" || arg == "--help" ) {
79  help( argv0 );
80  return EXIT_SUCCESS;
81  } else {
82  libs.push_back( argv[i] );
83  }
84  ++i;
85  }
86  if ( libs.empty() ) {
87  usage( argv0 );
88  return EXIT_FAILURE;
89  }
90  }
91 
92  // handle output option
94  if ( output_opt != "-" ) {
95  output_file.reset( new std::ofstream{output_opt} );
96  }
97  std::ostream& output = ( output_file ? *output_file : std::cout );
98 
99  // loop over the list of libraries passed on the command line
100  for ( char* lib : libs ) {
101  if ( dlopen( lib, RTLD_LAZY | RTLD_LOCAL ) ) {
102  for ( const auto& factory : reg.loadedFactories() ) {
103  auto f = loaded.find( factory );
104  if ( f == loaded.end() ) {
105  output << lib << ":" << factory << std::endl;
106  loaded.emplace( factory, lib );
107  } else
108  std::cerr << "WARNING: factory '" << factory << "' already found in " << f->second << std::endl;
109  }
110  } else {
111  std::cerr << "ERROR: failed to load " << lib << ": " << dlerror() << std::endl;
112  return EXIT_FAILURE;
113  }
114  }
115  return EXIT_SUCCESS;
116 }
T empty(T...args)
list argv
Definition: gaudirun.py:235
T rfind(T...args)
T endl(T...args)
void usage(std::string argv0)
T end(T...args)
STL class.
std::set< KeyType > loadedFactories() const
Return a list of all the known and loaded factories.
STL class.
int main(int argc, char *argv[])
T push_back(T...args)
STL class.
void help(std::string argv0)
T reset(T...args)
STL class.
T find(T...args)
static Registry & instance()
Retrieve the singleton instance of Registry.
T emplace(T...args)
In-memory database of the loaded factories.
T substr(T...args)