The Gaudi Framework  v32r2 (46d42edc)
FixTESPathDetails Namespace Reference

Functions

std::unique_ptr< IDataHandleVisitorfixDataHandlePath (std::string_view rit, std::string rootName, MsgStream *dbg)
 
std::string fullTESLocation (std::string_view location, std::string_view rit)
 

Function Documentation

◆ fixDataHandlePath()

std::unique_ptr< IDataHandleVisitor > FixTESPathDetails::fixDataHandlePath ( std::string_view  rit,
std::string  rootName,
MsgStream dbg 
)

Definition at line 67 of file FixTESPath.cpp.

67  {
68  if ( !rootName.empty() && '/' != rootName.back() ) rootName += "/";
69  return make_unique_DHHFixer( [rit, rootName = std::move( rootName ), dbg]( std::string const& location ) {
70  auto tokens = boost::tokenizer{location, boost::char_separator{":"}};
71  auto result =
72  std::accumulate( tokens.begin(), tokens.end(), std::string{}, [&]( std::string s, std::string_view tok ) {
73  std::string r = fullTESLocation( tok, rit );
74  // check whether we have an absolute path if yes use it - else prepend DataManager Root
75  if ( r[0] != '/' ) r = rootName + r;
76  return s.empty() ? r : s + ':' + r;
77  } );
78  if ( result != location && dbg ) ( *dbg ) << "Changing " << location << " to " << result << endmsg;
79  return result;
80  } );
81  }
T empty(T... args)
STL class.
std::string fullTESLocation(std::string_view location, std::string_view rit)
Definition: FixTESPath.cpp:46
T move(T... args)
T back(T... args)
string s
Definition: gaudirun.py:318
T accumulate(T... args)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192

◆ fullTESLocation()

std::string FixTESPathDetails::fullTESLocation ( std::string_view  location,
std::string_view  rit 
)

Definition at line 46 of file FixTESPath.cpp.

46  {
47  // The logic is:
48  // if no R.I.T., give back location
49  // if R.I.T., this is the mapping:
50  // (note that R.I.T. contains a trailing '/')
51  // location -> result
52  // -------------------------------------------------
53  // "" -> R.I.T.[:-1] ("rit")
54  // "/Event" -> R.I.T.[:-1] ("rit")
55  // "/Event/MyObj" -> R.I.T. + "MyObj" ("rit/MyObj")
56  // "MyObj" -> R.I.T. + "MyObj" ("rit/MyObj")
57  return rit.empty()
59  : location.empty() || ( location == "/Event" )
60  ? std::string{rit.substr( 0, rit.size() - 1 )}
61  : location.compare( 0, 7, "/Event/" ) == 0
62  ? std::string{rit}.append( location.substr( 7 ) )
63  : location.compare( 0, 1, "/" ) == 0 ? std::string{rit}.append( location.substr( 1 ) )
64  : std::string{rit}.append( location );
65  }
STL class.
T append(T... args)
T substr(T... args)