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