VFSSvc.h
Go to the documentation of this file.
1 #ifndef GaudiSvc_VFSSvc_H
2 #define GaudiSvc_VFSSvc_H 1
3 
4 // Include files
5 #include "GaudiKernel/Service.h"
7 #include "GaudiKernel/HashMap.h"
8 
9 #include <list>
10 
11 // Forward declarations
12 class IToolSvc;
13 class IAlgTool;
14 
26 class VFSSvc: public extends<Service,
27  IFileAccess> {
28 public:
30  StatusCode initialize() override;
32  StatusCode finalize() override;
33 
35  std::unique_ptr<std::istream> open(const std::string &url) override;
36 
38  const std::vector<std::string> &protocols() const override;
39 
41  VFSSvc(const std::string& name, ISvcLocator* svcloc);
42 
43  ~VFSSvc() override = default;
44 
45 private:
46 
48  std::vector<std::string> m_urlHandlersNames = { { "FileReadTool" } };
49 
52 
55 
58 
61 
64 
65 };
66 
67 #endif
The interface implemented by the IToolSvc base class.
Definition: IToolSvc.h:18
SmartIF< IToolSvc > m_toolSvc
Handle to the tool service.
Definition: VFSSvc.h:60
std::unique_ptr< std::istream > open(const std::string &url) override
Definition: VFSSvc.cpp:78
std::vector< std::string > m_protocols
Protocols registered.
Definition: VFSSvc.h:51
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
StatusCode initialize() override
Initialize Service.
Definition: VFSSvc.cpp:20
std::string m_fallBackProtocol
Protocol to use in case there is not a specific tool to handle the URL.
Definition: VFSSvc.h:54
GaudiUtils::HashMap< std::string, IFileAccess * > m_urlHandlers
Map of the tools handling the known protocols.
Definition: VFSSvc.h:57
STL class.
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:319
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
VFSSvc(const std::string &name, ISvcLocator *svcloc)
Standard constructor.
Definition: VFSSvc.cpp:10
~VFSSvc() override=default
Destructor.
STL class.
StatusCode finalize() override
Finalize Service.
Definition: VFSSvc.cpp:63
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
std::vector< IAlgTool * > m_acquiredTools
List of acquired tools (needed to release them).
Definition: VFSSvc.h:63
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23
Simple service that allows to read files independently from the storage.
Definition: VFSSvc.h:26
const std::vector< std::string > & protocols() const override
Definition: VFSSvc.cpp:106
std::vector< std::string > m_urlHandlersNames
Names of the handlers to use.
Definition: VFSSvc.h:48