added stuff

git-svn-id: svn://elaine/murooma/trunk@119 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-07-29 21:33:21 +00:00
parent 1e28b4a2fc
commit d43298f0fe
4 changed files with 406 additions and 0 deletions

41
rtrClient.cpp Normal file
View file

@ -0,0 +1,41 @@
//
// Custom routing Router to Mama (ROUTER to REQ)
//
// Olivier Chamoux <olivier.chamoux@fr.thalesgroup.com>
#include "zhelpers.hpp"
#define NBR_WORKERS 10
int main () {
zmq::context_t context(1);
zmq::socket_t worker (context, ZMQ_REQ);
srand (time(NULL));
// We use a string identity for ease here
s_set_id (worker);
worker.connect("tcp://127.0.0.1:10000");
int total = 0;
while (1) {
// Tell the router we're ready for work
s_send (worker, "ready");
// Get workload from router, until finished
std::string workload = s_recv (worker);
std::cout << "workload: " << workload << "\n";
int finished = (workload.compare("END") == 0);
if (finished) {
std::cout << "Processed: " << total << " tasks" << std::endl;
break;
}
total++;
// Do some random work
s_sleep(within (100) + 1);
}
return 0;
}