Salome HOME
Define guards are corrected according to the code style
[modules/shaper.git] / src / Model / Model_Update.h
1 // File:        Model_Update.hxx
2 // Created:     25 Jun 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Model_Update_H_
6 #define Model_Update_H_
7
8 #include "Model.h"
9 #include "Events_Listener.h"
10 #include <boost/shared_ptr.hpp>
11 #include <set>
12 #include <map>
13
14 class ModelAPI_Object;
15 class ModelAPI_Feature;
16
17 /**\class Model_Update
18  * \ingroup DataModel
19  * \brief Updates the results of features when it is needed.
20  */
21 class Model_Update : public Events_Listener
22 {
23   ///< initial set of updated features that must be processed
24   std::set<boost::shared_ptr<ModelAPI_Object> > myInitial;
25   ///< already updated and processed features and modificated feature flag
26   std::map<boost::shared_ptr<ModelAPI_Object>, bool> myUpdated;
27   ///< to know that all next updates are caused by this execution
28   bool isExecuted;
29 public:
30   /// Is called only once, on startup of the application
31   Model_Update();
32
33   /// Processes the feature argument update: executes the results
34   MODEL_EXPORT virtual void processEvent(const Events_Message* theMessage);
35
36 protected:
37   /// Recoursively checks and updates the feature if needed (calls the execute method)
38   /// Returns true if feature was updated.
39   bool updateFeature(boost::shared_ptr<ModelAPI_Feature> theFeature);
40
41   /// Recoursively checks and updates the object (result or feature) if needed (calls updateFeature)
42   /// Returns true if object was updated.
43   bool updateObject(boost::shared_ptr<ModelAPI_Object> theObject);
44 };
45
46 #endif