[41d023] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[41d023] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * SetParserParametersAction.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: May 8, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
| 20 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 21 |
|
---|
| 22 | #include "CodePatterns/Log.hpp"
|
---|
| 23 | #include "CodePatterns/Verbose.hpp"
|
---|
| 24 | #include "Parser/FormatParserStorage.hpp"
|
---|
| 25 | #include "Parser/MpqcParser.hpp"
|
---|
| 26 | #include "Parser/MpqcParser_Parameters.hpp"
|
---|
| 27 | #include "Actions/ValueStorage.hpp"
|
---|
| 28 |
|
---|
[770ec6] | 29 | #include <algorithm>
|
---|
[41d023] | 30 | #include <iostream>
|
---|
| 31 | #include <string>
|
---|
| 32 |
|
---|
| 33 | #include "SetParserParametersAction.hpp"
|
---|
| 34 |
|
---|
| 35 | using namespace MoleCuilder;
|
---|
| 36 |
|
---|
| 37 | // and construct the stuff
|
---|
| 38 | #include "SetParserParametersAction.def"
|
---|
| 39 | #include "Action_impl_pre.hpp"
|
---|
| 40 | /** =========== define the function ====================== */
|
---|
| 41 | Action::state_ptr ParserSetParserParametersAction::performCall() {
|
---|
| 42 | // get parser
|
---|
[f10b0c] | 43 | ParserTypes type = FormatParserStorage::getInstance().getTypeFromName(params.parsername.get());
|
---|
[41d023] | 44 | FormatParser_Parameters *parameters = FormatParserStorage::getInstance().get(type).parameters;
|
---|
| 45 | ASSERT(parameters != NULL,
|
---|
| 46 | "ParserSetParserParametersAction::performCall() - parameters of parser is NULL.");
|
---|
| 47 |
|
---|
| 48 | // obtain undo state
|
---|
| 49 | std::stringstream oldparamstream;
|
---|
| 50 | oldparamstream << *parameters;
|
---|
| 51 |
|
---|
| 52 | // obtain information
|
---|
[770ec6] | 53 | std::stringstream newparamstream;
|
---|
| 54 | const std::vector< std::string > keyvalues = params.newparams.get();
|
---|
| 55 | std::for_each(keyvalues.begin(), keyvalues.end(), newparamstream << boost::lambda::_1 << ";");
|
---|
[41d023] | 56 | newparamstream >> *parameters;
|
---|
| 57 |
|
---|
| 58 | return Action::state_ptr(new ParserSetParserParametersState(oldparamstream.str(), params));
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | Action::state_ptr ParserSetParserParametersAction::performUndo(Action::state_ptr _state) {
|
---|
| 62 | ParserSetParserParametersState *state = assert_cast<ParserSetParserParametersState*>(_state.get());
|
---|
| 63 |
|
---|
[f10b0c] | 64 | ParserTypes type = FormatParserStorage::getInstance().getTypeFromName(state->params.parsername.get());
|
---|
[41d023] | 65 | FormatParser_Parameters *parser = FormatParserStorage::getInstance().get(type).parameters;
|
---|
| 66 | std::stringstream oldparamstream(state->oldparams);
|
---|
| 67 | oldparamstream >> *parser;
|
---|
| 68 |
|
---|
| 69 | return Action::state_ptr(_state);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | Action::state_ptr ParserSetParserParametersAction::performRedo(Action::state_ptr _state){
|
---|
| 73 | ParserSetParserParametersState *state = assert_cast<ParserSetParserParametersState*>(_state.get());
|
---|
| 74 |
|
---|
[f10b0c] | 75 | ParserTypes type = FormatParserStorage::getInstance().getTypeFromName(state->params.parsername.get());
|
---|
[41d023] | 76 | FormatParser_Parameters *parser = FormatParserStorage::getInstance().get(type).parameters;
|
---|
[770ec6] | 77 | std::stringstream newparamstream;
|
---|
| 78 | const std::vector< std::string > keyvalues = state->params.newparams.get();
|
---|
| 79 | std::for_each(keyvalues.begin(), keyvalues.end(), newparamstream << boost::lambda::_1 << ";");
|
---|
[41d023] | 80 | newparamstream >> *parser;
|
---|
| 81 |
|
---|
| 82 | return Action::state_ptr(_state);
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | bool ParserSetParserParametersAction::canUndo() {
|
---|
| 86 | return true;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | bool ParserSetParserParametersAction::shouldUndo() {
|
---|
| 90 | return true;
|
---|
| 91 | }
|
---|
| 92 | /** =========== end of function ====================== */
|
---|