1 | /*
|
---|
2 | * FragmentController.hpp
|
---|
3 | *
|
---|
4 | * Created on: Nov 27, 2011
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef FRAGMENTCONTROLLER_HPP_
|
---|
9 | #define FRAGMENTCONTROLLER_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include <boost/asio.hpp>
|
---|
17 | #include <string>
|
---|
18 | #include <vector>
|
---|
19 |
|
---|
20 | #include "Connection.hpp"
|
---|
21 | #include "JobId.hpp"
|
---|
22 | #include "Jobs/FragmentJob.hpp"
|
---|
23 | #include "Results/FragmentResult.hpp"
|
---|
24 |
|
---|
25 | #include "Operations/OperationRegistry.hpp"
|
---|
26 |
|
---|
27 | /** The FragmentController sends bunches of jobs to a FragmentScheduler,
|
---|
28 | * waits for their calculation and is called when they are done. Then,
|
---|
29 | * he loads the bunch of results from the Scheduler.
|
---|
30 | *
|
---|
31 | * While the FragmentScheduler and FragmentWorker rather act on their own
|
---|
32 | * this is the piece to implant into the user software to allow for
|
---|
33 | * communication with the Server/Worker duo to perform the calculation
|
---|
34 | * of the fragments on distant computers.
|
---|
35 | */
|
---|
36 | class FragmentController
|
---|
37 | {
|
---|
38 | public:
|
---|
39 | FragmentController(boost::asio::io_service& io_service);
|
---|
40 | ~FragmentController();
|
---|
41 |
|
---|
42 | /// getter for operations exit flag.
|
---|
43 | size_t getExitflag() const;
|
---|
44 |
|
---|
45 | void requestIds(const std::string &host, const std::string &service, const size_t NumberIds);
|
---|
46 | JobId_t getAvailableId();
|
---|
47 | void addJobs(std::vector<FragmentJob::ptr> &jobs);
|
---|
48 | void sendJobs(const std::string &host, const std::string &service);
|
---|
49 | void checkResults(const std::string &host, const std::string &service);
|
---|
50 | void printDoneJobs();
|
---|
51 | void removeall(const std::string &host, const std::string &service);
|
---|
52 | void receiveResults(const std::string &host, const std::string &service);
|
---|
53 | std::vector<FragmentResult::ptr> getReceivedResults();
|
---|
54 | void shutdown(const std::string &host, const std::string &service);
|
---|
55 |
|
---|
56 | protected:
|
---|
57 | /// The Connection to the server.
|
---|
58 | Connection connection_;
|
---|
59 |
|
---|
60 | public:
|
---|
61 | //!> registry with all operations of this controller
|
---|
62 | OperationRegistry Commands;
|
---|
63 | };
|
---|
64 |
|
---|
65 | #endif /* FRAGMENTCONTROLLER_HPP_ */
|
---|