- Timestamp:
- Nov 7, 2011, 10:46:37 AM (13 years ago)
- 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:
- 949953
- Parents:
- 88ba1f
- git-author:
- Frederik Heber <heber@…> (09/26/11 12:45:13)
- git-committer:
- Frederik Heber <heber@…> (11/07/11 10:46:37)
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Actions/hello.cpp ¶
r88ba1f r071243 22 22 #include "CodePatterns/MemDebug.hpp" 23 23 24 #include <iostream> 25 #include <map> 26 #include <string> 27 28 #include "CodePatterns/Registry.hpp" 29 #include "CodePatterns/Singleton.hpp" 30 31 #include "CodePatterns/Singleton_impl.hpp" 32 #include "CodePatterns/Registry_impl.hpp" 33 34 class Atrait; 35 36 class Otrait 37 { 38 public: 39 Otrait(const std::string &_text) : text(_text) {} 40 ~Otrait() {} 41 const std::string & getName() const { return text; } 42 private: 43 std::string text; 44 }; 45 46 class Atrait : public Otrait 47 { 48 public: 49 Atrait() : Otrait(std::string("Atrait")) 50 { 51 options.insert( std::make_pair ( "AOtrait", new Otrait("AOtrait") ) ); 52 } 53 Atrait(const Atrait &trait) : Otrait(trait) 54 { 55 for (Omap::const_iterator iter = trait.options.begin(); iter != trait.options.end(); ++iter) 56 options.insert( std::make_pair ( "copied AOtrait", new Otrait(*(iter->second)) ) ); 57 } 58 ~Atrait() 59 { 60 for (Omap::iterator iter = options.begin(); iter != options.end(); ++iter) 61 delete iter->second; 62 options.clear(); 63 } 64 private: 65 typedef std::map<std::string, Otrait * > Omap; 66 67 Omap options; 68 }; 69 70 class Action 71 { 72 public: 73 Action(const Atrait &_trait) : trait(_trait) {} 74 ~Action() {} 75 76 const char * greet() { return "hello, this is MoleCuilder."; } 77 78 const std::string & getName() const { return trait.getName(); } 79 80 const Atrait trait; 81 private: 82 }; 83 84 85 /** Action Registry. 86 * 87 * The Action registry is a storage for any Action instance to retrieved by name. 88 * It is a singleton and can be called from anywhere. 89 * 90 */ 91 class ActionRegistry : public Singleton<ActionRegistry>, public Registry<Action> 92 { 93 friend class Singleton<ActionRegistry>; 94 //friend class Registry<Action>; 95 96 public: 97 Action* getActionByName(const std::string name); 98 void fillRegistry(); 99 100 private: 101 ActionRegistry(); 102 ~ActionRegistry(); 103 }; 104 105 /** Constructor for class ActionRegistry. 106 */ 107 ActionRegistry::ActionRegistry() 108 { 109 std::cout << "ActionRegistry::ActionRegistry() called, instance is " << this << "." << std::endl; 110 fillRegistry(); 111 } 112 113 void ActionRegistry::fillRegistry() 114 { 115 Action *presentAction = NULL; 116 { 117 Atrait atrait; 118 presentAction = new Action(atrait); 119 registerInstance(presentAction); 120 } 121 std::cout << "presentAction instance is " << presentAction << "." << std::endl; 122 } 123 124 125 /** Destructor for class ActionRegistry. 126 */ 127 ActionRegistry::~ActionRegistry() 128 { 129 std::cout << "ActionRegistry::~ActionRegistry() called, instance is " << this << "." << std::endl; 130 cleanup(); 131 } 132 133 /** Just passes on call to Registry<Action>::getByName(). 134 * \param name name of Action 135 * \return pointer to Action 136 */ 137 Action* ActionRegistry::getActionByName(const std::string name) 138 { 139 return getByName(name); 140 } 141 142 24 143 char const* greet() 25 144 { 26 return "hello, this is MoleCuilder.";145 return ActionRegistry::getInstance().getActionByName("Atrait")->greet(); 27 146 } 28 147 -
TabularUnified src/Makefile.am ¶
r88ba1f r071243 263 263 pyexec_LTLIBRARIES += Pythontest.la 264 264 Pythontest_la_SOURCES = Actions/hello.cpp 265 Pythontest_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(PYTHON_INCLUDE_DIR)265 Pythontest_la_CPPFLAGS = $(AM_CPPFLAGS) ${CodePatterns_CFLAGS} -I$(PYTHON_INCLUDE_DIR) 266 266 Pythontest_la_LDFLAGS = -module -avoid-version -shared 267 267 Pythontest_la_LIBADD = \ 268 268 $(BOOST_PYTHON_LDFLAGS) $(BOOST_PYTHON_LIBS) \ 269 ${CodePatterns_LIBS} \ 269 270 -l$(PYTHON_LIB) 270 271
Note:
See TracChangeset
for help on using the changeset viewer.