[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;
|
---|
[fe77df] | 34 | SpecificFragmentController::ReceiveResultContainer<T>::ConvertFragmentResultTo(
|
---|
| 35 | fragmentresults,
|
---|
| 36 | fragmentData);
|
---|
[732507] | 37 |
|
---|
| 38 | // insert into map
|
---|
[fe77df] | 39 | SpecificFragmentController::ReceiveResultContainer<T>::insertResults(
|
---|
| 40 | fragmentresults,
|
---|
| 41 | fragmentData);
|
---|
[d4eaf1] | 42 |
|
---|
[732507] | 43 | return fragmentData.size();
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | template <typename T>
|
---|
[d4eaf1] | 47 | void SpecificFragmentController::ReceiveResultContainer<T>::waitforResults(
|
---|
[732507] | 48 | const size_t NoExpectedResults,
|
---|
| 49 | boost::asio::io_service &io_service,
|
---|
| 50 | SpecificFragmentController &callback)
|
---|
| 51 | {
|
---|
| 52 | // wait but receive all results that are already done
|
---|
| 53 | size_t NoReceivedResults = 0;
|
---|
[ca09be] | 54 | while ((NoReceivedResults != NoExpectedResults)
|
---|
| 55 | && (callback.getExitflag() == 0)) {
|
---|
[732507] | 56 | // wait a bit
|
---|
| 57 | boost::asio::deadline_timer timer(io_service);
|
---|
| 58 | timer.expires_from_now(boost::posix_time::milliseconds(500));
|
---|
| 59 | timer.wait();
|
---|
| 60 | // then request status
|
---|
| 61 | callback.checkResults(callback.host, callback.port);
|
---|
| 62 | callback.RunService("Checking on results");
|
---|
[ca09be] | 63 | if (callback.getExitflag() != 0)
|
---|
| 64 | break;
|
---|
[732507] | 65 |
|
---|
| 66 | const std::pair<size_t, size_t> JobStatus = callback.getJobStatus();
|
---|
| 67 | const size_t NoCalculatedResults = JobStatus.second;
|
---|
| 68 | // if some are done, get them
|
---|
| 69 | if (NoCalculatedResults != 0) {
|
---|
| 70 | NoReceivedResults += receiveResults(callback);
|
---|
[d9f2b3] | 71 | callback.handler(NoReceivedResults, NoExpectedResults);
|
---|
| 72 | LOG(1, "INFO: #" << JobStatus.first << " are waiting in the queue and #" << NoReceivedResults << " of " << NoExpectedResults << " jobs are calculated so far.");
|
---|
[732507] | 73 | }
|
---|
| 74 | }
|
---|
| 75 | }
|
---|
| 76 |
|
---|
[d4eaf1] | 77 | #endif /* SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_ */
|
---|