Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • sw/armarx/robot-api
  • uwkce_singer/robot-api
  • untcg_hofmann/robot-api
  • ulqba_korosakov/RobotAPI
4 results
Show changes
Showing
with 753 additions and 142 deletions
<?xml version="1.0" encoding="utf-8"?>
<scenario name="memory_to_debug_observer" creation="1970-01-01.01:00:00" globalConfigName="./config/global.cfg" package="RobotAPI" deploymentType="local" nodeName="NodeMain">
<application name="MemoryToDebugObserver" instance="" package="RobotAPI" nodeName="" enabled="true" iceAutoRestart="false"/>
</scenario>
......@@ -27,6 +27,7 @@ add_subdirectory(NaturalIKTest)
add_subdirectory(ObjectPoseClientExample)
add_subdirectory(ObjectPoseProviderExample)
add_subdirectory(RobotHealth)
add_subdirectory(RobotDefinition)
add_subdirectory(RobotNameService)
add_subdirectory(RobotState)
add_subdirectory(RobotToArViz)
......
armarx_component_set_name("RobotDefinition")
set(COMPONENT_LIBS
ArmarXCore
ArmarXCoreInterfaces # for DebugObserverInterface
ArmarXGuiComponentPlugins
RobotAPICore
RobotAPIInterfaces
RobotAPISkills
armem
robot_name_service_core
robot_name_service_client
)
set(SOURCES
RobotDefinition.cpp
)
set(HEADERS
RobotDefinition.h
)
armarx_add_component("${SOURCES}" "${HEADERS}")
#generate the application
armarx_generate_and_add_component_executable(COMPONENT_NAMESPACE "armarx")
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package RobotAPI::ArmarXObjects::RobotNameService
* @author [Author Name] ( [Author Email] )
* @date 2018
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#include "RobotDefinition.h"
namespace armarx
{
void
RobotDefinition::onInitComponent()
{
}
void
RobotDefinition::onConnectComponent()
{
}
void
RobotDefinition::onDisconnectComponent()
{
}
void
RobotDefinition::onExitComponent()
{
}
armarx::PropertyDefinitionsPtr
RobotDefinition::createPropertyDefinitions()
{
armarx::PropertyDefinitionsPtr defs =
new ComponentPropertyDefinitions(getConfigIdentifier());
return defs;
}
} // namespace armarx
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package RobotAPI::ArmarXObjects::RobotNameService
* @author [Author Name] ( [Author Email] )
* @date 2018
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include <map>
#include <mutex>
#include <string>
#include <ArmarXCore/core/Component.h>
#include <RobotAPI/interface/robot_name_service/RobotNameServiceInterface.h>
#include <RobotAPI/libraries/robot_name_service/client/Plugin.h>
#include <RobotAPI/libraries/robot_name_service/core/Robot.h>
namespace armarx
{
/**
* @defgroup Component-RobotNameService RobotNameService
* @ingroup RobotAPI-Components
* A description of the component RobotNameService.
*
* @class RobotNameService
* @ingroup Component-RobotNameService
* @brief Brief description of class RobotNameService.
*
* Detailed description of class RobotNameService.
*/
class RobotDefinition :
virtual public armarx::Component,
virtual public armarx::RobotNameServiceComponentPluginUser
{
public:
/**
* @see armarx::ManagedIceObject::getDefaultName()
*/
std::string
getDefaultName() const override
{
return "RobotDefinition";
}
protected:
/**
* @see armarx::ManagedIceObject::onInitComponent()
*/
void onInitComponent() override;
/**
* @see armarx::ManagedIceObject::onConnectComponent()
*/
void onConnectComponent() override;
/**
* @see armarx::ManagedIceObject::onDisconnectComponent()
*/
void onDisconnectComponent() override;
/**
* @see armarx::ManagedIceObject::onExitComponent()
*/
void onExitComponent() override;
/**
* @see PropertyUser::createPropertyDefinitions()
*/
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override;
};
} // namespace armarx
# Libs required for the tests
SET(LIBS ${LIBS} ArmarXCore RobotNameService)
armarx_add_test(RobotNameServiceTest RobotNameServiceTest.cpp "${LIBS}")
\ No newline at end of file
......@@ -13,19 +13,25 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Simon Ottenhaus ( simon dot ottenhaus at kit dot edu )
* @package RobotAPI::ArmarXObjects::RobotNameService
* @author [Author Name] ( [Author Email] )
* @date 2018
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#include <RobotAPI/interface/observers/KinematicUnitObserverInterface.ice>
#define BOOST_TEST_MODULE RobotAPI::ArmarXObjects::RobotNameService
#pragma once
#define ARMARX_BOOST_TEST
module armarx
#include <RobotAPI/Test.h>
#include <RobotAPI/components/RobotNameService/RobotNameService.h>
#include <iostream>
BOOST_AUTO_TEST_CASE(testExample)
{
interface RobotNameServiceInterface
{
};
};
armarx::RobotNameService instance;
BOOST_CHECK_EQUAL(true, true);
}
armarx_component_set_name("RobotNameService")
set(COMPONENT_LIBS ArmarXCore)
set(SOURCES RobotNameService.cpp)
set(HEADERS RobotNameService.h)
armarx_add_component("${SOURCES}" "${HEADERS}")
# add unit tests
add_subdirectory(test)
set(COMPONENT_LIBS
ArmarXCore
ArmarXCoreInterfaces # for DebugObserverInterface
ArmarXGuiComponentPlugins
RobotAPICore
RobotAPIInterfaces
RobotAPISkills
armem
robot_name_service_core
robot_name_service_server
)
set(SOURCES
RobotNameService.cpp
)
set(HEADERS
RobotNameService.h
)
armarx_add_component("${SOURCES}" "${HEADERS}")
armarx_generate_and_add_component_executable(APPLICATION_APP_SUFFIX)
#generate the application
armarx_generate_and_add_component_executable(COMPONENT_NAMESPACE "armarx")
......@@ -22,35 +22,76 @@
#include "RobotNameService.h"
namespace armarx
{
void RobotNameService::onInitComponent()
void
RobotNameService::onInitComponent()
{
}
void RobotNameService::onConnectComponent()
void
RobotNameService::onConnectComponent()
{
}
void
RobotNameService::onDisconnectComponent()
{
}
void
RobotNameService::onExitComponent()
{
}
void RobotNameService::onDisconnectComponent()
armarx::PropertyDefinitionsPtr
RobotNameService::createPropertyDefinitions()
{
armarx::PropertyDefinitionsPtr defs =
new ComponentPropertyDefinitions(getConfigIdentifier());
return defs;
}
bool
RobotNameService::registerRobotInfo(const robot_name_service::dto::RobotInfo& robot,
const Ice::Current& current)
{
std::scoped_lock l(robotsMutex);
ARMARX_INFO << "Register a new robot with name '" << robot.name << "' in RNS";
if (auto it = robots.find(robot.name); it != robots.end())
{
ARMARX_ERROR << "The robot with name '" << robot.name
<< "' is already registered. Ignoring it.";
return false;
}
robots[robot.name].fromIce(robot);
return true;
}
void RobotNameService::onExitComponent()
void
RobotNameService::unregisterRobotInfo(const std::string& name, const Ice::Current& current)
{
std::scoped_lock l(robotsMutex);
if (auto it = robots.find(name); it != robots.end())
{
robots.erase(it);
}
}
armarx::PropertyDefinitionsPtr RobotNameService::createPropertyDefinitions()
IceUtil::Optional<robot_name_service::dto::RobotInfo>
RobotNameService::getRobotInfo(const std::string& name, const Ice::Current& current)
{
return armarx::PropertyDefinitionsPtr(new RobotNameServicePropertyDefinitions(
getConfigIdentifier()));
std::scoped_lock l(robotsMutex);
if (auto it = robots.find(name); it == robots.end())
{
return {};
}
return robots[name].toIce();
}
}
} // namespace armarx
......@@ -22,27 +22,17 @@
#pragma once
#include <map>
#include <mutex>
#include <string>
#include <ArmarXCore/core/Component.h>
#include <RobotAPI/interface/robot_name_service/RobotNameServiceInterface.h>
#include <RobotAPI/libraries/robot_name_service/core/Robot.h>
namespace armarx
{
/**
* @class RobotNameServicePropertyDefinitions
* @brief
*/
class RobotNameServicePropertyDefinitions:
public armarx::ComponentPropertyDefinitions
{
public:
RobotNameServicePropertyDefinitions(std::string prefix):
armarx::ComponentPropertyDefinitions(prefix)
{
//defineRequiredProperty<std::string>("PropertyName", "Description");
//defineOptionalProperty<std::string>("PropertyName", "DefaultValue", "Description");
}
};
/**
* @defgroup Component-RobotNameService RobotNameService
* @ingroup RobotAPI-Components
......@@ -55,13 +45,15 @@ namespace armarx
* Detailed description of class RobotNameService.
*/
class RobotNameService :
virtual public armarx::Component
virtual public armarx::Component,
virtual public armarx::robot_name_service::dti::RobotNameServiceInterface
{
public:
/**
* @see armarx::ManagedIceObject::getDefaultName()
*/
std::string getDefaultName() const override
std::string
getDefaultName() const override
{
return "RobotNameService";
}
......@@ -91,6 +83,18 @@ namespace armarx
* @see PropertyUser::createPropertyDefinitions()
*/
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override;
};
}
// RobotNameServiceInterface interface
public:
bool registerRobotInfo(const robot_name_service::dto::RobotInfo& robot,
const Ice::Current& current) override;
void unregisterRobotInfo(const std::string& name, const Ice::Current& current) override;
IceUtil::Optional<robot_name_service::dto::RobotInfo>
getRobotInfo(const std::string& name, const Ice::Current& current) override;
private:
mutable std::mutex robotsMutex;
std::map<std::string, robot_name_service::core::RobotInfo> robots;
};
} // namespace armarx
......@@ -37,6 +37,8 @@
#include <ArmarXCore/core/rapidxml/wrapper/RapidXmlReader.h>
#include <ArmarXCore/core/system/ArmarXDataPath.h>
#include <ArmarXCore/core/time/TimeUtil.h>
#include <RobotAPI/components/units/RobotUnit/util/RtTiming.h>
#include <RobotAPI/components/units/RobotUnit/util/NonRtTiming.h>
using namespace Eigen;
......@@ -296,10 +298,10 @@ namespace armarx
{
if (timestamp <= 0)
{
timestamp = IceUtil::Time::now().toMicroSeconds();
timestamp = armarx::rtNow().toMicroSeconds();
}
IceUtil::Time time = IceUtil::Time::microSeconds(timestamp);
IceUtil::Time time = mapRtTimestampToNonRtTimestamp(IceUtil::Time::microSeconds(timestamp));
ARMARX_DEBUG << deactivateSpam(1) << "Got new jointangles: " << jointAngles
<< " from timestamp " << time.toDateTime()
......
add_subdirectory(ExampleMemoryClient)
add_subdirectory(GraspProviderExample)
add_subdirectory(MemoryToDebugObserver)
add_subdirectory(ObjectInstanceToIndex)
add_subdirectory(RobotStatePredictionClientExample)
add_subdirectory(SimpleVirtualRobot)
......
......@@ -5,74 +5,73 @@
#include <ArmarXCore/core/exceptions/local/ExpressionException.h>
#include <ArmarXCore/core/time/Metronome.h>
#include <RobotAPI/libraries/core/Pose.h>
#include <RobotAPI/libraries/armem/server/MemoryRemoteGui.h>
#include <RobotAPI/libraries/GraspingUtility/aron/GraspCandidate.aron.generated.h>
#include <RobotAPI/libraries/armem/client/query/Builder.h>
#include <RobotAPI/libraries/armem/client/query/query_fns.h>
#include <RobotAPI/libraries/armem/core/ice_conversions.h>
#include <RobotAPI/libraries/GraspingUtility/aron/GraspCandidate.aron.generated.h>
#include <RobotAPI/libraries/armem/server/MemoryRemoteGui.h>
#include <RobotAPI/libraries/core/Pose.h>
namespace armarx
{
GraspProviderExamplePropertyDefinitions::GraspProviderExamplePropertyDefinitions(std::string prefix) :
GraspProviderExamplePropertyDefinitions::GraspProviderExamplePropertyDefinitions(
std::string prefix) :
armarx::ComponentPropertyDefinitions(prefix)
{
}
armarx::PropertyDefinitionsPtr GraspProviderExample::createPropertyDefinitions()
armarx::PropertyDefinitionsPtr
GraspProviderExample::createPropertyDefinitions()
{
ARMARX_IMPORTANT << "Prperty defs";
armarx::PropertyDefinitionsPtr defs = new GraspProviderExamplePropertyDefinitions(getConfigIdentifier());
armarx::PropertyDefinitionsPtr defs =
new GraspProviderExamplePropertyDefinitions(getConfigIdentifier());
defs->topic(debugObserver);
defs->optional(memoryName, "mem.MemoryName", "Name of the memory to use.");
return defs;
}
std::string GraspProviderExample::getDefaultName() const
std::string
GraspProviderExample::getDefaultName() const
{
return "GraspProviderExample";
}
GraspProviderExample::GraspProviderExample() : writer(memoryNameSystem()), reader(memoryNameSystem())
GraspProviderExample::GraspProviderExample()
{
}
void GraspProviderExample::onInitComponent()
void
GraspProviderExample::onInitComponent()
{
ARMARX_IMPORTANT << "Init";
}
void GraspProviderExample::onConnectComponent()
void
GraspProviderExample::onConnectComponent()
{
writer.connect();
reader.connect();
writer.connect(memoryNameSystem());
reader.connect(memoryNameSystem());
task = new RunningTask<GraspProviderExample>(this, &GraspProviderExample::run);
task->start();
}
void GraspProviderExample::onDisconnectComponent()
void
GraspProviderExample::onDisconnectComponent()
{
task->stop();
}
void GraspProviderExample::onExitComponent()
void
GraspProviderExample::onExitComponent()
{
}
void GraspProviderExample::run()
void
GraspProviderExample::run()
{
ARMARX_IMPORTANT << "Running example.";
......@@ -90,9 +89,11 @@ namespace armarx
// initialize all necessary fields of a bimanual grasp candidate and use writer to commit it to memory
grasping::BimanualGraspCandidate bimanualCandidate = makeDummyBimanualGraspCandidate();
bimanualCandidate.groupNr = i; //non-necessary field, but used to commit different candidates
bimanualCandidate.groupNr =
i; //non-necessary field, but used to commit different candidates
writer.commitBimanualGraspCandidate(bimanualCandidate, armem::Time::Now(), "bimanualProvider");
writer.commitBimanualGraspCandidate(
bimanualCandidate, armem::Time::Now(), "bimanualProvider");
//test for writing Seqs, candidates from the same object appear as instances of the same snapshot
......@@ -102,7 +103,8 @@ namespace armarx
candidatesToWrite.push_back(new grasping::GraspCandidate(candidate));
writer.commitGraspCandidateSeq(candidatesToWrite, armem::Time::Now(), "candidateProvider");
writer.commitGraspCandidateSeq(
candidatesToWrite, armem::Time::Now(), "candidateProvider");
// test reader and debug by logging the group number of the candidate
......@@ -112,15 +114,15 @@ namespace armarx
{
candidates = reader.queryLatestGraspCandidates();
}
catch (armem::error::QueryFailed &e)
catch (armem::error::QueryFailed& e)
{
ARMARX_ERROR << e.makeMsg(memoryName);
}
for (auto &[id, ca] : candidates)
for (auto& [id, ca] : candidates)
{
ARMARX_INFO << "candidate with ID " << id << " has group number " << ca->groupNr ;
ARMARX_INFO << "candidate with ID " << id << " has group number " << ca->groupNr;
}
std::map<std::string, grasping::BimanualGraspCandidatePtr> bimanualCandidates;
......@@ -129,21 +131,23 @@ namespace armarx
{
bimanualCandidates = reader.queryLatestBimanualGraspCandidates();
}
catch (armem::error::QueryFailed &e)
catch (armem::error::QueryFailed& e)
{
ARMARX_ERROR << e.makeMsg(memoryName);
}
for (auto &[id, ca] : bimanualCandidates)
for (auto& [id, ca] : bimanualCandidates)
{
ARMARX_INFO << "bimanual candidate with ID " << id << " has group number " << ca->groupNr ;
ARMARX_INFO << "bimanual candidate with ID " << id << " has group number "
<< ca->groupNr;
}
m.waitForNextTick();
}
}
grasping::GraspCandidate GraspProviderExample::makeDummyGraspCandidate()
grasping::GraspCandidate
GraspProviderExample::makeDummyGraspCandidate()
{
armarx::grasping::GraspCandidate candidate = armarx::grasping::GraspCandidate();
......@@ -168,9 +172,11 @@ namespace armarx
return candidate;
}
grasping::BimanualGraspCandidate GraspProviderExample::makeDummyBimanualGraspCandidate()
grasping::BimanualGraspCandidate
GraspProviderExample::makeDummyBimanualGraspCandidate()
{
armarx::grasping::BimanualGraspCandidate bimanualCandidate = armarx::grasping::BimanualGraspCandidate();
armarx::grasping::BimanualGraspCandidate bimanualCandidate =
armarx::grasping::BimanualGraspCandidate();
bimanualCandidate.approachVectorLeft = Vector3BasePtr(toIce(zeroVector));
bimanualCandidate.approachVectorRight = Vector3BasePtr(toIce(zeroVector));
......@@ -185,4 +191,4 @@ namespace armarx
return bimanualCandidate;
}
}
} // namespace armarx
armarx_component_set_name(MemoryToDebugObserver)
set(COMPONENT_LIBS
ArmarXCore
ArmarXCoreComponentPlugins
ArmarXGuiComponentPlugins
RobotAPICore RobotAPIInterfaces
armem
)
set(SOURCES
Component.cpp
)
set(HEADERS
Component.h
)
armarx_add_component("${SOURCES}" "${HEADERS}")
armarx_generate_and_add_component_executable(
COMPONENT_INCLUDE
"${CMAKE_CURRENT_LIST_DIR}/Component.h"
COMPONENT_NAMESPACE
armarx::memory_to_debug_observer
COMPONENT_CLASS_NAME
Component
)
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package RobotAPI::ArmarXObjects::MemoryToDebugObserver
* @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
* @date 2023
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#include "Component.h"
#include <SimoxUtility/json.h>
#include <ArmarXCore/core/time/Frequency.h>
#include <ArmarXCore/core/time/Metronome.h>
namespace armarx::memory_to_debug_observer
{
armarx::PropertyDefinitionsPtr
Component::createPropertyDefinitions()
{
armarx::PropertyDefinitionsPtr defs =
new ComponentPropertyDefinitions(getConfigIdentifier());
{
armem::MemoryID robotEntityId{"RobotState", "Proprioception", "Armar7", "Armar7"};
std::vector<std::string> jointNames{
"Neck_1_Yaw",
"Neck_2_Hemisphere_A",
"Neck_3_Hemisphere_B",
};
for (const std::string& jointName : jointNames)
{
std::vector<std::string> attributes{
"position",
"positionTarget",
"relativePosition",
"velocity",
"velocityTarget",
"torque",
"motorCurrent",
"currentTarget",
};
for (const std::string& attribute : attributes)
{
properties.memoryToDebugObserver.plottedValues.push_back({
.entityID = robotEntityId,
.aronPath = {{"joints", attribute, jointName}},
});
properties.memoryToDebugObserver.plottedValues.push_back({
.entityID = robotEntityId,
.aronPath = {{"extraLongs", jointName + ".absoluteEncoderTicks"}},
});
}
}
simox::json::json j = properties.memoryToDebugObserver;
properties.memoryToDebugObserverJson = j.dump();
}
defs->optional(properties.memoryToDebugObserverJson,
"p.memoryToDebugObserverJson",
"Configuration of MemoryToDebugObserver in JSON format.");
defs->optional(properties.pollFrequencyHz, "p.pollFrequencyHz");
return defs;
}
Component::Component()
{
}
std::string
Component::getDefaultName() const
{
return "MemoryToDebugObserver";
}
void
Component::onInitComponent()
{
DebugObserverComponentPluginUser::setDebugObserverBatchModeEnabled(true);
{
simox::json::json j = simox::json::json::parse(properties.memoryToDebugObserverJson);
j.get_to(properties.memoryToDebugObserver);
}
}
void
Component::onConnectComponent()
{
createRemoteGuiTab();
RemoteGui_startRunningTask();
task = new RunningTask<Component>(this, &Component::runLoop);
task->start();
}
void
Component::onDisconnectComponent()
{
task->stop();
task = nullptr;
}
void
Component::onExitComponent()
{
}
void
Component::runLoop()
{
armem::client::util::MemoryToDebugObserver::Services services{
.memoryNameSystem = memoryNameSystem(),
.debugObserver = getDebugObserverComponentPlugin(),
};
armem::client::util::MemoryToDebugObserver memoryToDebugObserver{
properties.memoryToDebugObserver, services};
Frequency frequency = Frequency::Hertz(properties.pollFrequencyHz);
Metronome metronome(frequency);
while (task and not task->isStopped())
{
memoryToDebugObserver.pollOnce();
metronome.waitForNextTick();
}
}
void
Component::createRemoteGuiTab()
{
using namespace armarx::RemoteGui::Client;
tab.group = GroupBox();
tab.group.setLabel("Todo ...");
VBoxLayout root = {tab.group, VSpacer()};
RemoteGui_createTab(getName(), root, &tab);
}
void
Component::RemoteGui_update()
{
if (tab.rebuild.exchange(false))
{
createRemoteGuiTab();
}
}
} // namespace armarx::memory_to_debug_observer
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package RobotAPI::ArmarXObjects::MemoryToDebugObserver
* @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
* @date 2023
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include <ArmarXCore/core/Component.h>
#include <ArmarXCore/libraries/ArmarXCoreComponentPlugins/DebugObserverComponentPlugin.h>
#include <ArmarXCore/util/tasks.h>
#include <ArmarXGui/libraries/ArmarXGuiComponentPlugins/LightweightRemoteGuiComponentPlugin.h>
#include <RobotAPI/libraries/armem/client/plugins/PluginUser.h>
#include <RobotAPI/libraries/armem/client/util/MemoryToDebugObserver.h>
namespace armarx::memory_to_debug_observer
{
/**
* @defgroup Component-MemoryToDebugObserver MemoryToDebugObserver
* @ingroup RobotAPI-Components
*
* Transfers data from the memory system to the \ref Component-DebugObserver "Debug Observer",
* allowing to visualize them in the \ref ArmarXGui-GuiPlugins-PlotterPlugin "Live Plotter".
*
* @see armarx::armem::client::util::MemoryToDebugObserver for the business logic
* implementation.
*
* @class Component
* @ingroup Component-MemoryToDebugObserver
* @brief Implementation of \ref Component-MemoryToDebugObserver.
*
* @see armarx::armem::client::util::MemoryToDebugObserver for the business logic
* implementation.
*/
class Component :
virtual public armarx::Component,
virtual public armarx::armem::ClientPluginUser,
virtual public armarx::DebugObserverComponentPluginUser,
virtual public armarx::LightweightRemoteGuiComponentPluginUser
{
public:
Component();
/// @see armarx::ManagedIceObject::getDefaultName()
std::string getDefaultName() const override;
// LightweightRemoteGuiComponentPluginUser interface
public:
void createRemoteGuiTab();
void RemoteGui_update() override;
protected:
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override;
void onInitComponent() override;
void onConnectComponent() override;
void onDisconnectComponent() override;
void onExitComponent() override;
void runLoop();
private:
struct Properties
{
armem::client::util::MemoryToDebugObserver::Properties memoryToDebugObserver;
std::string memoryToDebugObserverJson;
float pollFrequencyHz = 30;
};
Properties properties;
armarx::RunningTask<Component>::pointer_type task;
struct RemoteGuiTab : RemoteGui::Client::Tab
{
std::atomic_bool rebuild = false;
RemoteGui::Client::GroupBox group;
};
RemoteGuiTab tab;
};
} // namespace armarx::memory_to_debug_observer
......@@ -20,6 +20,7 @@ namespace armarx::skills::provider
root_profile_params.some_float = 5;
root_profile_params.some_int = 42;
root_profile_params.some_text = "YOLO";
root_profile_params.some_optional_text = "OPTIONAL";
root_profile_params.some_list_of_matrices.push_back(Eigen::Matrix3f::Zero());
root_profile_params.some_matrix = Eigen::Matrix3f::Zero();
......@@ -27,8 +28,9 @@ namespace armarx::skills::provider
.description = "This skill logs a message on ARMARX_IMPORTANT",
.rootProfileDefaults = root_profile_params.toAron(),
.timeout = armarx::core::time::Duration::MilliSeconds(1000),
.resultType =
armarx::skills::Example::HelloWorldAcceptedType::ToAronType()};
.parametersType =
armarx::skills::Example::HelloWorldAcceptedType::ToAronType(),
.resultType = armarx::skills::Example::HelloWorldAcceptedType::ToAronType()};
}
Skill::MainResult
......@@ -40,11 +42,7 @@ namespace armarx::skills::provider
in.parameters.toAron())
.dump(2)
<< "\n"
<< "Type fulfilled? "
<< parameters->fullfillsType(
armarx::skills::Example::HelloWorldAcceptedType::ToAronType())
<< "\n"
<< "(executed at: " << IceUtil::Time::now() << ")";
return {TerminatedSkillStatus::Succeeded, nullptr};
return {TerminatedSkillStatus::Succeeded, in.parameters.toAron()};
}
} // namespace armarx::skills::provider
......@@ -48,7 +48,6 @@ namespace armarx::skills::provider
IncompleteSkill::main(const MainInput& in)
{
auto s = HelloWorldSkill();
s.setParameters(in.parameters);
return s.mainOfSkill();
}
} // namespace armarx::skills::provider
......@@ -22,6 +22,9 @@
<ObjectChild key='some_text'>
<String />
</ObjectChild>
<ObjectChild key='some_optional_text'>
<String optional="True" />
</ObjectChild>
<ObjectChild key='some_list_of_matrices'>
<List>
......
......@@ -24,45 +24,51 @@
#include "GraspCandidateObserver.h"
//#include <ArmarXCore/core/checks/ConditionCheckEqualsPoseWithTolerance.h>
#include <ArmarXCore/observers/checks/ConditionCheckUpdated.h>
#include <ArmarXCore/core/exceptions/local/ExpressionException.h>
#include <ArmarXCore/observers/checks/ConditionCheckEquals.h>
#include <ArmarXCore/observers/checks/ConditionCheckInRange.h>
#include <ArmarXCore/observers/checks/ConditionCheckLarger.h>
#include <ArmarXCore/observers/checks/ConditionCheckSmaller.h>
#include <ArmarXCore/observers/checks/ConditionCheckUpdated.h>
#include <RobotAPI/libraries/core/checks/ConditionCheckEqualsPoseWithTolerance.h>
#include <RobotAPI/libraries/core/checks/ConditionCheckMagnitudeChecks.h>
#include <ArmarXCore/core/exceptions/local/ExpressionException.h>
#define TCP_POSE_CHANNEL "TCPPose"
#define TCP_TRANS_VELOCITIES_CHANNEL "TCPVelocities"
using namespace armarx;
using namespace armarx::grasping;
GraspCandidateObserver::GraspCandidateObserver() : graspCandidateWriter(memoryNameSystem())
GraspCandidateObserver::GraspCandidateObserver()
{
}
void GraspCandidateObserver::onInitObserver()
void
GraspCandidateObserver::onInitObserver()
{
usingTopic(getProperty<std::string>("GraspCandidatesTopicName").getValue());
offeringTopic(getProperty<std::string>("ConfigTopicName").getValue());
}
void GraspCandidateObserver::onConnectObserver()
void
GraspCandidateObserver::onConnectObserver()
{
configTopic = getTopic<GraspCandidateProviderInterfacePrx>(getProperty<std::string>("ConfigTopicName").getValue());
graspCandidateWriter.connect();
configTopic = getTopic<GraspCandidateProviderInterfacePrx>(
getProperty<std::string>("ConfigTopicName").getValue());
graspCandidateWriter.connect(memoryNameSystem());
}
PropertyDefinitionsPtr GraspCandidateObserver::createPropertyDefinitions()
PropertyDefinitionsPtr
GraspCandidateObserver::createPropertyDefinitions()
{
return PropertyDefinitionsPtr(new GraspCandidateObserverPropertyDefinitions(
getConfigIdentifier()));
return PropertyDefinitionsPtr(
new GraspCandidateObserverPropertyDefinitions(getConfigIdentifier()));
}
bool GraspCandidateObserver::FilterMatches(const CandidateFilterConditionPtr& filter, const std::string& providerName, const GraspCandidatePtr& candidate)
bool
GraspCandidateObserver::FilterMatches(const CandidateFilterConditionPtr& filter,
const std::string& providerName,
const GraspCandidatePtr& candidate)
{
if (filter->providerName != "*" && filter->providerName != providerName)
{
......@@ -72,11 +78,13 @@ bool GraspCandidateObserver::FilterMatches(const CandidateFilterConditionPtr& fi
{
return false;
}
if (filter->approach != AnyApproach && (candidate->executionHints == 0 || filter->approach != candidate->executionHints->approach))
if (filter->approach != AnyApproach &&
(candidate->executionHints == 0 || filter->approach != candidate->executionHints->approach))
{
return false;
}
if (filter->preshape != AnyAperture && (candidate->executionHints == 0 || filter->preshape != candidate->executionHints->preshape))
if (filter->preshape != AnyAperture &&
(candidate->executionHints == 0 || filter->preshape != candidate->executionHints->preshape))
{
return false;
}
......@@ -87,7 +95,8 @@ bool GraspCandidateObserver::FilterMatches(const CandidateFilterConditionPtr& fi
return true;
}
std::string GraspCandidateObserver::ObjectTypeToString(objpose::ObjectType type)
std::string
GraspCandidateObserver::ObjectTypeToString(objpose::ObjectType type)
{
switch (type)
{
......@@ -102,7 +111,8 @@ std::string GraspCandidateObserver::ObjectTypeToString(objpose::ObjectType type)
}
}
void GraspCandidateObserver::handleProviderUpdate(const std::string& providerName, int candidateCount)
void
GraspCandidateObserver::handleProviderUpdate(const std::string& providerName, int candidateCount)
{
if (updateCounters.count(providerName) == 0)
{
......@@ -118,26 +128,40 @@ void GraspCandidateObserver::handleProviderUpdate(const std::string& providerNam
{
offerChannel(providerName, "Channel of " + providerName);
}
offerOrUpdateDataField(providerName, "updateCounter", Variant(updateCounters[providerName]), "Counter that increases for each update");
offerOrUpdateDataField(providerName, "candidateCount", Variant(candidateCount), "Number of provided candiates");
offerOrUpdateDataField(providerName,
"updateCounter",
Variant(updateCounters[providerName]),
"Counter that increases for each update");
offerOrUpdateDataField(
providerName, "candidateCount", Variant(candidateCount), "Number of provided candiates");
}
void GraspCandidateObserver::reportGraspCandidates(const std::string& providerName, const GraspCandidateSeq& candidates, const Ice::Current&)
void
GraspCandidateObserver::reportGraspCandidates(const std::string& providerName,
const GraspCandidateSeq& candidates,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
this->candidates[providerName] = candidates;
graspCandidateWriter.commitGraspCandidateSeq(candidates, armarx::armem::Time::Now(), providerName);
graspCandidateWriter.commitGraspCandidateSeq(
candidates, armarx::armem::Time::Now(), providerName);
handleProviderUpdate(providerName, candidates.size());
}
void GraspCandidateObserver::reportBimanualGraspCandidates(const std::string& providerName, const BimanualGraspCandidateSeq& candidates, const Ice::Current&)
void
GraspCandidateObserver::reportBimanualGraspCandidates(const std::string& providerName,
const BimanualGraspCandidateSeq& candidates,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
this->bimanualCandidates[providerName] = candidates;
handleProviderUpdate(providerName, candidates.size());
}
void GraspCandidateObserver::reportProviderInfo(const std::string& providerName, const ProviderInfoPtr& info, const Ice::Current&)
void
GraspCandidateObserver::reportProviderInfo(const std::string& providerName,
const ProviderInfoPtr& info,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
providers[providerName] = info;
......@@ -154,36 +178,37 @@ void GraspCandidateObserver::reportProviderInfo(const std::string& providerName,
offerOrUpdateDataField(providerName, "objectType", ObjectTypeToString(info->objectType), "");
}
InfoMap GraspCandidateObserver::getAvailableProvidersWithInfo(const Ice::Current&)
InfoMap
GraspCandidateObserver::getAvailableProvidersWithInfo(const Ice::Current&)
{
std::unique_lock lock(dataMutex);
return providers;
}
StringSeq GraspCandidateObserver::getAvailableProviderNames(const Ice::Current&)
StringSeq
GraspCandidateObserver::getAvailableProviderNames(const Ice::Current&)
{
std::unique_lock lock(dataMutex);
return getAvailableProviderNames();
}
ProviderInfoPtr GraspCandidateObserver::getProviderInfo(const std::string& providerName, const Ice::Current&)
ProviderInfoPtr
GraspCandidateObserver::getProviderInfo(const std::string& providerName, const Ice::Current&)
{
std::unique_lock lock(dataMutex);
checkHasProvider(providerName);
return providers[providerName];
}
bool GraspCandidateObserver::hasProvider(const std::string& providerName, const Ice::Current& c)
bool
GraspCandidateObserver::hasProvider(const std::string& providerName, const Ice::Current& c)
{
std::unique_lock lock(dataMutex);
return hasProvider(providerName);
}
GraspCandidateSeq GraspCandidateObserver::getAllCandidates(const Ice::Current&)
GraspCandidateSeq
GraspCandidateObserver::getAllCandidates(const Ice::Current&)
{
std::unique_lock lock(dataMutex);
GraspCandidateSeq all;
......@@ -194,11 +219,16 @@ GraspCandidateSeq GraspCandidateObserver::getAllCandidates(const Ice::Current&)
return all;
}
GraspCandidateSeq GraspCandidateObserver::getCandidatesByProvider(const std::string& providerName, const Ice::Current& c)
GraspCandidateSeq
GraspCandidateObserver::getCandidatesByProvider(const std::string& providerName,
const Ice::Current& c)
{
return getCandidatesByProviders(Ice::StringSeq{providerName});
}
GraspCandidateSeq GraspCandidateObserver::getCandidatesByProviders(const Ice::StringSeq& providerNames, const Ice::Current& c)
GraspCandidateSeq
GraspCandidateObserver::getCandidatesByProviders(const Ice::StringSeq& providerNames,
const Ice::Current& c)
{
std::unique_lock lock(dataMutex);
GraspCandidateSeq all;
......@@ -213,7 +243,9 @@ GraspCandidateSeq GraspCandidateObserver::getCandidatesByProviders(const Ice::St
return all;
}
GraspCandidateSeq GraspCandidateObserver::getCandidatesByFilter(const CandidateFilterConditionPtr& filter, const Ice::Current&)
GraspCandidateSeq
GraspCandidateObserver::getCandidatesByFilter(const CandidateFilterConditionPtr& filter,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
GraspCandidateSeq matching;
......@@ -230,20 +262,26 @@ GraspCandidateSeq GraspCandidateObserver::getCandidatesByFilter(const CandidateF
return matching;
}
Ice::Int GraspCandidateObserver::getUpdateCounterByProvider(const std::string& providerName, const Ice::Current&)
Ice::Int
GraspCandidateObserver::getUpdateCounterByProvider(const std::string& providerName,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
checkHasProvider(providerName);
return updateCounters[providerName];
}
IntMap GraspCandidateObserver::getAllUpdateCounters(const Ice::Current& providerName)
IntMap
GraspCandidateObserver::getAllUpdateCounters(const Ice::Current& providerName)
{
std::unique_lock lock(dataMutex);
return updateCounters;
}
bool GraspCandidateObserver::setProviderConfig(const std::string& providerName, const StringVariantBaseMap& config, const Ice::Current&)
bool
GraspCandidateObserver::setProviderConfig(const std::string& providerName,
const StringVariantBaseMap& config,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
if (providers.count(providerName) == 0)
......@@ -254,19 +292,23 @@ bool GraspCandidateObserver::setProviderConfig(const std::string& providerName,
return true;
}
void GraspCandidateObserver::setSelectedCandidates(const GraspCandidateSeq& candidates, const Ice::Current&)
void
GraspCandidateObserver::setSelectedCandidates(const GraspCandidateSeq& candidates,
const Ice::Current&)
{
std::unique_lock lock(selectedCandidatesMutex);
selectedCandidates = candidates;
}
GraspCandidateSeq GraspCandidateObserver::getSelectedCandidates(const Ice::Current&)
GraspCandidateSeq
GraspCandidateObserver::getSelectedCandidates(const Ice::Current&)
{
std::unique_lock lock(selectedCandidatesMutex);
return selectedCandidates;
}
BimanualGraspCandidateSeq GraspCandidateObserver::getAllBimanualCandidates(const Ice::Current&)
BimanualGraspCandidateSeq
GraspCandidateObserver::getAllBimanualCandidates(const Ice::Current&)
{
std::unique_lock lock(dataMutex);
BimanualGraspCandidateSeq all;
......@@ -277,19 +319,25 @@ BimanualGraspCandidateSeq GraspCandidateObserver::getAllBimanualCandidates(const
return all;
}
void GraspCandidateObserver::setSelectedBimanualCandidates(const grasping::BimanualGraspCandidateSeq& candidates, const Ice::Current&)
void
GraspCandidateObserver::setSelectedBimanualCandidates(
const grasping::BimanualGraspCandidateSeq& candidates,
const Ice::Current&)
{
std::unique_lock lock(selectedCandidatesMutex);
selectedBimanualCandidates = candidates;
}
BimanualGraspCandidateSeq GraspCandidateObserver::getSelectedBimanualCandidates(const Ice::Current&)
BimanualGraspCandidateSeq
GraspCandidateObserver::getSelectedBimanualCandidates(const Ice::Current&)
{
std::unique_lock lock(selectedCandidatesMutex);
return selectedBimanualCandidates;
}
void GraspCandidateObserver::clearCandidatesByProvider(const std::string& providerName, const Ice::Current&)
void
GraspCandidateObserver::clearCandidatesByProvider(const std::string& providerName,
const Ice::Current&)
{
std::unique_lock lock(dataMutex);
......@@ -299,18 +347,24 @@ void GraspCandidateObserver::clearCandidatesByProvider(const std::string& provid
}
}
bool GraspCandidateObserver::hasProvider(const std::string& providerName)
bool
GraspCandidateObserver::hasProvider(const std::string& providerName)
{
return providers.count(providerName) > 0;
}
void GraspCandidateObserver::checkHasProvider(const std::string& providerName)
void
GraspCandidateObserver::checkHasProvider(const std::string& providerName)
{
if (!hasProvider(providerName))
{
throw LocalException("Unknown provider name '") << providerName << "'. Available providers: " << getAvailableProviderNames();
throw LocalException("Unknown provider name '")
<< providerName << "'. Available providers: " << getAvailableProviderNames();
}
}
StringSeq GraspCandidateObserver::getAvailableProviderNames()
StringSeq
GraspCandidateObserver::getAvailableProviderNames()
{
StringSeq names;
for (const auto& pair : providers)
......