Salome HOME
8aa00217e8bbc546b2784ef0999a17a69285842d
[modules/shaper.git] / src / Model / Model_Update.cpp
1 // File:        Model_Update.cxx
2 // Created:     25 Jun 2014
3 // Author:      Mikhail PONIKAROV
4
5 #include <Model_Update.h>
6 #include <Model_Document.h>
7 #include <Model_Data.h>
8 #include <ModelAPI_Feature.h>
9 #include <ModelAPI_Data.h>
10 #include <ModelAPI_Document.h>
11 #include <ModelAPI_Events.h>
12 #include <ModelAPI_AttributeReference.h>
13 #include <ModelAPI_AttributeRefList.h>
14 #include <ModelAPI_AttributeRefAttr.h>
15 #include <ModelAPI_AttributeSelection.h>
16 #include <ModelAPI_AttributeSelectionList.h>
17 #include <ModelAPI_Result.h>
18 #include <ModelAPI_Validator.h>
19 #include <ModelAPI_CompositeFeature.h>
20 #include <ModelAPI_Session.h>
21 #include <Events_Loop.h>
22 #include <Events_LongOp.h>
23 #include <Events_Error.h>
24 #include <Config_PropManager.h>
25
26 using namespace std;
27
28 Model_Update MY_UPDATER_INSTANCE;  /// the only one instance initialized on load of the library
29
30 Model_Update::Model_Update()
31 {
32   Events_Loop* aLoop = Events_Loop::loop();
33   static const Events_ID kChangedEvent = aLoop->eventByName("PreferenceChanged");
34   aLoop->registerListener(this, kChangedEvent);
35   static const Events_ID kRebuildEvent = aLoop->eventByName("Rebuild");
36   aLoop->registerListener(this, kRebuildEvent);
37   static const Events_ID kCreatedEvent = Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED);
38   aLoop->registerListener(this, kCreatedEvent);
39   static const Events_ID kUpdatedEvent = Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED);
40   aLoop->registerListener(this, kUpdatedEvent);
41   static const Events_ID kMovedEvent = Events_Loop::loop()->eventByName(EVENT_OBJECT_MOVED);
42   aLoop->registerListener(this, kMovedEvent);
43   static const Events_ID kOpFinishEvent = aLoop->eventByName("FinishOperation");
44   aLoop->registerListener(this, kOpFinishEvent);
45   static const Events_ID kOpAbortEvent = aLoop->eventByName("AbortOperation");
46   aLoop->registerListener(this, kOpAbortEvent);
47   static const Events_ID kOpStartEvent = aLoop->eventByName("StartOperation");
48   aLoop->registerListener(this, kOpStartEvent);
49
50   Config_PropManager::registerProp("Model update", "automatic_rebuild", "Rebuild immediately",
51                                    Config_Prop::Bool, "false");
52   isAutomatic = Config_PropManager::findProp("Model update", "automatic_rebuild")->value() == "true";
53 }
54
55 void Model_Update::processEvent(const std::shared_ptr<Events_Message>& theMessage)
56 {
57   static Events_Loop* aLoop = Events_Loop::loop();
58   static const Events_ID kChangedEvent = aLoop->eventByName("PreferenceChanged");
59   static const Events_ID kRebuildEvent = aLoop->eventByName("Rebuild");
60   static const Events_ID kCreatedEvent = aLoop->eventByName(EVENT_OBJECT_CREATED);
61   static const Events_ID kUpdatedEvent = aLoop->eventByName(EVENT_OBJECT_UPDATED);
62   static const Events_ID kMovedEvent = Events_Loop::loop()->eventByName(EVENT_OBJECT_MOVED);
63   static const Events_ID kOpFinishEvent = aLoop->eventByName("FinishOperation");
64   static const Events_ID kOpAbortEvent = aLoop->eventByName("AbortOperation");
65   static const Events_ID kOpStartEvent = aLoop->eventByName("StartOperation");
66   bool isAutomaticChanged = false;
67   if (theMessage->eventID() == kChangedEvent) { // automatic and manual rebuild flag is changed
68     isAutomatic = 
69       Config_PropManager::findProp("Model update", "automatic_rebuild")->value() == "true";
70   } else if (theMessage->eventID() == kRebuildEvent) { // the rebuild command
71     if (isAutomatic == false) {
72       isAutomaticChanged = true;
73       isAutomatic = true;
74     }
75   } else if (theMessage->eventID() == kCreatedEvent || theMessage->eventID() == kUpdatedEvent ||
76     theMessage->eventID() == kMovedEvent) {
77     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aMsg =
78         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
79     const std::set<ObjectPtr>& anObjs = aMsg->objects();
80     std::set<ObjectPtr>::const_iterator anObjIter = anObjs.cbegin();
81     for(; anObjIter != anObjs.cend(); anObjIter++) {
82       myJustCreatedOrUpdated.insert(*anObjIter);
83     }
84     if (theMessage->eventID() == kMovedEvent)
85       return; // this event is for solver update, not here
86   } else if (theMessage->eventID() == kOpStartEvent) {
87     myJustCreatedOrUpdated.clear();
88     return; // we don't need the update only on operation start (caused problems in PartSet_Listener::processEvent)
89   } else if (theMessage->eventID() == kOpFinishEvent || theMessage->eventID() == kOpAbortEvent) {
90     if (isAutomatic == false) { // Apply button now works as "Rebuild"
91       isAutomaticChanged = true;
92       isAutomatic = true;
93     }
94     // the hardcode (DBC asked): hide the sketch referenced by extrusion on apply
95     if (theMessage->eventID() == kOpFinishEvent) {
96       std::set<std::shared_ptr<ModelAPI_Object> >::iterator aFIter;
97       for(aFIter = myJustCreatedOrUpdated.begin(); aFIter != myJustCreatedOrUpdated.end(); aFIter++)
98       {
99         FeaturePtr aF = std::dynamic_pointer_cast<ModelAPI_Feature>(*aFIter);
100         if (aF && aF->getKind() == "Extrusion") {
101           if (aF->selection("extrusion_face")) {
102             ResultPtr aSketchRes = aF->selection("extrusion_face")->context();
103             if (aSketchRes) {
104               static Events_ID HIDE_DISP = Events_Loop::loop()->eventByName(EVENT_OBJECT_TOHIDE);
105               ModelAPI_EventCreator::get()->sendUpdated(aSketchRes, HIDE_DISP);
106             }
107           }
108         }
109       }
110     }
111   }
112
113   if (isExecuted)
114     return;  // nothing to do: it is executed now
115
116   //Events_LongOp::start(this);
117   isExecuted = true;
118   std::list<std::shared_ptr<ModelAPI_Document> > aDocs;
119   std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aMsg =
120       std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
121   if (aMsg) myInitial = aMsg->objects();
122   else {
123     myInitial.clear();
124     // on change flag all documents must be updated
125     if (isAutomatic) {
126       aDocs = ModelAPI_Session::get()->allOpenedDocuments();
127     }
128   }
129   // collect all documents involved into the update process
130   set<std::shared_ptr<ModelAPI_Object> >::iterator aFIter = myInitial.begin();
131   for (; aFIter != myInitial.end(); aFIter++) {
132     aDocs.push_back((*aFIter)->document());
133   }
134   // iterate all features of features-documents to update them (including hidden)
135   std::set<std::shared_ptr<ModelAPI_Document> > alreadyUsed;
136   list<std::shared_ptr<ModelAPI_Document> >::iterator aDIter = aDocs.begin();
137   for (; aDIter != aDocs.end(); aDIter++) {
138     if (alreadyUsed.find(*aDIter) != alreadyUsed.end())
139       continue;
140     alreadyUsed.insert(*aDIter);
141     int aNbFeatures = (*aDIter)->size(ModelAPI_Feature::group(), true);
142     for (int aFIndex = 0; aFIndex < aNbFeatures; aFIndex++) {
143       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(
144           (*aDIter)->object(ModelAPI_Feature::group(), aFIndex, true));
145       if (aFeature)
146         updateFeature(aFeature);
147     }
148   }
149   myUpdated.clear();
150   // flush to update display
151   static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
152   aLoop->flush(EVENT_DISP);
153   //Events_LongOp::end(this);
154   if (isAutomaticChanged) isAutomatic = false;
155
156   if (theMessage->eventID() == kOpFinishEvent || theMessage->eventID() == kOpAbortEvent) {
157     myJustCreatedOrUpdated.clear();
158   }
159
160   isExecuted = false;
161 }
162
163 void Model_Update::redisplayWithResults(FeaturePtr theFeature) {
164   // maske updated and redisplay all results
165   static Events_ID EVENT_DISP = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
166   const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = theFeature->results();
167   std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
168   for (; aRIter != aResults.cend(); aRIter++) {
169     std::shared_ptr<ModelAPI_Result> aRes = *aRIter;
170     aRes->data()->mustBeUpdated(false);
171     myUpdated[aRes] = true;
172     ModelAPI_EventCreator::get()->sendUpdated(aRes, EVENT_DISP);
173   }
174   // to redisplay "presentable" feature (for ex. distance constraint)
175   ModelAPI_EventCreator::get()->sendUpdated(theFeature, EVENT_DISP);
176   theFeature->data()->mustBeUpdated(false);
177 }
178
179 bool Model_Update::updateFeature(FeaturePtr theFeature)
180 {
181   // check it is already processed
182   if (myUpdated.find(theFeature) != myUpdated.end())
183     return myUpdated[theFeature];
184   // check all features this feature depended on (recursive call of updateFeature)
185   ModelAPI_ValidatorsFactory* aFactory = ModelAPI_Session::get()->validators();
186   bool aMustbeUpdated = myInitial.find(theFeature) != myInitial.end();
187   if (theFeature) {  // only real feature contains references to other objects
188     if (theFeature->data()->mustBeUpdated()) aMustbeUpdated = true;
189
190     // composite feature must be executed after sub-features execution
191     CompositeFeaturePtr aComposite = 
192       std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theFeature);
193     if (aComposite) {
194       int aSubsNum = aComposite->numberOfSubs();
195       for(int a = 0; a < aSubsNum; a++) {
196         if (updateFeature(aComposite->subFeature(a)))
197           aMustbeUpdated = true;
198       }
199     }
200     // check all references: if referenced objects are updated, this object also must be updated
201     std::list<std::pair<std::string, std::list<ObjectPtr> > > aRefs;
202     std::shared_ptr<Model_Data> aData = 
203       std::dynamic_pointer_cast<Model_Data>(theFeature->data());
204     aData->referencesToObjects(aRefs);
205     std::list<std::pair<std::string, std::list<ObjectPtr> > >::iterator aRef = aRefs.begin();
206     for(; aRef != aRefs.end(); aRef++) {
207       std::list<ObjectPtr>::iterator aRefObj = aRef->second.begin();
208       for(; aRefObj != aRef->second.end(); aRefObj++) {
209         if (updateObject(*aRefObj)) {
210           aMustbeUpdated = true;
211         }
212       }
213     }
214
215     //std::cout<<"Update feature "<<theFeature->getKind()<<" must be updated = "<<aMustbeUpdated<<std::endl;
216     // execute feature if it must be updated
217     if (aMustbeUpdated) {
218       if (std::dynamic_pointer_cast<Model_Document>(theFeature->document())->executeFeatures() ||
219           !theFeature->isPersistentResult()) {
220         if (aFactory->validate(theFeature)) {
221           if (isAutomatic || (myJustCreatedOrUpdated.find(theFeature) != myJustCreatedOrUpdated.end()) ||
222             !theFeature->isPersistentResult() /* execute quick, not persistent results */) 
223           {
224             //std::cout<<"Execute feature "<<theFeature->getKind()<<std::endl;
225             // before execution update the selection attributes if any
226             list<AttributePtr> aRefs = 
227               theFeature->data()->attributes(ModelAPI_AttributeSelection::type());
228             list<AttributePtr>::iterator aRefsIter = aRefs.begin();
229             for (; aRefsIter != aRefs.end(); aRefsIter++) {
230               std::shared_ptr<ModelAPI_AttributeSelection> aSel =
231                 std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(*aRefsIter);
232               aSel->update(); // this must be done on execution since it may be long operation
233             }
234             aRefs = theFeature->data()->attributes(ModelAPI_AttributeSelectionList::type());
235             for (aRefsIter = aRefs.begin(); aRefsIter != aRefs.end(); aRefsIter++) {
236               std::shared_ptr<ModelAPI_AttributeSelectionList> aSel =
237                 std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(*aRefsIter);
238               for(int a = aSel->size() - 1; a >= 0; a--) {
239                   aSel->value(a)->update();
240               }
241             }
242             // for sketch after update of plane (by update of selection attribute)
243             // but before execute, all sub-elements also must be updated (due to the plane changes)
244             if (aComposite) {
245               int aSubsNum = aComposite->numberOfSubs();
246               for(int a = 0; a < aSubsNum; a++) {
247                 FeaturePtr aSub = aComposite->subFeature(a);
248                 bool aWasModified = myUpdated[aSub];
249                 myUpdated.erase(myUpdated.find(aSub)); // erase to update for sure (plane may be changed)
250                 myInitial.insert(aSub);
251                 updateFeature(aSub);
252                 myUpdated[aSub] = aWasModified; // restore value
253               }
254               // re-execute after update: solver may update the previous values, so, shapes must be
255               // updated
256               for(int a = 0; a < aSubsNum; a++) {
257                 if (aComposite->subFeature(a) && aFactory->validate(aComposite->subFeature(a)))
258                   aComposite->subFeature(a)->execute();
259               }
260             }
261
262             // execute in try-catch to avoid internal problems of the feature
263             try {
264               theFeature->execute();
265             } catch(...) {
266               Events_Error::send(
267                 "Feature " + theFeature->getKind() + " has failed during the execution");
268               theFeature->eraseResults();
269             }
270             redisplayWithResults(theFeature);
271           } else { // must be updatet, but not updated yet
272             theFeature->data()->mustBeUpdated(true);
273             const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = theFeature->results();
274             std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
275             for (; aRIter != aResults.cend(); aRIter++) {
276               std::shared_ptr<ModelAPI_Result> aRes = *aRIter;
277               aRes->data()->mustBeUpdated(true);
278             }
279           }
280         } else {
281           theFeature->eraseResults();
282           redisplayWithResults(theFeature); // result also must be updated
283         }
284       } else { // for automatically updated features (on abort, etc) it is necessary to redisplay anyway
285         redisplayWithResults(theFeature);
286       }
287     } else {  // returns also true is results were updated: for sketch that refers to sub-features but results of sub-features were changed
288       const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = theFeature->results();
289       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
290       for (; aRIter != aResults.cend(); aRIter++) {
291         if (myInitial.find(*aRIter) != myInitial.end()) {
292           aMustbeUpdated = true;
293           break;
294         }
295       }
296     }
297   }
298   myUpdated[theFeature] = aMustbeUpdated;
299   return aMustbeUpdated;
300 }
301
302 bool Model_Update::updateObject(std::shared_ptr<ModelAPI_Object> theObject, const bool theCyclic)
303 {
304   if (myUpdated.find(theObject) != myUpdated.end())
305     return myUpdated[theObject];  // already processed
306
307   /*
308   if (theCyclic) { // algorithm for update of all features by dependencies tree
309     if (!theObject)
310       return false;
311     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
312     if (aFeature) {  // for feature just call update Feature
313       return updateFeature(aFeature);
314     }
315     // check general object, possible just a result
316     if (myUpdated.find(theObject) != myUpdated.end())
317       return myUpdated[theObject];  // already processed
318     // check the feature of this object must be executed
319     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
320     if (aResult) {
321       FeaturePtr aResFeature = aResult->document()->feature(aResult);
322       if (aResFeature) {
323         return updateFeature(aResFeature);
324       }
325     }
326   }
327   */
328   return myInitial.find(theObject) != myInitial.end();
329 }