Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Utils.cpp
Go to the documentation of this file.
1 // ===========================================================================
2 // Include files
3 // ===========================================================================
4 #include "Utils.h"
5 // ===========================================================================
6 // Boost
7 // ===========================================================================
8 #include <boost/algorithm/string.hpp>
9 #include <boost/regex.hpp>
10 // ===========================================================================
11 // Gaudi
12 // ===========================================================================
13 #include "GaudiKernel/System.h"
14 // ===========================================================================
15 
16 namespace gpu = Gaudi::Parsers::Utils;
17 
19  static const boost::regex expression( "\\$(([A-Za-z0-9_]+)|\\(([A-Za-z0-9_]+)\\))" );
20 
21  std::string result = input;
22  auto start = input.begin();
23  auto end = input.end();
24  boost::match_results<std::string::const_iterator> what;
25  boost::match_flag_type flags = boost::match_default;
26  while ( boost::regex_search( start, end, what, expression, flags ) ) {
27  std::string var{what[2].first, what[2].second};
28  if ( var.empty() ) var = std::string{what[3].first, what[3].second};
29  std::string env;
30  if ( System::getEnv( var, env ) ) {
31  boost::algorithm::replace_first( result, std::string{what[0].first, what[0].second}, env );
32  }
33  start = what[0].second;
34  // update flags:
35  flags |= boost::match_prev_avail;
36  flags |= boost::match_not_bob;
37  }
38  return result;
39 }
40 // ===========================================================================
GAUDI_API std::string getEnv(const char *var)
get a particular environment variable (returning "UNKNOWN" if not set)
Definition: System.cpp:380
T end(T...args)
std::string replaceEnvironments(const std::string &input)
Definition: Utils.cpp:18
STL class.
start
Definition: IOTest.py:97
T begin(T...args)