The Gaudi Framework  v30r4 (9b837755)
MergingTransformer.h
Go to the documentation of this file.
1 #ifndef MERGING_TRANSFORMER_H
2 #define MERGING_TRANSFORMER_H
3 
4 #include <functional>
5 #include <string>
6 #include <vector>
7 
10 
11 namespace Gaudi
12 {
13  namespace Functional
14  {
15 
16  template <typename Signature, typename Traits_ = Traits::useDefaults>
18 
20 
22  template <typename Out, typename In, typename Traits_>
23  class MergingTransformer<Out( const vector_of_const_<In>& ), Traits_>
25  {
27 
28  public:
31 
32  MergingTransformer( const std::string& name, ISvcLocator* locator, const KeyValues& inputs,
33  const KeyValue& output );
34 
35  // accessor to input Locations
36  const std::string& inputLocation( unsigned int n ) const { return m_inputLocations.value()[n]; }
37  unsigned int inputLocationSize() const { return m_inputLocations.value().size(); }
38 
39  // derived classes can NOT implement execute
40  StatusCode execute() override final
41  {
42  vector_of_const_<In> ins;
43  ins.reserve( m_inputs.size() );
44  std::transform( m_inputs.begin(), m_inputs.end(), std::back_inserter( ins ),
46  try {
47  using details::as_const;
48  details::put( std::get<0>( this->m_outputs ), as_const( *this )( as_const( ins ) ) );
49  } catch ( GaudiException& e ) {
50  ( e.code() ? this->warning() : this->error() ) << e.message() << endmsg;
51  return e.code();
52  }
53  return StatusCode::SUCCESS;
54  }
55 
56  virtual Out operator()( const vector_of_const_<In>& inputs ) const = 0;
57 
58  private:
59  // if In is a pointer, it signals optional (as opposed to mandatory) input
60  template <typename T>
62  std::vector<InputHandle_t<In>> m_inputs; // and make the handles properties instead...
63  Gaudi::Property<std::vector<std::string>> m_inputLocations; // TODO/FIXME: remove this duplication...
64  // TODO/FIXME: replace vector of string property + call-back with a
65  // vector<handle> property ... as soon as declareProperty can deal with that.
66  };
67 
68  template <typename Out, typename In, typename Traits_>
70  ISvcLocator* pSvcLocator,
71  const KeyValues& inputs,
72  const KeyValue& output )
73  : base_class( name, pSvcLocator, output )
74  , m_inputLocations{this, inputs.first, inputs.second,
76  this->m_inputs =
77  details::make_vector_of_handles<decltype( this->m_inputs )>( this, m_inputLocations );
78  if ( std::is_pointer<In>::value ) { // handle constructor does not (yet) allow to set
79  // optional flag... so do it
80  // explicitly here...
81  std::for_each( this->m_inputs.begin(), this->m_inputs.end(),
82  []( auto& h ) { h.setOptional( true ); } );
83  }
84  },
86  {
87  }
88  }
89 }
90 
91 #endif
virtual const std::string & message() const
error message to be printed
Define general base for Gaudi exception.
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
Gaudi::Property< std::vector< std::string > > m_inputLocations
Implementation of property with value of concrete type.
Definition: Property.h:383
Gaudi::cpp17::detected_or_t< DataObjectReadHandle< T >, detail2::InputHandle_t, Tr, T > InputHandle_t
StatusCode execute() override final
Gaudi::tagged_bool< class ImmediatelyInvokeHandler_tag > ImmediatelyInvokeHandler
Definition: Property.h:152
class MergingTransformer< Out(const vector_of_const_< In > void
details::InputHandle_t< Traits_, typename std::remove_pointer< T >::type > InputHandle_t
virtual const StatusCode & code() const
StatusCode for Exception.
STL class.
unsigned int inputLocationSize() const
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
PropertyBase base class allowing PropertyBase* collections to be "homogeneous".
Definition: Property.h:34
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
constexpr std::add_const_t< T > & as_const(T &t) noexcept
std::vector< InputHandle_t< In > > m_inputs
STL class.
virtual Out operator()(const vector_of_const_< In > &inputs) const =0
const std::string & inputLocation(unsigned int n) const
T back_inserter(T...args)
MergingTransformer(const std::string &name, ISvcLocator *locator, const KeyValues &inputs, const KeyValue &output)
struct[[deprecated("use MergingTransformer instead")]] Traits_
T transform(T...args)
T for_each(T...args)
Handles make_vector_of_handles(IDataHandleHolder *owner, const std::vector< std::string > &init)
Helper functions to set/get the application return code.
Definition: __init__.py:1
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
Out1 * put(DataObjectHandle< Out1 > &out_handle, Out2 &&out)