28 #include <Eigen/Geometry>
30 #include <opencv2/imgcodecs.hpp>
31 #include <opencv2/imgproc.hpp>
32 #include <opencv2/opencv.hpp>
34 #include <SimoxUtility/algorithm/string/string_tools.h>
35 #include <SimoxUtility/color/cmaps.h>
36 #include <SimoxUtility/math/pose/pose.h>
41 #include <RobotAPI/components/armem/server/ExampleMemory/aron/ExampleData.aron.generated.h>
63 defs->topic(debugObserver);
65 defs->optional(p.usedMemoryName,
"mem.UsedMemoryName",
"Name of the memory to use.");
66 defs->optional(p.commitFrequency,
68 "Frequency in which example data is commited. (max = 50Hz)");
76 return "ExampleMemoryClient";
87 p.commitFrequency =
std::min(p.commitFrequency, 50.f);
106 exampleProviderID = addProviderSegment();
108 exampleEntityID = exampleProviderID.
withEntityName(
"example_entity");
115 const std::vector<armem::MemoryID>& snapshotIDs)
118 <<
" was updated by " << snapshotIDs.size()
123 exampleEntityID,
this, &ExampleMemoryClient::processExampleEntityUpdate);
150 commitMultipleSnapshots(exampleEntityID, 3);
158 queryExactSnapshot(snapshotID);
167 commitExamplesWithIDs();
171 commitExamplesWithLinks();
179 commitExamplesWithUntypedData();
183 queryPredictionEngines();
186 CycleUtil c(
static_cast<int>(1000 / p.commitFrequency));
187 while (!task->isStopped())
189 commitSingleSnapshot(exampleEntityID);
191 c.waitForCycleDuration();
196 ExampleMemoryClient::addProviderSegment()
198 armem::data::AddSegmentInput
input;
199 input.coreSegmentName =
"ExampleModality";
200 input.providerSegmentName =
"FancyMethodModality";
212 ExampleMemoryClient::commitSingleSnapshot(
const armem::MemoryID& entityID)
214 std::default_random_engine gen(std::random_device{}());
215 std::uniform_int_distribution<int> distrib(-20, 20);
219 update.entityID = entityID;
222 double diff = (
update.referencedTime - runStarted).toMilliSecondsDouble() / 1000;
224 auto dict1 = std::make_shared<aron::data::Dict>();
225 auto dict2 = std::make_shared<aron::data::Dict>();
227 auto sin = std::make_shared<aron::data::Float>(std::sin(diff));
228 auto cos = std::make_shared<aron::data::Float>(std::cos(diff));
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));
234 dict1->addElement(
"sin", sin);
235 dict1->addElement(
"cos", cos);
237 dict2->addElement(
"sqrt",
sqrt);
238 dict2->addElement(
"lin", lin);
239 dict2->addElement(
"rand", rand);
241 update.instancesData = {dict1, dict2};
246 if (!updateResult.success)
251 return updateResult.snapshotID;
255 ExampleMemoryClient::commitMultipleSnapshots(
const armem::MemoryID& entityID,
int num)
259 for (
int i = 0; i < num; ++i)
262 update.entityID = entityID;
264 for (
int j = 0; j < i; ++j)
266 update.instancesData.push_back(std::make_shared<aron::data::Dict>());
272 if (!commitResult.allSuccess())
281 ExampleMemoryClient::queryLatestSnapshot(
const armem::MemoryID& entityID)
284 <<
"\n- entityID: \t'" << entityID <<
"'";
286 armem::client::query::Builder builder;
287 builder.coreSegments()
296 armem::client::QueryResult qResult = memoryReader.
query(builder.buildQueryInput());
302 armem::wm::Memory& memory = qResult.memory;
307 const armem::wm::Entity* entity = memory.findEntity(entityID);
309 <<
"Entity " << entityID <<
" was not found in " <<
armem::print(memory);
316 <<
"\n- entity: \t" << entity->name() <<
"\n- snapshot: \t"
317 << snapshot.time() <<
"\n- #instances: \t" << snapshot.size();
320 tab.queryResult = std::move(memory);
330 ExampleMemoryClient::queryExactSnapshot(
const armem::MemoryID& snapshotID)
333 <<
"\n- snapshotID: \t'" << snapshotID <<
"'";
335 namespace qf = armem::client::query_fns;
336 armem::client::query::Builder qb;
337 qb.singleEntitySnapshot(snapshotID);
339 armem::client::QueryResult qResult = memoryReader.
query(qb.buildQueryInput());
344 armem::wm::Memory memory = std::move(qResult.memory);
349 <<
"\n- time: \t" << entitySnapshot.time()
350 <<
"\n- # instances: \t" << entitySnapshot.size();
354 memory.getEntity(snapshotID).getLatestSnapshot();
357 <<
"\n- time: \t" << entitySnapshot.time()
358 <<
"\n- # instances: \t" << entitySnapshot.size();
369 ExampleMemoryClient::commitExampleData()
376 if (!addSegmentResult.success)
384 if (!addSegmentResult.success)
398 update.referencedTime = time;
400 armem::example::ExampleData
data;
412 update.referencedTime = time;
414 armem::example::ExampleData
data;
415 data.the_bool =
true;
417 data.the_float = 21.5;
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();
426 data.the_float_dict = {
431 data.the_int_dict = {
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);
441 data.the_3x1_vector = {24, 42, 2442};
447 simox::ColorMap cmap = simox::color::cmaps::plasma();
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
464 cv::imwrite(
"/tmp/the_rgb24_image.png", image);
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
473 cmap.set_vlimits(0, 100);
474 cv::Mat rgb(image.rows, image.cols, CV_8UC3);
475 using Pixel = cv::Point3_<uint8_t>;
477 [&image, &cmap](Pixel& pixel,
const int index[]) ->
void
487 cv::imwrite(
"/tmp/the_depth32_image.png", image);
498 update.referencedTime = time;
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.";
513 theAnswerSnapshotID = commitResult.
results.at(1).snapshotID;
514 yetMoreDataSnapshotID = commitResult.
results.at(2).snapshotID;
523 ExampleMemoryClient::queryExampleData()
526 armem::client::query::Builder qb;
528 .withID(exampleProviderID)
530 .withID(exampleProviderID)
536 armem::client::QueryResult result = memoryReader.
query(qb.buildQueryInput());
539 tab.queryResult = std::move(result.memory);
549 ExampleMemoryClient::commitExamplesWithIDs()
558 update.referencedTime = time;
560 armem::example::ExampleData
data;
569 update.referencedTime = time;
571 armem::example::ExampleData
data;
583 armem::example::ExampleData
data;
592 update.referencedTime = time;
594 armem::example::ExampleData
data;
612 ARMARX_IMPORTANT <<
"Resolving multiple memory IDs via Memory Name System:";
614 std::vector<armem::MemoryID> ids;
621 std::map<armem::MemoryID, armem::wm::EntityInstance> instances =
625 std::stringstream ss;
626 for (
const auto& [
id, instance] : instances)
628 ss <<
"- Snapshot " <<
id <<
" "
629 <<
"\n--> Instance" << instance.id()
630 <<
" (# keys in data: " << instance.data()->childrenSize() <<
")"
638 ExampleMemoryClient::commitExamplesWithLinks()
648 update.referencedTime = time;
650 armem::example::ExampleData
data;
667 ARMARX_IMPORTANT <<
"Resolving multiple memory IDs via Memory Name System:";
669 std::vector<armem::MemoryID> ids;
676 std::map<armem::MemoryID, armem::wm::EntityInstance> instances =
680 std::stringstream ss;
681 for (
const auto& [
id, instance] : instances)
683 ss <<
"- Snapshot " <<
id <<
" "
684 <<
"\n--> Instance" << instance.id()
685 <<
" (# keys in data: " << instance.data()->childrenSize() <<
")"
693 ExampleMemoryClient::commitExampleImages()
701 update.referencedTime = time;
703 auto currentFolder = std::filesystem::current_path();
704 auto opencv_img = cv::imread(
705 (currentFolder /
"images" / (
std::to_string(imageCounter + 1) +
".jpg")).
string());
709 auto data = std::make_shared<aron::data::Dict>();
719 ExampleMemoryClient::commitExamplesWithUntypedData()
727 update.referencedTime = time;
729 armem::example::ExampleData
data;
734 aron->addElement(
"unexpectedString",
735 std::make_shared<aron::data::String>(
"unexpected value"));
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")},
742 update.instancesData = {aron};
753 ExampleMemoryClient::queryPredictionEngines()
755 const std::map<armem::MemoryID, std::vector<armem::PredictionEngine>> predictionEngines =
758 std::stringstream ss;
759 ss <<
"Prediction engines available in the server:" << std::endl;
760 for (
const auto& [
id, engines] : predictionEngines)
762 ss <<
" - " <<
id <<
": ";
765 ss << engine.engineID <<
", ";
774 ExampleMemoryClient::processExampleEntityUpdate(
const armem::MemoryID& subscriptionID,
775 const std::vector<armem::MemoryID>& snapshotIDs)
777 std::stringstream ss;
778 ss <<
"example_entity got updated: " << subscriptionID <<
"\n";
779 ss <<
"Updated snapshots: \n";
780 for (
const auto&
id : snapshotIDs)
782 ss <<
"- " <<
id <<
"\n";
804 if (tab.rebuild.exchange(
false))