The Gaudi Framework  v31r0 (aeb156f0)
EventSelectorDataStream Class Reference

Definition of class EventSelectorDataStream. More...

#include <GaudiKernel/EventSelectorDataStream.h>

Inheritance diagram for EventSelectorDataStream:
Collaboration diagram for EventSelectorDataStream:

Public Types

typedef std::vector< Gaudi::Property< std::string > > Properties
 
- Public Types inherited from implements< IInterface >
using base_class = implements< Interfaces... >
 Typedef to this class. More...
 
using extend_interfaces_base = extend_interfaces< Interfaces... >
 Typedef to the base of this class. More...
 
using iids = typename extend_interfaces_base::ext_iids
 
- Public Types inherited from extend_interfaces< Interfaces... >
using ext_iids = typename Gaudi::interface_list_cat< typename Interfaces::ext_iids... >::type
 take union of the ext_iids of all Interfaces... More...
 

Public Member Functions

 EventSelectorDataStream (std::string nam, std::string def, ISvcLocator *svcloc)
 Standard Constructor. More...
 
virtual void setSelector (IEvtSelector *pSelector)
 Attach event selector object. More...
 
virtual StatusCode initialize ()
 Parse input criteria. More...
 
virtual StatusCode finalize ()
 Finalize stream and release resources. More...
 
Gaudi::Property< std::string > * property (const std::string &nam)
 Allow access to individual properties by name. More...
 
const Gaudi::Property< std::string > * property (const std::string &nam) const
 Allow access to individual properties by name (CONST) More...
 
const Propertiesproperties ()
 Access properties. More...
 
const std::stringname () const
 Retrieve stream name. More...
 
const std::stringcriteria () const
 Retrieve stream criteria. More...
 
const std::stringdbName () const
 Retrieve stream dbName. More...
 
const std::stringselectorType () const
 Retrieve event selector type. More...
 
const std::stringdefinition () const
 Retrieve definition string. More...
 
IEvtSelectorselector () const
 Retrieve event selector object. More...
 
bool isInitialized () const
 Check initialization status. More...
 
- Public Member Functions inherited from implements< IInterface >
void * i_cast (const InterfaceID &tid) const override
 Implementation of IInterface::i_cast. More...
 
StatusCode queryInterface (const InterfaceID &ti, void **pp) override
 Implementation of IInterface::queryInterface. More...
 
std::vector< std::stringgetInterfaceNames () const override
 Implementation of IInterface::getInterfaceNames. More...
 
 implements ()=default
 Default constructor. More...
 
 implements (const implements &)
 Copy constructor (zero the reference count) More...
 
implementsoperator= (const implements &)
 Assignment operator (do not touch the reference count). More...
 
unsigned long addRef () override
 Reference Interface instance. More...
 
unsigned long release () override
 Release Interface instance. More...
 
unsigned long refCount () const override
 Current reference count. More...
 

Protected Member Functions

virtual ~EventSelectorDataStream ()=default
 Standard Destructor. More...
 

Protected Attributes

std::string m_name
 Name. More...
 
std::string m_definition
 Definition string. More...
 
std::string m_criteria
 Criteria. More...
 
std::string m_dbName
 String with name of the db as parsed. More...
 
std::string m_selectorType
 Event selector type. More...
 
SmartIF< IEvtSelectorm_pSelector
 Pointer to valid selector. More...
 
ISvcLocatorm_pSvcLocator
 Reference to service locator. More...
 
Properties m_properties
 Properties vector. More...
 
bool m_initialized = false
 Initialization state. More...
 
- Protected Attributes inherited from implements< IInterface >
std::atomic_ulong m_refCount
 Reference counter. More...
 

Friends

MsgStreamoperator<< (MsgStream &s, const EventSelectorDataStream &obj)
 Output friend for MsgStream. More...
 
std::ostreamoperator<< (std::ostream &s, const EventSelectorDataStream &obj)
 Output friend for standard I/O. More...
 

Detailed Description

Definition of class EventSelectorDataStream.

Small class which eases the management of multiple input streams for the event selector.

