Ignore:
Timestamp:
May 17, 2012, 3:21:54 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
96c83b
Parents:
d6fe76
git-author:
Frederik Heber <heber@…> (12/11/11 16:59:08)
git-committer:
Frederik Heber <heber@…> (05/17/12 15:21:54)
Message:

Operation::operator() now contains everything to get the endpoint and connect.

  • getting the endpoint is placed in operator() which needs host and service as parameters.
  • derived classes just implement handle_connect whose virtual function pointer is boost::bind in Operation::operator().
  • this all makes it very easy to implement new commands for the Controller.
  • all handle_connect_... of course are now the above implementation.
  • all connect_... are now contained in Operation::operator(), hence have been removed.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Automation/Controller/Commands/CheckResultsOperation.cpp

    rd6fe76 r9948a7  
    2424
    2525#include <boost/bind.hpp>
    26 #include <boost/foreach.hpp>
    2726#include <iostream>
    2827#include "Connection.hpp" // Must come before boost/serialization headers.
     
    3837 * \param endpoint_iterator endpoint of the connection
    3938 */
    40 void CheckResultsOperation::handle_connect_check(const boost::system::error_code& e,
     39void CheckResultsOperation::handle_connect(const boost::system::error_code& e,
    4140    boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
    4241{
     
    5453    boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
    5554    connection_.socket().async_connect(endpoint,
    56       boost::bind(&CheckResultsOperation::handle_connect_check, this,
     55      boost::bind(&CheckResultsOperation::handle_connect, this,
    5756      boost::asio::placeholders::error, ++endpoint_iterator));
    5857  } else {
     
    8988}
    9089
    91 /** Internal function to connect to the endpoint of the server asynchronuously.
    92  *
    93  * We require internal connetion_ and host and service to be set up for this.
    94  */
    95 void CheckResultsOperation::connect_check()
    96 {
    97   Info info(__FUNCTION__);
    98   // Resolve the host name into an IP address.
    99   boost::asio::ip::tcp::resolver::iterator endpoint_iterator = getEndpointIterator();
    100   boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
    101 
    102   // Start an asynchronous connect operation.
    103   std::cout << "Connecting to endpoint " << endpoint << " to check " << std::endl;
    104   connection_.socket().async_connect(endpoint,
    105     boost::bind(&CheckResultsOperation::handle_connect_check, this,
    106       boost::asio::placeholders::error, ++endpoint_iterator));
    107 }
    108 
    109 /** Prepares the calculation of the results for the current jobs.
    110  */
    111 void CheckResultsOperation::operator()()
    112 {
    113   Info info(__FUNCTION__);
    114   // connect
    115   connect_check();
    116   //disconnect
    117   disconnect();
    118 }
    119 
    120 void CheckResultsOperation::handle_connect(const boost::system::error_code& e,
    121     boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
    122 {}
    123 
Note: See TracChangeset for help on using the changeset viewer.