Skip to content
Snippets Groups Projects
Commit 63502511 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix Writer setting the timeCreated instead of timeSent

parent 0564ca3f
No related branches found
No related tags found
2 merge requests!171Periodic merge of armem/dev into master,!170ArMem Viewer: Resolve Memory IDs
......@@ -48,7 +48,7 @@ namespace armarx::armem::client
data::Commit commitIce;
toIce(commitIce, commit);
data::CommitResult resultIce = this->commit(commitIce);
data::CommitResult resultIce = this->_commit(commitIce);
armem::CommitResult result;
fromIce(resultIce, result);
......@@ -58,15 +58,57 @@ namespace armarx::armem::client
data::CommitResult Writer::commit(const data::Commit& _commit)
{
data::Commit commit = _commit;
return this->_commit(commit);
}
EntityUpdateResult Writer::commit(const EntityUpdate& update)
{
armem::Commit commit;
commit.updates.push_back(update);
armem::CommitResult result = this->commit(commit);
ARMARX_CHECK_EQUAL(result.results.size(), 1);
return result.results.at(0);
}
EntityUpdateResult Writer::commit(
const MemoryID& entityID,
const std::vector<aron::datanavigator::DictNavigatorPtr>& instancesData,
Time timeCreated)
{
EntityUpdate update;
update.entityID = entityID;
update.instancesData = instancesData;
update.timeCreated = timeCreated;
return commit(update);
}
void
Writer::setWritingMemory(server::WritingMemoryInterfacePrx memory)
{
this->memory = memory;
}
data::CommitResult Writer::_commit(data::Commit& commit)
{
ARMARX_CHECK_NOT_NULL(memory);
data::Commit commit = _commit;
/*
* This function sets the `timeSent` of each `EntityUpdate` before
* sending the data. To allow that, `commit` needs to bo non-const.
* Otherwise, the function would need to make a copy of `commit`,
* which is not necessary in all cases; e.g. when called by
* `commit(Const Commit&)`, which converts the commit to ice types
* anyway.
*/
Time timeSent = armem::Time::now();
const Time timeSent = armem::Time::now();
for (data::EntityUpdate& update : commit.updates)
{
update.timeCreatedMicroSeconds = timeSent.toMicroSeconds();
update.timeSentMicroSeconds = timeSent.toMicroSeconds();
}
data::CommitResult result;
......@@ -100,35 +142,6 @@ namespace armarx::armem::client
return result;
}
EntityUpdateResult Writer::commit(const EntityUpdate& update)
{
armem::Commit commit;
commit.updates.push_back(update);
armem::CommitResult result = this->commit(commit);
ARMARX_CHECK_EQUAL(result.results.size(), 1);
return result.results.at(0);
}
EntityUpdateResult Writer::commit(
const MemoryID& entityID,
const std::vector<aron::datanavigator::DictNavigatorPtr>& instancesData,
Time timeCreated)
{
EntityUpdate update;
update.entityID = entityID;
update.instancesData = instancesData;
update.timeCreated = timeCreated;
return commit(update);
}
void
Writer::setWritingMemory(server::WritingMemoryInterfacePrx memory)
{
this->memory = memory;
}
}
......
......@@ -50,6 +50,10 @@ namespace armarx::armem::client
const std::vector<aron::datanavigator::DictNavigatorPtr>& instancesData,
Time timeCreated);
// with bare-ice types
data::CommitResult commit(const data::Commit& commit);
void setWritingMemory(server::WritingMemoryInterfacePrx memory);
operator bool() const
......@@ -59,7 +63,9 @@ namespace armarx::armem::client
private:
data::CommitResult commit(const data::Commit& commit);
/// Sets `timeSent` on all entity updates and performs the commit,
data::CommitResult _commit(data::Commit& commit);
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment