source: src/UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.cpp@ b2c2e4

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 b2c2e4 was 68418e, checked in by Frederik Heber <heber@…>, 9 years ago

ObservedValuesContainer now stores QtObserved.. instances directly.

  • we need this as QtObservedAtom and ..Molecule must signOn() to World's instance right away. If later requests to ObservedValuesContainer::get() cause new signOn()s, then these might fail.
  • we now work with QtObserved..::ptr directly everywhere.
  • Property mode set to 100644
File size: 14.4 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2015 Frederik Heber. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24 * QtObservedInstanceBoard.cpp
25 *
26 * Created on: Oct 17, 2015
27 * Author: heber
28 */
29
30
31// include config.h
32#ifdef HAVE_CONFIG_H
33#include <config.h>
34#endif
35
36#include "QtObservedInstanceBoard.hpp"
37
38#include "UIElements/Qt4/InstanceBoard/QtObservedAtom.hpp"
39#include "UIElements/Qt4/InstanceBoard/QtObservedMolecule.hpp"
40
41#include "CodePatterns/MemDebug.hpp"
42
43#include <boost/bind.hpp>
44
45#include "CodePatterns/Log.hpp"
46
47#include "Atom/atom.hpp"
48#include "Descriptors/AtomIdDescriptor.hpp"
49#include "Descriptors/MoleculeIdDescriptor.hpp"
50#include "molecule.hpp"
51#include "UIElements/Qt4/InstanceBoard/ObservedValuesContainer_impl.hpp"
52#include "World.hpp"
53
54QtObservedInstanceBoard::QtObservedInstanceBoard(QWidget * _parent) :
55 QWidget(_parent),
56 Observer("QtObservedInstanceBoard"),
57 WorldSignedOn(false),
58 atomObservedValues(
59 "atom",
60 *this,
61 boost::bind(&QtObservedInstanceBoard::atomcountsubjectKilled, this, _1)),
62 moleculeObservedValues(
63 "molecule",
64 *this,
65 boost::bind(&QtObservedInstanceBoard::moleculecountsubjectKilled, this, _1)),
66 atomSubjectKilled(
67 boost::bind(&ObservedValuesContainer<QtObservedAtom, atomId_t>::countsubjectKilled,
68 boost::ref(atomObservedValues),
69 _1)),
70 moleculeSubjectKilled(
71 boost::bind(&ObservedValuesContainer<QtObservedMolecule, moleculeId_t>::countsubjectKilled,
72 boost::ref(moleculeObservedValues),
73 _1)),
74 lastremovedatom((atomId_t)-1),
75 lastremovedatomsmolecule( std::make_pair((moleculeId_t)-1,(atomId_t)-1) ),
76 lastremovedmolecule((moleculeId_t)-1)
77{
78 // be first (besides ObservedValues to know about new insertions)
79 World::getInstance().signOn(this, World::AtomInserted, GlobalObservableInfo::PriorityLevel(int(-10)));
80 World::getInstance().signOn(this, World::AtomRemoved, GlobalObservableInfo::PriorityLevel(int(-10)));
81 World::getInstance().signOn(this, World::MoleculeInserted, GlobalObservableInfo::PriorityLevel(int(-10)));
82 World::getInstance().signOn(this, World::MoleculeRemoved, GlobalObservableInfo::PriorityLevel(int(-10)));
83 WorldSignedOn = true;
84}
85
86QtObservedInstanceBoard::~QtObservedInstanceBoard()
87{
88 if (WorldSignedOn) {
89 World::getInstance().signOff(this, World::AtomInserted);
90 World::getInstance().signOff(this, World::AtomRemoved);
91 World::getInstance().signOff(this, World::MoleculeInserted);
92 World::getInstance().signOff(this, World::MoleculeRemoved);
93 }
94 // sign off from all remaining molecules and atoms
95 for (SignedOn_t::iterator iter = AtomSignedOn.begin(); !AtomSignedOn.empty();
96 iter = AtomSignedOn.begin()) {
97 (*iter)->signOff(this, atom::IndexChanged);
98 AtomSignedOn.erase(iter);
99 }
100
101 for (SignedOn_t::iterator iter = MoleculeSignedOn.begin(); !MoleculeSignedOn.empty();
102 iter = MoleculeSignedOn.begin()) {
103 (*iter)->signOff(this, molecule::IndexChanged);
104 (*iter)->signOff(this, molecule::AtomInserted);
105 (*iter)->signOff(this, molecule::AtomRemoved);
106 MoleculeSignedOn.erase(*iter); //erase all instances
107 }
108}
109
110void QtObservedInstanceBoard::update(Observable *publisher)
111{
112 ASSERT(0,
113 "QtObservedInstanceBoard::update() - we are not signed on to general updates.");
114}
115
116void QtObservedInstanceBoard::subjectKilled(Observable *publisher)
117{
118 SignedOn_t::iterator iter = AtomSignedOn.find(publisher);
119 if ( iter != AtomSignedOn.end()) {
120 LOG(3, "DEBUG: InstanceBoard got subjectKilled() from atom " << publisher);
121 AtomSignedOn.erase(iter);
122 } else {
123 iter = MoleculeSignedOn.find(publisher);
124 if ( iter != MoleculeSignedOn.end()) {
125 LOG(3, "DEBUG: InstanceBoard got subjectKilled() from molecule " << publisher);
126 MoleculeSignedOn.erase(iter);
127 } else {
128 ASSERT(0,
129 "QtObservedInstanceBoard::subjectKilled() - could not find signedOn for atom/molecule "+toString(publisher));
130 }
131 }
132}
133
134void QtObservedInstanceBoard::recieveNotification(Observable *publisher, Notification_ptr notification)
135{
136 if (static_cast<World *>(publisher) == World::getPointer()) {
137 switch (notification->getChannelNo()) {
138 case World::MoleculeInserted:
139 {
140 const moleculeId_t _id = const_cast<const World &>(World::getInstance()).lastChangedMolId();
141 #ifdef LOG_OBSERVER
142 observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that molecule "+toString(_id)+" has been inserted.";
143 #endif
144 LOG(3, "DEBUG: InformationBoard got moleculeInserted signal for molecule " << _id);
145 const molecule * const _molecule = const_cast<const World &>(World::getInstance()).
146 getMolecule(MoleculeById(_id));
147 if (_molecule != NULL) {
148 ObservedValues_t ObservedValues(QtObservedMolecule::MAX_ObservedTypes);
149 LOG(3, "DEBUG: InformationBoard initializes ObservedValues for molecule " << _id);
150 QtObservedMolecule::initObservedValues(
151 ObservedValues,
152 _id,
153 _molecule,
154 moleculeSubjectKilled);
155 QtObservedMolecule::ptr observedmolecule(new QtObservedMolecule(ObservedValues, *this));
156#ifndef NDEBUG
157 bool status =
158#endif
159 moleculeObservedValues.insert(_id, observedmolecule);
160 ASSERT( status,
161 "QtObservedInstanceBoard::recieveNotification() - could not insert ObservedMolecule for"
162 +toString(_id)+".");
163 // we need to check for index changes
164 LOG(3, "DEBUG: InformationBoard signOn()s to molecule " << _id);
165 _molecule->signOn(this, molecule::IndexChanged);
166 MoleculeSignedOn.insert( static_cast<Observable *>(const_cast<molecule *>(_molecule)) );
167 _molecule->signOn(this, molecule::AtomInserted);
168 MoleculeSignedOn.insert( static_cast<Observable *>(const_cast<molecule *>(_molecule)) );
169 _molecule->signOn(this, molecule::AtomRemoved);
170 MoleculeSignedOn.insert( static_cast<Observable *>(const_cast<molecule *>(_molecule)) );
171
172 emit moleculeInserted(_id);
173 } else {
174 ELOG(1, "QtObservedInstanceBoard got MoleculeInserted for unknown molecule id " << _id);
175 }
176 break;
177 }
178 case World::MoleculeRemoved:
179 {
180 const moleculeId_t _id = const_cast<const World &>(World::getInstance()).lastChangedMolId();
181 LOG(3, "DEBUG: InformationBoard got MoleculeRemoved signal for molecule " << _id);
182 // note down such that ObservedValues are simply dropped
183 lastremovedmolecule = _id;
184 break;
185 }
186 case World::AtomInserted:
187 {
188 const atomId_t _id = const_cast<const World &>(World::getInstance()).lastChangedAtomId();
189 #ifdef LOG_OBSERVER
190 observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+" has been inserted.";
191 #endif
192 LOG(3, "DEBUG: InformationBoard got atomInserted signal for atom " << _id);
193 const atom * const _atom = const_cast<const World &>(World::getInstance()).
194 getAtom(AtomById(_id));
195 if (_atom!= NULL) {
196 ObservedValues_t ObservedValues(QtObservedAtom::MAX_ObservedTypes);
197 LOG(3, "DEBUG: InformationBoard initializes ObservedValues for atom " << _id);
198 QtObservedAtom::initObservedValues(
199 ObservedValues,
200 _id,
201 _atom,
202 atomSubjectKilled);
203 QtObservedAtom::ptr observedatom(new QtObservedAtom(ObservedValues, *this));
204#ifndef NDEBUG
205 bool status =
206#endif
207 atomObservedValues.insert(_id, observedatom);
208 ASSERT( status,
209 "QtObservedInstanceBoard::recieveNotification() - could not insert ObservedValues for"
210 +toString(_id)+".");
211 // we need to check for index changes
212 LOG(3, "DEBUG: InformationBoard signOn()s to atom " << _id);
213 _atom->signOn(this, atom::IndexChanged);
214 AtomSignedOn.insert( static_cast<Observable *>(const_cast<atom *>(_atom)) );
215 } else {
216 ELOG(1, "QtObservedInstanceBoard got AtomInserted for unknown atom id " << _id);
217 }
218 break;
219 }
220 case World::AtomRemoved:
221 {
222 const atomId_t _id = const_cast<const World &>(World::getInstance()).lastChangedAtomId();
223 LOG(3, "DEBUG: InformationBoard got AtomRemoved signal for atom " << _id);
224 // note down such that ObservedValues are simply dropped
225 lastremovedatom = _id;
226 break;
227 }
228 default:
229 ASSERT(0, "QtObservedInstanceBoard::recieveNotification() - we cannot get here for World.");
230 break;
231 }
232 } else if (dynamic_cast<molecule *>(publisher) != NULL) {
233 const moleculeId_t molid = const_cast<const World &>(World::getInstance()).lastChangedMolId();
234 switch (notification->getChannelNo()) {
235 case molecule::AtomInserted:
236 {
237 const molecule * const _molecule = const_cast<const World &>(World::getInstance()).
238 getMolecule(MoleculeById(molid));
239 if (_molecule != NULL) {
240 const atomId_t atomid = const_cast<const molecule *>(_molecule)->lastChangedAtomId();
241 LOG(3, "DEBUG: InformationBoard got AtomInserted signal for atom "
242 << atomid << " from molecule " << molid);
243 // check whether atom's observedvalues are present
244 ASSERT( atomObservedValues.isPresent(atomid),
245 "QtObservedInstanceBoard::recieveNotification() - ObservedValues for atom "
246 +toString(atomid)+" are not present yet.");
247 // and emit
248 emit atomInserted(molid, atomid);
249 } else {
250 ELOG(2, "QtObservedInstanceBoard::recieveNotification() - molecule "
251 << molid << " has disappeared.");
252 }
253 break;
254 }
255 case molecule::AtomRemoved:
256 {
257 const molecule * const _molecule = const_cast<const World &>(World::getInstance()).
258 getMolecule(MoleculeById(molid));
259 if (_molecule != NULL) {
260 const atomId_t atomid = const_cast<const molecule *>(_molecule)->lastChangedAtomId();
261 LOG(3, "DEBUG: InformationBoard got AtomRemoved signal for atom "
262 << atomid << " from molecule " << molid);
263 lastremovedatomsmolecule = std::make_pair(molid, atomid);
264 }
265 break;
266 }
267 case molecule::IndexChanged:
268 {
269 // molecule has changed its index
270 const moleculeId_t newmoleculeId = dynamic_cast<molecule *>(publisher)->getId();
271 LOG(3, "DEBUG: InformationBoard got IndexChanged from molecule " << molid << " to " << newmoleculeId);
272#ifndef NDEBUG
273 bool status =
274#endif
275 moleculeObservedValues.changeIdentifier(molid, newmoleculeId);
276 ASSERT( status,
277 "QtObservedInstanceBoard::recieveNotification() - cannot change molecule's id "
278 +toString(molid)+" "+toString(newmoleculeId)+" in moleculeObservedValues.");
279 // no need update SignedOn, ref does not change
280 emit moleculeIndexChanged(molid, newmoleculeId);
281 break;
282 }
283 default:
284 ASSERT(0, "QtObservedInstanceBoard::recieveNotification() - we cannot get here.");
285 break;
286 }
287 } else if (dynamic_cast<atom *>(publisher) != NULL) {
288 const atomId_t oldatomId = const_cast<const World &>(World::getInstance()).lastChangedAtomId();
289 switch (notification->getChannelNo()) {
290 case AtomObservable::IndexChanged:
291 {
292 const atomId_t newatomId = dynamic_cast<atom *>(publisher)->getId();
293 LOG(3, "DEBUG: InformationBoard got IndexChanged from atom " << oldatomId << " to " << newatomId);
294 atomObservedValues.changeIdentifier(oldatomId, newatomId);
295 // no need update SignedOn, ref does not change
296 emit atomIndexChanged(oldatomId, newatomId);
297 break;
298 }
299 default:
300 ASSERT(0, "QtObservedInstanceBoard::recieveNotification() - we cannot get here.");
301 break;
302 }
303 } else {
304 ASSERT(0, "QtObservedInstanceBoard::recieveNotification() - notification from unknown source.");
305 }
306}
307
308void QtObservedInstanceBoard::atomcountsubjectKilled(const atomId_t _atomid)
309{
310 if ((_atomid == lastremovedatomsmolecule.second) && (_atomid == lastremovedatom)) {
311 LOG(3, "DEBUG: InstanceBoard emits atomRemoved for " << _atomid);
312 emit atomRemoved(lastremovedatomsmolecule.first, lastremovedatomsmolecule.second);
313 } else
314 ELOG(2, "QtObservedInstanceBoard::atomcountsubjectKilled() - id " << _atomid
315 << " not fitting with " << lastremovedatomsmolecule << " or " << lastremovedatom);
316}
317
318void QtObservedInstanceBoard::moleculecountsubjectKilled(const moleculeId_t _molid)
319{
320 if (lastremovedmolecule == _molid) {
321 LOG(3, "DEBUG: InstanceBoard emits moleculeRemoved for " << _molid);
322 emit moleculeRemoved(_molid);
323 } else
324 ELOG(2, "QtObservedInstanceBoard::moleculecountsubjectKilled() - id " << _molid
325 << " not fitting with " << lastremovedmolecule);
326}
327
328QtObservedAtom::ptr QtObservedInstanceBoard::getObservedAtom(const atomId_t _id)
329{
330 return atomObservedValues.get(_id);
331}
332
333QtObservedMolecule::ptr QtObservedInstanceBoard::getObservedMolecule(const moleculeId_t _id)
334{
335 return moleculeObservedValues.get(_id);
336}
337
338void QtObservedInstanceBoard::markObservedAtomAsConnected(const atomId_t _id)
339{
340 atomObservedValues.markObservedValuesAsConnected(_id);
341}
342
343void QtObservedInstanceBoard::markObservedAtomAsDisconnected(const atomId_t _id)
344{
345 atomObservedValues.markObservedValuesAsDisconnected(_id);
346}
347
348void QtObservedInstanceBoard::markObservedMoleculeAsConnected(const moleculeId_t _id)
349{
350 moleculeObservedValues.markObservedValuesAsConnected(_id);
351}
352
353void QtObservedInstanceBoard::markObservedMoleculeAsDisconnected(const moleculeId_t _id)
354{
355 moleculeObservedValues.markObservedValuesAsDisconnected(_id);
356}
Note: See TracBrowser for help on using the repository browser.