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