OptoForceUnitObserver.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package RobotAPI::units
19  * @author David Schiebener <schiebener at kit dot edu>
20  * @date 2014
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 #pragma once
26 
27 #include <RobotAPI/interface/units/OptoForceUnit.h>
29 #include <RobotAPI/interface/visualization/DebugDrawerInterface.h>
31 
32 #include <mutex>
33 
34 namespace armarx
35 {
36  /**
37  * \class OptoForceUnitObserverPropertyDefinitions
38  * \brief
39  */
42  {
43  public:
46  {
47  defineOptionalProperty<std::string>("OptoForceTopicName", "OptoForceValues", "Name of the OptoForce Topic");
48  defineOptionalProperty<std::string>("DebugDrawerTopic", "DebugDrawerUpdates", "Name of the DebugDrawerTopic");
49  }
50  };
51 
52 
53  /**
54  * \class OptoForceUnitObserver
55  * \ingroup RobotAPI-SensorActorUnits-observers
56  * \brief Observer monitoring @IMU sensor values
57  *
58  * The OptoForceUnitObserver monitors @IMU sensor values published by OptoForceUnit-implementations and offers condition checks on these values.
59  * Available condition checks are: *updated*, *larger*, *equals* and *smaller*.
60  */
62  virtual public Observer,
63  virtual public OptoForceUnitObserverInterface
64  {
65  public:
67 
68  std::string getDefaultName() const override
69  {
70  return "OptoForceUnitObserver";
71  }
72  void onInitObserver() override;
73  void onConnectObserver() override;
74  void onExitObserver() override;
75 
76  void reportSensorValues(const std::string& device, const std::string& name, float fx, float fy, float fz, const TimestampBasePtr& timestamp, const Ice::Current& c = Ice::emptyCurrent) override;
77 
78  /**
79  * @see PropertyUser::createPropertyDefinitions()
80  */
82 
83 
84  private:
85  std::mutex dataMutex;
86  DebugDrawerInterfacePrx debugDrawerPrx;
87 
88 
89  void offerValue(std::string device, std::string fieldName, Vector3Ptr vec);
90  };
91 }
92 
armarx::OptoForceUnitObserver::getDefaultName
std::string getDefaultName() const override
Retrieve default name of component.
Definition: OptoForceUnitObserver.h:68
armarx::OptoForceUnitObserver
Observer monitoring @IMU sensor values.
Definition: OptoForceUnitObserver.h:61
armarx::Observer
Baseclass for all ArmarX Observers.
Definition: Observer.h:80
Pose.h
armarx::PropertyDefinitionContainer::prefix
std::string prefix
Prefix of the properties such as namespace, domain, component name, etc.
Definition: PropertyDefinitionContainer.h:333
armarx::OptoForceUnitObserver::onInitObserver
void onInitObserver() override
Framework hook.
Definition: OptoForceUnitObserver.cpp:40
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:43
Observer.h
armarx::OptoForceUnitObserver::reportSensorValues
void reportSensorValues(const std::string &device, const std::string &name, float fx, float fy, float fz, const TimestampBasePtr &timestamp, const Ice::Current &c=Ice::emptyCurrent) override
Definition: OptoForceUnitObserver.cpp:66
IceInternal::Handle< Vector3 >
armarx::OptoForceUnitObserverPropertyDefinitions::OptoForceUnitObserverPropertyDefinitions
OptoForceUnitObserverPropertyDefinitions(std::string prefix)
Definition: OptoForceUnitObserver.h:44
armarx::OptoForceUnitObserverPropertyDefinitions
Definition: OptoForceUnitObserver.h:40
armarx::OptoForceUnitObserver::onConnectObserver
void onConnectObserver() override
Framework hook.
Definition: OptoForceUnitObserver.cpp:54
armarx::OptoForceUnitObserver::OptoForceUnitObserver
OptoForceUnitObserver()
Definition: OptoForceUnitObserver.h:66
IceUtil::Handle
Definition: forward_declarations.h:29
IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface >
armarx::OptoForceUnitObserver::createPropertyDefinitions
PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: OptoForceUnitObserver.cpp:142
armarx::OptoForceUnitObserver::onExitObserver
void onExitObserver() override
Framework hook.
Definition: OptoForceUnitObserver.cpp:60
armarx::ObserverPropertyDefinitions
Definition: Observer.h:50
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28