Changeset d6b12c


Ignore:
Timestamp:
Jul 2, 2012, 7:53:25 AM (12 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:
fb255d
Parents:
a06358c
git-author:
Frederik Heber <heber@…> (02/29/12 16:07:33)
git-committer:
Frederik Heber <heber@…> (07/02/12 07:53:25)
Message:

FragmentQueue is now observable.

Location:
src/Fragmentation/Automation
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Automation/FragmentQueue.cpp

    ra06358c rd6b12c  
    2323
    2424#include "CodePatterns/Assert.hpp"
     25#include "CodePatterns/Observer/Channels.hpp"
    2526#include "CodePatterns/Log.hpp"
    2627
     
    3334 *
    3435 */
    35 FragmentQueue::FragmentQueue()
    36 {}
     36FragmentQueue::FragmentQueue() :
     37    Observable("FragmentQueue")
     38{
     39  // observable stuff
     40  Channels *OurChannel = new Channels;
     41  NotificationChannels.insert( std::make_pair(this, OurChannel) );
     42  // add instance for each notification type
     43  for (size_t type = 0; type < NotificationType_MAX; ++type)
     44    OurChannel->addChannel(type);
     45}
    3746
    3847/** Destructor for class FragmentQueue.
     
    6574  ASSERT(!results.count(job->getId()),
    6675      "FragmentQueue::pushJob() - job id "+toString(job->getId())+" has already been used.");
     76  OBSERVE;
     77  NOTIFY(JobAdded);
    6778  results.insert( std::make_pair(job->getId(), NoResult));
    6879  jobs.push_back(job);
     
    92103FragmentJob::ptr FragmentQueue::popJob()
    93104{
     105  OBSERVE;
     106  NOTIFY(JobRemoved);
    94107  ASSERT(jobs.size(),
    95108      "FragmentQueue::popJob() - there are no jobs on the queue.");
  • src/Fragmentation/Automation/FragmentQueue.hpp

    ra06358c rd6b12c  
    1818#include <vector>
    1919
     20#include "CodePatterns/Observer/Observable.hpp"
     21
    2022#include "types.hpp"
    2123#include "Jobs/FragmentJob.hpp"
     
    2830 * contained herein.
    2931 */
    30 class FragmentQueue
     32class FragmentQueue : public Observable
    3133{
    3234  friend class FragmentQueueTest;
     
    3436  FragmentQueue();
    3537  ~FragmentQueue();
     38
     39  enum NotificationType {
     40    JobAdded,
     41    JobRemoved,
     42    NotificationType_MAX  // denotes the maximum of available notification types
     43  };
    3644
    3745  // entering jobs into queue
  • src/Fragmentation/Automation/unittests/FragmentQueueUnitTest.cpp

    ra06358c rd6b12c  
    2929#include "FragmentQueue.hpp"
    3030
     31#include "CodePatterns/Observer/Channels.hpp"
    3132
    3233#ifdef HAVE_TESTRUNNER
     
    3738
    3839#include "stubs/FragmentJobStub.hpp"
     40#include "unittests/stubs/ObserverStub.hpp"
    3941
    4042// Registers the fixture into the 'registry'
     
    4850
    4951  queue = new FragmentQueue();
     52  addobserver = new NotificationObserver(queue->getChannel(FragmentQueue::JobAdded));
     53  removeobserver = new NotificationObserver(queue->getChannel(FragmentQueue::JobRemoved));
     54
     55  // and sign on
     56  queue->signOn(addobserver, FragmentQueue::JobAdded);
     57  queue->signOn(removeobserver, FragmentQueue::JobRemoved);
    5058}
    5159
     
    5361void FragmentQueueTest::tearDown()
    5462{
     63  queue->signOff(addobserver, FragmentQueue::JobAdded);
     64  queue->signOff(removeobserver, FragmentQueue::JobRemoved);
     65
    5566  delete queue;
     67  delete removeobserver;
     68  delete addobserver;
    5669}
    5770
     
    7689  queue->pushJob(testJob);
    7790#endif
     91  CPPUNIT_ASSERT( addobserver->wasNotified );
     92  CPPUNIT_ASSERT( !removeobserver->wasNotified );
     93  addobserver->wasNotified = false;
    7894
    7995  CPPUNIT_ASSERT_EQUAL((size_t)1, queue->jobs.size());
     
    101117  poppedJob = queue->popJob();
    102118#endif
     119  CPPUNIT_ASSERT( !addobserver->wasNotified );
     120  CPPUNIT_ASSERT( removeobserver->wasNotified );
    103121  CPPUNIT_ASSERT( poppedJob == testJob );
    104122
  • src/Fragmentation/Automation/unittests/FragmentQueueUnitTest.hpp

    ra06358c rd6b12c  
    1818
    1919class FragmentQueue;
     20class NotificationObserver;
    2021
    2122/********************************************** Test classes **************************************/
     
    4243private:
    4344      FragmentQueue *queue;
     45      NotificationObserver *addobserver;
     46      NotificationObserver *removeobserver;
    4447};
    4548
  • src/Fragmentation/Automation/unittests/Makefile.am

    ra06358c rd6b12c  
    6363
    6464FragmentQueueUnitTest_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
    65 FragmentQueueUnitTest_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
     65FragmentQueueUnitTest_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} -I$(top_srcdir)/src
    6666FragmentQueueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
    6767  unittests/FragmentQueueUnitTest.cpp \
    6868  unittests/FragmentQueueUnitTest.hpp \
    6969  unittests/stubs/FragmentJobStub.cpp \
    70   unittests/stubs/FragmentJobStub.hpp
     70  unittests/stubs/FragmentJobStub.hpp \
     71  $(top_srcdir)/src/unittests/stubs/ObserverStub.cpp \
     72  $(top_srcdir)/src/unittests/stubs/ObserverStub.hpp
    7173FragmentQueueUnitTest_LDADD = \
    7274  libMolecuilderFragmentJobs.la \
Note: See TracChangeset for help on using the changeset viewer.