KnownGraspCandidateReader.cpp
Go to the documentation of this file.
2 
3 #include <optional>
4 
5 #include <SimoxUtility/algorithm/string/string_tools.h>
6 
9 
15 #include <RobotAPI/libraries/armem_objects/aron/Attachment.aron.generated.h>
18 
20 {
21  void
23  {
24  ARMARX_DEBUG << "Reader: registerPropertyDefinitions";
25 
26  const std::string prefix = propertyPrefix;
27 
28  def->optional(properties.memoryName, prefix + "MemoryName");
29 
30  def->optional(properties.coreSegmentName,
31  prefix + "CoreSegment",
32  "Name of the memory core segment to use for object instances.");
33  }
34 
35  void
37  {
38  // Wait for the memory to become available and add it as dependency.
39  ARMARX_IMPORTANT << "Reader: Waiting for memory '" << properties.memoryName << "' ...";
40  try
41  {
42  memoryReader = memoryNameSystem.useReader(properties.memoryName);
43  ARMARX_IMPORTANT << "Reader: Connected to memory '" << properties.memoryName << "'";
44  }
46  {
47  ARMARX_ERROR << e.what();
48  return;
49  }
50  }
51 
52  std::optional<armem::grasping::arondto::KnownGraspInfo>
54  {
55  // clang-format off
57  .getCoreSegment(properties.coreSegmentName);
58  // clang-format on
59 
60  const armem::wm::EntityInstance* instance = nullptr;
61  s.forEachInstance([&instance](const wm::EntityInstance& i) { instance = &i; });
62  if (instance == nullptr)
63  {
64  ARMARX_VERBOSE << "No entity snapshots found";
65  return std::nullopt;
66  }
67  return armem::grasping::arondto::KnownGraspInfo::FromAron(instance->data());
68  }
69 
70  std::optional<armarx::armem::grasping::arondto::KnownGraspInfo>
71  Reader::queryKnownGraspInfoByEntityName(const std::string& entityName,
72  const armem::Time& timestamp)
73  {
74  // Query all entities from all provider.
76 
77  // clang-format off
78  qb
79  .coreSegments().withName(properties.coreSegmentName)
81  .entities().withName(entityName) // first, we search for the input entity, which may be dataset/class/index
82  .snapshots().beforeOrAtTime(timestamp);
83  // clang-format on
84 
85  const armem::client::QueryResult qResult = memoryReader.query(qb.buildQueryInput());
86 
87  ARMARX_VERBOSE << "Lookup result in reader: " << qResult;
88 
89  if (not qResult.success) /* c++20 [[unlikely]] */
90  {
91  return std::nullopt;
92  }
93 
94  auto ret = queryKnownGraspInfo(qResult.memory, timestamp);
95 
96  if (not ret)
97  {
98  // No grasp info was found. Try if we find a grasp without the object entity index
99  auto split = simox::alg::split(entityName, "/");
100  if (split.size() > 2) // there is more than just dataset/class
101  {
102  ARMARX_INFO << "No grasp found for object entity " << entityName
103  << ". Search for grasp without the index";
104  return queryKnownGraspInfoByEntityName(split[0] + "/" + split[1], timestamp);
105  }
106  }
107 
108  return ret;
109  }
110 
111 } // namespace armarx::armem::grasping::known_grasps
ARMARX_VERBOSE
#define ARMARX_VERBOSE
Definition: Logging.h:187
armarx::armem::grasping::known_grasps::Reader::queryKnownGraspInfoByEntityName
std::optional< armem::grasping::arondto::KnownGraspInfo > queryKnownGraspInfoByEntityName(const std::string &, const armem::Time &)
Definition: KnownGraspCandidateReader.cpp:71
armarx::armem::client::query::ProviderSegmentSelector::entities
EntitySelector & entities()
Start specifying entities.
Definition: selectors.cpp:135
armarx::aron::ret
ReaderT::InputType T & ret
Definition: rw.h:13
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::armem::wm::EntityInstance
Client-side working entity instance.
Definition: memory_definitions.h:32
armarx::armem::client::query::Builder::buildQueryInput
QueryInput buildQueryInput() const
Definition: Builder.cpp:12
armarx::armem::client::query::EntitySelector::snapshots
SnapshotSelector & snapshots()
Start specifying entity snapshots.
Definition: selectors.cpp:92
armarx::armem::client::QueryResult
Result of a QueryInput.
Definition: Query.h:50
armarx::armem::grasping::known_grasps::Reader::queryKnownGraspInfo
std::optional< armem::grasping::arondto::KnownGraspInfo > queryKnownGraspInfo(const armem::wm::Memory &memory, const armem::Time &)
Definition: KnownGraspCandidateReader.cpp:53
armarx::memory
Brief description of class memory.
Definition: memory.h:38
armarx::armem::client::query::Builder::coreSegments
CoreSegmentSelector & coreSegments()
Start specifying core segments.
Definition: Builder.cpp:42
ARMARX_DEBUG
#define ARMARX_DEBUG
Definition: Logging.h:184
armarx::armem::wm::CoreSegment
Client-side working memory core segment.
Definition: memory_definitions.h:119
armarx::armem::client::query::CoreSegmentSelector::withName
CoreSegmentSelector & withName(const std::string &name) override
Definition: selectors.cpp:198
error.h
armarx::armem::wm::Memory
Client-side working memory.
Definition: memory_definitions.h:133
armarx::armem::client::MemoryNameSystem::useReader
Reader useReader(const MemoryID &memoryID)
Use a memory server and get a reader for it.
Definition: MemoryNameSystem.cpp:198
armarx::armem::grasping::known_grasps::Reader::registerPropertyDefinitions
void registerPropertyDefinitions(armarx::PropertyDefinitionsPtr &def)
Definition: KnownGraspCandidateReader.cpp:22
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
memory_definitions.h
aron_conversions.h
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::armem::client::query::EntitySelector::withName
EntitySelector & withName(const std::string &name) override
Definition: selectors.cpp:112
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::armem::client::query::SnapshotSelector::beforeOrAtTime
SnapshotSelector & beforeOrAtTime(Time timestamp)
Definition: selectors.cpp:73
IceUtil::Handle< class PropertyDefinitionContainer >
Time.h
Builder.h
armarx::armem::client::MemoryNameSystem
The memory name system (MNS) client.
Definition: MemoryNameSystem.h:68
armarx::armem::error::CouldNotResolveMemoryServer
Indicates that a query to the Memory Name System failed.
Definition: mns.h:24
armarx::armem::grasping::known_grasps
Definition: KnownGraspCandidateReader.cpp:19
armarx::armem::client::query::Builder
The query::Builder class provides a fluent-style specification of hierarchical queries.
Definition: Builder.h:21
armarx::armem::client::query::CoreSegmentSelector::providerSegments
ProviderSegmentSelector & providerSegments()
Start specifying provider segments.
Definition: selectors.cpp:178
armarx::armem::grasping::known_grasps::Reader::connect
void connect(armem::client::MemoryNameSystem &memoryNameSystem)
Definition: KnownGraspCandidateReader.cpp:36
util.h
Logging.h
aron_conversions.h
armarx::armem::base::EntityInstanceBase::data
const DataT & data() const
Definition: EntityInstanceBase.h:129
armarx::armem::client::query::ProviderSegmentSelector::all
ProviderSegmentSelector & all() override
Definition: selectors.cpp:147
armarx::ctrlutil::s
double s(double t, double s0, double v0, double a0, double j)
Definition: CtrlUtil.h:33
KnownGraspCandidateReader.h
armarx::armem::client::Reader::query
QueryResult query(const QueryInput &input) const
Perform a query.
Definition: Reader.cpp:32
armarx::split
std::vector< std::string > split(const std::string &source, const std::string &splitBy, bool trimElements=false, bool removeEmptyElements=false)
Definition: StringHelpers.cpp:38
PackagePath.h