History: +------—+-------------------------------------------—+---------—+ | Date | Comment | Who | +------—+-------------------------------------------—+---------—+ | 3/10/00 | Initial version | M.Frank | +------—+-------------------------------------------—+---------—+ | 4/09/09 | Added m_dbName and dbName() | R. Lambert | +------—+-------------------------------------------—+---------—+

Author
Markus Frank
R. Lambert
Version
1.0

Definition at line 45 of file EventSelectorDataStream.h.

Member Typedef Documentation

Constructor & Destructor Documentation

virtual EventSelectorDataStream::~EventSelectorDataStream ( )
protectedvirtualdefault

Standard Destructor.

EventSelectorDataStream::EventSelectorDataStream ( std::string  nam,
std::string  def,
ISvcLocator svcloc 
)

Standard Constructor.

Definition at line 35 of file EventSelectorDataStream.cpp.

36  : m_name{std::move( nam )}, m_definition{std::move( def )}, m_pSvcLocator( svcloc ) {}
ISvcLocator * m_pSvcLocator
Reference to service locator.
T move(T...args)
std::string m_definition
Definition string.

Member Function Documentation

const std::string& EventSelectorDataStream::criteria ( ) const
inline

Retrieve stream criteria.

Definition at line 94 of file EventSelectorDataStream.h.

94 { return m_criteria; }
std::string m_criteria
Criteria.
const std::string& EventSelectorDataStream::dbName ( ) const
inline

Retrieve stream dbName.

Definition at line 96 of file EventSelectorDataStream.h.

96 { return m_dbName; }
std::string m_dbName
String with name of the db as parsed.
const std::string& EventSelectorDataStream::definition ( ) const
inline

Retrieve definition string.

Definition at line 100 of file EventSelectorDataStream.h.

100 { return m_definition; }
std::string m_definition
Definition string.
StatusCode EventSelectorDataStream::finalize ( )
virtual

Finalize stream and release resources.

Definition at line 179 of file EventSelectorDataStream.cpp.

179  {
180  setSelector( nullptr );
182  m_initialized = false;
183  return StatusCode::SUCCESS;
184 }
bool m_initialized
Initialization state.
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
T clear(T...args)
Properties m_properties
Properties vector.
virtual void setSelector(IEvtSelector *pSelector)
Attach event selector object.
StatusCode EventSelectorDataStream::initialize ( )
virtual

Parse input criteria.

Definition at line 56 of file EventSelectorDataStream.cpp.

