[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 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/>.
|
---|
[bcf653] | 21 | */
|
---|
| 22 |
|
---|
[b47bfc] | 23 | /*
|
---|
[0eb7bf3] | 24 | * QtMoleculeList.cpp
|
---|
[b47bfc] | 25 | *
|
---|
| 26 | * Created on: Jan 21, 2010
|
---|
| 27 | * Author: crueger
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[bf3817] | 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
[bbbad5] | 34 |
|
---|
[f62e60] | 35 | #include "QtMoleculeList.hpp"
|
---|
[b47bfc] | 36 |
|
---|
[53c1ff] | 37 | #include <QModelIndex>
|
---|
[2696b1] | 38 | #include <QDebug>
|
---|
[41815a3] | 39 |
|
---|
[53c1ff] | 40 | #include "UIElements/Views/Qt4/MoleculeList/QtMoleculeItem.hpp"
|
---|
| 41 | #include "UIElements/Views/Qt4/MoleculeList/QtMoleculeItemFactory.hpp"
|
---|
[ca1535] | 42 | #include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
|
---|
[53c1ff] | 43 |
|
---|
| 44 | #include <boost/bind.hpp>
|
---|
[fcdf05] | 45 | #include <boost/thread/locks.hpp>
|
---|
[b47bfc] | 46 | #include <iostream>
|
---|
| 47 |
|
---|
[ad011c] | 48 | #include "CodePatterns/MemDebug.hpp"
|
---|
[bbbad5] | 49 |
|
---|
[53c1ff] | 50 | #include "CodePatterns/Log.hpp"
|
---|
[6770fa] | 51 | #include "CodePatterns/Observer/Notification.hpp"
|
---|
| 52 |
|
---|
[6f0841] | 53 | #include "Atom/atom.hpp"
|
---|
[07b800] | 54 | #include "Actions/MoleculeAction/ChangeNameAction.hpp"
|
---|
| 55 | #include "Actions/SelectionAction/Molecules/PopMoleculesAction.hpp"
|
---|
| 56 | #include "Actions/SelectionAction/Molecules/PushMoleculesAction.hpp"
|
---|
| 57 | #include "Actions/SelectionAction/Molecules/MoleculeByIdAction.hpp"
|
---|
| 58 | #include "Actions/ActionQueue.hpp"
|
---|
| 59 | #include "Actions/ActionSequence.hpp"
|
---|
| 60 | #include "Actions/ActionTrait.hpp"
|
---|
| 61 | #include "Actions/MakroAction.hpp"
|
---|
[d2dbb5d] | 62 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
[26cf17] | 63 | #include "Formula.hpp"
|
---|
[b47bfc] | 64 | #include "molecule.hpp"
|
---|
| 65 |
|
---|
| 66 | using namespace std;
|
---|
| 67 |
|
---|
[53c1ff] | 68 | const unsigned int QtMoleculeList::update_times_per_second = 20;
|
---|
[b47bfc] | 69 |
|
---|
[ca1535] | 70 | QtMoleculeList::QtMoleculeList(
|
---|
[b2c2e4] | 71 | QtObservedInstanceBoard *_board,
|
---|
| 72 | QObject *_parent) :
|
---|
| 73 | QStandardItemModel(_parent),
|
---|
[53c1ff] | 74 | update_timer(NULL),
|
---|
[ca1535] | 75 | board(_board),
|
---|
| 76 | callback_DirtyItems(boost::bind(&QtMoleculeList::informDirtyState, this, _1, _2, _3))
|
---|
[b47bfc] | 77 | {
|
---|
[53c1ff] | 78 | setColumnCount(QtMoleculeItemFactory::COLUMNCOUNT);
|
---|
[b47bfc] | 79 |
|
---|
[ca1535] | 80 | resetUpdateTimer();
|
---|
[b47bfc] | 81 |
|
---|
[07b800] | 82 | connect(this,SIGNAL(itemChanged(QStandardItem*)),this,SLOT(moleculeNameChanged(QStandardItem*)));
|
---|
[ca1535] | 83 | connect(this, SIGNAL(itemChanged(QStandardItem*)), this, SLOT(checkForVisibilityChange(QStandardItem*)));
|
---|
| 84 | connect(board, SIGNAL(moleculeInserted(const moleculeId_t)), this, SLOT(moleculeInserted(const moleculeId_t)));
|
---|
| 85 | connect(board, SIGNAL(moleculeRemoved(const moleculeId_t)), this, SLOT(moleculeRemoved(const moleculeId_t)));
|
---|
| 86 | connect(board, SIGNAL(moleculeIndexChanged(const moleculeId_t,const moleculeId_t)),
|
---|
| 87 | this, SLOT(moleculeIndexChanged(const moleculeId_t, const moleculeId_t)));
|
---|
[b47bfc] | 88 | }
|
---|
| 89 |
|
---|
[0eb7bf3] | 90 | QtMoleculeList::~QtMoleculeList()
|
---|
[ca1535] | 91 | {}
|
---|
[b47bfc] | 92 |
|
---|
[1c3390] | 93 | QVariant QtMoleculeList::headerData(int section, Qt::Orientation orientation, int role) const
|
---|
| 94 | {
|
---|
| 95 | if (role == Qt::DisplayRole) {
|
---|
| 96 | if (orientation == Qt::Horizontal) {
|
---|
[fcdf05] | 97 | if (section < QtMoleculeItem::COLUMNTYPES_MAX)
|
---|
[53c1ff] | 98 | return QString(QtMoleculeItemFactory::COLUMNNAMES[section]);
|
---|
[1c3390] | 99 | }
|
---|
| 100 | }
|
---|
| 101 | return QVariant();
|
---|
| 102 | }
|
---|
| 103 |
|
---|
[ca1535] | 104 | void QtMoleculeList::moleculeInserted(const moleculeId_t _id)
|
---|
| 105 | {
|
---|
| 106 | // get ObservedMolecule from board
|
---|
| 107 | boost::recursive_mutex::scoped_lock lock(listAccessing_mutex);
|
---|
[aa41a3] | 108 | newMolecules.push_back( _id );
|
---|
[ca1535] | 109 | }
|
---|
| 110 |
|
---|
| 111 | void QtMoleculeList::moleculeRemoved(const moleculeId_t _id)
|
---|
| 112 | {
|
---|
| 113 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 114 | KilledItemsPerMolecule_t::iterator iter = KilledItemsPerMolecule.find(_id);
|
---|
| 115 | if (iter == KilledItemsPerMolecule.end())
|
---|
| 116 | KilledItemsPerMolecule.insert( std::make_pair(_id, 1));
|
---|
| 117 | else
|
---|
| 118 | ++(iter->second);
|
---|
| 119 | if (iter->second == QtMoleculeItem::COLUMNTYPES_MAX) {
|
---|
| 120 | boost::recursive_mutex::scoped_lock lock(listAccessing_mutex);
|
---|
| 121 | removedMolecules.push_back( _id );
|
---|
| 122 | }
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | template<class T>
|
---|
| 126 | void exchangeKeys(
|
---|
| 127 | T &_container,
|
---|
| 128 | const moleculeId_t _oldid,
|
---|
| 129 | const moleculeId_t _newid)
|
---|
| 130 | {
|
---|
| 131 | typename T::iterator iter = _container.find(_oldid);
|
---|
| 132 | ASSERT(_container.find(_newid) == _container.end(),
|
---|
| 133 | "exchangeKeys() - new id "+toString(_newid)
|
---|
| 134 | +" already exists in container.");
|
---|
| 135 | _container.insert( std::make_pair(_newid, iter->second) );
|
---|
| 136 | _container.erase(iter);
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | template<class T>
|
---|
| 140 | void exchangeKeysInSet(
|
---|
| 141 | T &_container,
|
---|
| 142 | const moleculeId_t _oldid,
|
---|
| 143 | const moleculeId_t _newid)
|
---|
| 144 | {
|
---|
| 145 | typename T::iterator iter = _container.find(_oldid);
|
---|
| 146 | ASSERT(_container.find(_newid) == _container.end(),
|
---|
| 147 | "exchangeKeys() - new id "+toString(_newid)
|
---|
| 148 | +" already exists in container.");
|
---|
| 149 | _container.insert( _newid );
|
---|
| 150 | _container.erase(iter);
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 | template<class T>
|
---|
| 154 | void exchangeKeysOverAllColumns(
|
---|
| 155 | T &_container,
|
---|
| 156 | const moleculeId_t _oldid,
|
---|
| 157 | const moleculeId_t _newid)
|
---|
| 158 | {
|
---|
| 159 | for (int i=0;i<QtMoleculeItem::COLUMNTYPES_MAX;++i) {
|
---|
| 160 | typename T::iterator iter =
|
---|
| 161 | _container.find( std::make_pair(_oldid, (enum QtMoleculeItem::COLUMNTYPES)i) );
|
---|
| 162 | if (iter == _container.end())
|
---|
| 163 | continue;
|
---|
| 164 | ASSERT(_container.find( std::make_pair(_newid,(enum QtMoleculeItem::COLUMNTYPES)i) ) == _container.end(),
|
---|
| 165 | "exchangeKeys() - new id "+toString(_newid)
|
---|
| 166 | +" already exists in container.");
|
---|
| 167 | _container.insert( std::make_pair(_newid, (enum QtMoleculeItem::COLUMNTYPES)i) );
|
---|
| 168 | _container.erase(iter);
|
---|
| 169 | }
|
---|
| 170 | }
|
---|
| 171 |
|
---|
| 172 | void QtMoleculeList::moleculeIndexChanged(
|
---|
| 173 | const moleculeId_t _oldid,
|
---|
| 174 | const moleculeId_t _newid)
|
---|
| 175 | {
|
---|
| 176 | // go through all list and change keys
|
---|
| 177 | exchangeKeys(MoleculeFormulaMap, _oldid, _newid);
|
---|
| 178 | {
|
---|
| 179 | MoleculeItemBiMap_t::left_iterator iter = MoleculeItemBiMap.left.find(_oldid);
|
---|
| 180 | ASSERT(MoleculeItemBiMap.left.count(_newid),
|
---|
| 181 | "QtMoleculeList::moleculeIndexChanged() - new id "+toString(_newid)
|
---|
| 182 | +" already exists in MoleculeItemBiMap.");
|
---|
| 183 | MoleculeItemBiMap.left.insert( std::make_pair(_newid, iter->second) );
|
---|
| 184 | MoleculeItemBiMap.left.erase(iter);
|
---|
| 185 | }
|
---|
| 186 | exchangeKeys(KilledItemsPerMolecule, _oldid, _newid);
|
---|
| 187 | exchangeKeysOverAllColumns(dirtyMolItems, _oldid, _newid);
|
---|
| 188 | exchangeKeysInSet(visibilityMolItems, _oldid, _newid);
|
---|
| 189 | {
|
---|
| 190 | std::vector<moleculeId_t>::iterator iter =
|
---|
| 191 | std::find(removedMolecules.begin(), removedMolecules.end(), _oldid);
|
---|
| 192 | removedMolecules.erase(iter);
|
---|
| 193 | removedMolecules.push_back(_newid);
|
---|
| 194 | }
|
---|
| 195 | exchangeKeysInSet(toBeMovedItems, _oldid, _newid);
|
---|
[3eb91c] | 196 | }
|
---|
| 197 |
|
---|
[fcdf05] | 198 | bool QtMoleculeList::isMoleculeItemPresent(const moleculeId_t _molid) const
|
---|
| 199 | {
|
---|
| 200 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 201 | MoleculeItemBiMap_t::left_const_iterator iter =
|
---|
| 202 | MoleculeItemBiMap.left.find(_molid);
|
---|
| 203 | return ( iter != MoleculeItemBiMap.left.end());
|
---|
| 204 | }
|
---|
| 205 |
|
---|
[69b434] | 206 | QtMoleculeItem * QtMoleculeList::MoleculeIdToItem(const moleculeId_t _molid) const
|
---|
[8ccf3b] | 207 | {
|
---|
[fcdf05] | 208 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
[8ccf3b] | 209 | MoleculeItemBiMap_t::left_const_iterator iter =
|
---|
[69b434] | 210 | MoleculeItemBiMap.left.find(_molid);
|
---|
[fcdf05] | 211 | ASSERT( iter != MoleculeItemBiMap.left.end(),
|
---|
| 212 | "QtMoleculeList::MoleculeIdToItem() - could not find item to id "
|
---|
| 213 | +toString(_molid));
|
---|
| 214 | return iter->second;
|
---|
[8ccf3b] | 215 | }
|
---|
| 216 |
|
---|
[69b434] | 217 | const moleculeId_t QtMoleculeList::ItemToMoleculeId(const QtMoleculeItem * const _item) const
|
---|
[53c1ff] | 218 | {
|
---|
[fcdf05] | 219 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
[53c1ff] | 220 | const MoleculeItemBiMap_t::right_const_iterator iter =
|
---|
| 221 | MoleculeItemBiMap.right.find(const_cast<QtMoleculeItem * const>(_item));
|
---|
[d2dbb5d] | 222 | if (iter != MoleculeItemBiMap.right.end())
|
---|
| 223 | return iter->second;
|
---|
| 224 | else
|
---|
[69b434] | 225 | return -1;
|
---|
[53c1ff] | 226 | }
|
---|
| 227 |
|
---|
[fcdf05] | 228 | QtMoleculeItem * QtMoleculeList::getSpecificMoleculeItem(
|
---|
| 229 | const QtMoleculeItem * const _item,
|
---|
| 230 | const enum QtMoleculeItem::COLUMNTYPES _type) const
|
---|
| 231 | {
|
---|
| 232 | QStandardItem *parent_item = _item->parent();
|
---|
| 233 | ASSERT( parent_item != NULL,
|
---|
| 234 | "QtMoleculeList::getSpecificMoleculeItem() - parent of molecule item is NULL");
|
---|
| 235 | return static_cast<QtMoleculeItem *>(parent_item->child(_item->index().row(), _type));
|
---|
| 236 | }
|
---|
| 237 |
|
---|
| 238 | bool QtMoleculeList::isGroupItemPresent(const std::string &_formula) const
|
---|
| 239 | {
|
---|
| 240 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 241 | FormulaTreeItemBiMap_t::left_const_iterator iter =
|
---|
| 242 | FormulaItemBiMap.left.find(_formula);
|
---|
| 243 | return ( iter != FormulaItemBiMap.left.end());
|
---|
| 244 | }
|
---|
| 245 |
|
---|
| 246 | QStandardItem * QtMoleculeList::FormulaToGroupItem(const std::string &_formula) const
|
---|
| 247 | {
|
---|
| 248 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 249 | FormulaTreeItemBiMap_t::left_const_iterator iter =
|
---|
| 250 | FormulaItemBiMap.left.find(_formula);
|
---|
| 251 | ASSERT( iter != FormulaItemBiMap.left.end(),
|
---|
| 252 | "QtMoleculeList::FormulaToGroupItem() - could not find item to formula "
|
---|
| 253 | +toString(_formula));
|
---|
| 254 | return iter->second;
|
---|
| 255 | }
|
---|
| 256 |
|
---|
| 257 | const std::string& QtMoleculeList::GroupItemToFormula(const QStandardItem * const _item) const
|
---|
| 258 | {
|
---|
| 259 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 260 | static std::string emptystring;
|
---|
| 261 | const FormulaTreeItemBiMap_t::right_const_iterator iter =
|
---|
| 262 | FormulaItemBiMap.right.find(const_cast<QStandardItem * const>(_item));
|
---|
| 263 | if (iter != FormulaItemBiMap.right.end())
|
---|
| 264 | return iter->second;
|
---|
| 265 | else
|
---|
| 266 | return emptystring;
|
---|
| 267 | }
|
---|
| 268 |
|
---|
| 269 | QStandardItem * QtMoleculeList::getSpecificGroupItem(
|
---|
| 270 | const QStandardItem * const _item,
|
---|
| 271 | const enum QtMoleculeItem::COLUMNTYPES _type) const
|
---|
| 272 | {
|
---|
| 273 | return invisibleRootItem()->child(_item->index().row(), _type);
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[015f8c] | 276 | const QModelIndex QtMoleculeList::MoleculeIdToIndex(const moleculeId_t _id) const
|
---|
| 277 | {
|
---|
| 278 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
| 279 | QtMoleculeItem * const item = MoleculeIdToItem(_id);
|
---|
| 280 | ASSERT(item != NULL,
|
---|
| 281 | "QtMoleculeList::MoleculeIdToIndex() - could not find item to "
|
---|
| 282 | +toString(_id));
|
---|
| 283 | return indexFromItem(item);
|
---|
| 284 | }
|
---|
[fcdf05] | 285 |
|
---|
[69b434] | 286 | const moleculeId_t QtMoleculeList::IndexToMoleculeId(const QModelIndex &_index) const
|
---|
[53c1ff] | 287 | {
|
---|
[fcdf05] | 288 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[53c1ff] | 289 | QtMoleculeItem * const item = dynamic_cast<QtMoleculeItem *>(itemFromIndex(_index));
|
---|
| 290 | if (item == NULL)
|
---|
[69b434] | 291 | return -1;
|
---|
[53c1ff] | 292 | else
|
---|
[69b434] | 293 | return ItemToMoleculeId(item);
|
---|
[53c1ff] | 294 | }
|
---|
| 295 |
|
---|
[6770fa] | 296 | void QtMoleculeList::addGroupItem(
|
---|
[8ccf3b] | 297 | QStandardItem *&mainitem,
|
---|
[6770fa] | 298 | const std::string &_molecule_formula)
|
---|
| 299 | {
|
---|
[53c1ff] | 300 | QList<QStandardItem *> groupItems =
|
---|
| 301 | QtMoleculeItemFactory::getInstance().createGroupItems(_molecule_formula);
|
---|
| 302 | mainitem = groupItems.front();
|
---|
[fcdf05] | 303 | {
|
---|
| 304 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 305 | FormulaItemBiMap.left.insert( std::make_pair(_molecule_formula, mainitem) );
|
---|
| 306 | }
|
---|
[8ccf3b] | 307 | invisibleRootItem()->appendRow(groupItems);
|
---|
[53c1ff] | 308 | }
|
---|
| 309 |
|
---|
[a39d72] | 310 | QList<QStandardItem *> QtMoleculeList::createMoleculeItems(
|
---|
[ca1535] | 311 | QtObservedMolecule::ptr &_ObservedMolecule,
|
---|
[a39d72] | 312 | std::string &_molecule_formula)
|
---|
[6770fa] | 313 | {
|
---|
[53c1ff] | 314 | QList<QStandardItem *> molItems =
|
---|
[cc2976] | 315 | QtMoleculeItemFactory::getInstance().createMoleculeItems(
|
---|
[ca1535] | 316 | _ObservedMolecule,
|
---|
| 317 | callback_DirtyItems);
|
---|
[53c1ff] | 318 | QtMoleculeItem *mol_item = dynamic_cast<QtMoleculeItem *>(molItems.front());
|
---|
| 319 | ASSERT( mol_item != NULL,
|
---|
[a39d72] | 320 | "QtMoleculeList::createMoleculeItems() - item from factory was not a QtMoleculeItem?");
|
---|
[ca1535] | 321 | MoleculeItemBiMap.left.insert( std::make_pair(_ObservedMolecule->getMolIndex(), mol_item) );
|
---|
[a39d72] | 322 |
|
---|
| 323 | QStandardItem *formulaitem = molItems.at(QtMoleculeItem::FORMULA);
|
---|
| 324 | ASSERT( formulaitem != NULL,
|
---|
| 325 | "QtMoleculeList::createMoleculeItems() - Formula item not created by factory?");
|
---|
| 326 | _molecule_formula = formulaitem->text().toStdString();
|
---|
[ca1535] | 327 |
|
---|
| 328 | LOG(1, "Adding " << _molecule_formula << " for "
|
---|
| 329 | << _ObservedMolecule->getMolIndex() << " to MoleculeFormulaMap.");
|
---|
| 330 | MoleculeFormulaMap.insert( std::make_pair( _ObservedMolecule->getMolIndex(), _molecule_formula) );
|
---|
[68989c] | 331 | // LOG(1, "Inserting molecule " << _molid << ": " << _molecule_formula);
|
---|
[a39d72] | 332 | return molItems;
|
---|
[6770fa] | 333 | }
|
---|
| 334 |
|
---|
[ca1535] | 335 | std::string QtMoleculeList::addMolecule(QtObservedMolecule::ptr &_ObservedMolecule)
|
---|
[6770fa] | 336 | {
|
---|
| 337 | // find group if already in list
|
---|
[8ccf3b] | 338 | QStandardItem *groupItem = NULL;
|
---|
[6770fa] | 339 |
|
---|
[a39d72] | 340 | // create molecule items and obtain the molecule's formula
|
---|
| 341 | std::string molecule_formula;
|
---|
[ca1535] | 342 | QList<QStandardItem *> molItems = createMoleculeItems(_ObservedMolecule, molecule_formula);
|
---|
[6770fa] | 343 |
|
---|
| 344 | // new molecule type -> create new group
|
---|
[fcdf05] | 345 | if (!isGroupItemPresent(molecule_formula)){
|
---|
[6770fa] | 346 | // insert new formula entry into visibility
|
---|
| 347 | #ifndef NDEBUG
|
---|
| 348 | std::pair< FormulaVisibilityCountMap_t::iterator, bool> visibilityinserter =
|
---|
| 349 | #endif
|
---|
| 350 | FormulaVisibilityCountMap.insert(
|
---|
| 351 | std::make_pair( molecule_formula, (unsigned int)0) );
|
---|
| 352 | ASSERT( visibilityinserter.second,
|
---|
| 353 | "QtMoleculeList::refill() - molecule with formula "
|
---|
| 354 | +molecule_formula+" already in FormulaVisibilityCountMap.");
|
---|
| 355 |
|
---|
| 356 | // create item and place into Map with formula as key
|
---|
| 357 | addGroupItem(groupItem, molecule_formula);
|
---|
| 358 | } else {
|
---|
[fcdf05] | 359 | groupItem = FormulaToGroupItem(molecule_formula);
|
---|
[6770fa] | 360 | }
|
---|
| 361 | ASSERT( groupItem != NULL,
|
---|
[ca1535] | 362 | "QtMoleculeList::addMolecule() - item with id "+toString(_ObservedMolecule->getMolIndex())
|
---|
[fcdf05] | 363 | +" has no parent?");
|
---|
[a39d72] | 364 | groupItem->appendRow(molItems);
|
---|
[fcdf05] | 365 |
|
---|
| 366 | return molecule_formula;
|
---|
[6770fa] | 367 | }
|
---|
| 368 |
|
---|
[fcdf05] | 369 | void QtMoleculeList::removeMoleculeItem(QtMoleculeItem * const _item)
|
---|
[6770fa] | 370 | {
|
---|
[fcdf05] | 371 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[53c1ff] | 372 | const QModelIndex mol_index = indexFromItem(_item);
|
---|
| 373 | QStandardItem *groupitem = _item->parent();
|
---|
| 374 | const QModelIndex group_index = groupitem->index();
|
---|
[fcdf05] | 375 | {
|
---|
| 376 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 377 | MoleculeItemBiMap_t::right_iterator removeiter =
|
---|
| 378 | MoleculeItemBiMap.right.find(_item);
|
---|
| 379 | ASSERT( removeiter != MoleculeItemBiMap.right.end(),
|
---|
| 380 | "QtMoleculeList::removeMoleculeItem() - could not find item in MoleculeBiMap.");
|
---|
| 381 | // LOG(1, "Erasing molecule " << (removeiter->second));
|
---|
| 382 | {
|
---|
| 383 | MoleculeFormulaMap_t::iterator removeformulaiter =
|
---|
| 384 | MoleculeFormulaMap.find(removeiter->second);
|
---|
| 385 | ASSERT( removeformulaiter != MoleculeFormulaMap.end(),
|
---|
| 386 | "QtMoleculeList::removeMoleculeItem() - could not find id "
|
---|
| 387 | +toString(removeiter->second)+" in MoleculeFormulaMap.");
|
---|
| 388 | LOG(1, "Removing " << removeformulaiter->second << " for "
|
---|
| 389 | << removeformulaiter->first << " from MoleculeFormulaMap.");
|
---|
| 390 | MoleculeFormulaMap.erase( removeformulaiter );
|
---|
| 391 | }
|
---|
| 392 | MoleculeItemBiMap.right.erase(removeiter);
|
---|
| 393 | }
|
---|
[53c1ff] | 394 | removeRows(mol_index.row(), 1, group_index);
|
---|
| 395 | }
|
---|
[6770fa] | 396 |
|
---|
[ca1535] | 397 | void QtMoleculeList::resetUpdateTimer()
|
---|
[53c1ff] | 398 | {
|
---|
| 399 | // check timer's presence
|
---|
| 400 | if (update_timer == NULL) {
|
---|
| 401 | update_timer = new QTimer(this);
|
---|
| 402 | connect( update_timer, SIGNAL(timeout()), this, SLOT(checkState()));
|
---|
| 403 | } else
|
---|
| 404 | update_timer->stop();
|
---|
[6770fa] | 405 |
|
---|
[53c1ff] | 406 | // activate timer
|
---|
| 407 | update_timer->start(1000/update_times_per_second);
|
---|
[a39006] | 408 | }
|
---|
| 409 |
|
---|
[53c1ff] | 410 | bool QtMoleculeList::areAnyItemsDirty()
|
---|
[a39006] | 411 | {
|
---|
[53c1ff] | 412 | // get whether any items are dirty
|
---|
[fcdf05] | 413 | boost::recursive_mutex::scoped_lock lock(listAccessing_mutex);
|
---|
[53c1ff] | 414 | bool dirty = false;
|
---|
[fcdf05] | 415 | dirty |= !dirtyMolItems.empty();
|
---|
| 416 | dirty |= !visibilityMolItems.empty();
|
---|
| 417 | dirty |= !dirtyGroupItems.empty();
|
---|
| 418 | dirty |= !visibilityGroupItems.empty();
|
---|
| 419 | dirty |= !newMolecules.empty();
|
---|
| 420 | dirty |= !removedMolecules.empty();
|
---|
| 421 | dirty |= !toBeMovedItems.empty();
|
---|
[53c1ff] | 422 | return dirty;
|
---|
[b47bfc] | 423 | }
|
---|
| 424 |
|
---|
[53c1ff] | 425 | void QtMoleculeList::checkState()
|
---|
| 426 | {
|
---|
| 427 | const bool dirty = areAnyItemsDirty();
|
---|
| 428 | // update if required
|
---|
| 429 | if (dirty)
|
---|
| 430 | updateItemStates();
|
---|
[b47bfc] | 431 | }
|
---|
| 432 |
|
---|
[2696b1] | 433 | void QtMoleculeList::checkForVisibilityChange(QStandardItem* _item)
|
---|
[739ee9] | 434 | {
|
---|
[2050b2] | 435 | // qDebug() << "Item changed called.";
|
---|
[2696b1] | 436 |
|
---|
[fcdf05] | 437 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
| 438 | if (_item->index().column() == QtMoleculeItem::VISIBILITY) {
|
---|
[2050b2] | 439 | // qDebug() << "visibilityItem changed: " << (_item->checkState() ? "checked" : "unchecked");
|
---|
[fcdf05] | 440 | boost::recursive_mutex::scoped_lock lock(listAccessing_mutex);
|
---|
[2696b1] | 441 | if ((_item->parent() == NULL) || (_item->parent() == invisibleRootItem()))
|
---|
[fcdf05] | 442 | visibilityGroupItems.insert( std::make_pair(
|
---|
| 443 | GroupItemToFormula(_item->parent()), QtMoleculeItem::VISIBILITY) );
|
---|
[2696b1] | 444 | else
|
---|
[fcdf05] | 445 | visibilityMolItems.insert(
|
---|
| 446 | static_cast<QtMoleculeItem *>(_item)->getMoleculeId()
|
---|
| 447 | );
|
---|
[2696b1] | 448 | }
|
---|
| 449 | }
|
---|
[3eb91c] | 450 |
|
---|
[2696b1] | 451 | void QtMoleculeList::setVisibilityForMoleculeItem(QtMoleculeItem* _item)
|
---|
| 452 | {
|
---|
| 453 | if (ChangingChildrensVisibility)
|
---|
| 454 | return;
|
---|
[3eb91c] | 455 |
|
---|
[fcdf05] | 456 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[2696b1] | 457 | const bool visible = _item->checkState();
|
---|
[fcdf05] | 458 | const moleculeId_t molid = _item->getMoleculeId();
|
---|
| 459 | std::string molecule_formula("illegal");
|
---|
| 460 | {
|
---|
| 461 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 462 | MoleculeFormulaMap_t::const_iterator formulaiter =
|
---|
| 463 | MoleculeFormulaMap.find(molid);
|
---|
| 464 | ASSERT( formulaiter != MoleculeFormulaMap.end(),
|
---|
| 465 | "QtMoleculeList::setVisibilityForMoleculeItem() - formula of molecule "
|
---|
| 466 | +toString(molid)+" unknown.");
|
---|
| 467 | molecule_formula = formulaiter->second;
|
---|
| 468 | }
|
---|
| 469 | ASSERT( FormulaVisibilityCountMap.count(molecule_formula) != 0,
|
---|
[7d0ddb] | 470 | "QtMoleculeList::setVisibilityForMoleculeItem() - molecule with formula " +molecule_formula
|
---|
| 471 | +" is not present in FormulaVisibilityCountMap.");
|
---|
[3eb91c] | 472 |
|
---|
[2696b1] | 473 | // get parent
|
---|
| 474 | QStandardItem *groupItem = _item->parent();
|
---|
[fcdf05] | 475 | QStandardItem *visgroupItem = getSpecificGroupItem(groupItem, QtMoleculeItem::VISIBILITY);
|
---|
[2696b1] | 476 | ASSERT( groupItem != NULL,
|
---|
| 477 | "QtMoleculeList::setVisibilityForMoleculeItem() - item with id "
|
---|
[7d0ddb] | 478 | +toString(_item->getMoleculeId())+" has not parent?");
|
---|
[2696b1] | 479 | // check whether we have to set the group item
|
---|
| 480 |
|
---|
| 481 | ChangingChildrensVisibility = true;
|
---|
| 482 | if (visible) {
|
---|
| 483 | ++(FormulaVisibilityCountMap[molecule_formula]);
|
---|
| 484 | // compare with occurence/total number of molecules
|
---|
| 485 | if (FormulaVisibilityCountMap[molecule_formula] ==
|
---|
| 486 | (unsigned int)(groupItem->rowCount()))
|
---|
| 487 | visgroupItem->setCheckState(Qt::Checked);
|
---|
| 488 | } else {
|
---|
| 489 | --(FormulaVisibilityCountMap[molecule_formula]);
|
---|
| 490 | // none selected anymore?
|
---|
| 491 | if (FormulaVisibilityCountMap[molecule_formula] == 0)
|
---|
| 492 | visgroupItem->setCheckState(Qt::Unchecked);
|
---|
| 493 | }
|
---|
| 494 | ChangingChildrensVisibility = false;
|
---|
[3eb91c] | 495 |
|
---|
[68989c] | 496 | emit moleculesVisibilityChanged(_item->getMoleculeId(), visible);
|
---|
[2696b1] | 497 | }
|
---|
[3eb91c] | 498 |
|
---|
[2696b1] | 499 | void QtMoleculeList::setVisibilityForGroupItem(QStandardItem* _item)
|
---|
| 500 | {
|
---|
| 501 | if (ChangingChildrensVisibility)
|
---|
| 502 | return;
|
---|
| 503 |
|
---|
| 504 | ChangingChildrensVisibility = true;
|
---|
| 505 |
|
---|
[fcdf05] | 506 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[2696b1] | 507 | // go through all children, but don't enter for groupItem once more
|
---|
| 508 | const bool visible = _item->checkState();
|
---|
[fcdf05] | 509 | QStandardItem *groupitem = getSpecificGroupItem(_item, QtMoleculeItem::NAME);
|
---|
[2696b1] | 510 | for (int i=0;i<groupitem->rowCount();++i) {
|
---|
| 511 | QtMoleculeItem *molItem = dynamic_cast<QtMoleculeItem *>(
|
---|
[fcdf05] | 512 | groupitem->child(i, QtMoleculeItem::VISIBILITY));
|
---|
[2696b1] | 513 | if (molItem->checkState() != visible) {
|
---|
| 514 | molItem->setCheckState(visible ? Qt::Checked : Qt::Unchecked);
|
---|
| 515 |
|
---|
| 516 | // emit signal
|
---|
[68989c] | 517 | emit moleculesVisibilityChanged(molItem->getMoleculeId(), visible);
|
---|
[3eb91c] | 518 | }
|
---|
[2696b1] | 519 | }
|
---|
| 520 | // set current number of visible children
|
---|
| 521 | const std::string molecule_formula =
|
---|
[fcdf05] | 522 | GroupItemToFormula( getSpecificGroupItem(_item, QtMoleculeItem::NAME) );
|
---|
[2696b1] | 523 | FormulaVisibilityCountMap_t::iterator countiter =
|
---|
| 524 | FormulaVisibilityCountMap.find(molecule_formula);
|
---|
| 525 | ASSERT( countiter != FormulaVisibilityCountMap.end(),
|
---|
| 526 | "QtMoleculeList::setVisibilityForGroupItem() - molecules "+molecule_formula
|
---|
| 527 | +" have no entry in visibility count map?");
|
---|
| 528 | countiter->second = visible ? groupitem->rowCount() : 0;
|
---|
| 529 |
|
---|
| 530 | ChangingChildrensVisibility = false;
|
---|
[739ee9] | 531 | }
|
---|
[2696b1] | 532 |
|
---|
[07b800] | 533 | static
|
---|
| 534 | MoleCuilder::MakroAction *constructMakroRenameAction(
|
---|
| 535 | MoleCuilder::ActionSequence &sequence,
|
---|
| 536 | const std::string &_new_name,
|
---|
| 537 | const moleculeId_t _molid
|
---|
| 538 | )
|
---|
| 539 | {
|
---|
| 540 | MoleCuilder::ActionQueue &AQ = MoleCuilder::ActionQueue::getInstance();
|
---|
| 541 | MoleCuilder::ActionTrait trait("change-single-molecule-name");
|
---|
| 542 | sequence.addAction(AQ.getActionByName("push-molecule-selection").clone(MoleCuilder::Action::NonInteractive));
|
---|
| 543 | MoleCuilder::Action * const selectaction =
|
---|
| 544 | AQ.getActionByName("select-molecule-by-id").clone(MoleCuilder::Action::NonInteractive);
|
---|
| 545 | {
|
---|
| 546 | std::stringstream molid_string;
|
---|
| 547 | molid_string << toString(_molid);
|
---|
| 548 | selectaction->setOptionValue("select-molecule-by-id", molid_string.str());
|
---|
[b47bfc] | 549 | }
|
---|
[07b800] | 550 | sequence.addAction(selectaction);
|
---|
| 551 | MoleCuilder::Action * const changeaction =
|
---|
| 552 | AQ.getActionByName("change-molname").clone(MoleCuilder::Action::NonInteractive);
|
---|
| 553 | changeaction->setOptionValue("change-molname", _new_name);
|
---|
| 554 | sequence.addAction(changeaction);
|
---|
| 555 | sequence.addAction(AQ.getActionByName("pop-molecule-selection").clone(MoleCuilder::Action::NonInteractive));
|
---|
| 556 |
|
---|
| 557 | MoleCuilder::MakroAction* makroaction =
|
---|
| 558 | new MoleCuilder::MakroAction(trait, sequence);
|
---|
| 559 | return makroaction;
|
---|
| 560 | }
|
---|
| 561 |
|
---|
| 562 | void QtMoleculeList::moleculeNameChanged(QStandardItem* item)
|
---|
| 563 | {
|
---|
| 564 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
| 565 | // obtain molecule id
|
---|
| 566 | if ( item->index().column() == QtMoleculeItem::NAME) {
|
---|
| 567 | QtMoleculeItem *molitem = assert_cast<QtMoleculeItem *>(item);
|
---|
| 568 | MoleculeItemBiMap_t::right_const_iterator iter = MoleculeItemBiMap.right.find(molitem);
|
---|
| 569 | ASSERT( iter != MoleculeItemBiMap.right.end(),
|
---|
| 570 | "QtMoleculeList::moleculeChanged() - name of unknown molecule changed.");
|
---|
| 571 | const moleculeId_t molid = iter->second;
|
---|
| 572 | // change the name
|
---|
| 573 | molecule * const mol = World::getInstance().getMolecule(MoleculeById(molid));
|
---|
| 574 | std::string cellValue = item->text().toStdString();
|
---|
| 575 | if ((mol->getName() != cellValue) && (!cellValue.empty())) {
|
---|
| 576 | // create actions such that we may undo
|
---|
| 577 | static MoleCuilder::ActionSequence sequence;
|
---|
| 578 | MoleCuilder::MakroAction *makroaction =
|
---|
| 579 | constructMakroRenameAction(sequence, cellValue, molid);
|
---|
| 580 | MoleCuilder::ActionQueue &AQ = MoleCuilder::ActionQueue::getInstance();
|
---|
| 581 | AQ.registerAction(makroaction);
|
---|
| 582 | AQ.queueAction("change-single-molecule-name", MoleCuilder::Action::NonInteractive);
|
---|
| 583 | } else if(cellValue=="") {
|
---|
| 584 | item->setText(QString(mol->getName().c_str()));
|
---|
| 585 | }
|
---|
| 586 | }
|
---|
[b47bfc] | 587 | }
|
---|
| 588 |
|
---|
[b14efe] | 589 |
|
---|
[53c1ff] | 590 | int QtMoleculeList::setOccurrence(QStandardItem * const _groupitem)
|
---|
| 591 | {
|
---|
[fcdf05] | 592 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[53c1ff] | 593 | QModelIndex modelindex = _groupitem->index();
|
---|
| 594 | ASSERT( modelindex.isValid(),
|
---|
| 595 | "QtMoleculeList::setOccurrence() - groupitem not associated to model anymore.");
|
---|
| 596 | const int index = modelindex.row();
|
---|
| 597 | QStandardItem *parent_item =
|
---|
| 598 | _groupitem->parent() == NULL ? invisibleRootItem() : _groupitem->parent();
|
---|
| 599 | ASSERT( parent_item != NULL,
|
---|
| 600 | "QtMoleculeList::setOccurrence() - group item at "+toString(index)
|
---|
| 601 | +" does not have a parent?");
|
---|
[fcdf05] | 602 | QStandardItem *occ_item = parent_item->child(index, QtMoleculeItem::OCCURRENCE);
|
---|
[53c1ff] | 603 | ASSERT( occ_item != NULL,
|
---|
| 604 | "QtMoleculeList::setOccurrence() - group item at "+toString(index)
|
---|
| 605 | +" does not have an occurrence?");
|
---|
| 606 | const int count = _groupitem->rowCount();
|
---|
| 607 | if (count == 0) {
|
---|
| 608 | // we have to remove the group item completely
|
---|
[fcdf05] | 609 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
[53c1ff] | 610 | const std::string molecule_formula = _groupitem->text().toStdString();
|
---|
[fcdf05] | 611 | FormulaItemBiMap.left.erase(molecule_formula);
|
---|
[53c1ff] | 612 | FormulaVisibilityCountMap.erase(molecule_formula);
|
---|
| 613 | return index;
|
---|
| 614 | } else {
|
---|
| 615 | occ_item->setText(QString::number(count));
|
---|
| 616 | return -1;
|
---|
| 617 | }
|
---|
| 618 | }
|
---|
| 619 |
|
---|
[fcdf05] | 620 | std::string QtMoleculeList::readdItem(QtMoleculeItem *_molitem)
|
---|
[53c1ff] | 621 | {
|
---|
[fcdf05] | 622 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[53c1ff] | 623 | // use takeRows of molecule ..
|
---|
| 624 | QStandardItem *groupitem = _molitem->parent();
|
---|
| 625 | ASSERT( groupitem != NULL,
|
---|
| 626 | "QtMoleculeList::readdItem() - mol item at "+toString(_molitem->index().row())
|
---|
| 627 | +" does not have a groupitem?");
|
---|
[a39d72] | 628 | // get updated formula from the item
|
---|
| 629 | QStandardItem *formulaitem =
|
---|
| 630 | _molitem->parent()->child(_molitem->index().row(), QtMoleculeItem::FORMULA);
|
---|
| 631 | const std::string molecule_formula = formulaitem->text().toStdString();
|
---|
[53c1ff] | 632 | QList<QStandardItem *> mol_row = _molitem->parent()->takeRow(_molitem->index().row());
|
---|
| 633 | // .. and re-add where new formula fits
|
---|
[a39d72] | 634 | if (!isGroupItemPresent(molecule_formula)) {
|
---|
| 635 | // add new group item and formula entry
|
---|
| 636 | addGroupItem(groupitem, molecule_formula);
|
---|
[fcdf05] | 637 | } else {
|
---|
[a39d72] | 638 | groupitem = FormulaToGroupItem(molecule_formula);
|
---|
[53c1ff] | 639 | }
|
---|
[a39d72] | 640 | ASSERT( groupitem != NULL,
|
---|
| 641 | "QtMoleculeList::readdItem() - failed to create a sensible new groupitem");
|
---|
| 642 | // finally add again
|
---|
| 643 | groupitem->appendRow(mol_row);
|
---|
[fcdf05] | 644 |
|
---|
| 645 | return molecule_formula;
|
---|
[53c1ff] | 646 | }
|
---|
| 647 |
|
---|
| 648 | void QtMoleculeList::informDirtyState(
|
---|
[fcdf05] | 649 | const moleculeId_t _id,
|
---|
| 650 | const QtMoleculeItem::COLUMNTYPES _type,
|
---|
| 651 | const QtMoleculeItem::MoveTypes _movetype)
|
---|
[53c1ff] | 652 | {
|
---|
[7d0ddb] | 653 | listAccessing_mutex.lock();
|
---|
[fcdf05] | 654 | dirtyMolItems.insert( std::make_pair(_id, _type) );
|
---|
[7d0ddb] | 655 | listAccessing_mutex.unlock();
|
---|
[95f49f] | 656 |
|
---|
[fcdf05] | 657 | if (_movetype == QtMoleculeItem::NeedsMove) {
|
---|
[53c1ff] | 658 | // we have to convert whatever item raised the dirty signal to the first
|
---|
| 659 | // item in the row as otherwise multiple items in the row are selected
|
---|
| 660 | // as to be moved, i.e. the same row is moved multiple times
|
---|
[7d0ddb] | 661 | listAccessing_mutex.lock();
|
---|
[fcdf05] | 662 | toBeMovedItems.insert(_id);
|
---|
[7d0ddb] | 663 | listAccessing_mutex.unlock();
|
---|
[53c1ff] | 664 | }
|
---|
| 665 | }
|
---|
| 666 |
|
---|
| 667 | void QtMoleculeList::updateItemStates()
|
---|
| 668 | {
|
---|
| 669 | /// copy lists such that new signals for dirty/.. may come in right away
|
---|
| 670 | // TODO: if we had move semantics ...
|
---|
[7d0ddb] | 671 | listAccessing_mutex.lock();
|
---|
[fcdf05] | 672 | list_of_molecule_items_t dirtyMolItems_copy = dirtyMolItems;
|
---|
| 673 | dirtyMolItems.clear();
|
---|
| 674 | list_of_molecules_t visibilityMolItems_copy = visibilityMolItems;
|
---|
| 675 | visibilityMolItems.clear();
|
---|
| 676 | list_of_group_items_t dirtyGroupItems_copy = dirtyGroupItems;
|
---|
| 677 | dirtyGroupItems.clear();
|
---|
| 678 | list_of_group_items_t visibilityGroupItems_copy = visibilityGroupItems;
|
---|
| 679 | visibilityGroupItems.clear();
|
---|
[aa41a3] | 680 | std::vector<moleculeId_t> newMolecules_copy = newMolecules;
|
---|
[fcdf05] | 681 | newMolecules.clear();
|
---|
| 682 | std::vector<moleculeId_t> removedMolecules_copy = removedMolecules;
|
---|
| 683 | removedMolecules.clear();
|
---|
| 684 | list_of_molecules_t toBeMovedItems_copy = toBeMovedItems;
|
---|
[53c1ff] | 685 | toBeMovedItems.clear();
|
---|
[7d0ddb] | 686 | listAccessing_mutex.unlock();
|
---|
[53c1ff] | 687 |
|
---|
[95f49f] | 688 | // wait till initial refill has been executed
|
---|
[fcdf05] | 689 | boost::recursive_mutex::scoped_lock lock(refill_mutex);
|
---|
[95f49f] | 690 |
|
---|
[fcdf05] | 691 | // LOG(1, "Starting update.");
|
---|
[95f49f] | 692 |
|
---|
[fcdf05] | 693 | // remove removedMolecules from other lists.
|
---|
| 694 | for (std::vector<moleculeId_t>::const_iterator removeiter = removedMolecules_copy.begin();
|
---|
| 695 | removeiter != removedMolecules_copy.end(); ++removeiter) {
|
---|
| 696 | for (unsigned int i=0;i< QtMoleculeItem::COLUMNTYPES_MAX; ++i)
|
---|
| 697 | dirtyMolItems_copy.erase( std::make_pair(*removeiter,(QtMoleculeItem::COLUMNTYPES)i) );
|
---|
| 698 | toBeMovedItems_copy.erase(*removeiter);
|
---|
| 699 | visibilityMolItems_copy.erase(*removeiter);
|
---|
[2696b1] | 700 | }
|
---|
[8ccf3b] | 701 |
|
---|
[2696b1] | 702 | /// 1a. do the update for each dirty item
|
---|
[fcdf05] | 703 | for (list_of_molecule_items_t::const_iterator dirtyiter = dirtyMolItems_copy.begin();
|
---|
| 704 | dirtyiter != dirtyMolItems_copy.end(); ++dirtyiter) {
|
---|
| 705 | if (!isMoleculeItemPresent(dirtyiter->first))
|
---|
| 706 | continue;
|
---|
| 707 | QtMoleculeItem * const mol_item =
|
---|
| 708 | getSpecificMoleculeItem(
|
---|
| 709 | MoleculeIdToItem(dirtyiter->first),
|
---|
| 710 | dirtyiter->second);
|
---|
| 711 | // LOG(1, "Updating item " << mol_item);
|
---|
| 712 | mol_item->updateState();
|
---|
[53c1ff] | 713 | }
|
---|
| 714 |
|
---|
[2696b1] | 715 | /// 1b. do the visibility update for each dirty item
|
---|
[fcdf05] | 716 | for (list_of_molecules_t::const_iterator visiter = visibilityMolItems_copy.begin();
|
---|
| 717 | visiter != visibilityMolItems_copy.end(); ++visiter) {
|
---|
| 718 | if (!isMoleculeItemPresent(*visiter))
|
---|
| 719 | continue;
|
---|
| 720 | QtMoleculeItem * const visitem =
|
---|
| 721 | getSpecificMoleculeItem(
|
---|
| 722 | MoleculeIdToItem(*visiter),
|
---|
| 723 | QtMoleculeItem::VISIBILITY );
|
---|
| 724 | // LOG(1, "Updating visibility of item " << visitem);
|
---|
| 725 | setVisibilityForMoleculeItem(visitem);
|
---|
[2696b1] | 726 | }
|
---|
| 727 |
|
---|
[53c1ff] | 728 | /// 2. move all items that need to be moved
|
---|
[fcdf05] | 729 | typedef std::set<std::string> formulas_t;
|
---|
| 730 | formulas_t toBeSetOccurrence;
|
---|
| 731 | for (list_of_molecules_t::const_iterator moveiter = toBeMovedItems_copy.begin();
|
---|
[53c1ff] | 732 | moveiter != toBeMovedItems_copy.end(); ++moveiter) {
|
---|
[fcdf05] | 733 | boost::recursive_mutex::scoped_lock lock(map_mutex);
|
---|
| 734 | // LOG(1, "Moving item " << molitem);
|
---|
| 735 | MoleculeFormulaMap_t::iterator formulaiter =
|
---|
| 736 | MoleculeFormulaMap.find(*moveiter);
|
---|
| 737 | ASSERT( formulaiter != MoleculeFormulaMap.end(),
|
---|
| 738 | "QtMoleculeList::updateItemStates() - formula of molecule "
|
---|
| 739 | +toString(*moveiter)+" unknown.");
|
---|
| 740 | // LOG(1, "Adding " << formulaiter->second << " to toBeSetOccurrence.");
|
---|
| 741 | toBeSetOccurrence.insert( formulaiter->second );
|
---|
| 742 | if (!isMoleculeItemPresent(*moveiter))
|
---|
| 743 | continue;
|
---|
| 744 | QtMoleculeItem *const molitem = MoleculeIdToItem(*moveiter);
|
---|
| 745 | LOG(1, "Moving item " << molitem);
|
---|
[ca1535] | 746 | // remove from formula<->molecule bimap with old formula
|
---|
| 747 | LOG(1, "Removing " << formulaiter->second << " for " << formulaiter->first << " from MoleculeFormulaMap.");
|
---|
| 748 | MoleculeFormulaMap.erase( formulaiter );
|
---|
| 749 | const std::string formula = readdItem(molitem);
|
---|
| 750 | // and add to formula<->molecule bimap with updated formula
|
---|
| 751 | LOG(1, "Adding " << formula << " for " << *moveiter << " to MoleculeFormulaMap.");
|
---|
| 752 | MoleculeFormulaMap.insert( std::make_pair(*moveiter, formula) );
|
---|
[fcdf05] | 753 | // LOG(1, "Adding " << formula << " to toBeSetOccurrence.");
|
---|
[ca1535] | 754 | toBeSetOccurrence.insert( formula );
|
---|
[fcdf05] | 755 | }
|
---|
| 756 |
|
---|
[53c1ff] | 757 | /// 3. remove all items whose molecules have been removed
|
---|
[fcdf05] | 758 | for (std::vector<moleculeId_t>::const_iterator removeiter = removedMolecules_copy.begin();
|
---|
| 759 | removeiter != removedMolecules_copy.end(); ++removeiter) {
|
---|
| 760 | // LOG(1, "Removing molecule " << *removeiter);
|
---|
| 761 | if (!isMoleculeItemPresent(*removeiter))
|
---|
| 762 | continue;
|
---|
| 763 | QtMoleculeItem *item = MoleculeIdToItem(*removeiter);
|
---|
| 764 | if (item != NULL) {
|
---|
| 765 | const std::string formula = item->parent()->text().toStdString();
|
---|
| 766 | // LOG(1, "Adding " << formula << " to toBeSetOccurrence.");
|
---|
| 767 | toBeSetOccurrence.insert( formula );
|
---|
| 768 | removeMoleculeItem(item);
|
---|
[cc2976] | 769 | KilledItemsPerMolecule.erase( *removeiter );
|
---|
[fcdf05] | 770 | }
|
---|
[53c1ff] | 771 | }
|
---|
| 772 |
|
---|
[cc2976] | 773 | // throw out items that we added by an update() while we are in this function
|
---|
| 774 | listAccessing_mutex.lock();
|
---|
| 775 | for (std::vector<moleculeId_t>::const_iterator removeiter = removedMolecules_copy.begin();
|
---|
| 776 | removeiter != removedMolecules_copy.end(); ++removeiter) {
|
---|
| 777 | for (unsigned int i=0;i< QtMoleculeItem::COLUMNTYPES_MAX; ++i)
|
---|
| 778 | dirtyMolItems.erase( std::make_pair(*removeiter,(QtMoleculeItem::COLUMNTYPES)i) );
|
---|
| 779 | toBeMovedItems.erase(*removeiter);
|
---|
| 780 | visibilityMolItems.erase(*removeiter);
|
---|
| 781 | }
|
---|
| 782 | listAccessing_mutex.unlock();
|
---|
| 783 | // after that it is not a problem as items have been removed (hence signOff() was called)
|
---|
| 784 |
|
---|
[53c1ff] | 785 | /// 4. instantiate all new items
|
---|
[aa41a3] | 786 | for (std::vector<moleculeId_t>::iterator moliter = newMolecules_copy.begin();
|
---|
[fcdf05] | 787 | moliter != newMolecules_copy.end(); ++moliter) {
|
---|
[aa41a3] | 788 | QtObservedMolecule::ptr ObservedMolecule = board->getObservedMolecule(*moliter);
|
---|
| 789 | if (ObservedMolecule) {
|
---|
| 790 | // LOG(1, "Adding molecule " << ObservedMolecule->getMoleculeName());
|
---|
| 791 | // check that World knows the molecule still
|
---|
| 792 | const std::string formula = addMolecule(ObservedMolecule);
|
---|
| 793 | // LOG(1, "Adding " << formula << " to toBeSetOccurrence.");
|
---|
| 794 | toBeSetOccurrence.insert( formula );
|
---|
| 795 | }
|
---|
[53c1ff] | 796 | }
|
---|
| 797 |
|
---|
[2696b1] | 798 | /// 5a. update the group item's occurrence and visibility
|
---|
[53c1ff] | 799 | std::set<int> RowsToRemove;
|
---|
[fcdf05] | 800 | for (std::set<std::string>::const_iterator groupiter = toBeSetOccurrence.begin();
|
---|
| 801 | groupiter != toBeSetOccurrence.end(); ++groupiter) {
|
---|
| 802 | // LOG(1, "Updating group item's occurence " << *groupiter);
|
---|
| 803 | QStandardItem *groupitem = FormulaToGroupItem(*groupiter);
|
---|
| 804 | const int index = setOccurrence(groupitem);
|
---|
| 805 | if (index != -1) {
|
---|
| 806 | // LOG(1, "Removing row of group item " << groupitem);
|
---|
[53c1ff] | 807 | RowsToRemove.insert(index);
|
---|
[fcdf05] | 808 | }
|
---|
[53c1ff] | 809 | }
|
---|
[fcdf05] | 810 | toBeSetOccurrence.clear();
|
---|
[53c1ff] | 811 |
|
---|
[2696b1] | 812 | // remove all visibility updates whose row is removed
|
---|
[fcdf05] | 813 | for (list_of_group_items_t::iterator visiter = visibilityGroupItems_copy.begin();
|
---|
| 814 | visiter != visibilityGroupItems_copy.end(); ) {
|
---|
| 815 | QStandardItem * const groupitem = FormulaToGroupItem(visiter->first);
|
---|
| 816 | if (RowsToRemove.count(groupitem->index().row()) != 0) {
|
---|
| 817 | // LOG(1, "Removing vis item " << *visiter << " because of removed group item.");
|
---|
| 818 | visibilityGroupItems_copy.erase(visiter++);
|
---|
| 819 | } else
|
---|
[2696b1] | 820 | ++visiter;
|
---|
| 821 | }
|
---|
| 822 |
|
---|
| 823 | // update visibility of all group items
|
---|
[fcdf05] | 824 | for (list_of_group_items_t::iterator visiter = visibilityGroupItems_copy.begin();
|
---|
| 825 | visiter != visibilityGroupItems_copy.end(); ++visiter) {
|
---|
[2050b2] | 826 | // LOG(1, "Updating visibility of item " << *visiter);
|
---|
[fcdf05] | 827 | QStandardItem * const groupitem =
|
---|
| 828 | getSpecificGroupItem(FormulaToGroupItem(visiter->first),
|
---|
| 829 | visiter->second);
|
---|
| 830 | setVisibilityForGroupItem(groupitem);
|
---|
[2696b1] | 831 | }
|
---|
| 832 |
|
---|
[53c1ff] | 833 | /// 5b. remove all rows with 0 occurrence starting from last
|
---|
| 834 | for (std::set<int>::reverse_iterator riter = RowsToRemove.rbegin();
|
---|
| 835 | riter != RowsToRemove.rend(); ++riter) {
|
---|
[2050b2] | 836 | // LOG(1, "Removing group item at row " << *riter);
|
---|
[53c1ff] | 837 | removeRows(*riter, 1, invisibleRootItem()->index());
|
---|
| 838 | }
|
---|
| 839 |
|
---|
| 840 | // and done
|
---|
[fcdf05] | 841 | // LOG(1, "Done with update.");
|
---|
[53c1ff] | 842 | }
|
---|