source: src/World.hpp@ 5dfabd

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
Last change on this file since 5dfabd was 5dfabd, checked in by Frederik Heber <heber@…>, 13 years ago

Added singleton class AtomObserver that acts as relay station to all atom changes.

  • uses Relay pattern.
  • is called in World::createAtom() to signOn on time.
  • update() relays the update call on to true observer.
  • Property mode set to 100644
File size: 15.2 KB
Line 
1/*
2 * World.hpp
3 *
4 * Created on: Feb 3, 2010
5 * Author: crueger
6 */
7
8#ifndef WORLD_HPP_
9#define WORLD_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16/*********************************************** includes ***********************************/
17
18#include <string>
19#include <map>
20#include <vector>
21#include <set>
22#include <boost/thread.hpp>
23#include <boost/shared_ptr.hpp>
24
25#include "Actions/ActionTrait.hpp"
26#include "Atom/AtomSet.hpp"
27#include "Descriptors/SelectiveIterator.hpp"
28#include "CodePatterns/Observer/Observable.hpp"
29#include "CodePatterns/Observer/Observer.hpp"
30#include "CodePatterns/Cacheable.hpp"
31#include "CodePatterns/Singleton.hpp"
32#include "CodePatterns/Observer/ObservedContainer.hpp"
33#include "CodePatterns/Range.hpp"
34#include "IdPool.hpp"
35#include "types.hpp"
36
37// forward declarations
38class atom;
39class AtomDescriptor;
40class AtomDescriptor_impl;
41class BondGraph;
42class Box;
43class config;
44class RealSpaceMatrix;
45class molecule;
46class MoleculeDescriptor;
47class MoleculeDescriptor_impl;
48class MoleculeListClass;
49class periodentafel;
50class ThermoStatContainer;
51
52namespace MoleCuilder {
53 class ManipulateAtomsProcess;
54 template<typename T> class AtomsCalculation;
55}
56
57/****************************************** forward declarations *****************************/
58
59/********************************************** Class World *******************************/
60
61namespace detail {
62 template <class T> const T* lastChanged()
63 {
64 ASSERT(0, "detail::lastChanged() - only specializations may be used.");
65 return NULL;
66 }
67}
68
69class World : public Singleton<World>, public Observable
70{
71
72// Make access to constructor and destructor possible from inside the singleton
73friend class Singleton<World>;
74
75// necessary for coupling with descriptors
76friend class AtomDescriptor_impl;
77friend class AtomDescriptor;
78friend class MoleculeDescriptor_impl;
79friend class MoleculeDescriptor;
80// coupling with descriptors over selection
81friend class AtomSelectionDescriptor_impl;
82friend class MoleculeSelectionDescriptor_impl;
83
84// Actions, calculations etc associated with the World
85friend class MoleCuilder::ManipulateAtomsProcess;
86template<typename> friend class MoleCuilder::AtomsCalculation;
87public:
88 // some typedefs for the CONSTRUCT_... macros (no "," allows in a single parameter name)
89 typedef std::map<atomId_t,atom*> AtomSTLSet;
90 typedef std::map<moleculeId_t,molecule*> MoleculeSTLSet;
91
92 // Types for Atom and Molecule structures
93 typedef ObservedContainer< AtomSTLSet > AtomSet;
94 typedef ObservedContainer< MoleculeSTLSet > MoleculeSet;
95
96 typedef ATOMSET(std::vector) AtomComposite;
97
98 /******* Notifications *******/
99
100 //!> enumeration of present notification types
101 enum NotificationType {
102 AtomInserted,
103 AtomRemoved,
104 AtomPositionChanged,
105 AtomChanged,
106 MoleculeInserted,
107 MoleculeRemoved,
108 MoleculeChanged,
109 NotificationType_MAX
110 };
111
112 //>! access to last changed element (atom or molecule)
113 template <class T> const T* lastChanged() const
114 { return detail::lastChanged<T>(); }
115
116 /***** getter and setter *****/
117 // reference to pointer is used for legacy reason... reference will be removed latter to keep encapsulation of World object
118 /**
119 * returns the periodentafel for the world.
120 */
121 periodentafel *&getPeriode();
122
123 /** Returns the BondGraph for the World.
124 *
125 * @return reference to BondGraph
126 */
127 BondGraph *&getBondGraph();
128
129 /** Sets the World's BondGraph.
130 *
131 * @param _BG new BondGraph
132 */
133 void setBondGraph(BondGraph *_BG);
134 /**
135 * returns the configuration for the world.
136 */
137 config *&getConfig();
138
139 /** Returns a notification_ptr for a specific type.
140 *
141 * @param type request type
142 * @return reference to instance
143 */
144 Notification_ptr getNotification(enum NotificationType type) const;
145
146 /**
147 * returns the first atom that matches a given descriptor.
148 * Do not rely on ordering for descriptors that match more than one atom.
149 */
150 atom* getAtom(AtomDescriptor descriptor);
151
152 /**
153 * returns a vector containing all atoms that match a given descriptor
154 */
155 AtomComposite getAllAtoms(AtomDescriptor descriptor);
156 AtomComposite getAllAtoms();
157
158 /**
159 * returns a calculation that calls a given function on all atoms matching a descriptor.
160 * the calculation is not called at this point and can be used as an action, i.e. be stored in
161 * menus, be kept around for later use etc.
162 */
163 template<typename T> MoleCuilder::AtomsCalculation<T>* calcOnAtoms(boost::function<T(atom*)>,const MoleCuilder::ActionTrait &_trait,AtomDescriptor);
164 template<typename T> MoleCuilder::AtomsCalculation<T>* calcOnAtoms(boost::function<T(atom*)>,const MoleCuilder::ActionTrait &_trait);
165
166 /**
167 * get the number of atoms in the World
168 */
169 int numAtoms();
170
171 /**
172 * returns the first molecule that matches a given descriptor.
173 * Do not rely on ordering for descriptors that match more than one molecule.
174 */
175 molecule *getMolecule(MoleculeDescriptor descriptor);
176
177 /**
178 * returns a vector containing all molecules that match a given descriptor
179 */
180 std::vector<molecule*> getAllMolecules(MoleculeDescriptor descriptor);
181 std::vector<molecule*> getAllMolecules();
182
183 /**
184 * get the number of molecules in the World
185 */
186 int numMolecules();
187
188 /**
189 * get the domain size as a symmetric matrix (6 components)
190 */
191 Box& getDomain();
192
193 /**
194 * Set the domain size from a matrix object
195 *
196 * Matrix needs to be symmetric
197 */
198 void setDomain(const RealSpaceMatrix &mat);
199
200 /**
201 * set the domain size as a symmetric matrix (6 components)
202 */
203 void setDomain(double * matrix);
204
205 /**
206 * set the current time of the world.
207 *
208 * @param _step time step to set to
209 */
210 void setTime(const unsigned int _step);
211
212 /**
213 * get the default name
214 */
215 std::string getDefaultName();
216
217 /**
218 * set the default name
219 */
220 void setDefaultName(std::string name);
221
222 /**
223 * get pointer to World's ThermoStatContainer
224 */
225 ThermoStatContainer * getThermostats();
226
227 /*
228 * get the ExitFlag
229 */
230 int getExitFlag();
231
232 /*
233 * set the ExitFlag
234 */
235 void setExitFlag(int flag);
236
237 /***** Methods to work with the World *****/
238
239 /**
240 * create a new molecule. This method should be used whenever any kind of molecule is needed. Assigns a unique
241 * ID to the molecule and stores it in the World for later retrieval. Do not create molecules directly.
242 */
243 molecule *createMolecule();
244
245 void destroyMolecule(molecule*);
246 void destroyMolecule(moleculeId_t);
247
248 /**
249 * Create a new atom. This method should be used whenever any atom is needed. Assigns a unique ID and stores
250 * the atom in the World. If the atom is not destroyed it will automatically be destroyed when the world ends.
251 */
252 atom *createAtom();
253
254 /**
255 * Registers a Atom unknown to world. Needed in some rare cases, e.g. when cloning atoms, or in some unittests.
256 * Do not re-register Atoms already known to the world since this will cause double-frees.
257 */
258 int registerAtom(atom*);
259
260 /**
261 * Delete some atom and erase it from the world. Use this whenever you need to destroy any atom. Do not call delete on
262 * atom directly since this will leave the pointer inside the world.
263 */
264 void destroyAtom(atom*);
265
266 /**
267 * Delete some atom and erase it from the world. Use this whenever you need to destroy any atom. Do not call delete on
268 * atom directly since this will leave the pointer inside the world.
269 */
270 void destroyAtom(atomId_t);
271
272 /**
273 * used when changing an atom Id.
274 * Unless you are calling this method from inside an atom don't fiddle with the third parameter.
275 *
276 * Return value indicates wether the change could be done or not.
277 */
278 bool changeAtomId(atomId_t oldId, atomId_t newId, atom* target=0);
279
280 /**
281 * used when changing an molecule Id.
282 * Unless you are calling this method from inside an moleucle don't fiddle with the third parameter.
283 *
284 * Return value indicates wether the change could be done or not.
285 */
286 bool changeMoleculeId(moleculeId_t oldId, moleculeId_t newId, molecule* target=0);
287
288 /**
289 * Produces a process that calls a function on all Atoms matching a given descriptor. The process is not
290 * called at this time, so it can be passed around, stored inside menuItems etc.
291 */
292 MoleCuilder::ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string,AtomDescriptor);
293 MoleCuilder::ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string);
294
295 /****
296 * Iterators to use internal data structures
297 * All these iterators are observed to track changes.
298 * There is a corresponding protected section with unobserved iterators,
299 * which can be used internally when the extra speed is needed
300 */
301
302 typedef SelectiveIterator<atom*,AtomSet,AtomDescriptor> AtomIterator;
303
304 /**
305 * returns an iterator over all Atoms matching a given descriptor.
306 * This iterator is observed, so don't keep it around unnecessary to
307 * avoid unintended blocking.
308 */
309 AtomIterator getAtomIter(AtomDescriptor descr);
310 AtomIterator getAtomIter();
311
312 AtomIterator atomEnd();
313
314 typedef SelectiveIterator<molecule*,MoleculeSet,MoleculeDescriptor> MoleculeIterator;
315
316 /**
317 * returns an iterator over all Molecules matching a given descriptor.
318 * This iterator is observed, so don't keep it around unnecessary to
319 * avoid unintended blocking.
320 */
321 MoleculeIterator getMoleculeIter(MoleculeDescriptor descr);
322 MoleculeIterator getMoleculeIter();
323
324 MoleculeIterator moleculeEnd();
325
326 /******** Selections of molecules and Atoms *************/
327 void clearAtomSelection();
328 void selectAtom(const atom*);
329 void selectAtom(const atomId_t);
330 void selectAllAtoms(AtomDescriptor);
331 void selectAtomsOfMolecule(const molecule*);
332 void selectAtomsOfMolecule(const moleculeId_t);
333 void unselectAtom(const atom*);
334 void unselectAtom(const atomId_t);
335 void unselectAllAtoms(AtomDescriptor);
336 void unselectAtomsOfMolecule(const molecule*);
337 void unselectAtomsOfMolecule(const moleculeId_t);
338 size_t countSelectedAtoms() const;
339 bool isSelected(const atom *_atom) const;
340 bool isAtomSelected(const atomId_t no) const;
341 const std::vector<atom *> getSelectedAtoms() const;
342
343 void clearMoleculeSelection();
344 void selectMolecule(const molecule*);
345 void selectMolecule(const moleculeId_t);
346 void selectAllMolecules(MoleculeDescriptor);
347 void selectMoleculeOfAtom(const atom*);
348 void selectMoleculeOfAtom(const atomId_t);
349 void unselectMolecule(const molecule*);
350 void unselectMolecule(const moleculeId_t);
351 void unselectAllMolecules(MoleculeDescriptor);
352 void unselectMoleculeOfAtom(const atom*);
353 void unselectMoleculeOfAtom(const atomId_t);
354 size_t countSelectedMolecules() const;
355 bool isSelected(const molecule *_mol) const;
356 bool isMoleculeSelected(const moleculeId_t no) const;
357 const std::vector<molecule *> getSelectedMolecules() const;
358
359 /******************** Iterators to selections *****************/
360 typedef AtomSet::iterator AtomSelectionIterator;
361 AtomSelectionIterator beginAtomSelection();
362 AtomSelectionIterator endAtomSelection();
363 typedef AtomSet::const_iterator AtomSelectionConstIterator;
364 AtomSelectionConstIterator beginAtomSelection() const;
365 AtomSelectionConstIterator endAtomSelection() const;
366
367 typedef MoleculeSet::iterator MoleculeSelectionIterator;
368 MoleculeSelectionIterator beginMoleculeSelection();
369 MoleculeSelectionIterator endMoleculeSelection();
370 typedef MoleculeSet::const_iterator MoleculeSelectionConstIterator;
371 MoleculeSelectionConstIterator beginMoleculeSelection() const;
372 MoleculeSelectionConstIterator endMoleculeSelection() const;
373
374protected:
375 /****
376 * Iterators to use internal data structures
377 * All these iterators are unobserved for speed reasons.
378 * There is a corresponding public section to these methods,
379 * which produce observed iterators.*/
380
381 // Atoms
382 typedef SelectiveIterator<atom*,AtomSet::set_t,AtomDescriptor> internal_AtomIterator;
383
384 /**
385 * returns an iterator over all Atoms matching a given descriptor.
386 * used for internal purposes, like AtomProcesses and AtomCalculations.
387 */
388 internal_AtomIterator getAtomIter_internal(AtomDescriptor descr);
389
390 /**
391 * returns an iterator to the end of the AtomSet. Due to overloading this iterator
392 * can be compared to iterators produced by getAtomIter (see the mis-matching types).
393 * Thus it can be used to detect when such an iterator is at the end of the list.
394 * used for internal purposes, like AtomProcesses and AtomCalculations.
395 */
396 internal_AtomIterator atomEnd_internal();
397
398 // Molecules
399 typedef SelectiveIterator<molecule*,MoleculeSet::set_t,MoleculeDescriptor> internal_MoleculeIterator;
400
401
402 /**
403 * returns an iterator over all Molecules matching a given descriptor.
404 * used for internal purposes, like MoleculeProcesses and MoleculeCalculations.
405 */
406 internal_MoleculeIterator getMoleculeIter_internal(MoleculeDescriptor descr);
407
408 /**
409 * returns an iterator to the end of the MoleculeSet. Due to overloading this iterator
410 * can be compared to iterators produced by getMoleculeIter (see the mis-matching types).
411 * Thus it can be used to detect when such an iterator is at the end of the list.
412 * used for internal purposes, like MoleculeProcesses and MoleculeCalculations.
413 */
414 internal_MoleculeIterator moleculeEnd_internal();
415
416
417 /******* Internal manipulation routines for double callback and Observer mechanism ******/
418 void doManipulate(MoleCuilder::ManipulateAtomsProcess *);
419
420private:
421
422 atomId_t getNextAtomId();
423 void releaseAtomId(atomId_t);
424 bool reserveAtomId(atomId_t);
425 void defragAtomIdPool();
426
427 moleculeId_t getNextMoleculeId();
428 void releaseMoleculeId(moleculeId_t);
429 bool reserveMoleculeId(moleculeId_t);
430 void defragMoleculeIdPool();
431
432 friend const atom *detail::lastChanged<atom>();
433 friend const molecule *detail::lastChanged<molecule>();
434 static atom *_lastchangedatom;
435 static molecule*_lastchangedmol;
436
437 BondGraph *BG;
438 periodentafel *periode;
439 config *configuration;
440 Box *cell_size;
441 std::string defaultName;
442 class ThermoStatContainer *Thermostats;
443 int ExitFlag;
444private:
445
446 AtomSet atoms;
447 AtomSet selectedAtoms;
448 /**
449 * stores the pool for all available AtomIds below currAtomId
450 *
451 * The pool contains ranges of free ids in the form [bottom,top).
452 */
453 IdPool<atomId_t> atomIdPool;
454
455 MoleculeSet molecules;
456 MoleculeSet selectedMolecules;
457 /**
458 * stores the pool for all available AtomIds below currAtomId
459 *
460 * The pool contains ranges of free ids in the form [bottom,top).
461 */
462 IdPool<moleculeId_t> moleculeIdPool;
463
464private:
465 /**
466 * private constructor to ensure creation of the world using
467 * the singleton pattern.
468 */
469 World();
470
471 /**
472 * private destructor to ensure destruction of the world using the
473 * singleton pattern.
474 */
475 virtual ~World();
476
477 /*****
478 * some legacy stuff that is include for now but will be removed later
479 *****/
480public:
481 MoleculeListClass *&getMolecules();
482
483private:
484 MoleculeListClass *molecules_deprecated;
485};
486
487/** Externalized stuff as member functions cannot be specialized without
488 * specializing the class, too.
489 */
490namespace detail {
491 template <> inline const atom* lastChanged<atom>() { return World::_lastchangedatom; }
492 template <> inline const molecule* lastChanged<molecule>() { return World::_lastchangedmol; }
493}
494
495
496#endif /* WORLD_HPP_ */
Note: See TracBrowser for help on using the repository browser.