The Gaudi Framework  v30r3 (a5ef0a68)
VFSSvc.cpp
Go to the documentation of this file.
1 #include "VFSSvc.h"
2 
3 #include "GaudiKernel/IAlgTool.h"
4 #include "GaudiKernel/IToolSvc.h"
6 
8 
9 //------------------------------------------------------------------------------
10 StatusCode VFSSvc::initialize()
11 {
13  if ( sc.isFailure() ) return sc;
14 
15  m_toolSvc = serviceLocator()->service( "ToolSvc" );
16  if ( !m_toolSvc ) {
17  error() << "Cannot locate ToolSvc" << endmsg;
18  return StatusCode::FAILURE;
19  }
20 
21  IAlgTool* tool;
22  for ( const auto& i : m_urlHandlersNames ) {
23  // retrieve the tool and the pointer to the interface
24  sc = m_toolSvc->retrieve( i, IAlgTool::interfaceID(), tool, nullptr, true );
25  if ( sc.isFailure() ) {
26  error() << "Cannot get tool " << i << endmsg;
27  return sc;
28  }
29  m_acquiredTools.push_back( tool ); // this is one tool that we will have to release
30  auto hndlr = SmartIF<IFileAccess>( tool );
31  if ( !hndlr ) {
32  error() << i << " does not implement IFileAccess" << endmsg;
33  return StatusCode::FAILURE;
34  }
35  // We do not need to increase the reference count for the IFileAccess interface
36  // because we hold the tool by its IAlgTool interface.
37  // loop over the list of supported protocols and add them to the map (for quick access)
38  for ( const auto& prot : hndlr->protocols() ) m_urlHandlers[prot].emplace_back( hndlr.get() );
39  }
40 
41  // Now let's check if we can handle the fallback protocol
42  if ( m_urlHandlers.find( m_fallBackProtocol ) == m_urlHandlers.end() ) {
43  error() << "No handler specified for fallback protocol prefix " << m_fallBackProtocol.value() << endmsg;
44  return StatusCode::FAILURE;
45  }
46 
47  // Note: the list of handled protocols will be filled only if requested
48 
49  return sc;
50 }
51 //------------------------------------------------------------------------------
53 {
54  m_urlHandlers.clear(); // clear the map
56 
57  if ( m_toolSvc ) {
58  // release the acquired tools (from the last acquired one)
59  while ( !m_acquiredTools.empty() ) {
62  }
63  m_toolSvc.reset(); // release the tool service
64  }
65  return Service::finalize();
66 }
67 //------------------------------------------------------------------------------
69 {
70  // get the url prefix endpos
71  auto pos = url.find( "://" );
72 
73  if ( std::string::npos == pos ) {
74  // no url prefix, try fallback protocol
75  return VFSSvc::open( m_fallBackProtocol + "://" + url );
76  }
77 
78  const std::string url_prefix( url, 0, pos );
79  const auto handlers = m_urlHandlers.find( url_prefix );
80  if ( handlers == m_urlHandlers.end() ) {
81  // if we do not have a handler for the URL prefix,
82  // use the fall back one
83  return VFSSvc::open( m_fallBackProtocol + url.substr( pos ) );
84  }
85 
86  std::unique_ptr<std::istream> out; // this might help RVO
87  // try the hendlers for the protocol one after the other until one succeds
88  for ( auto hndlr : handlers->second ) {
89  out = hndlr->open( url );
90  if ( out ) break;
91  }
92  return out;
93 }
94 //------------------------------------------------------------------------------
95 namespace
96 {
99  constexpr struct select1st_t {
100  template <typename S, typename T>
101  const S& operator()( const std::pair<S, T>& x ) const
102  {
103  return x.first;
104  }
105  } select1st{};
106 }
107 
109 {
110  if ( m_protocols.empty() ) {
111  // prepare the list of handled protocols
113  std::back_inserter( const_cast<VFSSvc*>( this )->m_protocols ), select1st );
114  }
115  return m_protocols;
116 }
SmartIF< IToolSvc > m_toolSvc
Handle to the tool service.
Definition: VFSSvc.h:55
constexpr static const auto FAILURE
Definition: StatusCode.h:88
StatusCode initialize() override
Definition: Service.cpp:63
std::unique_ptr< std::istream > open(const std::string &url) override
Definition: VFSSvc.cpp:68
T empty(T...args)
std::vector< std::string > m_protocols
Protocols registered.
Definition: VFSSvc.h:49
StatusCode finalize() override
Definition: Service.cpp:173
const std::vector< std::string > & protocols() const override
Definition: VFSSvc.cpp:108
bool isFailure() const
Definition: StatusCode.h:139
STL class.
#define DECLARE_COMPONENT(type)
iterator end()
Definition: Map.h:134
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
iterator find(const key_type &key)
Definition: Map.h:151
T pop_back(T...args)
Gaudi::Property< std::string > m_fallBackProtocol
Definition: VFSSvc.h:45
T clear(T...args)
iterator begin()
Definition: Map.h:133
T find(T...args)
STL class.
virtual Out operator()(const vector_of_const_< In > &inputs) const =0
StatusCode finalize() override
Finalize Service.
Definition: VFSSvc.cpp:52
T back_inserter(T...args)
std::vector< IAlgTool * > m_acquiredTools
List of acquired tools (needed to release them).
Definition: VFSSvc.h:58
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23
T back(T...args)
T substr(T...args)
void clear()
Definition: Map.h:195
virtual StatusCode releaseTool(IAlgTool *tool)=0
Release the tool.
T transform(T...args)
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:92
Simple service that allows to read files independently from the storage.
Definition: VFSSvc.h:26
static const InterfaceID & interfaceID()
Return an instance of InterfaceID identifying the interface.
Definition: IInterface.h:287
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
GaudiUtils::HashMap< std::string, std::vector< IFileAccess * > > m_urlHandlers
Map of the tools handling the known protocols.
Definition: VFSSvc.h:52