source: src/Fragmentation/Automation/StockClient.cpp@ f93842

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since f93842 was f93842, checked in by Frederik Heber <heber@…>, 13 years ago

Added config.h inclusion to all Stock*.

  • Property mode set to 100644
File size: 2.4 KB
Line 
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.
23StockClient::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.
43void 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.
64void 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
Note: See TracBrowser for help on using the repository browser.