[41c1b7] | 1 | /*
|
---|
| 2 | * SendJobToWorkerOperation.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Feb 22, 2012
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef FRAGMENTCONTROLLER_SENDJOBTOWORKEROPERATION_HPP_
|
---|
| 9 | #define FRAGMENTCONTROLLER_SENDJOBTOWORKEROPERATION_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 |
|
---|
| 22 | #include "Jobs/FragmentJob.hpp"
|
---|
| 23 | #include "Jobs/SystemCommandJob.hpp"
|
---|
[50d095] | 24 | #include "Operations/AsyncOperation.hpp"
|
---|
[41c1b7] | 25 | #include "WorkerAddress.hpp"
|
---|
| 26 |
|
---|
[f98c8e] | 27 | class SendJobToWorkerOperation : public AsyncOperation {
|
---|
[41c1b7] | 28 | public:
|
---|
[86a1e8] | 29 | /** Constructor for class SendJobToWorkerOperation.
|
---|
| 30 | *
|
---|
| 31 | * @param _connection connection for operation
|
---|
| 32 | */
|
---|
[41c1b7] | 33 | SendJobToWorkerOperation(Connection &_connection) :
|
---|
[f98c8e] | 34 | AsyncOperation(std::string("sendjobtoworker"),_connection),
|
---|
[41c1b7] | 35 | job( new SystemCommandJob(std::string("/bin/true"), std::string("donothing"), JobId::NoJob) )
|
---|
| 36 | {}
|
---|
[86a1e8] | 37 | /** Constructor for class SendJobToWorkerOperation.
|
---|
| 38 | *
|
---|
| 39 | * @param _connection connection for operation
|
---|
| 40 | * @param _job job to send to worker
|
---|
| 41 | */
|
---|
| 42 | SendJobToWorkerOperation(Connection &_connection, FragmentJob::ptr &_job) :
|
---|
| 43 | AsyncOperation(std::string("sendjobtoworker"),_connection),
|
---|
| 44 | job( _job )
|
---|
| 45 | {}
|
---|
[41c1b7] | 46 | /// Destructor for class SendJobToWorkerOperation
|
---|
| 47 | ~SendJobToWorkerOperation() {}
|
---|
| 48 |
|
---|
| 49 | /** Setter for job.
|
---|
| 50 | *
|
---|
| 51 | * @param _job job to take over internally
|
---|
| 52 | */
|
---|
| 53 | void setJob(FragmentJob::ptr &_job)
|
---|
| 54 | {
|
---|
| 55 | job.reset();
|
---|
| 56 | job = _job;
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | public:
|
---|
| 60 | // virtual function pointer to the connection handler
|
---|
| 61 | virtual void handle_connect(const boost::system::error_code& e,
|
---|
| 62 | boost::asio::ip::tcp::resolver::iterator endpoint_iterator);
|
---|
| 63 |
|
---|
| 64 | private:
|
---|
| 65 | //!> job to send to
|
---|
| 66 | FragmentJob::ptr job;
|
---|
| 67 | };
|
---|
| 68 |
|
---|
| 69 | #endif /* FRAGMENTCONTROLLER_SENDJOBTOWORKEROPERATION_HPP_ */
|
---|