[1540859] | 1 | /*
|
---|
| 2 | * Reaction.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Oct 13, 2011
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef REACTION_HPP_
|
---|
| 9 | #define REACTION_HPP_
|
---|
| 10 |
|
---|
| 11 | // include config.h
|
---|
| 12 | #ifdef HAVE_CONFIG_H
|
---|
| 13 | #include <config.h>
|
---|
| 14 | #endif
|
---|
| 15 |
|
---|
| 16 |
|
---|
| 17 | #include "Actions/Action.hpp"
|
---|
| 18 |
|
---|
| 19 | namespace MoleCuilder {
|
---|
| 20 |
|
---|
| 21 | /**
|
---|
| 22 | * A Reaction is an Action with a return value that is set during the call and may be
|
---|
| 23 | * inspected afterwards.
|
---|
| 24 | *
|
---|
| 25 | * This class can be used in the same way as any other Action, but has some special methods
|
---|
| 26 | * for inspecting the result of the calculation.
|
---|
| 27 | */
|
---|
| 28 | template<typename T>
|
---|
| 29 | class Reaction : public Action
|
---|
| 30 | {
|
---|
| 31 | public:
|
---|
[126867] | 32 | Reaction(const ActionTrait &_trait);
|
---|
[1540859] | 33 | virtual ~Reaction();
|
---|
| 34 |
|
---|
| 35 | /**
|
---|
| 36 | * Reimplemented call method for Action Base class.
|
---|
| 37 | * Resets the result and then redoes the calculation. Can be used to retrigger calculations
|
---|
| 38 | * from menu Items or other places.
|
---|
| 39 | */
|
---|
| 40 | virtual bool canUndo();
|
---|
| 41 | virtual bool shouldUndo();
|
---|
| 42 |
|
---|
[af5384] | 43 | virtual Action* clone(enum QueryOptions flag = Interactive) const=0;
|
---|
| 44 |
|
---|
[46b181] | 45 | virtual void outputAsCLI(std::ostream &ost) const;
|
---|
[477012] | 46 | virtual void outputAsPython(std::ostream &ost, const std::string &prefix) const;
|
---|
[46b181] | 47 |
|
---|
[1540859] | 48 | /**
|
---|
| 49 | * Does the actual calculation and returns the result.
|
---|
| 50 | * When the calculation has been done before it is not redone, but the previous cached result is returned.
|
---|
| 51 | * Call reset to delete the cached value.
|
---|
| 52 | */
|
---|
| 53 | virtual T operator()();
|
---|
| 54 |
|
---|
| 55 | /**
|
---|
| 56 | * Check if a cached result is available.
|
---|
| 57 | */
|
---|
[c5177f] | 58 | virtual bool hasResult() const;
|
---|
[1540859] | 59 |
|
---|
| 60 | /**
|
---|
| 61 | * Get the cached result.
|
---|
| 62 | * Fails if there is no cached result.
|
---|
| 63 | */
|
---|
[c5177f] | 64 | virtual T getResult() const;
|
---|
[1540859] | 65 |
|
---|
| 66 | /**
|
---|
| 67 | * Delete a previously calculated result from the cache.
|
---|
| 68 | */
|
---|
| 69 | virtual void reset();
|
---|
| 70 |
|
---|
| 71 | protected:
|
---|
| 72 | virtual Dialog *fillDialog(Dialog *dialog)=0;
|
---|
| 73 |
|
---|
| 74 | protected:
|
---|
| 75 | //!> result of the calculation
|
---|
| 76 | T* result;
|
---|
| 77 |
|
---|
| 78 | /**
|
---|
| 79 | * Pure virtual method for implementation of the actual calculation procedure.
|
---|
| 80 | */
|
---|
| 81 | virtual T* doCalc()=0;
|
---|
| 82 | private:
|
---|
[b5b01e] | 83 | virtual ActionState::ptr performCall();
|
---|
| 84 | virtual ActionState::ptr performUndo(ActionState::ptr);
|
---|
| 85 | virtual ActionState::ptr performRedo(ActionState::ptr);
|
---|
[1540859] | 86 |
|
---|
| 87 | //!> states whether result is done or not (i.e. \a result contains valid result
|
---|
| 88 | bool done;
|
---|
| 89 | };
|
---|
| 90 |
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | #endif /* REACTION_HPP_ */
|
---|