RSB  0.17.0
Listener.cpp
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of the RSB project
4  *
5  * Copyright (C) 2010 by Sebastian Wrede <swrede at techfak dot uni-bielefeld dot de>
6  *
7  * This file may be licensed under the terms of the
8  * GNU Lesser General Public License Version 3 (the ``LGPL''),
9  * or (at your option) any later version.
10  *
11  * Software distributed under the License is distributed
12  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
13  * express or implied. See the LGPL for the specific language
14  * governing rights and limitations.
15  *
16  * You should have received a copy of the LGPL along with this
17  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
18  * or write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  * The development of this software was supported by:
22  * CoR-Lab, Research Institute for Cognition and Robotics
23  * Bielefeld University
24  *
25  * ============================================================ */
26 
27 #include "Listener.h"
28 
29 #include <algorithm>
30 #include <iterator>
31 
34 
35 using namespace std;
36 
37 using namespace rsb::transport;
38 
39 namespace rsb {
40 
42 public:
43  rsc::logging::LoggerPtr logger;
45 };
46 
47 Listener::Listener(const vector<InPushConnectorPtr>& connectors,
48  const Scope& scope, const ParticipantConfig& config) :
49  Participant(scope, config), d(new Impl) {
50 
51  d->logger = rsc::logging::Logger::getLogger("rsb.Listener");
52  this->initialize(connectors, scope, config);
53 }
54 
56 }
57 
58 std::string Listener::getKind() const {
59  return "listener";
60 }
61 
62 const std::set<std::string> Listener::getTransportURLs() const {
63  return d->configurator->getTransportURLs();
64 }
65 
66 void Listener::initialize(const vector<InPushConnectorPtr>& connectors,
67  const Scope& scope, const ParticipantConfig& config) {
68  d->configurator.reset(
69  new eventprocessing::PushInRouteConfigurator(scope, config));
70  d->configurator->setErrorStrategy(getConfig().getErrorStrategy());
71  for (vector<InPushConnectorPtr>::const_iterator it = connectors.begin(); it
72  != connectors.end(); ++it) {
73  d->configurator->addConnector(*it);
74  }
75 
76  d->configurator->setQualityOfServiceSpecs(config.getQualityOfServiceSpec());
77 
78  d->configurator->activate();
79 }
80 
81 void Listener::addHandler(HandlerPtr h, bool wait) {
82  d->configurator->handlerAdded(h, wait);
83 }
84 
85 void Listener::removeHandler(HandlerPtr h, bool wait) {
86  d->configurator->handlerRemoved(h, wait);
87 }
88 
90  d->configurator->filterAdded(filter);
91 }
92 
94  d->configurator->filterRemoved(filter);
95 }
96 
97 }
boost::shared_ptr< PushInRouteConfigurator > PushInRouteConfiguratorPtr
Objects of this class participate in the exchange of notifications on one channel of the bus...
Definition: Participant.h:65
STL namespace.
void removeHandler(HandlerPtr h, bool wait=true)
Removes a Handler instance to process newly received events.
Definition: Listener.cpp:85
boost::shared_ptr< Filter > FilterPtr
virtual ~Listener()
Definition: Listener.cpp:55
void removeFilter(filter::FilterPtr filter)
Removes a previously installed filter if it is present by pointer comparison some time after this cal...
Definition: Listener.cpp:93
ParticipantConfig getConfig() const
Returns a copy of the participant&#39;s configuration.
Definition: Participant.cpp:68
virtual void addHandler(HandlerPtr h, bool wait=true)
Adds a rsb::Handler to the Listener.
Definition: Listener.cpp:81
boost::scoped_ptr< Impl > d
Definition: Listener.h:147
virtual const std::set< std::string > getTransportURLs() const
TODO.
Definition: Listener.cpp:62
virtual std::string getKind() const
Return the kind of the participant.
Definition: Listener.cpp:58
boost::shared_ptr< Handler > HandlerPtr
Definition: Handler.h:92
This specialization of InRouteConfigurator creates and maintains an event receiving setup in which rs...
QualityOfServiceSpec getQualityOfServiceSpec() const
Returns the current settings for QoS.
rsc::logging::LoggerPtr logger
Definition: Listener.cpp:43
A class describing the configuration of Participant instances.
Scope is a descriptor for a hierarchical channel of the unified bus.
Definition: Scope.h:46
void addFilter(filter::FilterPtr filter)
Adds a filter that will be applied after some time (but not immediately after this call) for all hand...
Definition: Listener.cpp:89
void initialize(const std::vector< transport::InPushConnectorPtr > &connectors, const Scope &scope, const ParticipantConfig &config)
Definition: Listener.cpp:66
eventprocessing::PushInRouteConfiguratorPtr configurator
Definition: Listener.cpp:44