source: molecuilder/src/World.cpp@ 14d898

Last change on this file since 14d898 was 14d898, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added methods for querying molecules using descriptors

  • Property mode set to 100644
File size: 5.5 KB
RevLine 
[2e8296]1/*
2 * World.cpp
3 *
4 * Created on: Feb 3, 2010
5 * Author: crueger
6 */
7
8#include "World.hpp"
9
[d2d8f5]10#include "atom.hpp"
[120f8b]11#include "molecule.hpp"
12#include "periodentafel.hpp"
[86b917]13#include "Descriptors/AtomDescriptor.hpp"
[a5471c]14#include "Descriptors/AtomDescriptor_impl.hpp"
[14d898]15#include "Descriptors/MoleculeDescriptor.hpp"
16#include "Descriptors/MoleculeDescriptor_impl.hpp"
[5d4edf]17#include "Actions/ManipulateAtomsProcess.hpp"
[d2d8f5]18
19using namespace std;
[42918b]20
[2e8296]21/******************************* getter and setter ************************/
[120f8b]22periodentafel *&World::getPeriode(){
[2e8296]23 return periode;
24}
25
[14d898]26// Atoms
27
[323177]28atom* World::getAtom(AtomDescriptor descriptor){
[86b917]29 return descriptor.find();
30}
31
[323177]32vector<atom*> World::getAllAtoms(AtomDescriptor descriptor){
[86b917]33 return descriptor.findAll();
34}
35
[bb89b9]36vector<atom*> World::getAllAtoms(){
37 return getAllAtoms(AllAtoms());
38}
39
[120f8b]40int World::numAtoms(){
41 return atoms.size();
42}
43
[14d898]44// Molecules
45
46molecule *World::getMolecule(MoleculeDescriptor descriptor){
47 return descriptor.find();
48}
49
50std::vector<molecule*> World::getAllMolecules(MoleculeDescriptor descriptor){
51 return descriptor.findAll();
52}
53
[120f8b]54int World::numMolecules(){
55 return molecules_deprecated->ListOfMolecules.size();
56}
57
[9ef76a]58/******************** Methods to change World state *********************/
59
[120f8b]60molecule* World::createMolecule(){
61 OBSERVE;
62 molecule *mol = NULL;
[8d9d38]63 mol = NewMolecule();
[a1a532]64 assert(!molecules.count(currMoleculeId));
[8d9d38]65 mol->setId(currMoleculeId++);
[2e6496]66 // store the molecule by ID
[8d9d38]67 molecules[mol->getId()] = mol;
[120f8b]68 mol->signOn(this);
69 return mol;
70}
71
[8d9d38]72void World::destroyMolecule(molecule* mol){
73 OBSERVE;
74 destroyMolecule(mol->getId());
75}
76
77void World::destroyMolecule(moleculeId_t id){
78 OBSERVE;
79 molecule *mol = molecules[id];
80 assert(mol);
81 DeleteMolecule(mol);
82 molecules.erase(id);
83}
84
[5d4edf]85
[7bfc19]86atom *World::createAtom(){
87 OBSERVE;
88 atom *res = NewAtom();
[a1a532]89 assert(!atoms.count(currAtomId));
[7bfc19]90 res->setId(currAtomId++);
91 res->setWorld(this);
[2e6496]92 // store the atom by ID
[7bfc19]93 atoms[res->getId()] = res;
94 return res;
95}
96
97int World::registerAtom(atom *atom){
98 OBSERVE;
[a1a532]99 assert(!atoms.count(currAtomId));
[7bfc19]100 atom->setId(currAtomId++);
101 atom->setWorld(this);
102 atoms[atom->getId()] = atom;
103 return atom->getId();
104}
105
106void World::destroyAtom(atom* atom){
107 OBSERVE;
108 int id = atom->getId();
109 destroyAtom(id);
110}
111
[8d9d38]112void World::destroyAtom(atomId_t id) {
[7bfc19]113 OBSERVE;
114 atom *atom = atoms[id];
115 assert(atom);
116 DeleteAtom(atom);
117 atoms.erase(id);
118}
119
[5d4edf]120ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name,AtomDescriptor descr){
121 return new ManipulateAtomsProcess(op, descr,name,true);
122}
123
[bb89b9]124ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name){
125 return manipulateAtoms(op,name,AllAtoms());
126}
127
[9ef76a]128/********************* Internal Change methods for double Callback and Observer mechanism ********/
129
130void World::doManipulate(ManipulateAtomsProcess *proc){
131 proc->signOn(this);
132 {
133 OBSERVE;
134 proc->doManipulate(this);
135 }
136 proc->signOff(this);
137}
138
[a5471c]139/******************************* Iterators ********************************/
140
[a1a532]141/*
142 * Actual Implementation of the iterators can be found in WorldIterators.cpp
143 */
[a5471c]144
145World::AtomIterator World::getAtomIter(AtomDescriptor descr){
146 return AtomIterator(descr,this);
147}
[120f8b]148
[a1a532]149World::AtomSet::iterator World::atomEnd(){
[5d4edf]150 return atoms.end();
151}
152
[14d898]153World::MoleculeIterator World::getMoleculeIter(MoleculeDescriptor descr){
154 return MoleculeIterator(descr,this);
155}
156
157World::MoleculeSet::iterator World::moleculeEnd(){
158 return molecules.end();
159}
160
[2e8296]161/******************************* Singleton Stuff **************************/
162
[42918b]163// TODO: Hide boost-thread using Autotools stuff when no threads are used
[2e8296]164World* World::theWorld = 0;
[42918b]165boost::mutex World::worldLock;
166
[323177]167World::World() :
[120f8b]168 periode(new periodentafel),
[a1a532]169 atoms(),
[98a2987]170 currAtomId(0),
171 molecules(),
172 currMoleculeId(0),
173 molecules_deprecated(new MoleculeListClass(this))
[b53a7e]174{
175 molecules_deprecated->signOn(this);
176}
[2e8296]177
178World::~World()
[120f8b]179{
[a0fcfb]180 molecules_deprecated->signOff(this);
[7bfc19]181 delete molecules_deprecated;
[120f8b]182 delete periode;
[8d9d38]183 MoleculeSet::iterator molIter;
184 for(molIter=molecules.begin();molIter!=molecules.end();++molIter){
185 DeleteMolecule((*molIter).second);
186 }
187 molecules.clear();
188 AtomSet::iterator atIter;
189 for(atIter=atoms.begin();atIter!=atoms.end();++atIter){
190 DeleteAtom((*atIter).second);
[7bfc19]191 }
192 atoms.clear();
[120f8b]193}
[2e8296]194
195World* World::get(){
196 // boost supports RAII-Style locking, so we don't need to unlock
197 boost::mutex::scoped_lock guard(worldLock);
198 if(!theWorld) {
199 theWorld = new World();
200 }
201 return theWorld;
202}
203
204void World::destroy(){
205 // boost supports RAII-Style locking, so we don't need to unlock
206 boost::mutex::scoped_lock guard(worldLock);
207 delete theWorld;
208 theWorld = 0;
209}
210
211World* World::reset(){
212 World* oldWorld = 0;
213 {
214 // boost supports RAII-Style locking, so we don't need to unlock
215 boost::mutex::scoped_lock guard(worldLock);
216
217 oldWorld = theWorld;
218 theWorld = new World();
219 // oldworld does not need protection any more,
220 // since we should have the only reference
221
222 // worldLock handles access to the pointer,
223 // not to the object
224 } // scope-end releases the lock
225
226 // we have to let all the observers know that the
227 // oldWorld was destroyed. oldWorld calls subjectKilled
228 // upon destruction. Every Observer getting that signal
229 // should see that it gets the updated new world
230 delete oldWorld;
[98a2987]231 return theWorld;
[2e8296]232}
233
234/******************************* deprecated Legacy Stuff ***********************/
235
[120f8b]236MoleculeListClass *&World::getMolecules() {
237 return molecules_deprecated;
[2e8296]238}
Note: See TracBrowser for help on using the repository browser.