ArVizStorage.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::ArViz
17  * @author Fabian Paus ( fabian dot paus at kit dot edu )
18  * @date 2019
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "ArVizStorage.h"
24 
25 #include <algorithm>
26 #include <optional>
27 
28 #include <SimoxUtility/json/json.hpp>
29 
32 #include <ArmarXCore/core/time.h>
37 
38 namespace armarx
39 {
40  static std::filesystem::path
41  getAbsolutePath(const std::filesystem::path& path)
42  {
43  if (path.is_absolute())
44  {
45  return path;
46  }
47  else
48  {
49  std::string absolute;
50  if (ArmarXDataPath::getAbsolutePath(path.string(), absolute))
51  {
52  return absolute;
53  }
54  else
55  {
56  ARMARX_WARNING_S << "Could not resolve relative file as package data file: "
57  << path;
58  return path;
59  }
60  }
61  }
62 
63  std::string
65  {
66  return "ArVizStorage";
67  }
68 
71  {
74 
75  defs->optional(
76  properties_.topicName, "TopicName", "Layer updates are sent over this topic.");
77 
78  defs->optional(properties_.maxHistorySize,
79  "MaxHistorySize",
80  "How many layer updates are saved in the history until they are compressed")
81  .setMin(0);
82 
83  defs->optional(properties_.historyPath,
84  "HistoryPath",
85  "Destination path where the history is serialized to");
86 
87 
88  defs->optional(properties_.componentWarnFrequency,
89  "ComponentWarnFrequency",
90  "Define a frequency in Hz above which the compnent raises a warning. As you "
91  "should not send data at a too high rate.");
92 
93  return defs;
94  }
95 
96  void
98  {
99  properties_.historyPath = getAbsolutePath(properties_.historyPath);
100  if (!std::filesystem::exists(properties_.historyPath))
101  {
102  ARMARX_INFO << "Creating history path: " << properties_.historyPath;
103  std::error_code error;
104  std::filesystem::create_directory(properties_.historyPath, error);
105  if (error)
106  {
107  ARMARX_WARNING << "Could not create directory for history: \n" << error.message();
108  }
109  }
110 
111  usingTopic(properties_.topicName);
112  }
113 
114  void
116  {
117  revision = 0;
118  currentState.clear();
119  history.clear();
120  recordingInitialState.clear();
121 
122  recordingBuffer.clear();
123  recordingMetaData.id = "";
124  }
125 
126  void
128  {
129  if (recordingTask)
130  {
131  recordingTask->stop();
132  recordingTask = nullptr;
133  }
134  }
135 
136  void
138  {
139  }
140 
141  void
142  ArVizStorage::updateLayers(viz::data::LayerUpdateSeq const& updates, const Ice::Current&)
143  {
144  std::unique_lock<std::mutex> lock(historyMutex);
145 
146  revision += 1;
147 
148  IceUtil::Time now = IceUtil::Time::now();
149  long nowInMicroSeconds = now.toMicroSeconds();
150 
151  if (not updates.empty())
152  {
153  const std::string& componentName = updates.front().component;
154 
155  auto& history = updateHistoryForComponents[componentName];
156  history.push_back(armarx::Clock::Now());
157 
158  const auto maxHistoryDur = armarx::Duration::SecondsDouble(1);
159 
160  const DateTime referenceNow = Clock::Now();
161  const auto isOutdated = [&referenceNow,
162  &maxHistoryDur](const DateTime& timestamp) -> bool
163  { return (referenceNow - timestamp) > maxHistoryDur; };
164 
165  // trim history
166  history.erase(std::remove_if(history.begin(), history.end(), isOutdated),
167  history.end());
168 
169  ARMARX_VERBOSE << deactivateSpam(1, componentName) << componentName << ": "
170  << history.size() / maxHistoryDur.toSecondsDouble() << " Hz";
171 
172  if (history.size() > properties_.componentWarnFrequency)
173  {
174  ARMARX_WARNING << deactivateSpam(10) << "Component `" << componentName << "`"
175  << "sends data at a too high rate ("
176  << history.size() / maxHistoryDur.toSecondsDouble() << ")"
177  << deactivateSpam(10, componentName);
178  }
179  }
180 
181 
182  for (auto& update : updates)
183  {
184  if (update.component.empty())
185  {
187  << "Discarding ArViz update with empty component name. Check whether "
188  << "you correctly create your ArViz client (`armarx::viz::Client`) "
189  << "in your code.";
190  continue;
191  }
192 
193  auto& historyEntry = history.emplace_back();
194  historyEntry.revision = revision;
195  historyEntry.timestampInMicroseconds = nowInMicroSeconds;
196  historyEntry.update = update;
197 
198  // Insert or create the layer
199  bool found = false;
200  for (auto& layer : currentState)
201  {
202  if (layer.update.component == update.component && layer.update.name == update.name)
203  {
204  layer = historyEntry;
205  found = true;
206  break;
207  }
208  }
209  if (!found)
210  {
211  currentState.push_back(historyEntry);
212  }
213  }
214 
215  long currentHistorySize = history.size();
216  if (currentHistorySize >= properties_.maxHistorySize)
217  {
218  {
219  std::unique_lock<std::mutex> lock(recordingMutex);
220  if (recordingMetaData.id.size() > 0)
221  {
222  auto& newBatch = recordingBuffer.emplace_back();
223  newBatch.initialState = recordingInitialState;
224  newBatch.updates = std::move(history);
225  recordingInitialState = currentState;
226 
227  recordingCondition.notify_one();
228  }
229  }
230  history.clear();
231  }
232  }
233 
234  viz::data::CommitResult
235  ArVizStorage::commitAndReceiveInteractions(viz::data::CommitInput const& input,
236  const Ice::Current&)
237  {
238  viz::data::CommitResult result;
239 
240  {
241  std::unique_lock<std::mutex> lock(historyMutex);
242 
243  revision += 1;
244  result.revision = revision;
245 
246  IceUtil::Time now = IceUtil::Time::now();
247  long nowInMicroSeconds = now.toMicroSeconds();
248 
249  // Insert updates into the history and update the current state
250  for (viz::data::LayerUpdate const& update : input.updates)
251  {
252  viz::data::TimestampedLayerUpdate& historyEntry = history.emplace_back();
253  historyEntry.revision = revision;
254  historyEntry.timestampInMicroseconds = nowInMicroSeconds;
255  historyEntry.update = update;
256 
257  // Insert or create the layer
258  bool found = false;
259  for (viz::data::TimestampedLayerUpdate& layer : currentState)
260  {
261  if (layer.update.component == update.component &&
262  layer.update.name == update.name)
263  {
264  layer = historyEntry;
265  found = true;
266  break;
267  }
268  }
269  if (!found)
270  {
271  currentState.push_back(historyEntry);
272  }
273  }
274 
275  // Trim the history if max size has been exceeded
276  long currentHistorySize = history.size();
277  if (currentHistorySize >= properties_.maxHistorySize)
278  {
279  {
280  std::unique_lock<std::mutex> lock(recordingMutex);
281  if (recordingMetaData.id.size() > 0)
282  {
283  auto& newBatch = recordingBuffer.emplace_back();
284  newBatch.initialState = recordingInitialState;
285  newBatch.updates = std::move(history);
286  recordingInitialState = currentState;
287 
288  recordingCondition.notify_one();
289  }
290  }
291  history.clear();
292  }
293 
294  // Find relevant interactions
295  if (input.interactionComponent.size() > 0)
296  {
297  auto interactionsEnd = interactionBuffer.end();
298  auto foundInteractionsBegin =
299  std::partition(interactionBuffer.begin(),
300  interactionsEnd,
301  [&input](viz::data::InteractionFeedback const& interaction)
302  {
303  if (interaction.component == input.interactionComponent)
304  {
305  for (std::string const& layer : input.interactionLayers)
306  {
307  if (interaction.layer == layer)
308  {
309  return false;
310  }
311  }
312  }
313  return true;
314  });
315 
316  result.interactions.assign(foundInteractionsBegin, interactionsEnd);
317  interactionBuffer.erase(foundInteractionsBegin, interactionsEnd);
318  }
319  }
320 
321  return result;
322  }
323 
324  viz::data::LayerUpdates
325  ArVizStorage::pullUpdatesSince(Ice::Long revision, const Ice::Current&)
326  {
327  viz::data::LayerUpdates result;
328 
329  std::unique_lock<std::mutex> lock(historyMutex);
330 
331  result.updates.reserve(currentState.size());
332  for (auto& layer : currentState)
333  {
334  if (layer.revision > revision)
335  {
336  result.updates.push_back(layer.update);
337  }
338  }
339  result.revision = this->revision;
340 
341  return result;
342  }
343 
344  static const int ALL_TRANSFORM_FLAGS =
345  viz::data::InteractionFeedbackType::TRANSFORM_BEGIN_FLAG |
346  viz::data::InteractionFeedbackType::TRANSFORM_DURING_FLAG |
347  viz::data::InteractionFeedbackType::TRANSFORM_END_FLAG;
348 
349  viz::data::LayerUpdates
350  ArVizStorage::pullUpdatesSinceAndSendInteractions(
351  Ice::Long revision,
352  viz::data::InteractionFeedbackSeq const& interactions,
353  const Ice::Current& c)
354  {
355  viz::data::LayerUpdates result;
356 
357  std::unique_lock<std::mutex> lock(historyMutex);
358 
359  for (viz::data::InteractionFeedback const& interaction : interactions)
360  {
361  for (viz::data::InteractionFeedback& entry : interactionBuffer)
362  {
363  if (entry.component == interaction.component && entry.layer == interaction.layer &&
364  entry.element == interaction.element)
365  {
366  int previousTransformFlags = entry.type & ALL_TRANSFORM_FLAGS;
367  int interactionTransformFlags = interaction.type & ALL_TRANSFORM_FLAGS;
368 
369  entry = interaction;
370  // Keep the previous transform flags.
371  // Blindly overwriting the entry might skip over the begin or during events.
372  if (previousTransformFlags != 0 && interactionTransformFlags != 0)
373  {
374  entry.type |= previousTransformFlags;
375  }
376  goto for_end;
377  }
378  }
379 
380  // Interaction did not exist, add it to the buffer
381  interactionBuffer.push_back(interaction);
382 
383  for_end:;
384  }
385 
386  result.updates.reserve(currentState.size());
387  for (viz::data::TimestampedLayerUpdate& layer : currentState)
388  {
389  if (layer.revision > revision)
390  {
391  result.updates.push_back(layer.update);
392  }
393  }
394  result.revision = this->revision;
395 
396  return result;
397  }
398 
399  void
400  ArVizStorage::record()
401  {
402  while (!recordingTask->isStopped())
403  {
404  std::unique_lock<std::mutex> lock(recordingMutex);
405  while (!recordingTask->isStopped() && recordingBuffer.empty())
406  {
407  recordingCondition.wait_for(lock, std::chrono::milliseconds(10));
408  }
409  for (auto& batch : recordingBuffer)
410  {
411  recordBatch(batch);
412  }
413  recordingBuffer.clear();
414  }
415  }
416 } // namespace armarx
417 
419 {
420 
421  void
422  to_json(nlohmann::json& j, RecordingBatchHeader const& batch)
423  {
424  j["index"] = batch.index;
425  j["firstRevision"] = batch.firstRevision;
426  j["lastRevision"] = batch.lastRevision;
427  j["firstTimestampInMicroSeconds"] = batch.firstTimestampInMicroSeconds;
428  j["lastTimestampInMicroSeconds"] = batch.lastTimestampInMicroSeconds;
429  }
430 
431  void
432  from_json(nlohmann::json const& j, RecordingBatchHeader& batch)
433  {
434  batch.index = j["index"];
435  batch.firstRevision = j["firstRevision"];
436  batch.lastRevision = j["lastRevision"];
437  batch.firstTimestampInMicroSeconds = j["firstTimestampInMicroSeconds"];
438  batch.lastTimestampInMicroSeconds = j["lastTimestampInMicroSeconds"];
439  }
440 
441  void
442  to_json(nlohmann::json& j, Recording const& recording)
443  {
444  j["id"] = recording.id;
445  j["firstRevision"] = recording.firstRevision;
446  j["lastRevision"] = recording.lastRevision;
447  j["firstTimestampInMicroSeconds"] = recording.firstTimestampInMicroSeconds;
448  j["lastTimestampInMicroSeconds"] = recording.lastTimestampInMicroSeconds;
449  j["batchHeaders"] = recording.batchHeaders;
450  }
451 
452  void
453  from_json(nlohmann::json const& j, Recording& recording)
454  {
455  recording.id = j["id"];
456  recording.firstRevision = j["firstRevision"];
457  recording.lastRevision = j["lastRevision"];
458  recording.firstTimestampInMicroSeconds = j["firstTimestampInMicroSeconds"];
459  recording.lastTimestampInMicroSeconds = j["lastTimestampInMicroSeconds"];
460  j["batchHeaders"].get_to(recording.batchHeaders);
461  }
462 
463 } // namespace armarx::viz::data
464 
465 static bool
466 writeCompleteFile(std::string const& filename, const void* data, std::size_t size)
467 {
468  FILE* file = fopen(filename.c_str(), "wb");
469  if (!file)
470  {
471  return false;
472  }
473  std::size_t written = std::fwrite(data, 1, size, file);
474  if (written != size)
475  {
476  return false;
477  }
478  std::fclose(file);
479  return true;
480 }
481 
482 static std::string
483 readCompleteFile(std::filesystem::path const& path)
484 {
485  FILE* f = fopen(path.string().c_str(), "rb");
486  fseek(f, 0, SEEK_END);
487  long fsize = ftell(f);
488  fseek(f, 0, SEEK_SET); /* same as rewind(f); */
489 
490  std::string result(fsize, '\0');
491  std::size_t read = fread(result.data(), 1, fsize, f);
492  result.resize(read);
493  fclose(f);
494 
495  return result;
496 }
497 
498 static std::optional<armarx::viz::data::Recording>
499 readRecordingInfo(std::filesystem::path const& recordingDirectory)
500 {
501  std::optional<::armarx::viz::data::Recording> result;
502 
503  std::filesystem::path recordingFilePath = recordingDirectory / "recording.json";
504  if (!std::filesystem::exists(recordingFilePath))
505  {
506  ARMARX_INFO << "No recording.json found in directory: " << recordingDirectory;
507  return result;
508  }
509 
510  try
511  {
512  std::string recordingString = readCompleteFile(recordingFilePath);
513  nlohmann::json recordingJson = nlohmann::json::parse(recordingString);
514 
516  recordingJson.get_to(recording);
517 
518  result = std::move(recording);
519  return result;
520  }
521  catch (std::exception const& ex)
522  {
523  ARMARX_WARNING << "Could not parse JSON file: " << recordingFilePath
524  << "\nReason: " << ex.what();
525  return result;
526  }
527 }
528 
529 static std::string
530 batchFileName(armarx::viz::data::RecordingBatchHeader const& batchHeader)
531 {
532  return std::to_string(batchHeader.firstRevision) + ".bin";
533 }
534 
535 void
536 armarx::ArVizStorage::recordBatch(armarx::viz::data::RecordingBatch& batch)
537 {
538  if (batch.updates.empty())
539  {
540  return;
541  }
542 
543  auto& first = batch.updates.front();
544  auto& last = batch.updates.back();
545 
546  batch.header.index = -1; // TODO: Should we save the index?
547  batch.header.firstRevision = first.revision;
548  batch.header.lastRevision = last.revision;
549  batch.header.firstTimestampInMicroSeconds = first.timestampInMicroseconds;
550  batch.header.lastTimestampInMicroSeconds = last.timestampInMicroseconds;
551  if (firstBatch)
552  {
553  batch.initialState = currentState;
554  firstBatch = false;
555  }
556 
557 
558  std::string filename = batchFileName(batch.header);
559  std::filesystem::path filePath = recordingPath / filename;
560 
561  ObjectToIceBlobSerializer ser{batch};
562  // Save the batch to a new file
563  if (!writeCompleteFile(filePath.string(), ser.begin(), ser.size()))
564  {
565  ARMARX_WARNING << "Could not write history file: " << filePath;
566  return;
567  }
568 
569  // Update the meta data
570  if (recordingMetaData.firstRevision < 0)
571  {
572  recordingMetaData.firstRevision = first.revision;
573  }
574  recordingMetaData.lastRevision = last.revision;
575 
576  if (recordingMetaData.firstTimestampInMicroSeconds < 0)
577  {
578  recordingMetaData.firstTimestampInMicroSeconds = first.timestampInMicroseconds;
579  }
580  recordingMetaData.lastTimestampInMicroSeconds = last.timestampInMicroseconds;
581 
582  armarx::viz::data::RecordingBatchHeader& newBatch =
583  recordingMetaData.batchHeaders.emplace_back();
584  newBatch.index = recordingMetaData.batchHeaders.size() - 1;
585  newBatch.firstRevision = first.revision;
586  newBatch.lastRevision = last.revision;
587  newBatch.firstTimestampInMicroSeconds = first.timestampInMicroseconds;
588  newBatch.lastTimestampInMicroSeconds = last.timestampInMicroseconds;
589 
590  // Save the meta data to a (potentially existing) json file
591  nlohmann::json j = recordingMetaData;
592  std::string jString = j.dump(2);
593  std::filesystem::path recordingFile = recordingPath / "recording.json";
594  if (!writeCompleteFile(recordingFile.string(), jString.data(), jString.size()))
595  {
596  ARMARX_WARNING << "Could not write recording file: " << recordingFile;
597  return;
598  }
599 
600  ARMARX_INFO << "Recorded ArViz batch to: " << filePath;
601 }
602 
603 std::string
604 armarx::ArVizStorage::startRecording(std::string const& newRecordingPrefix, const Ice::Current&)
605 {
606  {
607  std::unique_lock<std::mutex> lock(recordingMutex);
608  if (recordingMetaData.id.size() > 0)
609  {
611  << "Could not start recording with prefix " << newRecordingPrefix
612  << "\nbecause there is already a recording running for the recording ID: "
613  << recordingMetaData.id;
614  return recordingMetaData.id;
615  }
616 
617  IceUtil::Time now = IceUtil::Time::now();
618  std::ostringstream id;
619  id << newRecordingPrefix << '_' << now.toString("%Y-%m-%d_%H-%M-%S");
620  std::string newRecordingID = id.str();
621 
622  recordingPath = properties_.historyPath / newRecordingID;
623  if (!std::filesystem::exists(recordingPath))
624  {
625  ARMARX_INFO << "Creating directory for recording with ID '" << newRecordingID
626  << "'\nPath: " << recordingPath;
627  std::filesystem::create_directory(recordingPath);
628  }
629 
630  recordingBuffer.clear();
631 
632  recordingMetaData.id = newRecordingID;
633  {
634  std::unique_lock<std::mutex> lock(historyMutex);
635  if (history.size() > 0)
636  {
637  auto& mostRecent = history.back();
638  recordingMetaData.firstRevision = mostRecent.revision;
639  recordingMetaData.firstTimestampInMicroSeconds = mostRecent.timestampInMicroseconds;
640  }
641  }
642  recordingMetaData.lastRevision = 0;
643  recordingMetaData.lastTimestampInMicroSeconds = 0;
644  recordingMetaData.batchHeaders.clear();
645  }
646 
647  firstBatch = true;
648  recordingTask = new RunningTask<ArVizStorage>(this, &ArVizStorage::record);
649  recordingTask->start();
650 
651  return "";
652 }
653 
654 void
656 {
657  if (!recordingTask)
658  {
659  return;
660  }
661 
662  recordingTask->stop();
663  recordingTask = nullptr;
664 
665  std::unique_lock<std::mutex> lock(recordingMutex);
666 
667  viz::data::RecordingBatch lastBatch;
668  lastBatch.initialState = recordingInitialState;
669  lastBatch.updates = std::move(history);
670  recordBatch(lastBatch);
671 
672  recordingMetaData.id = "";
673  recordingMetaData.firstRevision = -1;
674  recordingMetaData.firstTimestampInMicroSeconds = -1;
675 }
676 
677 armarx::viz::data::RecordingsInfo
679 {
680  viz::data::RecordingsInfo recordingsInfo;
681  viz::data::RecordingSeq result;
682 
683  for (std::filesystem::directory_entry const& entry :
684  std::filesystem::directory_iterator(properties_.historyPath))
685  {
686  ARMARX_DEBUG << "Checking: " << entry.path();
687 
688  if (!entry.is_directory())
689  {
690  continue;
691  }
692 
693  std::optional<viz::data::Recording> recording = readRecordingInfo(entry.path());
694  if (recording)
695  {
696  result.push_back(std::move(*recording));
697  }
698  }
699 
700  recordingsInfo.recordings = result;
701  recordingsInfo.recordingsPath = properties_.historyPath;
702 
703  return recordingsInfo;
704 }
705 
706 armarx::viz::data::RecordingBatch
707 armarx::ArVizStorage::getRecordingBatch(std::string const& recordingID,
708  Ice::Long batchIndex,
709  const Ice::Current&)
710 {
711  viz::data::RecordingBatch result;
712  result.header.index = -1;
713 
714  std::filesystem::path recordingPath = properties_.historyPath / recordingID;
715  std::optional<viz::data::Recording> recording = readRecordingInfo(recordingPath);
716  if (!recording)
717  {
718  ARMARX_WARNING << "Could not read recording information for '" << recordingID << "'"
719  << "\nPath: " << recordingPath;
720  return result;
721  }
722 
723  if (batchIndex < 0 || batchIndex >= (long)recording->batchHeaders.size())
724  {
725  ARMARX_WARNING << "Batch index is not valid. Index = " << batchIndex
726  << "Batch count: " << recording->batchHeaders.size();
727  return result;
728  }
729 
730  viz::data::RecordingBatchHeader const& batchHeader = recording->batchHeaders[batchIndex];
731  std::filesystem::path batchFile = recordingPath / batchFileName(batchHeader);
732  if (!std::filesystem::exists(batchFile))
733  {
734  ARMARX_WARNING << "Could not find batch file for recording '" << recordingID
735  << "' with index " << batchIndex << "\nPath: " << batchFile;
736  return result;
737  }
738 
739  iceBlobToObject(result, readCompleteFile(batchFile));
740 
741  result.header.index = batchIndex;
742 
743  return result;
744 }
ARMARX_VERBOSE
#define ARMARX_VERBOSE
Definition: Logging.h:187
armarx::ArVizStorage::stopRecording
void stopRecording(const Ice::Current &) override
Definition: ArVizStorage.cpp:655
armarx::ArVizStorage::onExitComponent
void onExitComponent() override
armarx::ManagedIceObject::onExitComponent()
Definition: ArVizStorage.cpp:137
armarx::viz::interaction
InteractionDescription interaction()
Definition: ElementOps.h:109
DateTime.h
ArVizStorage.h
Duration.h
armarx::ArVizStorage::updateLayers
void updateLayers(viz::data::LayerUpdateSeq const &updates, const Ice::Current &) override
Definition: ArVizStorage.cpp:142
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
armarx::ArVizStorage::getAllRecordings
viz::data::RecordingsInfo getAllRecordings(const Ice::Current &) override
Definition: ArVizStorage.cpp:678
armarx::RunningTask
Definition: ArmarXMultipleObjectsScheduler.h:36
armarx::ArVizStorage::startRecording
std::string startRecording(std::string const &prefix, const Ice::Current &) override
Definition: ArVizStorage.cpp:604
armarx::viz::data::from_json
void from_json(nlohmann::json const &j, RecordingBatchHeader &batch)
Definition: ArVizStorage.cpp:432
armarx::ArVizStorage::onConnectComponent
void onConnectComponent() override
armarx::ManagedIceObject::onConnectComponent()
Definition: ArVizStorage.cpp:115
armarx::ArVizStorage::getDefaultName
std::string getDefaultName() const override
armarx::ManagedIceObject::getDefaultName()
Definition: ArVizStorage.cpp:64
armarx::viz::data
Definition: ArVizStorage.cpp:418
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
ARMARX_DEBUG
#define ARMARX_DEBUG
Definition: Logging.h:184
armarx::ArVizStorage::onDisconnectComponent
void onDisconnectComponent() override
armarx::ManagedIceObject::onDisconnectComponent()
Definition: ArVizStorage.cpp:127
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
armarx::ArVizStorage::commitAndReceiveInteractions
viz::data::CommitResult commitAndReceiveInteractions(viz::data::CommitInput const &input, const Ice::Current &) override
Definition: ArVizStorage.cpp:235
armarx::read
void read(auto &eigen, auto *table)
Definition: FTSensorCalibrationGuiWidgetController.cpp:503
armarx::VariantType::Long
const VariantTypeId Long
Definition: Variant.h:918
armarx::core::time::Duration::SecondsDouble
static Duration SecondsDouble(double seconds)
Constructs a duration in seconds.
Definition: Duration.cpp:78
filename
std::string filename
Definition: VisualizationRobot.cpp:86
armarx::ArVizStorage::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
PropertyUser::createPropertyDefinitions()
Definition: ArVizStorage.cpp:70
ARMARX_WARNING_S
#define ARMARX_WARNING_S
Definition: Logging.h:213
armarx::armem::Time
armarx::core::time::DateTime Time
Definition: forward_declarations.h:13
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
visionx::imrec::Recording
std::shared_ptr< AbstractRecordingStrategy > Recording
Convenience alias for any recording strategy.
Definition: AbstractRecordingStrategy.h:179
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::ManagedIceObject::usingTopic
void usingTopic(const std::string &name, bool orderedPublishing=false)
Registers a proxy for subscription after initialization.
Definition: ManagedIceObject.cpp:254
armarx::Component::getConfigIdentifier
std::string getConfigIdentifier()
Retrieve config identifier for this component as set in constructor.
Definition: Component.cpp:79
armarx::ComponentPropertyDefinitions
Default component property definition container.
Definition: Component.h:69
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::iceBlobToObject
void iceBlobToObject(T &result, const std::string_view &sv)
Definition: IceBlobToObject.h:40
ObjectToIceBlob.h
time.h
armarx::core::time::Clock::Now
static DateTime Now()
Current time on the virtual clock.
Definition: Clock.cpp:93
armarx::Logging::deactivateSpam
SpamFilterDataPtr deactivateSpam(float deactivationDurationSec=10.0f, const std::string &identifier="", bool deactivate=true) const
disables the logging for the current line for the given amount of seconds.
Definition: Logging.cpp:99
armarx::ArVizStorage::onInitComponent
void onInitComponent() override
armarx::ManagedIceObject::onInitComponent()
Definition: ArVizStorage.cpp:97
armarx::ArmarXDataPath::getAbsolutePath
static bool getAbsolutePath(const std::string &relativeFilename, std::string &storeAbsoluteFilename, const std::vector< std::string > &additionalSearchPaths={}, bool verbose=true)
Definition: ArmarXDataPath.cpp:109
Logging.h
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
ArmarXDataPath.h
armarx::ArVizStorage::getRecordingBatch
viz::data::RecordingBatch getRecordingBatch(const std::string &, Ice::Long, const Ice::Current &) override
Definition: ArVizStorage.cpp:707
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
IceBlobToObject.h
armarx::viz::data::to_json
void to_json(nlohmann::json &j, RecordingBatchHeader const &batch)
Definition: ArVizStorage.cpp:422