]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Update.h
Salome HOME
Make automatic/manual rebuild property and connect the "Rebuild" button
[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   /// to know execute or not automatically all update
30   bool isAutomatic;
31   /// execute just created features for sure
32   bool isCreated;
33
34  public:
35   /// Is called only once, on startup of the application
36   Model_Update();
37
38   /// Processes the feature argument update: executes the results
39   MODEL_EXPORT virtual void processEvent(const boost::shared_ptr<Events_Message>& theMessage);
40
41  protected:
42   /// Recoursively checks and updates the feature if needed (calls the execute method)
43   /// Returns true if feature was updated.
44   bool updateFeature(boost::shared_ptr<ModelAPI_Feature> theFeature);
45
46   /// Recoursively checks and updates the object (result or feature) if needed (calls updateFeature)
47   /// Returns true if object was updated.
48   bool updateObject(boost::shared_ptr<ModelAPI_Object> theObject);
49 };
50
51 #endif