| 1 | /*
 | 
|---|
| 2 |  * DepthFirstSearchAction.cpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: May 9, 2010
 | 
|---|
| 5 |  *      Author: heber
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #include "Helpers/MemDebug.hpp"
 | 
|---|
| 9 | 
 | 
|---|
| 10 | #include "Actions/FragmentationAction/DepthFirstSearchAction.hpp"
 | 
|---|
| 11 | #include "Actions/ActionRegistry.hpp"
 | 
|---|
| 12 | #include "atom.hpp"
 | 
|---|
| 13 | #include "bondgraph.hpp"
 | 
|---|
| 14 | #include "config.hpp"
 | 
|---|
| 15 | #include "log.hpp"
 | 
|---|
| 16 | #include "molecule.hpp"
 | 
|---|
| 17 | #include "Descriptors/MoleculeDescriptor.hpp"
 | 
|---|
| 18 | #include "Descriptors/MoleculeIdDescriptor.hpp"
 | 
|---|
| 19 | #include "stackclass.hpp"
 | 
|---|
| 20 | #include "verbose.hpp"
 | 
|---|
| 21 | #include "World.hpp"
 | 
|---|
| 22 | 
 | 
|---|
| 23 | #include <iostream>
 | 
|---|
| 24 | #include <string>
 | 
|---|
| 25 | 
 | 
|---|
| 26 | using namespace std;
 | 
|---|
| 27 | 
 | 
|---|
| 28 | #include "UIElements/UIFactory.hpp"
 | 
|---|
| 29 | #include "UIElements/Dialog.hpp"
 | 
|---|
| 30 | #include "UIElements/ValueStorage.hpp"
 | 
|---|
| 31 | 
 | 
|---|
| 32 | const char FragmentationDepthFirstSearchAction::NAME[] = "depth-first-search";
 | 
|---|
| 33 | 
 | 
|---|
| 34 | FragmentationDepthFirstSearchAction::FragmentationDepthFirstSearchAction() :
 | 
|---|
| 35 |   Action(NAME)
 | 
|---|
| 36 | {}
 | 
|---|
| 37 | 
 | 
|---|
| 38 | FragmentationDepthFirstSearchAction::~FragmentationDepthFirstSearchAction()
 | 
|---|
| 39 | {}
 | 
|---|
| 40 | 
 | 
|---|
| 41 | void FragmentationDepthFirstSearch(double distance) {
 | 
|---|
| 42 |   ValueStorage::getInstance().setCurrentValue(FragmentationDepthFirstSearchAction::NAME, distance);
 | 
|---|
| 43 |   ActionRegistry::getInstance().getActionByName(FragmentationDepthFirstSearchAction::NAME)->call(Action::NonInteractive);
 | 
|---|
| 44 | };
 | 
|---|
| 45 | 
 | 
|---|
| 46 | Dialog* FragmentationDepthFirstSearchAction::fillDialog(Dialog *dialog) {
 | 
|---|
| 47 |   ASSERT(dialog,"No Dialog given when filling action dialog");
 | 
|---|
| 48 | 
 | 
|---|
| 49 |   dialog->queryDouble(NAME, ValueStorage::getInstance().getDescription(NAME));
 | 
|---|
| 50 | 
 | 
|---|
| 51 |   return dialog;
 | 
|---|
| 52 | }
 | 
|---|
| 53 | 
 | 
|---|
| 54 | Action::state_ptr FragmentationDepthFirstSearchAction::performCall() {
 | 
|---|
| 55 |   double distance;
 | 
|---|
| 56 | 
 | 
|---|
| 57 |   ValueStorage::getInstance().queryCurrentValue(NAME, distance);
 | 
|---|
| 58 | 
 | 
|---|
| 59 |   DoLog(1) && (Log() << Verbose(1) << "Depth-First-Search Analysis." << endl);
 | 
|---|
| 60 |   molecule * const mol = World::getInstance().getMolecule(MoleculeById(0));
 | 
|---|
| 61 |   MoleculeLeafClass *Subgraphs = NULL;      // list of subgraphs from DFS analysis
 | 
|---|
| 62 |   int *MinimumRingSize = new int[mol->getAtomCount()];
 | 
|---|
| 63 |   atom **ListOfAtoms = NULL;
 | 
|---|
| 64 |   class StackClass<bond *> *BackEdgeStack = NULL;
 | 
|---|
| 65 |   class StackClass<bond *> *LocalBackEdgeStack = NULL;
 | 
|---|
| 66 |   mol->CreateAdjacencyList(distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
 | 
|---|
| 67 |   Subgraphs = mol->DepthFirstSearchAnalysis(BackEdgeStack);
 | 
|---|
| 68 |   if (Subgraphs != NULL) {
 | 
|---|
| 69 |     int FragmentCounter = 0;
 | 
|---|
| 70 |     while (Subgraphs->next != NULL) {
 | 
|---|
| 71 |       Subgraphs = Subgraphs->next;
 | 
|---|
| 72 |       ListOfAtoms = NULL;
 | 
|---|
| 73 |       Subgraphs->FillBondStructureFromReference(mol, ListOfAtoms, false);  // we want to keep the created ListOfLocalAtoms
 | 
|---|
| 74 |       LocalBackEdgeStack = new StackClass<bond *> (Subgraphs->Leaf->BondCount);
 | 
|---|
| 75 |       Subgraphs->Leaf->PickLocalBackEdges(ListOfAtoms, BackEdgeStack, LocalBackEdgeStack);
 | 
|---|
| 76 |       Subgraphs->Leaf->CyclicStructureAnalysis(LocalBackEdgeStack, MinimumRingSize);
 | 
|---|
| 77 |       delete(LocalBackEdgeStack);
 | 
|---|
| 78 |       delete(Subgraphs->previous);
 | 
|---|
| 79 |       delete[](ListOfAtoms);  // and here we remove it
 | 
|---|
| 80 |       FragmentCounter++;
 | 
|---|
| 81 |     }
 | 
|---|
| 82 |     delete(Subgraphs);
 | 
|---|
| 83 |   }
 | 
|---|
| 84 |   delete(BackEdgeStack);
 | 
|---|
| 85 |   delete[](MinimumRingSize);
 | 
|---|
| 86 |   return Action::success;
 | 
|---|
| 87 | }
 | 
|---|
| 88 | 
 | 
|---|
| 89 | Action::state_ptr FragmentationDepthFirstSearchAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| 90 |   return Action::success;
 | 
|---|
| 91 | }
 | 
|---|
| 92 | 
 | 
|---|
| 93 | Action::state_ptr FragmentationDepthFirstSearchAction::performRedo(Action::state_ptr _state){
 | 
|---|
| 94 |   return Action::success;
 | 
|---|
| 95 | }
 | 
|---|
| 96 | 
 | 
|---|
| 97 | bool FragmentationDepthFirstSearchAction::canUndo() {
 | 
|---|
| 98 |   return true;
 | 
|---|
| 99 | }
 | 
|---|
| 100 | 
 | 
|---|
| 101 | bool FragmentationDepthFirstSearchAction::shouldUndo() {
 | 
|---|
| 102 |   return true;
 | 
|---|
| 103 | }
 | 
|---|
| 104 | 
 | 
|---|
| 105 | const string FragmentationDepthFirstSearchAction::getName() {
 | 
|---|
| 106 |   return NAME;
 | 
|---|
| 107 | }
 | 
|---|