OrientedTactileSensorUnitObserver.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/OrientedTactileSensorUnit.h>
29 #include <RobotAPI/interface/visualization/DebugDrawerInterface.h>
31 
32 #include <mutex>
33 
34 namespace armarx
35 {
36  /**
37  * \class OrientedTactileSensorUnitObserverPropertyDefinitions
38  * \brief
39  */
42  {
43  public:
46  {
47  defineOptionalProperty<std::string>("SensorTopicName", "OrientedTactileSensorValues", "Name of the Sensor Topic.");
48  defineOptionalProperty<std::string>("DebugDrawerTopic", "DebugDrawerUpdates", "Name of the DebugDrawerTopic");
49  }
50  };
51 
52 
53  /**
54  * \class OrientedTactileSensorUnitObserver
55  * \ingroup RobotAPI-SensorActorUnits-observers
56  * \brief Observer monitoring @IMU sensor values
57  *
58  * The OrientedTactileSensorUnitObserver monitors @IMU sensor values published by OrientedTactileSensorUnit-implementations and offers condition checks on these values.
59  */
61  virtual public Observer,
62  virtual public OrientedTactileSensorUnitObserverInterface
63  {
64  public:
66 
67  std::string getDefaultName() const override
68  {
69  return "OrientedTactileSensorUnitObserver";
70  }
71  void onInitObserver() override;
72  void onConnectObserver() override;
73  void onExitObserver() override;
74 
75  void reportSensorValues(int id, float pressure, float qw, float qx, float qy, float qz, float pressureRate, float rotationRate, float accelerationRate, float accelx, float accely, float accelz, const TimestampBasePtr& timestamp, const Ice::Current&) override;
76 
77  /**
78  * @see PropertyUser::createPropertyDefinitions()
79  */
81 
82 
83  private:
84  std::mutex dataMutex;
85  DebugDrawerInterfacePrx debugDrawerPrx;
86  };
87 }
88 
armarx::OrientedTactileSensorUnitObserverPropertyDefinitions
Definition: OrientedTactileSensorUnitObserver.h:40
armarx::OrientedTactileSensorUnitObserver::createPropertyDefinitions
PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: OrientedTactileSensorUnitObserver.cpp:105
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
Observer.h
armarx::OrientedTactileSensorUnitObserver::onConnectObserver
void onConnectObserver() override
Framework hook.
Definition: OrientedTactileSensorUnitObserver.cpp:48
armarx::OrientedTactileSensorUnitObserver
Observer monitoring @IMU sensor values.
Definition: OrientedTactileSensorUnitObserver.h:60
armarx::OrientedTactileSensorUnitObserver::OrientedTactileSensorUnitObserver
OrientedTactileSensorUnitObserver()
Definition: OrientedTactileSensorUnitObserver.h:65
armarx::OrientedTactileSensorUnitObserver::onExitObserver
void onExitObserver() override
Framework hook.
Definition: OrientedTactileSensorUnitObserver.cpp:54
IceUtil::Handle
Definition: forward_declarations.h:29
IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface >
armarx::OrientedTactileSensorUnitObserverPropertyDefinitions::OrientedTactileSensorUnitObserverPropertyDefinitions
OrientedTactileSensorUnitObserverPropertyDefinitions(std::string prefix)
Definition: OrientedTactileSensorUnitObserver.h:44
armarx::OrientedTactileSensorUnitObserver::onInitObserver
void onInitObserver() override
Framework hook.
Definition: OrientedTactileSensorUnitObserver.cpp:40
armarx::OrientedTactileSensorUnitObserver::reportSensorValues
void reportSensorValues(int id, float pressure, float qw, float qx, float qy, float qz, float pressureRate, float rotationRate, float accelerationRate, float accelx, float accely, float accelz, const TimestampBasePtr &timestamp, const Ice::Current &) override
Definition: OrientedTactileSensorUnitObserver.cpp:60
armarx::OrientedTactileSensorUnitObserver::getDefaultName
std::string getDefaultName() const override
Retrieve default name of component.
Definition: OrientedTactileSensorUnitObserver.h:67
armarx::ObserverPropertyDefinitions
Definition: Observer.h:50
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28