ExampleMemoryClient.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package RobotAPI::ArmarXObjects::ExampleMemoryClient
17  * @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
18  * @date 2020
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "ExampleMemoryClient.h"
24 
25 #include <algorithm>
26 #include <random>
27 
28 #include <Eigen/Geometry>
29 
30 #include <opencv2/imgcodecs.hpp>
31 #include <opencv2/imgproc.hpp>
32 #include <opencv2/opencv.hpp>
33 
34 #include <SimoxUtility/algorithm/string/string_tools.h>
35 #include <SimoxUtility/color/cmaps.h>
36 #include <SimoxUtility/math/pose/pose.h>
37 
40 
41 #include <RobotAPI/components/armem/server/ExampleMemory/aron/ExampleData.aron.generated.h>
53 
54 namespace armarx
55 {
56 
59  {
62 
63  defs->topic(debugObserver);
64 
65  defs->optional(p.usedMemoryName, "mem.UsedMemoryName", "Name of the memory to use.");
66  defs->optional(p.commitFrequency,
67  "ex.CommitFrequency",
68  "Frequency in which example data is commited. (max = 50Hz)");
69 
70  return defs;
71  }
72 
73  std::string
75  {
76  return "ExampleMemoryClient";
77  }
78 
79  void
81  {
82  }
83 
84  void
86  {
87  p.commitFrequency = std::min(p.commitFrequency, 50.f);
88 
91 
92  // Wait for the memory to become available and add it as dependency.
93  ARMARX_IMPORTANT << "Waiting for memory '" << p.usedMemoryName << "' ...";
94  try
95  {
96  memoryReader = memoryNameSystem().useReader(p.usedMemoryName);
97  memoryWriter = memoryNameSystem().useWriter(p.usedMemoryName);
98  }
100  {
101  ARMARX_ERROR << e.what();
102  return;
103  }
104 
105  // Add a provider segment to commit to.
106  exampleProviderID = addProviderSegment();
107  // Construct the entity ID.
108  exampleEntityID = exampleProviderID.withEntityName("example_entity");
109 
110 
111  // Subscribe to example_entity updates
112  // Using a lambda:
113  memoryNameSystem().subscribe(exampleEntityID,
114  [&](const armem::MemoryID& exampleEntityID,
115  const std::vector<armem::MemoryID>& snapshotIDs)
116  {
117  ARMARX_INFO << "Entity " << exampleEntityID
118  << " was updated by " << snapshotIDs.size()
119  << " snapshots.";
120  });
121  // Using a member function:
123  exampleEntityID, this, &ExampleMemoryClient::processExampleEntityUpdate);
124 
125 
127  task->start();
128  }
129 
130  void
132  {
133  task->stop();
134  }
135 
136  void
138  {
139  }
140 
141  void
143  {
144  ARMARX_IMPORTANT << "Running example.";
145  runStarted = armem::Time::Now();
146 
147  armem::MemoryID snapshotID = commitSingleSnapshot(exampleEntityID);
148  if (true)
149  {
150  commitMultipleSnapshots(exampleEntityID, 3);
151  }
152  if (true)
153  {
154  queryLatestSnapshot(snapshotID.getEntityID());
155  }
156  if (true)
157  {
158  queryExactSnapshot(snapshotID);
159  }
160  if (true)
161  {
162  commitExampleData();
163  queryExampleData();
164  }
165  if (true)
166  {
167  commitExamplesWithIDs();
168  }
169  if (true)
170  {
171  commitExamplesWithLinks();
172  }
173  if (true)
174  {
175  //commitExampleImages();
176  }
177  if (true)
178  {
179  commitExamplesWithUntypedData();
180  }
181  if (true)
182  {
183  queryPredictionEngines();
184  }
185 
186  CycleUtil c(static_cast<int>(1000 / p.commitFrequency));
187  while (!task->isStopped())
188  {
189  commitSingleSnapshot(exampleEntityID);
190 
191  c.waitForCycleDuration();
192  }
193  }
194 
196  ExampleMemoryClient::addProviderSegment()
197  {
198  armem::data::AddSegmentInput input;
199  input.coreSegmentName = "ExampleModality";
200  input.providerSegmentName = "FancyMethodModality";
201 
203  armem::data::AddSegmentResult result = memoryWriter.addSegment(input);
204  ARMARX_INFO << result;
205 
206  return armem::MemoryID(result.segmentID);
207  }
208 
209  // COMMIT
210 
212  ExampleMemoryClient::commitSingleSnapshot(const armem::MemoryID& entityID)
213  {
214  std::default_random_engine gen(std::random_device{}());
215  std::uniform_int_distribution<int> distrib(-20, 20);
216 
217  // Prepare the update with some empty instances.
219  update.entityID = entityID;
220  update.referencedTime = armem::Time::Now();
221 
222  double diff = (update.referencedTime - runStarted).toMilliSecondsDouble() / 1000;
223 
224  auto dict1 = std::make_shared<aron::data::Dict>();
225  auto dict2 = std::make_shared<aron::data::Dict>();
226 
227  auto sin = std::make_shared<aron::data::Float>(std::sin(diff));
228  auto cos = std::make_shared<aron::data::Float>(std::cos(diff));
229 
230  auto sqrt = std::make_shared<aron::data::Double>(std::sqrt(diff));
231  auto lin = std::make_shared<aron::data::Long>(static_cast<long>(diff * 1000));
232  auto rand = std::make_shared<aron::data::Int>(distrib(gen));
233 
234  dict1->addElement("sin", sin);
235  dict1->addElement("cos", cos);
236 
237  dict2->addElement("sqrt", sqrt);
238  dict2->addElement("lin", lin);
239  dict2->addElement("rand", rand);
240 
241  update.instancesData = {dict1, dict2};
242 
243  ARMARX_IMPORTANT << "Committing " << update;
244  armem::EntityUpdateResult updateResult = memoryWriter.commit(update);
245  ARMARX_INFO << updateResult;
246  if (!updateResult.success)
247  {
248  ARMARX_ERROR << updateResult.errorMessage;
249  }
250 
251  return updateResult.snapshotID;
252  }
253 
254  void
255  ExampleMemoryClient::commitMultipleSnapshots(const armem::MemoryID& entityID, int num)
256  {
257  // Commit a number of updates with different timestamps and number of instances.
258  armem::Commit commit;
259  for (int i = 0; i < num; ++i)
260  {
261  armem::EntityUpdate& update = commit.add();
262  update.entityID = entityID;
263  update.referencedTime = armem::Time::Now() + armem::Duration::Seconds(i);
264  for (int j = 0; j < i; ++j)
265  {
266  update.instancesData.push_back(std::make_shared<aron::data::Dict>());
267  }
268  }
269  ARMARX_IMPORTANT << "Committing " << commit;
270  armem::CommitResult commitResult = memoryWriter.commit(commit);
271  ARMARX_INFO << commitResult;
272  if (!commitResult.allSuccess())
273  {
274  ARMARX_ERROR << commitResult.allErrorMessages();
275  }
276  }
277 
278  // QUERY
279 
280  void
281  ExampleMemoryClient::queryLatestSnapshot(const armem::MemoryID& entityID)
282  {
283  ARMARX_IMPORTANT << "Querying latest snapshot in entity: "
284  << "\n- entityID: \t'" << entityID << "'";
285 
286  armem::client::query::Builder builder;
287  builder.coreSegments()
288  .withID(entityID)
289  .providerSegments()
290  .withID(entityID)
291  .entities()
292  .withID(entityID)
293  .snapshots()
294  .latest();
295 
296  armem::client::QueryResult qResult = memoryReader.query(builder.buildQueryInput());
297  ARMARX_INFO << qResult;
298  if (qResult.success)
299  {
300  ARMARX_IMPORTANT << "Getting entity via ID";
301 
302  armem::wm::Memory& memory = qResult.memory;
303  ARMARX_CHECK(memory.hasInstances());
304 
305  ARMARX_CHECK_GREATER_EQUAL(memory.size(), 1);
306 
307  const armem::wm::Entity* entity = memory.findEntity(entityID);
308  ARMARX_CHECK_NOT_NULL(entity)
309  << "Entity " << entityID << " was not found in " << armem::print(memory);
310  ARMARX_CHECK_GREATER_EQUAL(entity->size(), 1);
311 
312  const armem::wm::EntitySnapshot& snapshot = entity->getLatestSnapshot();
313  ARMARX_CHECK_GREATER_EQUAL(snapshot.size(), 1);
314 
315  ARMARX_INFO << "Result: "
316  << "\n- entity: \t" << entity->name() << "\n- snapshot: \t"
317  << snapshot.time() << "\n- #instances: \t" << snapshot.size();
318 
319  // Show memory contents in remote gui.
320  tab.queryResult = std::move(memory);
321  tab.rebuild = true;
322  }
323  else
324  {
325  ARMARX_ERROR << qResult.errorMessage;
326  }
327  }
328 
329  void
330  ExampleMemoryClient::queryExactSnapshot(const armem::MemoryID& snapshotID)
331  {
332  ARMARX_IMPORTANT << "Querying exact snapshot: "
333  << "\n- snapshotID: \t'" << snapshotID << "'";
334 
335  namespace qf = armem::client::query_fns;
336  armem::client::query::Builder qb;
337  qb.singleEntitySnapshot(snapshotID);
338 
339  armem::client::QueryResult qResult = memoryReader.query(qb.buildQueryInput());
340  ARMARX_INFO << qResult;
341 
342  if (qResult.success)
343  {
344  armem::wm::Memory memory = std::move(qResult.memory);
345  {
346  const armem::wm::EntitySnapshot& entitySnapshot = memory.getLatestSnapshot();
347 
348  ARMARX_INFO << "Result snapshot: "
349  << "\n- time: \t" << entitySnapshot.time()
350  << "\n- # instances: \t" << entitySnapshot.size();
351  }
352  {
353  const armem::wm::EntitySnapshot& entitySnapshot =
354  memory.getEntity(snapshotID).getLatestSnapshot();
355 
356  ARMARX_INFO << "Result snapshot: "
357  << "\n- time: \t" << entitySnapshot.time()
358  << "\n- # instances: \t" << entitySnapshot.size();
359  }
360  }
361 
362  else
363  {
364  ARMARX_ERROR << qResult.errorMessage;
365  }
366  }
367 
368  void
369  ExampleMemoryClient::commitExampleData()
370  {
371  ARMARX_IMPORTANT << "Adding segment "
372  << "ExampleData"
373  << "/" << getName();
374 
375  auto addSegmentResult = memoryWriter.addSegment("ExampleData", getName());
376  if (!addSegmentResult.success)
377  {
378  ARMARX_ERROR << addSegmentResult.errorMessage;
379  return;
380  }
381  exampleDataProviderID = armem::MemoryID(addSegmentResult.segmentID);
382 
383  addSegmentResult = memoryWriter.addSegment("LinkedData", getName());
384  if (!addSegmentResult.success)
385  {
386  ARMARX_ERROR << addSegmentResult.errorMessage;
387  return;
388  }
389  linkedDataProviderID = armem::MemoryID(addSegmentResult.segmentID);
390 
391  const armem::Time time = armem::Time::Now();
392  armem::Commit commit;
393 
394  //commit to default
395  {
396  armem::EntityUpdate& update = commit.add();
397  update.entityID = exampleDataProviderID.withEntityName("default");
398  update.referencedTime = time;
399 
400  armem::example::ExampleData data;
401  toAron(data.memoryID, armem::MemoryID());
402  toAron(data.memoryLink.memoryID, armem::MemoryID());
403  ARMARX_CHECK_NOT_NULL(data.toAron());
404  update.instancesData = {data.toAron()};
405  }
406 
407 
408  //commit to the answer
409  {
410  armem::EntityUpdate& update = commit.add();
411  update.entityID = exampleDataProviderID.withEntityName("the answer");
412  update.referencedTime = time;
413 
414  armem::example::ExampleData data;
415  data.the_bool = true;
416  data.the_double = std::sin(time.toDurationSinceEpoch().toSecondsDouble());
417  data.the_float = 21.5;
418  data.the_int = 42;
419  data.the_long = 424242;
420  data.the_string = "fourty two";
421  data.the_float_list = {21, 42, 84};
422  data.the_int_list = {21, 42, 84};
423  data.the_string_list = simox::alg::multi_to_string(data.the_int_list);
424  data.the_object_list.emplace_back();
425 
426  data.the_float_dict = {
427  {"one", 1.0},
428  {"two", 2.0},
429  {"three", 3.0},
430  };
431  data.the_int_dict = {
432  {"one", 1},
433  {"two", 2},
434  {"three", 3},
435  };
436 
437  data.the_position = {42, 24, 4224};
438  data.the_orientation = Eigen::AngleAxisf(1.57f, Eigen::Vector3f(1, 1, 1).normalized());
439  data.the_pose = simox::math::pose(data.the_position, data.the_orientation);
440 
441  data.the_3x1_vector = {24, 42, 2442};
442  data.the_4x4_matrix = 42 * Eigen::Matrix4f::Identity();
443 
444  toAron(data.memoryID, armem::MemoryID()); // ////1/1
445  toAron(data.memoryLink.memoryID, armem::MemoryID());
446 
447  simox::ColorMap cmap = simox::color::cmaps::plasma();
448  {
449  cv::Mat& image = data.the_rgb24_image;
450  image.create(10, 20, image.type());
451  cmap.set_vlimits(0, float(image.cols + image.rows));
452  using Pixel = cv::Point3_<uint8_t>;
453  image.forEach<Pixel>(
454  [&cmap](Pixel& pixel, const int index[]) -> void
455  {
456  simox::Color color = cmap(float(index[0] + index[1]));
457  pixel.x = color.r;
458  pixel.y = color.g;
459  pixel.z = color.b;
460  });
461 
462  //cv::Mat out;
463  //cv::cvtColor(image, out, /*CV_RGB2BGR*/);
464  cv::imwrite("/tmp/the_rgb24_image.png", image); // out
465  }
466  {
467  cv::Mat& image = data.the_depth32_image;
468  image.create(20, 10, image.type());
469  image.forEach<float>(
470  [&image](float& pixel, const int index[]) -> void
471  { pixel = 100 * float(index[0] + index[1]) / float(image.rows + image.cols); });
472 
473  cmap.set_vlimits(0, 100);
474  cv::Mat rgb(image.rows, image.cols, CV_8UC3);
475  using Pixel = cv::Point3_<uint8_t>;
476  rgb.forEach<Pixel>(
477  [&image, &cmap](Pixel& pixel, const int index[]) -> void
478  {
479  simox::Color color = cmap(image.at<float>(index));
480  pixel.x = color.r;
481  pixel.y = color.g;
482  pixel.z = color.b;
483  });
484 
485  //cv::Mat out;
486  //cv::cvtColor(rgb, out, CV_RGB2BGR);
487  cv::imwrite("/tmp/the_depth32_image.png", image); // out
488  }
489 
490  ARMARX_CHECK_NOT_NULL(data.toAron());
491  update.instancesData = {data.toAron()};
492  }
493 
494  // commit to linked data
495  {
496  armem::EntityUpdate& update = commit.add();
497  update.entityID = linkedDataProviderID.withEntityName("yet_more_data");
498  update.referencedTime = time;
499 
500  armem::example::LinkedData data;
501  data.yet_another_int = 42;
502  data.yet_another_string = "Hi! I'm from another core segment!";
503  data.yet_another_object.element_int = 8349;
504  data.yet_another_object.element_float = -1e3;
505  data.yet_another_object.element_string = "I'm a nested object in some linked data.";
506  ARMARX_CHECK_NOT_NULL(data.toAron());
507  update.instancesData = {data.toAron()};
508  }
509 
510  armem::CommitResult commitResult = memoryWriter.commit(commit);
511  if (commitResult.allSuccess())
512  {
513  theAnswerSnapshotID = commitResult.results.at(1).snapshotID;
514  yetMoreDataSnapshotID = commitResult.results.at(2).snapshotID;
515  }
516  else
517  {
518  ARMARX_WARNING << commitResult.allErrorMessages();
519  }
520  }
521 
522  void
523  ExampleMemoryClient::queryExampleData()
524  {
525  // Query all entities from provider.
526  armem::client::query::Builder qb;
527  qb.coreSegments()
528  .withID(exampleProviderID)
529  .providerSegments()
530  .withID(exampleProviderID)
531  .entities()
532  .all()
533  .snapshots()
534  .all();
535 
536  armem::client::QueryResult result = memoryReader.query(qb.buildQueryInput());
537  if (result.success)
538  {
539  tab.queryResult = std::move(result.memory);
540  tab.rebuild = true;
541  }
542  else
543  {
544  ARMARX_ERROR << result.errorMessage;
545  }
546  }
547 
548  void
549  ExampleMemoryClient::commitExamplesWithIDs()
550  {
551  ARMARX_IMPORTANT << "Committing multiple entity updates with links ...";
552  const armem::Time time = armem::Time::Now();
553 
554  armem::Commit commit;
555  {
556  armem::EntityUpdate& update = commit.add();
557  update.entityID = exampleDataProviderID.withEntityName("id to the_answer");
558  update.referencedTime = time;
559 
560  armem::example::ExampleData data;
561  armem::toAron(data.memoryID, theAnswerSnapshotID);
562  armem::toAron(data.memoryLink.memoryID, armem::MemoryID());
563 
564  update.instancesData = {data.toAron()};
565  }
566  {
567  armem::EntityUpdate& update = commit.add();
568  update.entityID = exampleDataProviderID.withEntityName("id to self");
569  update.referencedTime = time;
570 
571  armem::example::ExampleData data;
572  armem::toAron(data.memoryID, update.entityID.withTimestamp(time));
573  armem::toAron(data.memoryLink.memoryID, armem::MemoryID());
574 
575  update.instancesData = {data.toAron()};
576  }
577 
578  {
579  armem::EntityUpdate& update = commit.add();
580  update.entityID = exampleDataProviderID.withEntityName("id to previous snapshot");
581  update.referencedTime = time - armem::Duration::Seconds(1); // 1 sec in the past
582 
583  armem::example::ExampleData data;
584  armem::toAron(data.memoryID, armem::MemoryID()); // First entry - invalid link
585  armem::toAron(data.memoryLink.memoryID, armem::MemoryID());
586 
587  update.instancesData = {data.toAron()};
588  }
589  {
590  armem::EntityUpdate& update = commit.add();
591  update.entityID = exampleDataProviderID.withEntityName("id to previous snapshot");
592  update.referencedTime = time;
593 
594  armem::example::ExampleData data;
595  armem::toAron(data.memoryID,
596  update.entityID.withTimestamp(time - armem::Duration::Seconds(1)));
597  armem::toAron(data.memoryLink.memoryID, armem::MemoryID());
598 
599  update.instancesData = {data.toAron()};
600  }
601 
602  ARMARX_CHECK_EQUAL(commit.updates.size(), 4);
603  armem::CommitResult commitResult = memoryWriter.commit(commit);
604 
605  if (!commitResult.allSuccess() || commitResult.results.size() != commit.updates.size())
606  {
607  ARMARX_WARNING << commitResult.allErrorMessages();
608  }
609 
610 
611  // Resolve memory IDs via memory name system (works for IDs from different servers).
612  ARMARX_IMPORTANT << "Resolving multiple memory IDs via Memory Name System:";
613  {
614  std::vector<armem::MemoryID> ids;
615  for (armem::EntityUpdateResult& result : commitResult.results)
616  {
617  ids.push_back(result.snapshotID);
618  }
619  ARMARX_CHECK_EQUAL(ids.size(), commit.updates.size());
620 
621  std::map<armem::MemoryID, armem::wm::EntityInstance> instances =
623  ARMARX_CHECK_EQUAL(instances.size(), commit.updates.size());
624 
625  std::stringstream ss;
626  for (const auto& [id, instance] : instances)
627  {
628  ss << "- Snapshot " << id << " "
629  << "\n--> Instance" << instance.id()
630  << " (# keys in data: " << instance.data()->childrenSize() << ")"
631  << "\n";
632  }
633  ARMARX_INFO << ss.str();
634  }
635  }
636 
637  void
638  ExampleMemoryClient::commitExamplesWithLinks()
639  {
640  ARMARX_IMPORTANT << "Committing an entity update with a link...";
641 
642  const armem::Time time = armem::Time::Now();
643 
644  armem::Commit commit;
645  {
646  armem::EntityUpdate& update = commit.add();
647  update.entityID = exampleDataProviderID.withEntityName("link to yet_more_data");
648  update.referencedTime = time;
649 
650  armem::example::ExampleData data;
651  armem::toAron(data.memoryID, armem::MemoryID());
652  armem::toAron(data.memoryLink.memoryID, yetMoreDataSnapshotID);
653 
654  update.instancesData = {data.toAron()};
655  }
656 
657  ARMARX_CHECK_EQUAL(commit.updates.size(), 1);
658  armem::CommitResult commitResult = memoryWriter.commit(commit);
659 
660  if (!commitResult.allSuccess() || commitResult.results.size() != commit.updates.size())
661  {
662  ARMARX_WARNING << commitResult.allErrorMessages();
663  }
664 
665 
666  // Resolve memory IDs via memory name system (works for IDs from different servers).
667  ARMARX_IMPORTANT << "Resolving multiple memory IDs via Memory Name System:";
668  {
669  std::vector<armem::MemoryID> ids;
670  for (armem::EntityUpdateResult& result : commitResult.results)
671  {
672  ids.push_back(result.snapshotID);
673  }
674  ARMARX_CHECK_EQUAL(ids.size(), commit.updates.size());
675 
676  std::map<armem::MemoryID, armem::wm::EntityInstance> instances =
678  ARMARX_CHECK_EQUAL(instances.size(), commit.updates.size());
679 
680  std::stringstream ss;
681  for (const auto& [id, instance] : instances)
682  {
683  ss << "- Snapshot " << id << " "
684  << "\n--> Instance" << instance.id()
685  << " (# keys in data: " << instance.data()->childrenSize() << ")"
686  << "\n";
687  }
688  ARMARX_INFO << ss.str();
689  }
690  }
691 
692  void
693  ExampleMemoryClient::commitExampleImages()
694  {
695  const armem::Time time = armem::Time::Now();
696 
697  armem::Commit commit;
698  {
699  armem::EntityUpdate& update = commit.add();
700  update.entityID = exampleDataProviderID.withEntityName("some_new_fancy_entity_id");
701  update.referencedTime = time;
702 
703  auto currentFolder = std::filesystem::current_path();
704  auto opencv_img = cv::imread(
705  (currentFolder / "images" / (std::to_string(imageCounter + 1) + ".jpg")).string());
706  imageCounter++;
707  imageCounter %= 10;
708 
709  auto data = std::make_shared<aron::data::Dict>();
710  data->addElement(
711  "opencv_image",
713 
714  update.instancesData = {data};
715  }
716  }
717 
718  void
719  ExampleMemoryClient::commitExamplesWithUntypedData()
720  {
721  const armem::Time time = armem::Time::Now();
722 
723  armem::Commit commit;
724  {
725  armem::EntityUpdate& update = commit.add();
726  update.entityID = exampleDataProviderID.withEntityName("unexpected_data");
727  update.referencedTime = time;
728 
729  armem::example::ExampleData data;
730  toAron(data.memoryID, armem::MemoryID()); // ////1/1
731  toAron(data.memoryLink.memoryID, armem::MemoryID());
732 
733  aron::data::DictPtr aron = data.toAron();
734  aron->addElement("unexpectedString",
735  std::make_shared<aron::data::String>("unexpected value"));
736  aron->addElement(
737  "unexpectedDict",
738  std::make_shared<aron::data::Dict>(std::map<std::string, aron::data::VariantPtr>{
739  {"key43", std::make_shared<aron::data::Int>(43)},
740  {"keyABC", std::make_shared<aron::data::String>("ABC")},
741  }));
742  update.instancesData = {aron};
743  }
744 
745  armem::CommitResult commitResult = memoryWriter.commit(commit);
746  if (!commitResult.allSuccess())
747  {
748  ARMARX_WARNING << commitResult.allErrorMessages();
749  }
750  }
751 
752  void
753  ExampleMemoryClient::queryPredictionEngines()
754  {
755  const std::map<armem::MemoryID, std::vector<armem::PredictionEngine>> predictionEngines =
756  memoryReader.getAvailablePredictionEngines();
757 
758  std::stringstream ss;
759  ss << "Prediction engines available in the server:" << std::endl;
760  for (const auto& [id, engines] : predictionEngines)
761  {
762  ss << " - " << id << ": ";
763  for (const armem::PredictionEngine& engine : engines)
764  {
765  ss << engine.engineID << ", ";
766  }
767  ss << std::endl;
768  }
769 
770  ARMARX_INFO << ss.str();
771  }
772 
773  void
774  ExampleMemoryClient::processExampleEntityUpdate(const armem::MemoryID& subscriptionID,
775  const std::vector<armem::MemoryID>& snapshotIDs)
776  {
777  std::stringstream ss;
778  ss << "example_entity got updated: " << subscriptionID << "\n";
779  ss << "Updated snapshots: \n";
780  for (const auto& id : snapshotIDs)
781  {
782  ss << "- " << id << "\n";
783  }
784  ARMARX_IMPORTANT << ss.str();
785  // Fetch new data of example_entity and do something with it.
786  }
787 
788  void
790  {
791  using namespace armarx::RemoteGui::Client;
792 
793  if (tab.queryResult)
794  {
795  }
796 
797  VBoxLayout root = {tab.queryResultGroup, VSpacer()};
798  RemoteGui_createTab(getName(), root, &tab);
799  }
800 
801  void
803  {
804  if (tab.rebuild.exchange(false))
805  {
807  }
808  }
809 
810 } // namespace armarx
armarx::armem::CommitResult::allErrorMessages
std::vector< std::string > allErrorMessages() const
Definition: Commit.cpp:73
armarx::core::time::Duration::toSecondsDouble
double toSecondsDouble() const
Returns the amount of seconds.
Definition: Duration.cpp:90
armarx::armem::client::Writer::addSegment
data::AddSegmentResult addSegment(const std::string &coreSegmentName, const std::string &providerSegmentName, bool clearWhenExists=false) const
Definition: Writer.cpp:16
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::core::time::DateTime::toDurationSinceEpoch
Duration toDurationSinceEpoch() const
Definition: DateTime.cpp:105
armarx::armem::Commit
A bundle of updates to be sent to the memory.
Definition: Commit.h:84
index
uint8_t index
Definition: EtherCATFrame.h:59
armarx::RemoteGui::Client::VBoxLayout
Definition: Widgets.h:167
armarx::core::time::DateTime::Now
static DateTime Now()
Definition: DateTime.cpp:51
armarx::armem::EntityUpdateResult
Result of an EntityUpdate.
Definition: Commit.h:69
armarx::armem::client::plugins::PluginUser::memoryNameSystem
MemoryNameSystem & memoryNameSystem()
Definition: PluginUser.cpp:20
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
armarx::armem::toAron
void toAron(arondto::MemoryID &dto, const MemoryID &bo)
Definition: aron_conversions.cpp:19
armarx::armem::client::MemoryNameSystem::useWriter
Writer useWriter(const MemoryID &memoryID)
Use a memory server and get a writer for it.
Definition: MemoryNameSystem.cpp:289
armarx::CycleUtil
This util class helps with keeping a cycle time during a control cycle.
Definition: CycleUtil.h:40
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
query_fns.h
armarx::ExampleMemoryClient::onConnectComponent
void onConnectComponent() override
Pure virtual hook for the subclass.
Definition: ExampleMemoryClient.cpp:85
ExampleMemoryClient.h
armarx::ExampleMemoryClient::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: ExampleMemoryClient.cpp:58
armarx::RemoteGui::Client::VSpacer
Definition: Widgets.h:204
armarx::RunningTask
Definition: ArmarXMultipleObjectsScheduler.h:36
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
NLohmannJSONConverter.h
armarx::armem::Commit::updates
std::vector< EntityUpdate > updates
The entity updates.
Definition: Commit.h:92
armarx::ExampleMemoryClient::onInitComponent
void onInitComponent() override
Pure virtual hook for the subclass.
Definition: ExampleMemoryClient.cpp:80
GfxTL::Identity
void Identity(MatrixXX< N, N, T > *a)
Definition: MatrixXX.h:570
armarx::core::time::Duration::Seconds
static Duration Seconds(std::int64_t seconds)
Constructs a duration in seconds.
Definition: Duration.cpp:72
Color
uint32_t Color
RGBA color.
Definition: color.h:8
armarx::aron::data::converter::AronOpenCVConverter::ConvertFromMat
static data::NDArrayPtr ConvertFromMat(const cv::Mat &, const armarx::aron::Path &={})
Definition: OpenCVConverter.cpp:52
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
armarx::ExampleMemoryClient::createRemoteGuiTab
void createRemoteGuiTab()
Definition: ExampleMemoryClient.cpp:789
MemoryRemoteGui.h
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
armarx::ExampleMemoryClient::onDisconnectComponent
void onDisconnectComponent() override
Hook for subclass.
Definition: ExampleMemoryClient.cpp:131
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
error.h
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::EntityUpdate
An update of an entity for a specific point in time.
Definition: Commit.h:25
armarx::armem::CommitResult
Result of a Commit.
Definition: Commit.h:105
All.h
armarx::armem::client::Writer::commit
CommitResult commit(const Commit &commit) const
Writes a Commit to the memory.
Definition: Writer.cpp:59
armarx::armem::client::Reader::getAvailablePredictionEngines
std::map< MemoryID, std::vector< PredictionEngine > > getAvailablePredictionEngines() const
Get the list of prediction engines supported by the memory.
Definition: Reader.cpp:526
armarx::armem::client::util::MemoryListener::subscribe
SubscriptionHandle subscribe(const MemoryID &subscriptionID, Callback Callback)
Definition: MemoryListener.cpp:116
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
operations.h
ARMARX_CHECK_GREATER_EQUAL
#define ARMARX_CHECK_GREATER_EQUAL(lhs, rhs)
This macro evaluates whether lhs is greater or equal (>=) rhs and if it turns out to be false it will...
Definition: ExpressionException.h:123
armarx::to_string
const std::string & to_string(const std::string &s)
Definition: StringHelpers.h:41
armarx::armem::server::ltm::util::mongodb::detail::update
bool update(mongocxx::collection &coll, const nlohmann::json &query, const nlohmann::json &update)
Definition: mongodb.cpp:68
armarx::armem::EntityUpdateResult::snapshotID
MemoryID snapshotID
Definition: Commit.h:73
aron_conversions.h
armarx::armem::PredictionEngine
Definition: Prediction.h:32
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_startRunningTask
void RemoteGui_startRunningTask()
Definition: LightweightRemoteGuiComponentPlugin.cpp:119
CycleUtil.h
ExpressionException.h
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::armem::client::MemoryNameSystem::resolveEntityInstances
std::map< MemoryID, wm::EntityInstance > resolveEntityInstances(const std::vector< MemoryID > &ids)
Definition: MemoryNameSystem.cpp:343
OpenCVConverter.h
GfxTL::sqrt
VectorXD< D, T > sqrt(const VectorXD< D, T > &a)
Definition: VectorXD.h:704
armarx::ExampleMemoryClient::onExitComponent
void onExitComponent() override
Hook for subclass.
Definition: ExampleMemoryClient.cpp:137
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
armarx::Component::getConfigIdentifier
std::string getConfigIdentifier()
Retrieve config identifier for this component as set in constructor.
Definition: Component.cpp:79
armarx::armem::MemoryID::getEntityID
MemoryID getEntityID() const
Definition: MemoryID.cpp:310
armarx::armem::server::wm::EntitySnapshot
armem::wm::EntitySnapshot EntitySnapshot
Definition: forward_declarations.h:66
armarx::armem::MemoryID::withEntityName
MemoryID withEntityName(const std::string &name) const
Definition: MemoryID.cpp:425
armarx::armem::Commit::add
EntityUpdate & add()
Definition: Commit.cpp:80
armarx::ComponentPropertyDefinitions
Default component property definition container.
Definition: Component.h:69
float
#define float
Definition: 16_Level.h:22
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::armem::CommitResult::results
std::vector< EntityUpdateResult > results
Definition: Commit.h:107
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_createTab
void RemoteGui_createTab(std::string const &name, RemoteGui::Client::Widget const &rootWidget, RemoteGui::Client::Tab *tab)
Definition: LightweightRemoteGuiComponentPlugin.cpp:103
IceUtil::Handle
Definition: forward_declarations.h:30
Builder.h
armarx::armem::print
std::string print(const wm::Memory &data, int maxDepth=-1, int depth=0)
Definition: operations.cpp:72
armarx::armem::error::CouldNotResolveMemoryServer
Indicates that a query to the Memory Name System failed.
Definition: mns.h:24
armarx::ManagedIceObject::getName
std::string getName() const
Retrieve name of object.
Definition: ManagedIceObject.cpp:108
MemoryNameSystem.h
armarx::toAron
void toAron(arondto::PackagePath &dto, const PackageFileLocation &bo)
min
T min(T t1, T t2)
Definition: gdiam.h:44
ARMARX_CHECK_EQUAL
#define ARMARX_CHECK_EQUAL(lhs, rhs)
This macro evaluates whether lhs is equal (==) rhs and if it turns out to be false it will throw an E...
Definition: ExpressionException.h:130
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
armarx::RemoteGui::Client
Definition: EigenWidgets.cpp:8
armarx::ExampleMemoryClient::getDefaultName
std::string getDefaultName() const override
Definition: ExampleMemoryClient.cpp:74
armarx::armem::CommitResult::allSuccess
bool allSuccess() const
Definition: Commit.cpp:64
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::ExampleMemoryClient::run
void run()
Definition: ExampleMemoryClient.cpp:142
armarx::armem::client::Reader::query
QueryResult query(const QueryInput &input) const
Perform a query.
Definition: Reader.cpp:32
ice_conversions.h
armarx::ExampleMemoryClient::RemoteGui_update
void RemoteGui_update() override
Definition: ExampleMemoryClient.cpp:802
armarx::human::MemoryID
const armem::MemoryID MemoryID
Definition: memory_ids.cpp:28