Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
cpp-libs
Actor Framework
Commits
002dddaf
Commit
002dddaf
authored
Nov 11, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into develop
parents
cd728548
33424d0f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
88 additions
and
1 deletion
+88
-1
libcaf_core/src/event_based_actor.cpp
libcaf_core/src/event_based_actor.cpp
+6
-1
manual/manual.pdf
manual/manual.pdf
+0
-0
unit_testing/CMakeLists.txt
unit_testing/CMakeLists.txt
+1
-0
unit_testing/test_actor_lifetime.cpp
unit_testing/test_actor_lifetime.cpp
+81
-0
No files found.
libcaf_core/src/event_based_actor.cpp
View file @
002dddaf
...
...
@@ -34,7 +34,12 @@ void event_based_actor::forward_to(const actor& whom,
}
behavior
event_based_actor
::
functor_based
::
make_behavior
()
{
return
m_make_behavior
(
this
);
auto
res
=
m_make_behavior
(
this
);
// reset make_behavior_fun to get rid of any
// references held by the function object
make_behavior_fun
tmp
;
m_make_behavior
.
swap
(
tmp
);
return
res
;
}
}
// namespace caf
manual/manual.pdf
View file @
002dddaf
No preview for this file type
unit_testing/CMakeLists.txt
View file @
002dddaf
...
...
@@ -33,6 +33,7 @@ add_unit_test(continuation)
add_unit_test
(
constructor_attach
)
add_unit_test
(
custom_exception_handler
)
add_unit_test
(
typed_spawn
)
add_unit_test
(
actor_lifetime
)
add_unit_test
(
local_group
)
add_unit_test
(
sync_send
)
add_unit_test
(
broker
)
...
...
unit_testing/test_actor_lifetime.cpp
0 → 100644
View file @
002dddaf
#include <atomic>
#include <iostream>
#include "test.hpp"
#include "caf/all.hpp"
using
std
::
cout
;
using
std
::
endl
;
using
namespace
caf
;
std
::
atomic
<
long
>
s_dudes
;
class
dude
:
public
event_based_actor
{
public:
dude
()
{
++
s_dudes
;
}
~
dude
()
{
--
s_dudes
;
}
behavior
make_behavior
()
{
return
{
others
()
>>
[
=
]
{
return
last_dequeued
();
}
};
}
};
behavior
linking_dude
(
event_based_actor
*
self
,
const
actor
&
other_dude
)
{
CAF_CHECKPOINT
();
self
->
trap_exit
(
true
);
self
->
link_to
(
other_dude
);
anon_send_exit
(
other_dude
,
exit_reason
::
user_shutdown
);
CAF_CHECKPOINT
();
return
{
[
self
](
const
exit_msg
&
)
{
CAF_CHECKPOINT
();
self
->
send
(
self
,
atom
(
"check"
));
},
on
(
atom
(
"check"
))
>>
[
self
]
{
// make sure dude's dtor has been called
CAF_CHECK_EQUAL
(
s_dudes
.
load
(),
0
);
self
->
quit
();
}
};
}
behavior
monitoring_dude
(
event_based_actor
*
self
,
actor
other_dude
)
{
CAF_CHECKPOINT
();
self
->
monitor
(
other_dude
);
anon_send_exit
(
other_dude
,
exit_reason
::
user_shutdown
);
CAF_CHECKPOINT
();
return
{
[
self
](
const
down_msg
&
)
{
CAF_CHECKPOINT
();
self
->
send
(
self
,
atom
(
"check"
));
},
on
(
atom
(
"check"
))
>>
[
self
]
{
// make sure dude's dtor has been called
CAF_CHECK_EQUAL
(
s_dudes
.
load
(),
0
);
self
->
quit
();
}
};
}
void
test_actor_lifetime
()
{
spawn
(
monitoring_dude
,
spawn
<
dude
>
());
await_all_actors_done
();
spawn
(
linking_dude
,
spawn
<
dude
>
());
await_all_actors_done
();
}
int
main
()
{
CAF_TEST
(
test_actor_lifetime
);
test_actor_lifetime
();
return
CAF_TEST_RESULT
();
}
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