Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thallium
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
thallium
Commits
bf407ec2
Commit
bf407ec2
authored
Dec 18, 2019
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added pre-finalize callbacks
parent
6e9add2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
+82
-0
include/thallium/engine.hpp
include/thallium/engine.hpp
+82
-0
No files found.
include/thallium/engine.hpp
View file @
bf407ec2
...
...
@@ -62,6 +62,7 @@ private:
std
::
atomic
<
bool
>
m_finalize_called
;
hg_context_t
*
m_hg_context
=
nullptr
;
hg_class_t
*
m_hg_class
=
nullptr
;
std
::
list
<
std
::
pair
<
intptr_t
,
std
::
function
<
void
(
void
)
>>>
m_prefinalize_callbacks
;
std
::
list
<
std
::
pair
<
intptr_t
,
std
::
function
<
void
(
void
)
>>>
m_finalize_callbacks
;
/**
...
...
@@ -156,6 +157,15 @@ private:
}
}
static
void
on_prefinalize_cb
(
void
*
arg
)
{
engine
*
e
=
static_cast
<
engine
*>
(
arg
);
while
(
!
(
e
->
m_prefinalize_callbacks
.
empty
()))
{
auto
&
cb
=
e
->
m_prefinalize_callbacks
.
front
();
cb
.
second
();
e
->
m_prefinalize_callbacks
.
pop_front
();
}
}
public:
/**
...
...
@@ -178,6 +188,8 @@ public:
rpc_thread_count
);
// XXX throw an exception if m_mid not initialized
m_owns_mid
=
true
;
margo_push_prefinalize_callback
(
m_mid
,
&
engine
::
on_prefinalize_cb
,
static_cast
<
void
*>
(
this
));
margo_push_finalize_callback
(
m_mid
,
&
engine
::
on_finalize_cb
,
static_cast
<
void
*>
(
this
));
}
...
...
@@ -198,6 +210,8 @@ public:
m_mid
=
margo_init_pool
(
progress_pool
.
native_handle
(),
default_handler_pool
.
native_handle
(),
m_hg_context
);
// XXX throw an exception if m_mid not initialized
margo_push_prefinalize_callback
(
m_mid
,
&
engine
::
on_prefinalize_cb
,
static_cast
<
void
*>
(
this
));
margo_push_finalize_callback
(
m_mid
,
&
engine
::
on_finalize_cb
,
static_cast
<
void
*>
(
this
));
}
...
...
@@ -213,6 +227,8 @@ public:
m_mid
=
mid
;
m_is_server
=
(
mode
==
THALLIUM_SERVER_MODE
);
m_owns_mid
=
false
;
margo_push_prefinalize_callback
(
m_mid
,
&
engine
::
on_prefinalize_cb
,
static_cast
<
void
*>
(
this
));
margo_push_finalize_callback
(
m_mid
,
&
engine
::
on_finalize_cb
,
static_cast
<
void
*>
(
this
));
}
...
...
@@ -226,6 +242,8 @@ public:
m_mid
=
mid
;
m_owns_mid
=
false
;
m_is_server
=
margo_is_listening
(
mid
);
margo_push_prefinalize_callback
(
m_mid
,
&
engine
::
on_prefinalize_cb
,
static_cast
<
void
*>
(
this
));
margo_push_finalize_callback
(
m_mid
,
&
engine
::
on_finalize_cb
,
static_cast
<
void
*>
(
this
));
}
...
...
@@ -385,6 +403,70 @@ public:
*/
bulk
wrap
(
hg_bulk_t
blk
,
bool
is_local
);
/**
* @brief Pushes a pre-finalization callback into the engine. This callback will be
* called when margo_finalize is called (e.g. through engine::finalize()),
* before the Mercury progress loop is terminated.
*
* @tparam F type of callback. Must have a operator() defined.
* @param f callback.
*/
template
<
typename
F
>
void
push_prefinalize_callback
(
F
&&
f
)
{
m_prefinalize_callbacks
.
emplace_back
(
0
,
std
::
forward
<
F
>
(
f
));
}
/**
* @brief Same as push_prefinalize_callback(F&& f) but takes an object whose address will
* be used to identify the callback (e.g. a provider).
*
* @tparam T Type of object used to identify the callback.
* @tparam F Callback type.
* @param owner Pointer to the object owning the callback.
* @param f Callback.
*/
template
<
typename
T
,
typename
F
>
void
push_prefinalize_callback
(
const
T
*
owner
,
F
&&
f
)
{
m_prefinalize_callbacks
.
emplace_back
(
reinterpret_cast
<
intptr_t
>
(
owner
),
std
::
forward
<
F
>
(
f
));
}
/**
* @brief Pops the most recently pushed pre-finalization callback and returns it.
* If no finalization callback are present, this function returns a null std::function.
*
* @return finalization callback.
*/
std
::
function
<
void
(
void
)
>
pop_prefinalize_callback
()
{
auto
it
=
std
::
find_if
(
m_prefinalize_callbacks
.
rbegin
(),
m_prefinalize_callbacks
.
rend
(),
[](
const
auto
&
p
)
{
return
p
.
first
==
0
;
});
if
(
it
!=
m_prefinalize_callbacks
.
rend
())
{
auto
cb
=
std
::
move
(
it
->
second
);
m_prefinalize_callbacks
.
erase
(
std
::
next
(
it
).
base
());
return
cb
;
}
return
std
::
function
<
void
(
void
)
>
();
}
/**
* @brief Pops the most recently pushed pre-finalization callback pushed for a given owner.
*
* @tparam T Type of owner.
* @param owner Pointer to the owner.
*
* @return finalization callback.
*/
template
<
typename
T
>
std
::
function
<
void
(
void
)
>
pop_prefinalize_callback
(
const
T
*
owner
)
{
auto
it
=
std
::
find_if
(
m_prefinalize_callbacks
.
rbegin
(),
m_prefinalize_callbacks
.
rend
(),
[
owner
](
const
auto
&
p
)
{
return
p
.
first
==
reinterpret_cast
<
intptr_t
>
(
owner
);
});
if
(
it
!=
m_prefinalize_callbacks
.
rend
())
{
auto
cb
=
std
::
move
(
it
->
second
);
m_prefinalize_callbacks
.
erase
(
std
::
next
(
it
).
base
());
return
cb
;
}
return
std
::
function
<
void
(
void
)
>
();
}
template
<
typename
F
>
[[
deprecated
(
"Use push_finalize_callback"
)]]
void
on_finalize
(
F
&&
f
)
{
m_finalize_callbacks
.
emplace_back
(
0
,
std
::
forward
<
F
>
(
f
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment