Skip to content

Instantly share code, notes, and snippets.

@githubnemo
Created May 31, 2011 00:32
Show Gist options
  • Save githubnemo/098e0a3bec1e8059c529 to your computer and use it in GitHub Desktop.
Save githubnemo/098e0a3bec1e8059c529 to your computer and use it in GitHub Desktop.
Example for timing issues in callbacks for libcage
#include <stdlib.h>
#include <iostream>
#include <boost/foreach.hpp>
// include libevent's header
#include <event.h>
// include libcage's header
#include <libcage/cage.hpp>
const int max_node = 100;
const int port = 10000;
libcage::cage *cage;
class join_callback
{
public:
int n;
void operator() (bool result, std::vector<libcage::cageaddr> &nodes)
{
// print state
if (result) {
std::string s = "";
for(int i=0; i < nodes.size(); i++) {
s += nodes.at(i).id->to_string() + ", ";
}
std::cout << "join: succeeded, n = "
<< n
<< " others: "
<< s
<< std::endl;
} else
std::cout << "join: failed, n = "
<< n
<< std::endl;
cage[n].print_state();
n++;
sleep(2);
if (n < max_node) {
// start nodes recursively
if (! cage[n].open(PF_INET, port + n)) {
std::cerr << "cannot open port: Port = "
<< port + n
<< std::endl;
return;
}
cage[n].set_global();
cage[n].join("localhost", 10000, *this);
}
}
};
void
timer_callback(int fd, short ev, void *arg)
{
timeval tval;
tval.tv_sec = 60;
tval.tv_usec = 0;
evtimer_add((event*)arg, &tval);
for (int i = 0; i < max_node; i++) {
cage[i].print_state();
}
}
void
print_callback(int fd, short ev, void *arg)
{
timeval tval;
tval.tv_sec = 1;
tval.tv_usec = 0;
evtimer_add((event*)arg, &tval);
}
int
main(int argc, char *argv[])
{
#ifdef WIN32
// initialize winsock
WSADATA wsaData;
WSAStartup(MAKEWORD(2,0), &wsaData);
#endif // WIN32
// initialize libevent
event_init();
cage = new libcage::cage[max_node];
// start bootstrap node
if (! cage[0].open(PF_INET, port)) {
std::cerr << "cannot open port: Port = "
<< port
<< std::endl;
return -1;
}
cage[0].set_global();
// start other nodes
join_callback func;
func.n = 1;
if (! cage[1].open(PF_INET, port + func.n)) {
std::cerr << "cannot open port: Port = "
<< port + func.n
<< std::endl;
return -1;
}
cage[1].set_global();
cage[1].join("localhost", 10000, func);
// start timer
timeval tval[3];
event *ev = new event;
tval[0].tv_sec = 60;
tval[0].tv_usec = 0;
evtimer_set(ev, timer_callback, ev);
evtimer_add(ev, &tval[0]);
ev = new event;
tval[2].tv_sec = 1;
tval[2].tv_usec = 0;
evtimer_set(ev, print_callback, ev);
evtimer_add(ev, &tval[2]);
// handle event loop
event_dispatch();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment