[5d1611] | 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 |
|
---|
[b34306] | 11 | /*********************************************** includes ***********************************/
|
---|
| 12 |
|
---|
[7c4e29] | 13 | #include <string>
|
---|
[d346b6] | 14 | #include <map>
|
---|
[fc1b24] | 15 | #include <vector>
|
---|
[354859] | 16 | #include <set>
|
---|
[7c4e29] | 17 | #include <boost/thread.hpp>
|
---|
[865a945] | 18 | #include <boost/shared_ptr.hpp>
|
---|
[5d1611] | 19 |
|
---|
[ead4e6] | 20 | #include "types.hpp"
|
---|
[6e97e5] | 21 | #include "Descriptors/SelectiveIterator.hpp"
|
---|
[5d1611] | 22 | #include "Patterns/Observer.hpp"
|
---|
| 23 | #include "Patterns/Cacheable.hpp"
|
---|
[23b547] | 24 | #include "Patterns/Singleton.hpp"
|
---|
| 25 |
|
---|
[b34306] | 26 | // include config.h
|
---|
| 27 | #ifdef HAVE_CONFIG_H
|
---|
| 28 | #include <config.h>
|
---|
| 29 | #endif
|
---|
[5d1611] | 30 |
|
---|
| 31 | // forward declarations
|
---|
[8e1f7af] | 32 | class config;
|
---|
[5d1611] | 33 | class periodentafel;
|
---|
| 34 | class MoleculeListClass;
|
---|
[4d9c01] | 35 | class atom;
|
---|
[354859] | 36 | class molecule;
|
---|
[fc1b24] | 37 | class AtomDescriptor;
|
---|
[7a1ce5] | 38 | class AtomDescriptor_impl;
|
---|
[1c51c8] | 39 | class MoleculeDescriptor;
|
---|
| 40 | class MoleculeDescriptor_impl;
|
---|
[7c4e29] | 41 | class ManipulateAtomsProcess;
|
---|
[b54ac8] | 42 | template<typename T>
|
---|
| 43 | class AtomsCalculation;
|
---|
[5d1611] | 44 |
|
---|
[b34306] | 45 | /****************************************** forward declarations *****************************/
|
---|
[23b547] | 46 |
|
---|
[b34306] | 47 | /********************************************** Class World *******************************/
|
---|
[23b547] | 48 |
|
---|
| 49 | class World : public Singleton<World>, public Observable
|
---|
[5d1611] | 50 | {
|
---|
[23b547] | 51 |
|
---|
| 52 | // Make access to constructor and destructor possible from inside the singleton
|
---|
| 53 | friend class Singleton<World>;
|
---|
| 54 |
|
---|
[b54ac8] | 55 | // necessary for coupling with descriptors
|
---|
[7a1ce5] | 56 | friend class AtomDescriptor_impl;
|
---|
[865a945] | 57 | friend class AtomDescriptor;
|
---|
[1c51c8] | 58 | friend class MoleculeDescriptor_impl;
|
---|
| 59 | friend class MoleculeDescriptor;
|
---|
[865a945] | 60 |
|
---|
[b54ac8] | 61 | // Actions, calculations etc associated with the World
|
---|
[7c4e29] | 62 | friend class ManipulateAtomsProcess;
|
---|
[b54ac8] | 63 | template<typename> friend class AtomsCalculation;
|
---|
[5d1611] | 64 | public:
|
---|
[23b547] | 65 |
|
---|
| 66 | // Types for Atom and Molecule structures
|
---|
[7042f45] | 67 | typedef std::map<atomId_t,atom*> AtomSet;
|
---|
| 68 | typedef std::map<moleculeId_t,molecule*> MoleculeSet;
|
---|
[5d1611] | 69 |
|
---|
| 70 | /***** getter and setter *****/
|
---|
[354859] | 71 | // reference to pointer is used for legacy reason... reference will be removed latter to keep encapsulation of World object
|
---|
[02ee15] | 72 | /**
|
---|
| 73 | * returns the periodentafel for the world.
|
---|
| 74 | */
|
---|
[354859] | 75 | periodentafel *&getPeriode();
|
---|
[02ee15] | 76 |
|
---|
[8e1f7af] | 77 | /**
|
---|
| 78 | * returns the configuration for the world.
|
---|
| 79 | */
|
---|
| 80 | config *&getConfig();
|
---|
| 81 |
|
---|
[02ee15] | 82 | /**
|
---|
| 83 | * returns the first atom that matches a given descriptor.
|
---|
| 84 | * Do not rely on ordering for descriptors that match more than one atom.
|
---|
| 85 | */
|
---|
[7a1ce5] | 86 | atom* getAtom(AtomDescriptor descriptor);
|
---|
[02ee15] | 87 |
|
---|
| 88 | /**
|
---|
| 89 | * returns a vector containing all atoms that match a given descriptor
|
---|
| 90 | */
|
---|
[7a1ce5] | 91 | std::vector<atom*> getAllAtoms(AtomDescriptor descriptor);
|
---|
[0e2a47] | 92 | std::vector<atom*> getAllAtoms();
|
---|
[b54ac8] | 93 |
|
---|
[02ee15] | 94 | /**
|
---|
| 95 | * returns a calculation that calls a given function on all atoms matching a descriptor.
|
---|
| 96 | * the calculation is not called at this point and can be used as an action, i.e. be stored in
|
---|
| 97 | * menus, be kept around for later use etc.
|
---|
| 98 | */
|
---|
[0e2a47] | 99 | template<typename T> AtomsCalculation<T>* calcOnAtoms(boost::function<T(atom*)>,std::string,AtomDescriptor);
|
---|
| 100 | template<typename T> AtomsCalculation<T>* calcOnAtoms(boost::function<T(atom*)>,std::string);
|
---|
[b54ac8] | 101 |
|
---|
[02ee15] | 102 | /**
|
---|
| 103 | * get the number of atoms in the World
|
---|
| 104 | */
|
---|
[354859] | 105 | int numAtoms();
|
---|
[02ee15] | 106 |
|
---|
[1c51c8] | 107 | /**
|
---|
| 108 | * returns the first molecule that matches a given descriptor.
|
---|
| 109 | * Do not rely on ordering for descriptors that match more than one molecule.
|
---|
| 110 | */
|
---|
| 111 | molecule *getMolecule(MoleculeDescriptor descriptor);
|
---|
| 112 |
|
---|
| 113 | /**
|
---|
| 114 | * returns a vector containing all molecules that match a given descriptor
|
---|
| 115 | */
|
---|
| 116 | std::vector<molecule*> getAllMolecules(MoleculeDescriptor descriptor);
|
---|
[97ebf8] | 117 | std::vector<molecule*> getAllMolecules();
|
---|
[1c51c8] | 118 |
|
---|
[02ee15] | 119 | /**
|
---|
| 120 | * get the number of molecules in the World
|
---|
| 121 | */
|
---|
[354859] | 122 | int numMolecules();
|
---|
| 123 |
|
---|
[5f612ee] | 124 | /**
|
---|
| 125 | * get the domain size as a symmetric matrix (6 components)
|
---|
| 126 | */
|
---|
| 127 | double * getDomain();
|
---|
| 128 |
|
---|
| 129 | /**
|
---|
| 130 | * set the domain size as a symmetric matrix (6 components)
|
---|
| 131 | */
|
---|
| 132 | void setDomain(double * matrix);
|
---|
| 133 |
|
---|
| 134 | /**
|
---|
| 135 | * get the default name
|
---|
| 136 | */
|
---|
| 137 | char * getDefaultName();
|
---|
| 138 |
|
---|
| 139 | /**
|
---|
| 140 | * set the default name
|
---|
| 141 | */
|
---|
| 142 | void setDefaultName(char * name);
|
---|
| 143 |
|
---|
[354859] | 144 | /***** Methods to work with the World *****/
|
---|
[02ee15] | 145 |
|
---|
| 146 | /**
|
---|
| 147 | * create a new molecule. This method should be used whenever any kind of molecule is needed. Assigns a unique
|
---|
| 148 | * ID to the molecule and stores it in the World for later retrieval. Do not create molecules directly.
|
---|
| 149 | */
|
---|
[354859] | 150 | molecule *createMolecule();
|
---|
[02ee15] | 151 |
|
---|
[cbc5fb] | 152 | void destroyMolecule(molecule*);
|
---|
| 153 | void destroyMolecule(moleculeId_t);
|
---|
| 154 |
|
---|
[02ee15] | 155 | /**
|
---|
| 156 | * Create a new atom. This method should be used whenever any atom is needed. Assigns a unique ID and stores
|
---|
| 157 | * the atom in the World. If the atom is not destroyed it will automatically be destroyed when the world ends.
|
---|
| 158 | */
|
---|
[46d958] | 159 | atom *createAtom();
|
---|
[02ee15] | 160 |
|
---|
| 161 | /**
|
---|
| 162 | * Registers a Atom unknown to world. Needed in some rare cases, e.g. when cloning atoms, or in some unittests.
|
---|
| 163 | * Do not re-register Atoms already known to the world since this will cause double-frees.
|
---|
| 164 | */
|
---|
[46d958] | 165 | int registerAtom(atom*);
|
---|
[02ee15] | 166 |
|
---|
| 167 | /**
|
---|
| 168 | * Delete some atom and erase it from the world. Use this whenever you need to destroy any atom. Do not call delete on
|
---|
| 169 | * atom directly since this will leave the pointer inside the world.
|
---|
| 170 | */
|
---|
[46d958] | 171 | void destroyAtom(atom*);
|
---|
[02ee15] | 172 |
|
---|
| 173 | /**
|
---|
| 174 | * Delete some atom and erase it from the world. Use this whenever you need to destroy any atom. Do not call delete on
|
---|
| 175 | * atom directly since this will leave the pointer inside the world.
|
---|
| 176 | */
|
---|
[cbc5fb] | 177 | void destroyAtom(atomId_t);
|
---|
[865a945] | 178 |
|
---|
[88d586] | 179 | /**
|
---|
| 180 | * used when changing an atom Id.
|
---|
| 181 | * Unless you are calling this method from inside an atom don't fiddle with the third parameter.
|
---|
| 182 | *
|
---|
| 183 | * Return value indicates wether the change could be done or not.
|
---|
| 184 | */
|
---|
| 185 | bool changeAtomId(atomId_t oldId, atomId_t newId, atom* target=0);
|
---|
| 186 |
|
---|
[02ee15] | 187 | /**
|
---|
| 188 | * Produces a process that calls a function on all Atoms matching a given descriptor. The process is not
|
---|
| 189 | * called at this time, so it can be passed around, stored inside menuItems etc.
|
---|
| 190 | */
|
---|
[7c4e29] | 191 | ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string,AtomDescriptor);
|
---|
[0e2a47] | 192 | ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string);
|
---|
[7c4e29] | 193 |
|
---|
[865a945] | 194 | protected:
|
---|
| 195 | /**** Iterators to use internal data structures */
|
---|
[1c51c8] | 196 |
|
---|
| 197 | // Atoms
|
---|
[6e97e5] | 198 | typedef SelectiveIterator<atom*,AtomSet,AtomDescriptor> AtomIterator;
|
---|
[865a945] | 199 |
|
---|
[02ee15] | 200 | /**
|
---|
| 201 | * returns an iterator over all Atoms matching a given descriptor.
|
---|
| 202 | * used for internal purposes, like AtomProcesses and AtomCalculations.
|
---|
| 203 | */
|
---|
[865a945] | 204 | AtomIterator getAtomIter(AtomDescriptor descr);
|
---|
[02ee15] | 205 |
|
---|
| 206 | /**
|
---|
[d2dbac0] | 207 | * returns an iterator to the end of the AtomSet. Due to overloading this iterator
|
---|
[02ee15] | 208 | * can be compared to iterators produced by getAtomIter (see the mis-matching types).
|
---|
| 209 | * Thus it can be used to detect when such an iterator is at the end of the list.
|
---|
| 210 | * used for internal purposes, like AtomProcesses and AtomCalculations.
|
---|
| 211 | */
|
---|
[6e97e5] | 212 | AtomIterator atomEnd();
|
---|
[865a945] | 213 |
|
---|
[1c51c8] | 214 | // Molecules
|
---|
| 215 |
|
---|
[6e97e5] | 216 | typedef SelectiveIterator<molecule*,MoleculeSet,MoleculeDescriptor> MoleculeIterator;
|
---|
[1c51c8] | 217 |
|
---|
| 218 | /**
|
---|
| 219 | * returns an iterator over all Molecules matching a given descriptor.
|
---|
| 220 | * used for internal purposes, like MoleculeProcesses and MoleculeCalculations.
|
---|
| 221 | */
|
---|
| 222 | MoleculeIterator getMoleculeIter(MoleculeDescriptor descr);
|
---|
| 223 |
|
---|
| 224 | /**
|
---|
| 225 | * returns an iterator to the end of the MoleculeSet. Due to overloading this iterator
|
---|
| 226 | * can be compared to iterators produced by getMoleculeIter (see the mis-matching types).
|
---|
| 227 | * Thus it can be used to detect when such an iterator is at the end of the list.
|
---|
| 228 | * used for internal purposes, like MoleculeProcesses and MoleculeCalculations.
|
---|
| 229 | */
|
---|
[6e97e5] | 230 | MoleculeIterator moleculeEnd();
|
---|
[1c51c8] | 231 |
|
---|
| 232 |
|
---|
[afb47f] | 233 | /******* Internal manipulation routines for double callback and Observer mechanism ******/
|
---|
| 234 | void doManipulate(ManipulateAtomsProcess *);
|
---|
| 235 |
|
---|
[5d1611] | 236 | private:
|
---|
[88d586] | 237 |
|
---|
| 238 | atomId_t getNextAtomId();
|
---|
| 239 | void releaseAtomId(atomId_t);
|
---|
| 240 | bool reserveAtomId(atomId_t);
|
---|
| 241 |
|
---|
[5d1611] | 242 | periodentafel *periode;
|
---|
[8e1f7af] | 243 | config *configuration;
|
---|
[5f612ee] | 244 | static double *cell_size;
|
---|
| 245 | static char *defaultName;
|
---|
[6e97e5] | 246 | public:
|
---|
[d2dbac0] | 247 | AtomSet atoms;
|
---|
[6e97e5] | 248 | private:
|
---|
[88d586] | 249 | std::set<atomId_t> atomIdPool; //<!stores the pool for all available AtomIds below currAtomId
|
---|
[cbc5fb] | 250 | atomId_t currAtomId; //!< stores the next available Id for atoms
|
---|
[d2dbac0] | 251 | MoleculeSet molecules;
|
---|
[cbc5fb] | 252 | moleculeId_t currMoleculeId;
|
---|
[5d1611] | 253 | private:
|
---|
[02ee15] | 254 | /**
|
---|
| 255 | * private constructor to ensure creation of the world using
|
---|
| 256 | * the singleton pattern.
|
---|
| 257 | */
|
---|
[5d1611] | 258 | World();
|
---|
[02ee15] | 259 |
|
---|
| 260 | /**
|
---|
| 261 | * private destructor to ensure destruction of the world using the
|
---|
| 262 | * singleton pattern.
|
---|
| 263 | */
|
---|
[5d1611] | 264 | virtual ~World();
|
---|
| 265 |
|
---|
| 266 | /*****
|
---|
| 267 | * some legacy stuff that is include for now but will be removed later
|
---|
| 268 | *****/
|
---|
| 269 | public:
|
---|
[354859] | 270 | MoleculeListClass *&getMolecules();
|
---|
[4d9c01] | 271 |
|
---|
[5d1611] | 272 | private:
|
---|
[354859] | 273 | MoleculeListClass *molecules_deprecated;
|
---|
[5d1611] | 274 | };
|
---|
| 275 |
|
---|
| 276 | #endif /* WORLD_HPP_ */
|
---|