ctrl_close_pending = data_close_pending = neigh.size();
close_received = false;
- may_receive = (neigh.size() > 0); // the same as (ctrl_close_pending ||
- // data_close_pending)
finalizing = false;
e_xbt_log_priority_t logp = xbt_log_priority_verbose;
// block on receiving unless there is something to compute or
// to send
- bool recv_wait = (load == 0 &&
- ((opt::bookkeeping ? expected_load : load)
- == prev_load_broadcast));
- receive(recv_wait? WAIT: NO_WAIT);
+ bool wait = (load == 0 &&
+ ((opt::bookkeeping ? expected_load : load)
+ == prev_load_broadcast));
+ receive(wait);
// one of our neighbor is finalizing
if (opt::exit_on_close && close_received)
break;
// have no load and cannot receive anything
- if (load == 0.0 && !may_receive)
+ if (load == 0.0 && !may_receive())
break;
// fixme: this check should be implemented with a distributed
}
}
-void process::receive(recv_wait_mode wait)
+void process::receive(bool wait)
{
message* msg;
m_host_t from;
- DEBUG1("go for receive(%s)",
- "NO_WAIT\0WAIT\0\0\0\0WAIT_FOR_CLOSE" + 8 * wait);
-
- bool do_wait = (wait != NO_WAIT);
- while (may_receive && comm.recv(msg, from, do_wait)) {
+ if (may_receive() && comm.recv(msg, from, wait)) {
switch (msg->get_type()) {
case message::INFO: {
neighbor* n = rev_neigh[from];
}
case message::CTRL_CLOSE:
ctrl_close_pending--;
- DEBUG1("ctrl_close_pending = %d", ctrl_close_pending);
close_received = true;
break;
case message::DATA_CLOSE:
data_close_pending--;
- DEBUG1("data_close_pending = %d", data_close_pending);
close_received = true;
break;
}
delete msg;
- may_receive = (ctrl_close_pending || data_close_pending);
- do_wait = (wait == WAIT_FOR_CLOSE);
}
}
DEBUG2("wait for CLOSE from %lu neighbor%s",
(unsigned long )neigh.size(), ESSE(neigh.size()));
- receive(WAIT_FOR_CLOSE);
+ while (may_receive())
+ receive(true);
comm.flush(true);
}
int data_close_pending; // number of "close" messages to wait
// on data channel
bool close_received; // true if we received a "close" message
- bool may_receive; // true if there remains neighbors to listen for
bool finalizing; // true when finalize() is running
unsigned lb_iter; // counter of load-balancing iterations
void send1_bookkeeping(neighbor& nb);
void send();
- // Receive procedure: wait (or not) for a message to come.
- enum recv_wait_mode { NO_WAIT = 0, WAIT, WAIT_FOR_CLOSE };
- void receive(recv_wait_mode wait);
+ // Returns true if there remains neighbors to listen for
+ bool may_receive() { return ctrl_close_pending || data_close_pending; }
+
+ // Receive procedure: wait (or not) for a message to come
+ void receive(bool wait);
// Finalize sends a "close" message to each neighbor and wait for
// all of them to answer.