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/ReceiveJobsOperation.cpp

    rd6fe76 r9948a7  
    4141 * \param endpoint_iterator endpoint of the connection
    4242 */
    43 void ReceiveJobsOperation::handle_connect_calc(const boost::system::error_code& e,
     43void ReceiveJobsOperation::handle_connect(const boost::system::error_code& e,
    4444    boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
    4545{
     
    5757    boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
    5858    connection_.socket().async_connect(endpoint,
    59       boost::bind(&ReceiveJobsOperation::handle_connect_calc, this,
     59      boost::bind(&ReceiveJobsOperation::handle_connect, this,
    6060      boost::asio::placeholders::error, ++endpoint_iterator));
    6161  } else {
     
    110110}
    111111
    112 /** Internal function to connect to the endpoint of the server asynchronuously.
    113  *
    114  * We require internal connetion_ and host and service to be set up for this.
    115  */
    116 void ReceiveJobsOperation::connect_calc()
    117 {
    118   Info info(__FUNCTION__);
    119   // Resolve the host name into an IP address.
    120   boost::asio::ip::tcp::resolver::iterator endpoint_iterator = getEndpointIterator();
    121   boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;
    122 
    123   // Start an asynchronous connect operation.
    124   std::cout << "Connecting to endpoint " << endpoint << " to calc " << std::endl;
    125   connection_.socket().async_connect(endpoint,
    126     boost::bind(&ReceiveJobsOperation::handle_connect_calc, this,
    127       boost::asio::placeholders::error, ++endpoint_iterator));
    128 }
    129 
    130112/** Place number of jobs into this controller.
    131113 *
     
    140122}
    141123
    142 /** Prepares the calculation of the results for the current jobs.
    143  */
    144 void ReceiveJobsOperation::operator()()
    145 {
    146   Info info(__FUNCTION__);
    147   // connect
    148   connect_calc();
    149   //disconnect
    150   disconnect();
    151 }
    152 
    153 void ReceiveJobsOperation::handle_connect(const boost::system::error_code& e,
    154     boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
    155 {}
    156 
Note: See TracChangeset for help on using the changeset viewer.