source: src/UIElements/Qt4/InstanceBoard/QtObservedAtom.cpp@ deb5ee

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 deb5ee 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: 10.1 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 * QtObservedAtom.cpp
25 *
26 * Created on: Oct 28, 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 "QtObservedAtom.hpp"
37
38#include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
39
40#include "CodePatterns/MemDebug.hpp"
41
42#include <boost/assign.hpp>
43
44#include "Atom/atom.hpp"
45#include "Bond/bond.hpp"
46#include "Descriptors/AtomIdDescriptor.hpp"
47#include "Element/element.hpp"
48#include "World.hpp"
49
50#include "UIElements/Qt4/InstanceBoard/ObservedValue_wCallback.hpp"
51
52using namespace boost::assign;
53
54static const Observable::channels_t getAtomBondsChannels()
55{
56 Observable::channels_t channels;
57 channels += AtomObservable::BondsAdded, AtomObservable::BondsRemoved;
58 return channels;
59}
60
61static const Observable::channels_t getAllObservedChannels()
62{
63 Observable::channels_t channels;
64 channels +=
65 AtomObservable::IndexChanged,
66 AtomObservable::PositionChanged,
67 AtomObservable::ElementChanged,
68 AtomObservable::BondsAdded,
69 AtomObservable::BondsRemoved;
70 return channels;
71}
72
73// static entities
74const Observable::channels_t
75QtObservedAtom::AtomIndexChannels(1, AtomObservable::IndexChanged);
76const Observable::channels_t
77QtObservedAtom::AtomPositionChannels(1, AtomObservable::PositionChanged);
78const Observable::channels_t
79QtObservedAtom::AtomElementChannels(1, AtomObservable::ElementChanged);
80const Observable::channels_t
81QtObservedAtom::AtomBondsChannels(getAtomBondsChannels());
82
83QtObservedAtom::QtObservedAtom(
84 const ObservedValues_t &_ObservedValues,
85 QtObservedInstanceBoard &_board,
86 QWidget * _parent) :
87 QWidget(_parent),
88 Observer("QtObservedAtom"),
89 subjectKilledCount(0),
90 AllsignedOnChannels(getAllObservedChannels().size()),
91 signedOffChannels(0),
92 owner(NULL),
93 board(_board),
94 ObservedValues(_ObservedValues)
95{
96 // activating Observer is done by ObservedValueContainer when it's prepared
97}
98
99QtObservedAtom::~QtObservedAtom()
100{
101 deactivateObserver();
102}
103
104const atom * const QtObservedAtom::getAtomConst(const atomId_t _id)
105{
106 const atom * const _atom = const_cast<const World &>(World::getInstance()).
107 getAtom(AtomById(_id));
108 return _atom;
109}
110
111atom * const QtObservedAtom::getAtom(const atomId_t _id)
112{
113 atom * const _atom = World::getInstance().getAtom(AtomById(_id));
114 return _atom;
115}
116
117atomId_t QtObservedAtom::updateIndex()
118{
119 return const_cast<const World &>(World::getInstance()).lastChangedAtomId();
120}
121
122Vector QtObservedAtom::updatePosition(
123 const boost::function<const atomId_t ()> &_getAtomIndex)
124{
125 const atom * const _atom = getAtomConst(_getAtomIndex());
126 if (_atom != NULL) {
127 return _atom->getPosition();
128 } else {
129 return zeroVec;
130 }
131}
132
133atomicNumber_t QtObservedAtom::updateElement(
134 const boost::function<const atomId_t ()> &_getAtomIndex)
135{
136 const atom * const _atom = getAtomConst(_getAtomIndex());
137 if (_atom != NULL) {
138 return _atom->getElementNo();
139 } else {
140 return (atomicNumber_t)-1;
141 }
142}
143
144QtObservedAtom::ListOfBonds_t QtObservedAtom::updateBonds(
145 const boost::function<const atomId_t ()> &_getAtomIndex)
146{
147 ListOfBonds_t ListOfBonds;
148 const atom * const _atom = getAtomConst(_getAtomIndex());
149 if (_atom != NULL) {
150 // make sure bonds is up-to-date
151 const BondList ListBonds = _atom->getListOfBonds();
152 for (BondList::const_iterator iter = ListBonds.begin();
153 iter != ListBonds.end();
154 ++iter)
155 ListOfBonds.insert( ListOfBonds.end(), std::make_pair(
156 (*iter)->leftatom->getId(),
157 (*iter)->rightatom->getId()) );
158 }
159 return ListOfBonds;
160}
161
162void QtObservedAtom::update(Observable *publisher)
163{
164 ASSERT(0, "QtObservedAtom::update() - we are not signed on for global updates.");
165}
166
167void QtObservedAtom::subjectKilled(Observable *publisher)
168{
169 ++signedOffChannels;
170
171 if (signedOffChannels == AllsignedOnChannels) {
172 // remove owner: no more signOff needed
173 owner = NULL;
174
175 board.markObservedAtomAsDisconnected(getAtomIndex());
176 }
177}
178
179void QtObservedAtom::recieveNotification(Observable *publisher, Notification_ptr notification)
180{
181 // ObservedValues have been updated before, hence convert updates to Qt's signals
182 switch (notification->getChannelNo()) {
183 case AtomObservable::IndexChanged:
184 emit indexChanged();
185 break;
186 case AtomObservable::PositionChanged:
187 emit positionChanged();
188 break;
189 case AtomObservable::ElementChanged:
190 emit elementChanged();
191 break;
192 case AtomObservable::BondsAdded:
193 case AtomObservable::BondsRemoved:
194 emit bondsChanged();
195 break;
196 default:
197 ASSERT(0, "QtObservedAtom::recieveNotification() - we are not signed on to channel "
198 +toString(notification->getChannelNo())+" of the atom.");
199 break;
200 }
201}
202
203void QtObservedAtom::activateObserver()
204{
205 atom * atomref = getAtom(getAtomIndex());
206 if (atomref != NULL) {
207 Observable::channels_t channels = getAllObservedChannels();
208 owner = static_cast<const Observable *>(atomref);
209 for (Observable::channels_t::const_iterator iter = channels.begin();
210 iter != channels.end(); ++iter)
211 owner->signOn(this, *iter);
212 } else
213 signedOffChannels = getAllObservedChannels().size();
214}
215
216void QtObservedAtom::deactivateObserver()
217{
218 // sign Off
219 if (owner != NULL) {
220 Observable::channels_t channels = getAllObservedChannels();
221 for (Observable::channels_t::const_iterator iter = channels.begin();
222 iter != channels.end(); ++iter)
223 owner->signOff(this, *iter);
224 owner = NULL;
225 signedOffChannels = AllsignedOnChannels;
226 board.markObservedAtomAsDisconnected(getAtomIndex());
227 }
228}
229
230void QtObservedAtom::initObservedValues(
231 ObservedValues_t &_ObservedValues,
232 const atomId_t _id,
233 const atom * const _atomref,
234 const boost::function<void(const atomId_t)> &_subjectKilled)
235{
236 /* This is an old note from when the code was still part of cstor's initializer body.
237 * TODO: Probably does not apply anymore but has not yet been tested.
238 *
239 * We must not use boost::cref(this) as "this" has not been properly constructed and seemingly
240 * boost::cref tries to do some magic to grasp the inheritance hierarchy which fails because
241 * the class has not been fully constructed yet. "This" itself seems to be working fine.
242 */
243
244 ASSERT( _ObservedValues.size() == MAX_ObservedTypes,
245 "QtObservedAtom::initObservedValues() - given ObservedValues has not correct size.");
246
247 // fill ObservedValues: index first
248 const boost::function<atomId_t ()> AtomIndexUpdater(
249 boost::bind(&QtObservedAtom::updateIndex));
250
251 ObservedValue_wCallback<atomId_t> * const IndexObservable =
252 new ObservedValue_wCallback<atomId_t>(
253 _atomref,
254 boost::bind(&QtObservedAtom::updateIndex),
255 "AtomIndex_"+toString(_id),
256 _id,
257 AtomIndexChannels,
258 _subjectKilled);
259 _ObservedValues[AtomIndex] = IndexObservable;
260
261 const boost::function<const atomId_t ()> AtomIndexGetter =
262 boost::bind(&ObservedValue_wCallback<atomId_t>::get,
263 IndexObservable);
264
265 // fill ObservedValues: then all the other that need index
266 const boost::function<Vector ()> AtomPositionUpdater(
267 boost::bind(&QtObservedAtom::updatePosition, AtomIndexGetter));
268 const boost::function<atomicNumber_t ()> AtomElementUpdater(
269 boost::bind(&QtObservedAtom::updateElement, AtomIndexGetter));
270 const boost::function<ListOfBonds_t ()> AtomBondsUpdater(
271 boost::bind(&QtObservedAtom::updateBonds, AtomIndexGetter));
272
273 _ObservedValues[AtomPosition] = new ObservedValue_wCallback<Vector, atomId_t>(
274 _atomref,
275 AtomPositionUpdater,
276 "AtomPosition_"+toString(_id),
277 AtomPositionUpdater(),
278 AtomPositionChannels,
279 _subjectKilled,
280 AtomIndexGetter);
281 _ObservedValues[AtomElement] = new ObservedValue_wCallback<atomicNumber_t, atomId_t>(
282 _atomref,
283 AtomElementUpdater,
284 "AtomElement"+toString(_id),
285 AtomElementUpdater(),
286 AtomElementChannels,
287 _subjectKilled,
288 AtomIndexGetter);
289 _ObservedValues[AtomBonds] = new ObservedValue_wCallback<ListOfBonds_t, atomId_t>(
290 _atomref,
291 AtomBondsUpdater,
292 "AtomBonds_"+toString(_id),
293 AtomBondsUpdater(),
294 AtomBondsChannels,
295 _subjectKilled,
296 AtomIndexGetter);
297}
298
299void QtObservedAtom::destroyObservedValues(
300 std::vector<boost::any> &_ObservedValues)
301{
302 delete boost::any_cast<ObservedValue_wCallback<atomId_t> *>(_ObservedValues[AtomIndex]);
303 delete boost::any_cast<ObservedValue_wCallback<Vector, atomId_t> *>(_ObservedValues[AtomPosition]);
304 delete boost::any_cast<ObservedValue_wCallback<atomicNumber_t, atomId_t> *>(_ObservedValues[AtomElement]);
305 delete boost::any_cast<ObservedValue_wCallback<ListOfBonds_t, atomId_t> *>(_ObservedValues[AtomBonds]);
306 _ObservedValues.clear();
307}
308
309atomId_t QtObservedAtom::getAtomIndex() const
310{
311 return boost::any_cast<ObservedValue_wCallback<atomId_t> *>(ObservedValues[AtomIndex])->get();
312}
313
314Vector QtObservedAtom::getAtomPosition() const
315{
316 return boost::any_cast<ObservedValue_wCallback<Vector, atomId_t> *>(ObservedValues[AtomPosition])->get();
317}
318
319atomicNumber_t QtObservedAtom::getAtomElement() const
320{
321 return boost::any_cast<ObservedValue_wCallback<atomicNumber_t, atomId_t> *>(ObservedValues[AtomElement])->get();
322}
323
324QtObservedAtom::ListOfBonds_t QtObservedAtom::getAtomBonds() const
325{
326 return boost::any_cast<ObservedValue_wCallback<ListOfBonds_t, atomId_t> *>(ObservedValues[AtomBonds])->get();
327}
Note: See TracBrowser for help on using the repository browser.