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 Candidate_v1.7.0 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@…>, 14 years ago

Added config.h inclusion to all Stock*.

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[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
[2eff32]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>
[31ca5f]19#include "FragmentJob.hpp"
[2eff32]20#include "StockClient.hpp"
21
[a636f8]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;
[2eff32]35
[a636f8]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}
[2eff32]41
[a636f8]42/// Handle completion of a connect operation.
43void StockClient::handle_connect(const boost::system::error_code& e)
44{
45 if (!e)
[2eff32]46 {
[a636f8]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.
[31ca5f]50 connection_.async_read(jobs_,
[a636f8]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;
[2eff32]60 }
[a636f8]61}
[2eff32]62
[a636f8]63/// Handle completion of a read operation.
64void StockClient::handle_read(const boost::system::error_code& e)
65{
66 if (!e)
[2eff32]67 {
[a636f8]68 // Print out the data that was received.
[31ca5f]69 for (std::size_t i = 0; i < jobs_.size(); ++i)
[2eff32]70 {
[31ca5f]71 std::cout << "Job number " << i << "\n";
72 std::cout << " output: " << jobs_[i].outputfile << "\n";
73 std::cout << " id: " << jobs_[i].JobId << "\n";
[2eff32]74 }
75 }
[a636f8]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}
[2eff32]85
Note: See TracBrowser for help on using the repository browser.