Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
63502511
Commit
63502511
authored
3 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Fix Writer setting the timeCreated instead of timeSent
parent
0564ca3f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!171
Periodic merge of armem/dev into master
,
!170
ArMem Viewer: Resolve Memory IDs
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/libraries/armem/client/Writer.cpp
+46
-33
46 additions, 33 deletions
source/RobotAPI/libraries/armem/client/Writer.cpp
source/RobotAPI/libraries/armem/client/Writer.h
+7
-1
7 additions, 1 deletion
source/RobotAPI/libraries/armem/client/Writer.h
with
53 additions
and
34 deletions
source/RobotAPI/libraries/armem/client/Writer.cpp
+
46
−
33
View file @
63502511
...
...
@@ -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
.
time
Created
MicroSeconds
=
timeSent
.
toMicroSeconds
();
update
.
time
Sent
MicroSeconds
=
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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/libraries/armem/client/Writer.h
+
7
−
1
View file @
63502511
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment