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