56  {
57  bool isData = true;
58  std::string auth, dbtyp, collsvc, item, crit, sel, svc, stmt;
59  std::string cnt = "/Event";
60  std::string db = "<Unknown>";
61 
62  auto eds = m_pSvcLocator->service<IDataManagerSvc>( "EventDataSvc" );
63  if ( !eds ) {
64  std::cout << "ERROR: Unable to localize interface IDataManagerSvc from service EventDataSvc" << std::endl;
65  return StatusCode::FAILURE;
66  } else {
67  cnt = eds->rootName();
68  }
71 
72  using Parser = Gaudi::Utils::AttribStringParser;
73  for ( auto attrib : Parser( m_definition ) ) {
74  long hash = -1;
75  switch ( ::toupper( attrib.tag[0] ) ) {
76  case 'A':
77  auth = std::move( attrib.value );
78  break;
79  case 'C':
80  svc = "EvtTupleSvc";
81  isData = false;
82  /* FALLTHROUGH */
83  case 'E':
84  hash = attrib.value.find( '#' );
85  if ( hash > 0 ) {
86  cnt = attrib.value.substr( 0, hash );
87  item = attrib.value.substr( hash + 1 );
88  } else {
89  cnt = std::move( attrib.value );
90  item = "Address";
91  }
92  break;
93  case 'D':
94  m_criteria = "FILE " + attrib.value;
95  m_dbName = std::move( attrib.value );
96  break;
97  case 'F':
98  switch ( ::toupper( attrib.tag[1] ) ) {
99  case 'I':
100  m_criteria = "FILE " + attrib.value;
101  m_dbName = std::move( attrib.value );
102  break;
103  case 'U':
104  stmt = std::move( attrib.value );
105  break;
106  default:
107  break;
108  }
109  break;
110  case 'J':
111  m_criteria = "JOBID " + attrib.value;
112  m_dbName = std::move( attrib.value );
113  dbtyp = "SICB";
114  break;
115  case 'T':
116  switch ( ::toupper( attrib.tag[1] ) ) {
117  case 'Y':
118  dbtyp = std::move( attrib.value );
119  break;
120  default:
121  break;
122  }
123  break;
124  case 'S':
125  switch ( ::toupper( attrib.tag[1] ) ) {
126  case 'E':
127  sel = std::move( attrib.value );
128  break;
129  case 'V':
130  svc = std::move( attrib.value );
131  collsvc = svc;
132  break;
133  default:
134  break;
135  }
136  break;
137  default:
138  m_properties.emplace_back( attrib.tag, attrib.value );
139  break;
140  }
141  }
142  if ( !isData ) { // Unfortunately options do not come in order...
143  m_selectorType = "EventCollectionSelector";
144  svc = "EvtTupleSvc";
145  } else if ( dbtyp.compare( 0, 4, "POOL" ) == 0 ) {
146  m_selectorType = "PoolDbEvtSelector";
147  } else if ( svc.empty() ) {
148  m_selectorType = "DbEvtSelector";
149  } else {
150  m_selectorType = svc;
151  }
153  if ( svc.empty() && !dbtyp.empty() ) {
154  auto ipers = m_pSvcLocator->service<IPersistencySvc>( "EventPersistencySvc" );
155  if ( ipers ) {
156  IConversionSvc* icnvSvc = nullptr;
157  status = ipers->getService( dbtyp, icnvSvc );
158  if ( status.isSuccess() ) {
159  auto isvc = SmartIF<INamedInterface>{icnvSvc};
160  if ( isvc ) svc = isvc->name();
161  }
162  }
163  }
164  m_properties.emplace_back( "Function", stmt );
165  m_properties.emplace_back( "CnvService", svc );
166  m_properties.emplace_back( "Authentication", auth );
167  m_properties.emplace_back( "Container", cnt );
168  m_properties.emplace_back( "Item", item );
169  m_properties.emplace_back( "Criteria", sel );
170  m_properties.emplace_back( "DbType", dbtyp );
172  if ( !isData && !collsvc.empty() ) { m_properties.emplace_back( "DbService", collsvc ); }
173 
174  m_initialized = status.isSuccess();
175  return status;
176 }
Parse attribute strings allowing iteration over the various attributes.
bool m_initialized
Initialization state.
T empty(T...args)
bool isSuccess() const
Definition: StatusCode.h:267
T endl(T...args)
sel
Definition: IOTest.py:93
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
std::string m_criteria
Criteria.
std::string m_selectorType
Event selector type.
STL class.
StatusCode service(const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
Templated method to access a service by name.
Definition: ISvcLocator.h:76
ISvcLocator * m_pSvcLocator
Reference to service locator.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
T clear(T...args)
T move(T...args)
std::string m_definition
Definition string.
T find(T...args)
Properties m_properties
Properties vector.
constexpr static const auto FAILURE
Definition: StatusCode.h:86
T substr(T...args)
Data persistency service interface.
std::string m_dbName
String with name of the db as parsed.
void toupper(std::string &s)
T compare(T...args)
T emplace_back(T...args)
bool EventSelectorDataStream::isInitialized ( ) const
inline

Check initialization status.

Definition at line 104 of file EventSelectorDataStream.h.

104 { return m_initialized; }
bool m_initialized
Initialization state.
const std::string& EventSelectorDataStream::name ( ) const
inline

Retrieve stream name.

Definition at line 92 of file EventSelectorDataStream.h.

92 { return m_name; }
const Properties& EventSelectorDataStream::properties ( )
inline

Access properties.

Definition at line 90 of file EventSelectorDataStream.h.

90 { return m_properties; }
Properties m_properties
Properties vector.
Gaudi::Property< std::string > * EventSelectorDataStream::property ( const std::string nam)

Allow access to individual properties by name.

Definition at line 42 of file EventSelectorDataStream.cpp.

42  {
44  [&]( const Gaudi::Property<std::string>& j ) { return j.name() == nam; } );
45  return i != std::end( m_properties ) ? &( *i ) : nullptr;
46 }
Implementation of property with value of concrete type.
Definition: Property.h:352
const std::string name() const
property name
Definition: Property.h:36
T end(T...args)
T find_if(T...args)
Properties m_properties
Properties vector.
T begin(T...args)
const Gaudi::Property< std::string > * EventSelectorDataStream::property ( const std::string nam) const

