Commit 05c2a8c2 authored by Dominik Charousset's avatar Dominik Charousset

Reduce code duplication in I/O DSL

parent 1d93df35
......@@ -158,20 +158,18 @@ public:
// Convenience function for transmitting all "network" traffic.
void network_traffic() {
while (earth.mpx.try_exec_runnable() || mars.mpx.try_exec_runnable()
|| earth.mpx.read_data() || mars.mpx.read_data()) {
// rince and repeat
}
run_exhaustively([](planet_type* x) {
return x->mpx.try_exec_runnable() || x->mpx.read_data();
});
}
// Convenience function for transmitting all "network" traffic and running
// all executables on earth and mars.
void exec_all() {
while (earth.mpx.try_exec_runnable() || mars.mpx.try_exec_runnable()
|| earth.mpx.read_data() || mars.mpx.read_data()
|| earth.sched.run_once() || mars.sched.run_once()) {
// rince and repeat
}
run_exhaustively([](planet_type* x) {
return x->mpx.try_exec_runnable() || x->mpx.read_data()
|| x->sched.run_once();
});
}
void prepare_connection(planet_type& server, planet_type& client,
......@@ -179,6 +177,14 @@ public:
server.mpx.prepare_connection(server.acc, server.conn, client.mpx,
std::move(host), port, client.conn);
}
private:
template <class F>
void run_exhaustively(F f) {
planet_type* planets[] = {&earth, &mars};
while (std::any_of(std::begin(planets), std::end(planets), f))
; // rince and repeat
}
};
/// Binds `test_coordinator_fixture<Config>` to `point_to_point_fixture`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment