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
475034cb
Commit
475034cb
authored
5 years ago
by
Fabian Paus
Browse files
Options
Downloads
Patches
Plain Diff
ArViz: Prefetch batches
parent
7479b0a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.cpp
+71
-16
71 additions, 16 deletions
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.cpp
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.h
+11
-1
11 additions, 1 deletion
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.h
with
82 additions
and
17 deletions
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.cpp
+
71
−
16
View file @
475034cb
...
...
@@ -31,6 +31,22 @@
using
namespace
armarx
;
struct
armarx
::
ArVizWidgetBatchCallback
:
IceUtil
::
Shared
{
class
ArVizWidgetController
*
this_
;
void
onSuccess
(
armarx
::
viz
::
RecordingBatch
const
&
batch
)
{
this_
->
onGetBatchAsync
(
batch
);
}
void
onFailure
(
Ice
::
Exception
const
&
ex
)
{
ARMARX_WARNING
<<
"Failed to get batch async.
\n
Reason:"
<<
ex
;
}
};
ArVizWidgetController
::
ArVizWidgetController
()
{
widget
.
setupUi
(
getWidget
());
...
...
@@ -80,6 +96,13 @@ void ArVizWidgetController::onInitComponent()
usingProxy
(
storageName
);
}
ARMARX_IMPORTANT
<<
"OnInit: "
<<
storageName
;
callbackData
=
new
ArVizWidgetBatchCallback
();
callbackData
->
this_
=
this
;
callback
=
viz
::
newCallback_StorageInterface_getRecordingBatch
(
callbackData
,
&
ArVizWidgetBatchCallback
::
onSuccess
,
&
ArVizWidgetBatchCallback
::
onFailure
);
}
void
armarx
::
ArVizWidgetController
::
onExitComponent
()
...
...
@@ -479,18 +502,6 @@ void ArVizWidgetController::selectRecording(const viz::Recording& recording)
currentRecording
=
recording
;
currentRecordingSelected
=
true
;
enableWidgetAccordingToMode
();
widget
.
replayRevisionSpinBox
->
blockSignals
(
true
);
widget
.
replayRevisionSpinBox
->
setMinimum
(
recording
.
firstRevision
);
widget
.
replayRevisionSpinBox
->
setMaximum
(
recording
.
lastRevision
);
widget
.
replayRevisionSpinBox
->
setValue
(
recording
.
firstRevision
);
widget
.
replayRevisionSpinBox
->
blockSignals
(
false
);
widget
.
replayRevisionSlider
->
blockSignals
(
true
);
widget
.
replayRevisionSlider
->
setMinimum
(
recording
.
firstRevision
);
widget
.
replayRevisionSlider
->
setMaximum
(
recording
.
lastRevision
);
widget
.
replayRevisionSlider
->
setValue
(
recording
.
firstRevision
);
widget
.
replayRevisionSlider
->
blockSignals
(
false
);
}
void
ArVizWidgetController
::
onReplayStart
(
bool
)
...
...
@@ -504,6 +515,18 @@ void ArVizWidgetController::onReplayStart(bool)
changeMode
(
ArVizWidgetMode
::
Replaying
);
widget
.
replayRevisionSpinBox
->
blockSignals
(
true
);
widget
.
replayRevisionSpinBox
->
setMinimum
(
currentRecording
.
firstRevision
);
widget
.
replayRevisionSpinBox
->
setMaximum
(
currentRecording
.
lastRevision
);
widget
.
replayRevisionSpinBox
->
setValue
(
currentRecording
.
firstRevision
);
widget
.
replayRevisionSpinBox
->
blockSignals
(
false
);
widget
.
replayRevisionSlider
->
blockSignals
(
true
);
widget
.
replayRevisionSlider
->
setMinimum
(
currentRecording
.
firstRevision
);
widget
.
replayRevisionSlider
->
setMaximum
(
currentRecording
.
lastRevision
);
widget
.
replayRevisionSlider
->
setValue
(
currentRecording
.
firstRevision
);
widget
.
replayRevisionSlider
->
blockSignals
(
false
);
onReplaySliderChanged
(
widget
.
replayRevisionSlider
->
value
());
}
...
...
@@ -541,10 +564,10 @@ long ArVizWidgetController::replayToRevision(long revision)
viz
::
RecordingBatch
const
&
batch
=
getRecordingBatch
(
matchingBatchHeader
->
index
);
ARMARX_
INFO
<<
"Replaying to revision : "
<<
revision
<<
"
\n
Got batch: "
<<
batch
.
header
.
firstRevision
<<
" - "
<<
batch
.
header
.
lastRevision
<<
"
\n
Updates: "
<<
batch
.
updates
.
size
()
<<
"
\n
Initial state: "
<<
batch
.
initialState
.
size
();
ARMARX_
VERBOSE
<<
"Replaying to revision : "
<<
revision
<<
"
\n
Got batch: "
<<
batch
.
header
.
firstRevision
<<
" - "
<<
batch
.
header
.
lastRevision
<<
"
\n
Updates: "
<<
batch
.
updates
.
size
()
<<
"
\n
Initial state: "
<<
batch
.
initialState
.
size
();
auto
revisionLess
=
[](
viz
::
TimestampedLayerUpdate
const
&
lhs
,
viz
::
TimestampedLayerUpdate
const
&
rhs
)
...
...
@@ -631,17 +654,49 @@ void ArVizWidgetController::enableWidgetAccordingToMode()
}
}
void
ArVizWidgetController
::
onGetBatchAsync
(
const
viz
::
RecordingBatch
&
batch
)
{
// We received a batch asynchronously ==> Update the cache
ARMARX_INFO
<<
"Received async batch: "
<<
batch
.
header
.
index
;
std
::
unique_lock
<
std
::
mutex
>
lock
(
recordingBatchCacheMutex
);
auto
&
entry
=
recordingBatchCache
[
batch
.
header
.
index
];
entry
.
data
=
batch
;
entry
.
lastUsed
=
IceUtil
::
Time
::
now
();
}
viz
::
RecordingBatch
const
&
ArVizWidgetController
::
getRecordingBatch
(
long
index
)
{
IceUtil
::
Time
now
=
IceUtil
::
Time
::
now
();
std
::
unique_lock
<
std
::
mutex
>
lock
(
recordingBatchCacheMutex
);
auto
iter
=
recordingBatchCache
.
find
(
index
);
if
(
iter
!=
recordingBatchCache
.
end
())
{
// Start prefetching neighbouring batches
bool
asyncPrefetchIsRunning
=
callbackResult
&&
!
callbackResult
->
isCompleted
();
if
(
!
asyncPrefetchIsRunning
)
{
if
(
index
+
1
<
(
long
)
currentRecording
.
batchHeaders
.
size
()
&&
recordingBatchCache
.
count
(
index
+
1
)
==
0
)
{
callbackResult
=
storage
->
begin_getRecordingBatch
(
currentRecording
.
id
,
index
+
1
,
callback
);
}
else
if
(
index
>
0
&&
recordingBatchCache
.
count
(
index
-
1
)
==
0
)
{
callbackResult
=
storage
->
begin_getRecordingBatch
(
currentRecording
.
id
,
index
-
1
,
callback
);
}
}
auto
&
entry
=
iter
->
second
;
entry
.
lastUsed
=
now
;
return
entry
.
data
;
}
ARMARX_INFO
<<
"Batch #"
<<
index
<<
" is not in the cache. Getting synchronously, blocking GUI..."
;
// Entry is not in the cache, we have to get it from ArVizStorage
auto
&
newEntry
=
recordingBatchCache
[
index
];
newEntry
.
lastUsed
=
now
;
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.h
+
11
−
1
View file @
475034cb
...
...
@@ -45,6 +45,9 @@ namespace armarx
Replaying
,
};
struct
ArVizWidgetBatchCallback
;
/**
\page ArmarXGui-GuiPlugins-ArViz ArViz
\brief The ArViz allows visualizing ...
...
...
@@ -106,6 +109,8 @@ namespace armarx
void
onConnectComponent
()
override
;
void
onDisconnectComponent
()
override
;
void
onGetBatchAsync
(
viz
::
RecordingBatch
const
&
batch
);
public
slots
:
/* QT slot declarations */
...
...
@@ -179,10 +184,15 @@ namespace armarx
viz
::
RecordingBatch
const
&
getRecordingBatch
(
long
index
);
std
::
size_t
recordingBatchCacheMaxSize
=
3
;
std
::
size_t
recordingBatchCacheMaxSize
=
5
;
std
::
mutex
recordingBatchCacheMutex
;
std
::
map
<
long
,
TimestampedRecordingBatch
>
recordingBatchCache
;
ArVizWidgetMode
mode
=
ArVizWidgetMode
::
NotConnected
;
IceUtil
::
Handle
<
ArVizWidgetBatchCallback
>
callbackData
;
armarx
::
viz
::
Callback_StorageInterface_getRecordingBatchPtr
callback
;
Ice
::
AsyncResultPtr
callbackResult
;
};
}
...
...
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