[2eff32] | 1 | /*
|
---|
| 2 | * StockClient.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Nov 18, 2011
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[f93842] | 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[00d4fb] | 13 | // boost asio needs specific operator new
|
---|
[2eff32] | 14 | #include <boost/asio.hpp>
|
---|
[00d4fb] | 15 |
|
---|
| 16 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 17 |
|
---|
[2eff32] | 18 | #include <boost/bind.hpp>
|
---|
| 19 | #include <iostream>
|
---|
| 20 | #include <vector>
|
---|
| 21 | #include "connection.hpp" // Must come before boost/serialization headers.
|
---|
| 22 | #include <boost/serialization/vector.hpp>
|
---|
[31ca5f] | 23 | #include "FragmentJob.hpp"
|
---|
[2eff32] | 24 | #include "StockClient.hpp"
|
---|
| 25 |
|
---|
[a636f8] | 26 | /// Constructor starts the asynchronous connect operation.
|
---|
| 27 | StockClient::StockClient(
|
---|
| 28 | boost::asio::io_service& io_service,
|
---|
| 29 | const std::string& host,
|
---|
| 30 | const std::string& service) :
|
---|
| 31 | connection_(io_service)
|
---|
| 32 | {
|
---|
| 33 | // Resolve the host name into an IP address.
|
---|
| 34 | boost::asio::ip::tcp::resolver resolver(io_service);
|
---|
| 35 | boost::asio::ip::tcp::resolver::query query(host, service);
|
---|
| 36 | boost::asio::ip::tcp::resolver::iterator endpoint_iterator =
|
---|
| 37 | resolver.resolve(query);
|
---|
| 38 | boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
|
---|
[2eff32] | 39 |
|
---|
[a636f8] | 40 | // Start an asynchronous connect operation.
|
---|
| 41 | connection_.socket().async_connect(endpoint,
|
---|
| 42 | boost::bind(&StockClient::handle_connect, this,
|
---|
| 43 | boost::asio::placeholders::error));
|
---|
| 44 | }
|
---|
[2eff32] | 45 |
|
---|
[a636f8] | 46 | /// Handle completion of a connect operation.
|
---|
| 47 | void StockClient::handle_connect(const boost::system::error_code& e)
|
---|
| 48 | {
|
---|
| 49 | if (!e)
|
---|
[2eff32] | 50 | {
|
---|
[a636f8] | 51 | // Successfully established connection. Start operation to read the list
|
---|
| 52 | // of stocks. The connection::async_read() function will automatically
|
---|
| 53 | // decode the data that is read from the underlying socket.
|
---|
[31ca5f] | 54 | connection_.async_read(jobs_,
|
---|
[a636f8] | 55 | boost::bind(&StockClient::handle_read, this,
|
---|
| 56 | boost::asio::placeholders::error));
|
---|
| 57 | }
|
---|
| 58 | else
|
---|
| 59 | {
|
---|
| 60 | // An error occurred. Log it and return. Since we are not starting a new
|
---|
| 61 | // operation the io_service will run out of work to do and the client will
|
---|
| 62 | // exit.
|
---|
| 63 | std::cerr << e.message() << std::endl;
|
---|
[2eff32] | 64 | }
|
---|
[a636f8] | 65 | }
|
---|
[2eff32] | 66 |
|
---|
[a636f8] | 67 | /// Handle completion of a read operation.
|
---|
| 68 | void StockClient::handle_read(const boost::system::error_code& e)
|
---|
| 69 | {
|
---|
| 70 | if (!e)
|
---|
[2eff32] | 71 | {
|
---|
[a636f8] | 72 | // Print out the data that was received.
|
---|
[31ca5f] | 73 | for (std::size_t i = 0; i < jobs_.size(); ++i)
|
---|
[2eff32] | 74 | {
|
---|
[31ca5f] | 75 | std::cout << "Job number " << i << "\n";
|
---|
| 76 | std::cout << " output: " << jobs_[i].outputfile << "\n";
|
---|
| 77 | std::cout << " id: " << jobs_[i].JobId << "\n";
|
---|
[2eff32] | 78 | }
|
---|
| 79 | }
|
---|
[a636f8] | 80 | else
|
---|
| 81 | {
|
---|
| 82 | // An error occurred.
|
---|
| 83 | std::cerr << e.message() << std::endl;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | // Since we are not starting a new operation the io_service will run out of
|
---|
| 87 | // work to do and the client will exit.
|
---|
| 88 | }
|
---|
[2eff32] | 89 |
|
---|