[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[4f7f34e] | 8 | /*
|
---|
| 9 | * InputAction.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: May 8, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[4f7f34e] | 20 | #include "Helpers/MemDebug.hpp"
|
---|
| 21 |
|
---|
[952f38] | 22 | #include "Helpers/Log.hpp"
|
---|
[4f7f34e] | 23 | #include "molecule.hpp"
|
---|
| 24 | #include "Parser/FormatParserStorage.hpp"
|
---|
| 25 | #include "Parser/PcpParser.hpp"
|
---|
[952f38] | 26 | #include "Helpers/Verbose.hpp"
|
---|
[4f7f34e] | 27 | #include "World.hpp"
|
---|
| 28 |
|
---|
| 29 | #include <iostream>
|
---|
| 30 | #include <string>
|
---|
| 31 |
|
---|
[6f5dfe] | 32 | #include <boost/filesystem/fstream.hpp>
|
---|
| 33 |
|
---|
[4f7f34e] | 34 | using namespace std;
|
---|
| 35 |
|
---|
[1fd675] | 36 | #include "Actions/WorldAction/InputAction.hpp"
|
---|
[7882e9] | 37 |
|
---|
[1fd675] | 38 | // and construct the stuff
|
---|
| 39 | #include "InputAction.def"
|
---|
| 40 | #include "Action_impl_pre.hpp"
|
---|
| 41 | /** =========== define the function ====================== */
|
---|
[7882e9] | 42 | Action::state_ptr WorldInputAction::performCall() {
|
---|
[6f5dfe] | 43 | // MoleculeListClass *molecules = World::getInstance().getMolecules();
|
---|
| 44 | // molecule *mol = NULL;
|
---|
| 45 | boost::filesystem::ifstream test;
|
---|
[4f7f34e] | 46 |
|
---|
[1fd675] | 47 | // obtain information
|
---|
| 48 | getParametersfromValueStorage();
|
---|
[7882e9] | 49 |
|
---|
[6f5dfe] | 50 | DoLog(0) && (Log() << Verbose(0) << "Config file given " << params.filename << "." << endl);
|
---|
[bd2390] | 51 | // using the filename as prefix for all parsers
|
---|
| 52 | std::string FilenameSuffix;
|
---|
| 53 | std::string FilenamePrefix;
|
---|
| 54 | if (params.filename.has_filename()) {
|
---|
| 55 | // get suffix
|
---|
| 56 | FilenameSuffix = params.filename.extension().substr(1); // remove the prefixed "."
|
---|
| 57 | FilenamePrefix = params.filename.stem();
|
---|
| 58 | DoLog(1) && (Log() << Verbose(1) << "Setting config file name prefix to " << FilenamePrefix << "." << endl);
|
---|
| 59 | FormatParserStorage::getInstance().SetOutputPrefixForAll(FilenamePrefix);
|
---|
| 60 | } else {
|
---|
| 61 | DoeLog(1) && (eLog() << Verbose(1) << "Input file does not have a suffix, cannot recognize format." << endl);
|
---|
| 62 | return Action::failure;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | // parsing file if present
|
---|
[6f5dfe] | 66 | if (!boost::filesystem::exists(params.filename)) {
|
---|
| 67 | DoLog(1) && (Log() << Verbose(1) << "Specified config file " << params.filename << " not found." << endl);
|
---|
[bd2390] | 68 | // DONT FAIL: it's just empty and we use the name. // return Action::failure;
|
---|
[6f5dfe] | 69 | } else {
|
---|
| 70 | DoLog(1) && (Log() << Verbose(1) << "Specified config file found, parsing ... ");
|
---|
[bd2390] | 71 |
|
---|
| 72 | // parse the file
|
---|
| 73 | test.open(params.filename);
|
---|
| 74 | FormatParserStorage::getInstance().get(test, FilenameSuffix);
|
---|
| 75 | test.close();
|
---|
| 76 |
|
---|
| 77 | // set file name of last molecule
|
---|
| 78 | MoleculeList::const_iterator iter = World::getInstance().getMolecules()->ListOfMolecules.end();
|
---|
| 79 | iter--;
|
---|
| 80 | (*iter)->SetNameFromFilename(FilenamePrefix.c_str());
|
---|
[4f7f34e] | 81 | }
|
---|
[bd2390] | 82 | return Action::success;
|
---|
[4f7f34e] | 83 | }
|
---|
| 84 |
|
---|
| 85 | Action::state_ptr WorldInputAction::performUndo(Action::state_ptr _state) {
|
---|
| 86 | // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
|
---|
| 87 |
|
---|
| 88 | return Action::failure;
|
---|
| 89 | // string newName = state->mol->getName();
|
---|
| 90 | // state->mol->setName(state->lastName);
|
---|
| 91 | //
|
---|
| 92 | // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | Action::state_ptr WorldInputAction::performRedo(Action::state_ptr _state){
|
---|
| 96 | return Action::failure;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | bool WorldInputAction::canUndo() {
|
---|
| 100 | return false;
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | bool WorldInputAction::shouldUndo() {
|
---|
| 104 | return false;
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | const string WorldInputAction::getName() {
|
---|
| 108 | return NAME;
|
---|
| 109 | }
|
---|
[1fd675] | 110 | /** =========== end of function ====================== */
|
---|