[65b6e0] | 1 | /*
|
---|
| 2 | * Action.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Dec 8, 2009
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[112b09] | 8 | #include "Helpers/MemDebug.hpp"
|
---|
| 9 |
|
---|
[cc04b7] | 10 | #include <string>
|
---|
[65b6e0] | 11 |
|
---|
[cc04b7] | 12 | #include "Actions/Action.hpp"
|
---|
| 13 | #include "Actions/ActionRegistry.hpp"
|
---|
[d56640] | 14 | #include "Actions/ActionHistory.hpp"
|
---|
[4e145c] | 15 | #include "Exceptions/MissingValueException.hpp"
|
---|
| 16 | #include "UIElements/Dialog.hpp"
|
---|
[632bc3] | 17 | #include "Helpers/MemDebug.hpp"
|
---|
[047878] | 18 | #include "UIElements/UIFactory.hpp"
|
---|
[cc04b7] | 19 |
|
---|
[952f38] | 20 | #include "Helpers/Log.hpp"
|
---|
| 21 | #include "Helpers/Verbose.hpp"
|
---|
[4e145c] | 22 |
|
---|
[cc04b7] | 23 | using namespace std;
|
---|
| 24 |
|
---|
[6d6b54] | 25 | Action::state_ptr getEmptyState() {
|
---|
| 26 | return Action::state_ptr(Memory::ignore(new ActionState()));
|
---|
| 27 | }
|
---|
| 28 |
|
---|
[5b0b98] | 29 | // An empty state to indicate success
|
---|
[6d6b54] | 30 | Action::state_ptr Action::success = getEmptyState();
|
---|
| 31 | Action::state_ptr Action::failure = getEmptyState();
|
---|
[67e2b3] | 32 |
|
---|
[cc04b7] | 33 | Action::Action(std::string _name,bool _doRegister) :
|
---|
| 34 | name(_name)
|
---|
| 35 | {
|
---|
| 36 | if(_doRegister){
|
---|
[b2d8d0] | 37 | ActionRegistry::getInstance().registerInstance(this);
|
---|
[cc04b7] | 38 | }
|
---|
| 39 | }
|
---|
[65b6e0] | 40 |
|
---|
| 41 | Action::~Action()
|
---|
[ef81b0] | 42 | {}
|
---|
[cc04b7] | 43 |
|
---|
| 44 | const string Action::getName(){
|
---|
| 45 | return name;
|
---|
| 46 | }
|
---|
[67e2b3] | 47 |
|
---|
[047878] | 48 | Dialog * Action::createDialog(){
|
---|
| 49 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
| 50 | return fillDialog(dialog);
|
---|
| 51 | }
|
---|
| 52 |
|
---|
[4e145c] | 53 | void Action::call(enum QueryOptions flag){
|
---|
[2efa90] | 54 | if(!isActive()){
|
---|
| 55 | return;
|
---|
| 56 | }
|
---|
[67e2b3] | 57 | // forward to private virtual
|
---|
[4e145c] | 58 | if (flag == Interactive) {
|
---|
| 59 | Dialog* dialog = createDialog();
|
---|
[031f62] | 60 | if (dialog->hasQueries()) {
|
---|
[4e145c] | 61 | dialog->display();
|
---|
| 62 | }
|
---|
[031f62] | 63 | delete(dialog);
|
---|
[4e145c] | 64 | }
|
---|
| 65 | state_ptr state = Action::failure;
|
---|
[e2f3114] | 66 | // try {
|
---|
[4e145c] | 67 | state = performCall();
|
---|
[e2f3114] | 68 | // } catch(MissingValueException&) {
|
---|
| 69 | // DoeLog(0) && (eLog() << Verbose(0) << "There is a value missing for action " << getName() << endl);
|
---|
| 70 | // };
|
---|
[4e145c] | 71 |
|
---|
[d56640] | 72 | if(shouldUndo() && state != failure){
|
---|
| 73 | if(canUndo()){
|
---|
| 74 | ActionHistory::getInstance().addElement(this,state);
|
---|
| 75 | }
|
---|
| 76 | else{
|
---|
| 77 | ActionHistory::getInstance().clear();
|
---|
| 78 | }
|
---|
| 79 | }
|
---|
[67e2b3] | 80 | }
|
---|
[5b0b98] | 81 | Action::state_ptr Action::undo(state_ptr _state) {
|
---|
[67e2b3] | 82 | // forward to private virtual
|
---|
| 83 | return performUndo(_state);
|
---|
| 84 | }
|
---|
[5b0b98] | 85 | Action::state_ptr Action::redo(state_ptr _state) {
|
---|
[67e2b3] | 86 | // forward to private virtual
|
---|
| 87 | return performRedo(_state);
|
---|
| 88 | }
|
---|
[f9352d] | 89 |
|
---|
| 90 |
|
---|
| 91 | bool Action::isActive(){
|
---|
| 92 | return true;
|
---|
| 93 | }
|
---|