Allow access to individual properties by name (CONST)

Definition at line 49 of file EventSelectorDataStream.cpp.

49  {
51  [&]( const Gaudi::Property<std::string>& j ) { return j.name() == nam; } );
52  return i != std::end( m_properties ) ? &( *i ) : nullptr;
53 }
Implementation of property with value of concrete type.
Definition: Property.h:352
const std::string name() const
property name
Definition: Property.h:36
T end(T...args)
T find_if(T...args)
Properties m_properties
Properties vector.
T begin(T...args)
IEvtSelector* EventSelectorDataStream::selector ( ) const
inline

Retrieve event selector object.

Definition at line 102 of file EventSelectorDataStream.h.

102 { return m_pSelector.get(); }
SmartIF< IEvtSelector > m_pSelector
Pointer to valid selector.
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:76
const std::string& EventSelectorDataStream::selectorType ( ) const
inline

Retrieve event selector type.

Definition at line 98 of file EventSelectorDataStream.h.

98 { return m_selectorType; }
std::string m_selectorType
Event selector type.
void EventSelectorDataStream::setSelector ( IEvtSelector pSelector)
virtual

Attach event selector object.

Definition at line 39 of file EventSelectorDataStream.cpp.

39 { m_pSelector = pSelector; }
SmartIF< IEvtSelector > m_pSelector
Pointer to valid selector.

Friends And Related Function Documentation

MsgStream& operator<< ( MsgStream s,
const EventSelectorDataStream obj 
)
friend

Output friend for MsgStream.

Definition at line 25 of file EventSelectorDataStream.cpp.

25  {
26  return s << "Stream:" << obj.name() << " Def:" << obj.definition();
27 }
const std::string & name() const
Retrieve stream name.
const std::string & definition() const
Retrieve definition string.
std::ostream& operator<< ( std::ostream s,
const EventSelectorDataStream obj 
)
friend

Output friend for standard I/O.

Definition at line 30 of file EventSelectorDataStream.cpp.

30  {
31  return s << "Stream:" << obj.name() << " Def:" << obj.definition();
32 }
const std::string & name() const
Retrieve stream name.
const std::string & definition() const
Retrieve definition string.

Member Data Documentation

std::string EventSelectorDataStream::m_criteria
protected

Criteria.

Definition at line 60 of file EventSelectorDataStream.h.

std::string EventSelectorDataStream::m_dbName
protected

String with name of the db as parsed.

Definition at line 62 of file EventSelectorDataStream.h.

std::string EventSelectorDataStream::m_definition
protected

Definition string.

Definition at line 58 of file EventSelectorDataStream.h.

bool EventSelectorDataStream::m_initialized = false
protected

Initialization state.

Definition at line 72 of file EventSelectorDataStream.h.

std::string EventSelectorDataStream::m_name
protected

Name.

Definition at line 56 of file EventSelectorDataStream.h.

Properties EventSelectorDataStream::m_properties
protected

Properties vector.

Definition at line 70 of file EventSelectorDataStream.h.

SmartIF<IEvtSelector> EventSelectorDataStream::m_pSelector
protected

Pointer to valid selector.

Definition at line 66 of file EventSelectorDataStream.h.

ISvcLocator* EventSelectorDataStream::m_pSvcLocator
protected

Reference to service locator.

Definition at line 68 of file EventSelectorDataStream.h.

std::string EventSelectorDataStream::m_selectorType
protected

Event selector type.

Definition at line 64 of file EventSelectorDataStream.h.


The documentation for this class was generated from the following files: