| [732507] | 1 | /*
 | 
|---|
| [d4eaf1] | 2 |  * SpecificFragmentController_ReceiveResultContainer_impl.hpp
 | 
|---|
| [732507] | 3 |  *
 | 
|---|
 | 4 |  *  Created on: Aug 27, 2012
 | 
|---|
 | 5 |  *      Author: heber
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [d4eaf1] | 8 | #ifndef SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_
 | 
|---|
 | 9 | #define SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_
 | 
|---|
| [732507] | 10 | 
 | 
|---|
 | 11 | 
 | 
|---|
 | 12 | // include config.h
 | 
|---|
 | 13 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 14 | #include <config.h>
 | 
|---|
 | 15 | #endif
 | 
|---|
 | 16 | 
 | 
|---|
 | 17 | #include "SpecificFragmentController.hpp"
 | 
|---|
 | 18 | 
 | 
|---|
 | 19 | #include "CodePatterns/Assert.hpp"
 | 
|---|
 | 20 | #include "CodePatterns/toString.hpp"
 | 
|---|
 | 21 | 
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | template <typename T>
 | 
|---|
| [d4eaf1] | 24 | size_t SpecificFragmentController::ReceiveResultContainer<T>::receiveResults(
 | 
|---|
| [732507] | 25 |     SpecificFragmentController &callback)
 | 
|---|
 | 26 | {
 | 
|---|
 | 27 |   // receive (and remove the respective ids)
 | 
|---|
 | 28 |   callback.receiveResults(callback.host, callback.port);
 | 
|---|
 | 29 |   callback.RunService("Requesting results");
 | 
|---|
 | 30 |   std::vector<FragmentResult::ptr> fragmentresults = callback.getReceivedResults();
 | 
|---|
 | 31 | 
 | 
|---|
 | 32 |   // convert
 | 
|---|
 | 33 |   std::vector<T> fragmentData;
 | 
|---|
 | 34 |   ConvertFragmentResultTo(fragmentresults, fragmentData);
 | 
|---|
 | 35 | 
 | 
|---|
 | 36 |   // insert into map
 | 
|---|
| [d4eaf1] | 37 |   insertResults(fragmentresults, fragmentData);
 | 
|---|
 | 38 | 
 | 
|---|
| [732507] | 39 |   return fragmentData.size();
 | 
|---|
 | 40 | }
 | 
|---|
 | 41 | 
 | 
|---|
 | 42 | template <typename T>
 | 
|---|
| [d4eaf1] | 43 | void SpecificFragmentController::ReceiveResultContainer<T>::waitforResults(
 | 
|---|
| [732507] | 44 |     const size_t NoExpectedResults,
 | 
|---|
 | 45 |     boost::asio::io_service &io_service,
 | 
|---|
 | 46 |     SpecificFragmentController &callback)
 | 
|---|
 | 47 | {
 | 
|---|
 | 48 |   // wait but receive all results that are already done
 | 
|---|
 | 49 |   size_t NoReceivedResults = 0;
 | 
|---|
 | 50 |   while (NoReceivedResults != NoExpectedResults) {
 | 
|---|
 | 51 |     // wait a bit
 | 
|---|
 | 52 |     boost::asio::deadline_timer timer(io_service);
 | 
|---|
 | 53 |     timer.expires_from_now(boost::posix_time::milliseconds(500));
 | 
|---|
 | 54 |     timer.wait();
 | 
|---|
 | 55 |     // then request status
 | 
|---|
 | 56 |     callback.checkResults(callback.host, callback.port);
 | 
|---|
 | 57 |     callback.RunService("Checking on results");
 | 
|---|
 | 58 | 
 | 
|---|
 | 59 |     const std::pair<size_t, size_t> JobStatus = callback.getJobStatus();
 | 
|---|
 | 60 |     const size_t NoCalculatedResults = JobStatus.second;
 | 
|---|
 | 61 |     // if some are done, get them
 | 
|---|
 | 62 |     if (NoCalculatedResults != 0) {
 | 
|---|
 | 63 |       NoReceivedResults += receiveResults(callback);
 | 
|---|
| [d9f2b3] | 64 |       callback.handler(NoReceivedResults, NoExpectedResults);
 | 
|---|
 | 65 |       LOG(1, "INFO: #" << JobStatus.first << " are waiting in the queue and #" << NoReceivedResults << " of " << NoExpectedResults << " jobs are calculated so far.");
 | 
|---|
| [732507] | 66 |     }
 | 
|---|
 | 67 |   }
 | 
|---|
 | 68 | }
 | 
|---|
 | 69 | 
 | 
|---|
| [d4eaf1] | 70 | #endif /* SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_ */
 | 
|---|