]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Objects.cpp
Salome HOME
8c65194fdae3da149160f0cd33b16a3e890fbe92
[modules/shaper.git] / src / Model / Model_Objects.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_Objects.cxx
4 // Created:     15 May 2015
5 // Author:      Mikhail PONIKAROV
6
7 #include <Model_Objects.h>
8 #include <Model_Data.h>
9 #include <Model_Document.h>
10 #include <Model_Events.h>
11 #include <Model_Session.h>
12 #include <Model_ResultPart.h>
13 #include <Model_ResultConstruction.h>
14 #include <Model_ResultBody.h>
15 #include <Model_ResultCompSolid.h>
16 #include <Model_ResultGroup.h>
17 #include <Model_ResultParameter.h>
18 #include <ModelAPI_Validator.h>
19 #include <ModelAPI_CompositeFeature.h>
20 #include <ModelAPI_Tools.h>
21
22 #include <Events_Loop.h>
23 #include <Events_Error.h>
24
25 #include <TDataStd_Integer.hxx>
26 #include <TDataStd_Comment.hxx>
27 #include <TDF_ChildIDIterator.hxx>
28 #include <TDataStd_ReferenceArray.hxx>
29 #include <TDataStd_HLabelArray1.hxx>
30 #include <TDataStd_Name.hxx>
31 #include <TDF_Reference.hxx>
32 #include <TDF_ChildIDIterator.hxx>
33 #include <TDF_LabelMapHasher.hxx>
34 #include <TDF_LabelMap.hxx>
35 #include <TDF_ListIteratorOfLabelList.hxx>
36
37 static const int TAG_OBJECTS = 2;  // tag of the objects sub-tree (features, results)
38
39 // feature sub-labels
40 static const int TAG_FEATURE_ARGUMENTS = 1;  ///< where the arguments are located
41 static const int TAG_FEATURE_RESULTS = 2;  ///< where the results are located
42
43 ///
44 /// 0:1:2 - where features are located
45 /// 0:1:2:N:1 - data of the feature N
46 /// 0:1:2:N:2:K:1 - data of the K result of the feature N
47
48 Model_Objects::Model_Objects(TDF_Label theMainLab) : myMain(theMainLab)
49 {
50 }
51
52 void Model_Objects::setOwner(DocumentPtr theDoc)
53 {
54   myDoc = theDoc;
55   // update all fields and recreate features and result objects if needed
56   TDF_LabelList aNoUpdated;
57   synchronizeFeatures(aNoUpdated, true, true);
58   myHistory.clear();
59 }
60
61 Model_Objects::~Model_Objects()
62 {
63   // delete all features of this document
64   Events_Loop* aLoop = Events_Loop::loop();
65   // erase one by one to avoid access from the feature destructor itself from he map
66   while(!myFeatures.IsEmpty()) {
67     NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFeaturesIter(myFeatures);
68     FeaturePtr aFeature = aFeaturesIter.Value();
69     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
70     ModelAPI_EventCreator::get()->sendDeleted(myDoc, ModelAPI_Feature::group());
71     ModelAPI_EventCreator::get()->sendUpdated(aFeature, EVENT_DISP);
72     aFeature->eraseResults();
73     aFeature->erase();
74     myFeatures.UnBind(aFeaturesIter.Key());
75   }
76   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_DELETED));
77   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
78
79 }
80
81 /// Appends to the array of references a new referenced label
82 static void AddToRefArray(TDF_Label& theArrayLab, TDF_Label& theReferenced, TDF_Label& thePrevLab)
83 {
84   Handle(TDataStd_ReferenceArray) aRefs;
85   if (!theArrayLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
86     aRefs = TDataStd_ReferenceArray::Set(theArrayLab, 0, 0);
87     aRefs->SetValue(0, theReferenced);
88   } else {  // extend array by one more element
89     Handle(TDataStd_HLabelArray1) aNewArray = new TDataStd_HLabelArray1(aRefs->Lower(),
90                                                                         aRefs->Upper() + 1);
91     int aPassedPrev = 0; // prev feature is found and passed
92     if (thePrevLab.IsNull()) { // null means that inserted feature must be the first
93       aNewArray->SetValue(aRefs->Lower(), theReferenced);
94       aPassedPrev = 1;
95     }
96     for (int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
97       aNewArray->SetValue(a + aPassedPrev, aRefs->Value(a));
98       if (!aPassedPrev && aRefs->Value(a).IsEqual(thePrevLab)) {
99         aPassedPrev = 1;
100         aNewArray->SetValue(a + 1, theReferenced);
101       }
102     }
103     if (!aPassedPrev) // not found: unknown situation
104       aNewArray->SetValue(aRefs->Upper() + 1, theReferenced);
105     aRefs->SetInternalArray(aNewArray);
106   }
107 }
108
109 void Model_Objects::addFeature(FeaturePtr theFeature, const FeaturePtr theAfterThis)
110 {
111   if (!theFeature->isAction()) {  // do not add action to the data model
112     TDF_Label aFeaturesLab = featuresLabel();
113     TDF_Label aFeatureLab = aFeaturesLab.NewChild();
114     // store feature in the features array: before "initData" because in macro features
115     // in initData it creates new features, appeared later than this
116     TDF_Label aPrevFeateureLab;
117     if (theAfterThis.get()) { // searching for the previous feature label
118       std::shared_ptr<Model_Data> aPrevData = 
119         std::dynamic_pointer_cast<Model_Data>(theAfterThis->data());
120       if (aPrevData.get()) {
121         aPrevFeateureLab = aPrevData->label().Father();
122       }
123     }
124     AddToRefArray(aFeaturesLab, aFeatureLab, aPrevFeateureLab);
125
126     // keep the feature ID to restore document later correctly
127     TDataStd_Comment::Set(aFeatureLab, theFeature->getKind().c_str());
128     myFeatures.Bind(aFeatureLab, theFeature);
129     // must be after binding to the map because of "Box" macro feature that 
130     // creates other features in "initData"
131     initData(theFeature, aFeatureLab, TAG_FEATURE_ARGUMENTS);
132     // event: feature is added
133     static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
134     ModelAPI_EventCreator::get()->sendUpdated(theFeature, anEvent);
135     theFeature->setDisabled(false); // by default created feature is enabled
136     updateHistory(ModelAPI_Feature::group());
137   } else { // make feature has not-null data anyway
138     theFeature->setData(Model_Data::invalidData());
139     theFeature->setDoc(myDoc);
140   }
141 }
142
143 /// Appends to the array of references a new referenced label.
144 /// If theIndex is not -1, removes element at this index, not theReferenced.
145 /// \returns the index of removed element
146 static int RemoveFromRefArray(TDF_Label theArrayLab, TDF_Label theReferenced, 
147   const int theIndex = -1)
148 {
149   int aResult = -1;  // no returned
150   Handle(TDataStd_ReferenceArray) aRefs;
151   if (theArrayLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
152     if (aRefs->Length() == 1) {  // just erase an array
153       if ((theIndex == -1 && aRefs->Value(0) == theReferenced) || theIndex == 0) {
154         theArrayLab.ForgetAttribute(TDataStd_ReferenceArray::GetID());
155       }
156       aResult = 0;
157     } else {  // reduce the array
158       Handle(TDataStd_HLabelArray1) aNewArray = new TDataStd_HLabelArray1(aRefs->Lower(),
159                                                                           aRefs->Upper() - 1);
160       int aCount = aRefs->Lower();
161       for (int a = aCount; a <= aRefs->Upper(); a++, aCount++) {
162         if ((theIndex == -1 && aRefs->Value(a) == theReferenced) || theIndex == a) {
163           aCount--;
164           aResult = a;
165         } else {
166           aNewArray->SetValue(aCount, aRefs->Value(a));
167         }
168       }
169       aRefs->SetInternalArray(aNewArray);
170     }
171   }
172   return aResult;
173 }
174
175 void Model_Objects::refsToFeature(FeaturePtr theFeature,
176   std::set<std::shared_ptr<ModelAPI_Feature> >& theRefs, const bool isSendError)
177 {
178   // check the feature: it must have no depended objects on it
179   // the dependencies can be in the feature results
180   std::list<ResultPtr>::const_iterator aResIter = theFeature->results().cbegin();
181   for(; aResIter != theFeature->results().cend(); aResIter++) {
182     ResultPtr aResult = (*aResIter);
183     std::shared_ptr<Model_Data> aData = 
184       std::dynamic_pointer_cast<Model_Data>(aResult->data());
185     if (aData.get() != NULL) {
186       const std::set<AttributePtr>& aRefs = aData->refsToMe();
187       std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin(), aRefLast = aRefs.end();
188       for(; aRefIt != aRefLast; aRefIt++) {
189         FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRefIt)->owner());
190         if (aFeature.get() != NULL)
191           theRefs.insert(aFeature);
192       }
193     }
194   }
195   // the dependencies can be in the feature itself
196   std::shared_ptr<Model_Data> aData = 
197       std::dynamic_pointer_cast<Model_Data>(theFeature->data());
198   if (aData && !aData->refsToMe().empty()) {
199     const std::set<AttributePtr>& aRefs = aData->refsToMe();
200     std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin(), aRefLast = aRefs.end();
201     for(; aRefIt != aRefLast; aRefIt++) {
202       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRefIt)->owner());
203       if (aFeature.get() != NULL)
204         theRefs.insert(aFeature);
205     }
206   }
207
208   if (!theRefs.empty() && isSendError) {
209     Events_Error::send(
210       "Feature '" + theFeature->data()->name() + "' is used and can not be deleted");
211   }
212 }
213
214 void Model_Objects::removeFeature(FeaturePtr theFeature)
215 {
216   std::shared_ptr<Model_Data> aData = std::static_pointer_cast<Model_Data>(theFeature->data());
217   if (aData && aData->isValid()) {
218     // checking that the sub-element of composite feature is removed: if yes, inform the owner
219     std::set<std::shared_ptr<ModelAPI_Feature> > aRefs;
220     refsToFeature(theFeature, aRefs, false);
221     std::set<std::shared_ptr<ModelAPI_Feature> >::iterator aRefIter = aRefs.begin();
222     for(; aRefIter != aRefs.end(); aRefIter++) {
223       std::shared_ptr<ModelAPI_CompositeFeature> aComposite = 
224         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*aRefIter);
225       if (aComposite.get()) {
226         aComposite->removeFeature(theFeature);
227       }
228     }
229     // this must be before erase since theFeature erasing removes all information about
230     // the feature results and groups of results
231     // To reproduce: create sketch, extrusion, remove sketch => constructions tree is not updated
232     clearHistory(theFeature);
233     // erase fields
234     theFeature->erase();
235
236     TDF_Label aFeatureLabel = aData->label().Father();
237     if (myFeatures.IsBound(aFeatureLabel))
238       myFeatures.UnBind(aFeatureLabel);
239
240     static Events_ID EVENT_DISP = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
241     ModelAPI_EventCreator::get()->sendUpdated(theFeature, EVENT_DISP);
242     // erase all attributes under the label of feature
243     aFeatureLabel.ForgetAllAttributes();
244     // remove it from the references array
245     RemoveFromRefArray(featuresLabel(), aFeatureLabel);
246     // event: feature is deleted
247     ModelAPI_EventCreator::get()->sendDeleted(theFeature->document(), ModelAPI_Feature::group());
248     // the redisplay signal should be flushed in order to erase the feature presentation in the viewer
249     Events_Loop::loop()->flush(EVENT_DISP);
250     updateHistory(ModelAPI_Feature::group());
251   }
252 }
253
254 void Model_Objects::moveFeature(FeaturePtr theMoved, FeaturePtr theAfterThis)
255 {
256   TDF_Label aFeaturesLab = featuresLabel();
257   Handle(TDataStd_ReferenceArray) aRefs;
258   if (!aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
259     return;
260   TDF_Label anAfterLab, aMovedLab = 
261     std::dynamic_pointer_cast<Model_Data>(theMoved->data())->label().Father();
262   if (theAfterThis.get())
263     anAfterLab = std::dynamic_pointer_cast<Model_Data>(theAfterThis->data())->label().Father();
264
265   Handle(TDataStd_HLabelArray1) aNewArray = 
266     new TDataStd_HLabelArray1(aRefs->Lower(), aRefs->Upper());
267   int aPassedMovedFrom = 0; // the prev feature location is found and passed
268   int aPassedMovedTo = 0; // the feature is added and this location is passed
269   if (!theAfterThis.get()) { // null means that inserted feature must be the first
270     aNewArray->SetValue(aRefs->Lower(), aMovedLab);
271     aPassedMovedTo = 1;
272   }
273   for (int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
274     if (aPassedMovedTo == 0 && aRefs->Value(a) == anAfterLab) { // add two
275       aPassedMovedTo++;
276       aNewArray->SetValue(a - aPassedMovedFrom, anAfterLab);
277       if (a + 1 - aPassedMovedFrom <= aRefs->Upper())
278         aNewArray->SetValue(a + 1 - aPassedMovedFrom, aMovedLab);
279     } else if (aPassedMovedFrom == 0 && aRefs->Value(a) == aMovedLab) { // skip
280       aPassedMovedFrom++;
281     } else { // just copy one
282       if (a - aPassedMovedFrom + aPassedMovedTo <= aRefs->Upper())
283         aNewArray->SetValue(a - aPassedMovedFrom + aPassedMovedTo, aRefs->Value(a));
284     }
285   }
286   if (!aPassedMovedFrom || !aPassedMovedTo) {// not found: unknown situation
287     if (!aPassedMovedFrom) {
288       static std::string aMovedFromError("The moved feature is not found");
289       Events_Error::send(aMovedFromError);
290     } else {
291       static std::string aMovedToError("The 'after' feature for movement is not found");
292       Events_Error::send(aMovedToError);
293     }
294     return;
295   }
296   // store the new array
297   aRefs->SetInternalArray(aNewArray);
298   // update the feature and the history
299   clearHistory(theMoved);
300   // make sure all (selection) attributes of moved feature will be updated
301   theMoved->data()->setUpdateID(0);
302   static Events_ID EVENT_UPD = Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED);
303   ModelAPI_EventCreator::get()->sendUpdated(theMoved, EVENT_UPD);
304 }
305
306 void Model_Objects::clearHistory(ObjectPtr theObj)
307 {
308   if (theObj) {
309     const std::string aGroup = theObj->groupName();
310     std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter = myHistory.find(aGroup);
311     if (aHIter != myHistory.end())
312       myHistory.erase(aHIter); // erase from map => this means that it is not synchronized
313     if (theObj->groupName() == ModelAPI_Feature::group()) { // clear results group of the feature
314       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObj);
315       std::string aResultGroup = featureResultGroup(aFeature);
316       if (!aResultGroup.empty()) {
317         std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter = 
318           myHistory.find(aResultGroup);
319         if (aHIter != myHistory.end())
320           myHistory.erase(aHIter); // erase from map => this means that it is not synchronized
321       }
322     }
323   }
324 }
325
326 void Model_Objects::createHistory(const std::string& theGroupID)
327 {
328   std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter = myHistory.find(theGroupID);
329   if (aHIter == myHistory.end()) {
330     myHistory[theGroupID] = std::vector<ObjectPtr>();
331     std::vector<ObjectPtr>& aResult = myHistory[theGroupID];
332     // iterate the array of references and get feature by feature from the array
333     bool isFeature = theGroupID == ModelAPI_Feature::group();
334     Handle(TDataStd_ReferenceArray) aRefs;
335     if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
336       for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
337         FeaturePtr aFeature = feature(aRefs->Value(a));
338         if (aFeature.get()) {
339           // if feature is in sub-component, remove it from history: it is in sub-tree of sub-component
340           if (!ModelAPI_Tools::compositeOwner(aFeature).get()) {
341             if (isFeature) { // here may be also disabled features
342               if (aFeature->isInHistory()) {
343                 aResult.push_back(aFeature);
344               }
345             } else if (!aFeature->isDisabled()) { // iterate all results of not-disabled feature
346               const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
347               std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
348               for (; aRIter != aResults.cend(); aRIter++) {
349                 ResultPtr aRes = *aRIter;
350                 if (aRes->groupName() != theGroupID) break; // feature have only same group results
351                 if (!aRes->isDisabled() && aRes->isInHistory() && !aRes->isConcealed()) {
352                   aResult.push_back(*aRIter);
353                 }
354               }
355             }
356           }
357         }
358       }
359     }
360   }
361 }
362
363 void Model_Objects::updateHistory(const std::shared_ptr<ModelAPI_Object> theObject)
364 {
365   clearHistory(theObject);
366 }
367
368 void Model_Objects::updateHistory(const std::string theGroup)
369 {
370   std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter = myHistory.find(theGroup);
371   if (aHIter != myHistory.end())
372     myHistory.erase(aHIter); // erase from map => this means that it is not synchronized
373 }
374
375 FeaturePtr Model_Objects::feature(TDF_Label theLabel) const
376 {
377   if (myFeatures.IsBound(theLabel))
378     return myFeatures.Find(theLabel);
379   return FeaturePtr();  // not found
380 }
381
382 ObjectPtr Model_Objects::object(TDF_Label theLabel)
383 {
384   // try feature by label
385   FeaturePtr aFeature = feature(theLabel);
386   if (aFeature)
387     return feature(theLabel);
388   TDF_Label aFeatureLabel = theLabel.Father().Father();  // let's suppose it is result
389   aFeature = feature(aFeatureLabel);
390   bool isSubResult = false;
391   if (!aFeature.get() && aFeatureLabel.Depth() > 1) { // let's suppose this is sub-result of result
392     aFeatureLabel = aFeatureLabel.Father().Father();
393     aFeature = feature(aFeatureLabel);
394     isSubResult = true;
395   }
396   if (aFeature) {
397     const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
398     std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.cbegin();
399     for (; aRIter != aResults.cend(); aRIter++) {
400       if (isSubResult) {
401         ResultCompSolidPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(*aRIter);
402         if (aCompRes) {
403           int aNumSubs = aCompRes->numberOfSubs();
404           for(int a = 0; a < aNumSubs; a++) {
405             ResultPtr aSub = aCompRes->subResult(a);
406             if (aSub.get()) {
407               std::shared_ptr<Model_Data> aSubData = std::dynamic_pointer_cast<Model_Data>(
408                   aSub->data());
409               if (aSubData->label().Father().IsEqual(theLabel))
410                 return aSub;
411             }
412           }
413         }
414       } else {
415         std::shared_ptr<Model_Data> aResData = std::dynamic_pointer_cast<Model_Data>(
416             (*aRIter)->data());
417         if (aResData->label().Father().IsEqual(theLabel))
418           return *aRIter;
419       }
420     }
421   }
422   return FeaturePtr();  // not found
423 }
424
425 ObjectPtr Model_Objects::object(const std::string& theGroupID, const int theIndex)
426 {
427   if (theIndex == -1)
428     return ObjectPtr();
429   createHistory(theGroupID);
430   return myHistory[theGroupID][theIndex];
431 }
432
433 std::shared_ptr<ModelAPI_Object> Model_Objects::objectByName(
434     const std::string& theGroupID, const std::string& theName)
435 {
436   createHistory(theGroupID);
437   std::vector<ObjectPtr>& allObjs = myHistory[theGroupID];
438   std::vector<ObjectPtr>::iterator anObjIter = allObjs.begin();
439   for(; anObjIter != allObjs.end(); anObjIter++) {
440     if ((*anObjIter)->data()->name() == theName)
441       return *anObjIter;
442   }
443   // not found
444   return ObjectPtr();
445 }
446
447 const int Model_Objects::index(std::shared_ptr<ModelAPI_Object> theObject)
448 {
449   std::string aGroup = theObject->groupName();
450   createHistory(aGroup);
451   std::vector<ObjectPtr>& allObjs = myHistory[aGroup];
452   std::vector<ObjectPtr>::iterator anObjIter = allObjs.begin(); // iterate to search object
453   for(int anIndex = 0; anObjIter != allObjs.end(); anObjIter++, anIndex++) {
454     if ((*anObjIter) == theObject)
455       return anIndex;
456   }
457   // not found
458   return -1;
459 }
460
461 int Model_Objects::size(const std::string& theGroupID)
462 {
463   createHistory(theGroupID);
464   return myHistory[theGroupID].size();
465 }
466
467 void Model_Objects::allResults(const std::string& theGroupID, std::list<ResultPtr>& theResults)
468 {
469   // iterate the array of references and get feature by feature from the array
470   Handle(TDataStd_ReferenceArray) aRefs;
471   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
472     for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
473       FeaturePtr aFeature = feature(aRefs->Value(a));
474       if (aFeature.get()) {
475         const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
476         std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
477         for (; aRIter != aResults.cend(); aRIter++) {
478           ResultPtr aRes = *aRIter;
479           if (aRes->groupName() != theGroupID) break; // feature have only same group results
480           // iterate also concealed: ALL RESULTS (for translation parts undo/redo management)
481           //if (aRes->isInHistory() && !aRes->isConcealed()) {
482             theResults.push_back(*aRIter);
483           //}
484         }
485       }
486     }
487   }
488 }
489
490
491 TDF_Label Model_Objects::featuresLabel() const
492 {
493   return myMain.FindChild(TAG_OBJECTS);
494 }
495
496 void Model_Objects::setUniqueName(FeaturePtr theFeature)
497 {
498   if (!theFeature->data()->name().empty())
499     return;  // not needed, name is already defined
500   std::string aName;  // result
501   // first count all features of such kind to start with index = count + 1
502   int aNumObjects = -1; // this feature is already in this map
503   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFIter(myFeatures);
504   for (; aFIter.More(); aFIter.Next()) {
505     if (aFIter.Value()->getKind() == theFeature->getKind())
506       aNumObjects++;
507   }
508   // generate candidate name
509   std::stringstream aNameStream;
510   aNameStream << theFeature->getKind() << "_" << aNumObjects + 1;
511   aName = aNameStream.str();
512   // check this is unique, if not, increase index by 1
513   for (aFIter.Initialize(myFeatures); aFIter.More();) {
514     FeaturePtr aFeature = aFIter.Value();
515     bool isSameName = aFeature->data()->name() == aName;
516     if (!isSameName) {  // check also results to avoid same results names (actual for Parts)
517       const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
518       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
519       for (; aRIter != aResults.cend(); aRIter++) {
520         isSameName = (*aRIter)->data()->name() == aName;
521       }
522     }
523     if (isSameName) {
524       aNumObjects++;
525       std::stringstream aNameStream;
526       aNameStream << theFeature->getKind() << "_" << aNumObjects + 1;
527       aName = aNameStream.str();
528       // reinitialize iterator to make sure a new name is unique
529       aFIter.Initialize(myFeatures);
530     } else
531       aFIter.Next();
532   }
533   theFeature->data()->setName(aName);
534 }
535
536 void Model_Objects::initData(ObjectPtr theObj, TDF_Label theLab, const int theTag)
537 {
538   std::shared_ptr<Model_Data> aData(new Model_Data);
539   aData->setLabel(theLab.FindChild(theTag));
540   aData->setObject(theObj);
541   theObj->setDoc(myDoc);
542   theObj->setData(aData);
543   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObj);
544   if (aFeature) {
545     setUniqueName(aFeature);  // must be before "initAttributes" because duplicate part uses name
546   }
547   theObj->initAttributes();
548 }
549
550 void Model_Objects::synchronizeFeatures(
551   const TDF_LabelList& theUpdated, const bool theUpdateReferences, const bool theFlush)
552 {
553   Model_Document* anOwner = std::dynamic_pointer_cast<Model_Document>(myDoc).get();
554   if (!anOwner) // this may happen on creation of document: nothing there, so nothing to synchronize
555     return;
556   // after all updates, sends a message that groups of features were created or updated
557   Events_Loop* aLoop = Events_Loop::loop();
558   static Events_ID aDispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
559   static Events_ID aCreateEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
560   static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
561   static Events_ID aRedispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
562   static Events_ID aDeleteEvent = Events_Loop::eventByName(EVENT_OBJECT_DELETED);
563   static Events_ID aToHideEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
564   bool isActive = aLoop->activateFlushes(false);
565
566   // collect all updated labels map
567   TDF_LabelMap anUpdatedMap;
568   TDF_ListIteratorOfLabelList anUpdatedIter(theUpdated);
569   for(; anUpdatedIter.More(); anUpdatedIter.Next()) {
570     TDF_Label& aFeatureLab = anUpdatedIter.Value();
571     while(aFeatureLab.Depth() > 3)
572       aFeatureLab = aFeatureLab.Father();
573     if (myFeatures.IsBound(aFeatureLab))
574       anUpdatedMap.Add(aFeatureLab);
575   }
576
577   // update all objects by checking are they on labels or not
578   std::set<FeaturePtr> aNewFeatures, aKeptFeatures;
579   TDF_ChildIDIterator aLabIter(featuresLabel(), TDataStd_Comment::GetID());
580   for (; aLabIter.More(); aLabIter.Next()) {
581     TDF_Label aFeatureLabel = aLabIter.Value()->Label();
582     FeaturePtr aFeature;
583     if (!myFeatures.IsBound(aFeatureLabel)) {  // a new feature is inserted
584       // create a feature
585       aFeature = std::dynamic_pointer_cast<Model_Session>(ModelAPI_Session::get())->createFeature(
586         TCollection_AsciiString(Handle(TDataStd_Comment)::DownCast(aLabIter.Value())->Get())
587         .ToCString(), anOwner);
588       if (!aFeature) {  // somethig is wrong, most probably, the opened document has invalid structure
589         Events_Error::send("Invalid type of object in the document");
590         aLabIter.Value()->Label().ForgetAllAttributes();
591         continue;
592       }
593       // this must be before "setData" to redo the sketch line correctly
594       myFeatures.Bind(aFeatureLabel, aFeature);
595       aNewFeatures.insert(aFeature);
596       initData(aFeature, aFeatureLabel, TAG_FEATURE_ARGUMENTS);
597       updateHistory(aFeature);
598       aFeature->setDisabled(false); // by default created feature is enabled (this allows to recreate the results before "setCurrent" is called)
599
600       // event: model is updated
601       ModelAPI_EventCreator::get()->sendUpdated(aFeature, aCreateEvent);
602     } else {  // nothing is changed, both iterators are incremented
603       aFeature = myFeatures.Find(aFeatureLabel);
604       aKeptFeatures.insert(aFeature);
605       if (anUpdatedMap.Contains(aFeatureLabel)) {
606         ModelAPI_EventCreator::get()->sendUpdated(aFeature, anUpdateEvent);
607       }
608     }
609   }
610
611   // check all features are checked: if not => it was removed
612   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFIter(myFeatures);
613   while (aFIter.More()) {
614     if (aKeptFeatures.find(aFIter.Value()) == aKeptFeatures.end()
615       && aNewFeatures.find(aFIter.Value()) == aNewFeatures.end()) {
616         FeaturePtr aFeature = aFIter.Value();
617         // event: model is updated
618         //if (aFeature->isInHistory()) {
619         ModelAPI_EventCreator::get()->sendDeleted(myDoc, ModelAPI_Feature::group());
620         //}
621         // results of this feature must be redisplayed (hided)
622         // redisplay also removed feature (used for sketch and AISObject)
623         ModelAPI_EventCreator::get()->sendUpdated(aFeature, aRedispEvent);
624         updateHistory(aFeature);
625         aFeature->erase();
626         // unbind after the "erase" call: on abort sketch is removes sub-objects that corrupts aFIter
627         myFeatures.UnBind(aFIter.Key());
628         // reinitialize iterator because unbind may corrupt the previous order in the map
629         aFIter.Initialize(myFeatures);
630     } else
631       aFIter.Next();
632   }
633
634   if (theUpdateReferences) {
635     synchronizeBackRefs();
636   }
637   // update results of the features (after features created because they may be connected, like sketch and sub elements)
638   // After synchronisation of back references because sketch must be set in sub-elements before "execute" by updateResults
639   std::list<FeaturePtr> aComposites; // composites must be updated after their subs (issue 360)
640   TDF_ChildIDIterator aLabIter2(featuresLabel(), TDataStd_Comment::GetID());
641   for (; aLabIter2.More(); aLabIter2.Next()) {
642     TDF_Label aFeatureLabel = aLabIter2.Value()->Label();
643     if (myFeatures.IsBound(aFeatureLabel)) {  // a new feature is inserted
644       FeaturePtr aFeature = myFeatures.Find(aFeatureLabel);
645       if (std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature).get())
646         aComposites.push_back(aFeature);
647       updateResults(aFeature);
648     }
649   }
650   std::list<FeaturePtr>::iterator aComposite = aComposites.begin();
651   for(; aComposite != aComposites.end(); aComposite++) {
652     updateResults(*aComposite);
653   }
654
655   // the synchronize should be done after updateResults in order to correct back references of updated results
656   if (theUpdateReferences) {
657     synchronizeBackRefs();
658   }
659   if (!theUpdated.IsEmpty()) { // this means there is no control what was modified => remove history cash
660     myHistory.clear();
661   }
662
663   anOwner->executeFeatures() = false;
664   aLoop->activateFlushes(isActive);
665
666   if (theFlush) {
667     aLoop->flush(aCreateEvent);
668     aLoop->flush(aDeleteEvent);
669     aLoop->flush(anUpdateEvent);
670     aLoop->flush(aCreateEvent); // after update of features, there could be results created
671     aLoop->flush(aDeleteEvent); // or deleted
672     aLoop->flush(aRedispEvent);
673     aLoop->flush(aToHideEvent);
674   }
675   anOwner->executeFeatures() = true;
676 }
677
678 void Model_Objects::synchronizeBackRefs()
679 {
680   // keeps the concealed flags of result to catch the change and create created/deleted events
681   std::list<std::pair<ResultPtr, bool> > aConcealed;
682   // first cycle: erase all data about back-references
683   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFeatures(myFeatures);
684   for(; aFeatures.More(); aFeatures.Next()) {
685     FeaturePtr aFeature = aFeatures.Value();
686     std::shared_ptr<Model_Data> aFData = 
687       std::dynamic_pointer_cast<Model_Data>(aFeature->data());
688     if (aFData) {
689       aFData->eraseBackReferences();
690     }
691     const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
692     std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
693     for (; aRIter != aResults.cend(); aRIter++) {
694       std::shared_ptr<Model_Data> aResData = 
695         std::dynamic_pointer_cast<Model_Data>((*aRIter)->data());
696       if (aResData.get()) {
697         aConcealed.push_back(std::pair<ResultPtr, bool>(*aRIter, (*aRIter)->isConcealed()));
698         aResData->eraseBackReferences();
699       }
700       // iterate sub-bodies of compsolid
701       ResultCompSolidPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(*aRIter);
702       if (aComp.get()) {
703         int aNumSub = aComp->numberOfSubs();
704         for(int a = 0; a < aNumSub; a++) {
705           ResultPtr aSub = aComp->subResult(a);
706           std::shared_ptr<Model_Data> aResData = 
707             std::dynamic_pointer_cast<Model_Data>(aSub->data());
708           if (aResData.get()) {
709             aConcealed.push_back(std::pair<ResultPtr, bool>(aSub, aSub->isConcealed()));
710             aResData->eraseBackReferences();
711           }
712         }
713       }
714     }
715   }
716
717   // second cycle: set new back-references: only features may have reference, iterate only them
718   ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
719   for(aFeatures.Initialize(myFeatures); aFeatures.More(); aFeatures.Next()) {
720     FeaturePtr aFeature = aFeatures.Value();
721     std::shared_ptr<Model_Data> aFData = 
722       std::dynamic_pointer_cast<Model_Data>(aFeature->data());
723     if (aFData) {
724       std::list<std::pair<std::string, std::list<ObjectPtr> > > aRefs;
725       aFData->referencesToObjects(aRefs);
726       std::list<std::pair<std::string, std::list<ObjectPtr> > >::iterator 
727         aRefsIter = aRefs.begin();
728       for(; aRefsIter != aRefs.end(); aRefsIter++) {
729         std::list<ObjectPtr>::iterator aRefTo = aRefsIter->second.begin();
730         for(; aRefTo != aRefsIter->second.end(); aRefTo++) {
731           if (*aRefTo) {
732             std::shared_ptr<Model_Data> aRefData = 
733               std::dynamic_pointer_cast<Model_Data>((*aRefTo)->data());
734             aRefData->addBackReference(aFeature, aRefsIter->first); // here the Concealed flag is updated
735             // update enable/disable status: the nested status must be equal to the composite
736             CompositeFeaturePtr aComp = 
737               std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
738             if (aComp.get()) {
739               FeaturePtr aReferenced = std::dynamic_pointer_cast<ModelAPI_Feature>(*aRefTo);
740               if (aReferenced.get()) {
741                 aReferenced->setDisabled(aComp->isDisabled());
742               }
743             }
744           }
745         }
746       }
747     }
748   }
749   std::list<std::pair<ResultPtr, bool> >::iterator aCIter = aConcealed.begin();
750   for(; aCIter != aConcealed.end(); aCIter++) {
751     if (aCIter->first->isConcealed() != aCIter->second) { // somethign is changed => produce event
752       if (aCIter->second) { // was concealed become not => creation event
753         static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
754         ModelAPI_EventCreator::get()->sendUpdated(aCIter->first, anEvent);
755       } else { // was not concealed become concealed => delete event
756         ModelAPI_EventCreator::get()->sendDeleted(myDoc, aCIter->first->groupName());
757         // redisplay for the viewer (it must be disappeared also)
758         static Events_ID EVENT_DISP = 
759           Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
760         ModelAPI_EventCreator::get()->sendUpdated(aCIter->first, EVENT_DISP);
761       }
762     }
763   }
764 }
765
766 TDF_Label Model_Objects::resultLabel(
767   const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theResultIndex) 
768 {
769   const std::shared_ptr<Model_Data>& aData = 
770     std::dynamic_pointer_cast<Model_Data>(theFeatureData);
771   return aData->label().Father().FindChild(TAG_FEATURE_RESULTS).FindChild(theResultIndex + 1);
772 }
773
774 void Model_Objects::storeResult(std::shared_ptr<ModelAPI_Data> theFeatureData,
775                                  std::shared_ptr<ModelAPI_Result> theResult,
776                                  const int theResultIndex)
777 {
778   theResult->setDoc(myDoc);
779   initData(theResult, resultLabel(theFeatureData, theResultIndex), TAG_FEATURE_ARGUMENTS);
780   if (theResult->data()->name().empty()) {  // if was not initialized, generate event and set a name
781     std::stringstream aNewName;
782     aNewName<<theFeatureData->name();
783     // if there are several results (issue #899: any number of result), add unique prefix starting from second
784     if (theResultIndex > 0 || theResult->groupName() == ModelAPI_ResultBody::group())
785       aNewName<<"_"<<theResultIndex + 1;
786     theResult->data()->setName(aNewName.str());
787   }
788 }
789
790 std::shared_ptr<ModelAPI_ResultConstruction> Model_Objects::createConstruction(
791     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
792 {
793   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
794   TDataStd_Comment::Set(aLab, ModelAPI_ResultConstruction::group().c_str());
795   ObjectPtr anOldObject = object(aLab);
796   std::shared_ptr<ModelAPI_ResultConstruction> aResult;
797   if (anOldObject) {
798     aResult = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(anOldObject);
799   }
800   if (!aResult) {
801     aResult = std::shared_ptr<ModelAPI_ResultConstruction>(new Model_ResultConstruction);
802     storeResult(theFeatureData, aResult, theIndex);
803   }
804   return aResult;
805 }
806
807 std::shared_ptr<ModelAPI_ResultBody> Model_Objects::createBody(
808     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
809 {
810   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
811   // for feature create compsolid, but for result sub create body: 
812   // only one level of recursion is supported now
813   ResultPtr aResultOwner = std::dynamic_pointer_cast<ModelAPI_Result>(theFeatureData->owner());
814   ObjectPtr anOldObject;
815   if (aResultOwner.get()) {
816     TDataStd_Comment::Set(aLab, ModelAPI_ResultBody::group().c_str());
817   } else { // in compsolid (higher level result) old object probably may be found
818     TDataStd_Comment::Set(aLab, ModelAPI_ResultCompSolid::group().c_str());
819     anOldObject = object(aLab);
820   }
821   std::shared_ptr<ModelAPI_ResultBody> aResult;
822   if (anOldObject) {
823     aResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(anOldObject);
824   }
825   if (!aResult) {
826     // create compsolid anyway; if it is compsolid, it will create sub-bodies internally
827     if (aResultOwner.get()) {
828       aResult = std::shared_ptr<ModelAPI_ResultBody>(new Model_ResultBody);
829     } else {
830       aResult = std::shared_ptr<ModelAPI_ResultBody>(new Model_ResultCompSolid);
831     }
832     storeResult(theFeatureData, aResult, theIndex);
833   }
834   return aResult;
835 }
836
837 std::shared_ptr<ModelAPI_ResultPart> Model_Objects::createPart(
838     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
839 {
840   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
841   TDataStd_Comment::Set(aLab, ModelAPI_ResultPart::group().c_str());
842   ObjectPtr anOldObject = object(aLab);
843   std::shared_ptr<ModelAPI_ResultPart> aResult;
844   if (anOldObject) {
845     aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(anOldObject);
846   }
847   if (!aResult) {
848     aResult = std::shared_ptr<ModelAPI_ResultPart>(new Model_ResultPart);
849     storeResult(theFeatureData, aResult, theIndex);
850   }
851   return aResult;
852 }
853
854 std::shared_ptr<ModelAPI_ResultPart> Model_Objects::copyPart(
855     const std::shared_ptr<ModelAPI_ResultPart>& theOrigin,
856     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
857 {
858   std::shared_ptr<ModelAPI_ResultPart> aResult = createPart(theFeatureData, theIndex);
859   aResult->data()->reference(Model_ResultPart::BASE_REF_ID())->setValue(theOrigin);
860   return aResult;
861 }
862
863 std::shared_ptr<ModelAPI_ResultGroup> Model_Objects::createGroup(
864     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
865 {
866   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
867   TDataStd_Comment::Set(aLab, ModelAPI_ResultGroup::group().c_str());
868   ObjectPtr anOldObject = object(aLab);
869   std::shared_ptr<ModelAPI_ResultGroup> aResult;
870   if (anOldObject) {
871     aResult = std::dynamic_pointer_cast<ModelAPI_ResultGroup>(anOldObject);
872   }
873   if (!aResult) {
874     aResult = std::shared_ptr<ModelAPI_ResultGroup>(new Model_ResultGroup(theFeatureData));
875     storeResult(theFeatureData, aResult, theIndex);
876   }
877   return aResult;
878 }
879
880 std::shared_ptr<ModelAPI_ResultParameter> Model_Objects::createParameter(
881       const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
882 {
883   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
884   TDataStd_Comment::Set(aLab, ModelAPI_ResultParameter::group().c_str());
885   ObjectPtr anOldObject = object(aLab);
886   std::shared_ptr<ModelAPI_ResultParameter> aResult;
887   if (anOldObject) {
888     aResult = std::dynamic_pointer_cast<ModelAPI_ResultParameter>(anOldObject);
889   }
890   if (!aResult) {
891     aResult = std::shared_ptr<ModelAPI_ResultParameter>(new Model_ResultParameter);
892     storeResult(theFeatureData, aResult, theIndex);
893   }
894   return aResult;
895 }
896
897 std::shared_ptr<ModelAPI_Feature> Model_Objects::feature(
898     const std::shared_ptr<ModelAPI_Result>& theResult)
899 {
900   std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theResult->data());
901   if (aData) {
902     TDF_Label aFeatureLab = aData->label().Father().Father().Father();
903     FeaturePtr aFeature = feature(aFeatureLab);
904     if (!aFeature.get() && aFeatureLab.Depth() > 1) { // this may be sub-result of result
905       aFeatureLab = aFeatureLab.Father().Father();
906       aFeature = feature(aFeatureLab);
907     }
908     return aFeature;
909   }
910   return FeaturePtr();
911 }
912
913 std::string Model_Objects::featureResultGroup(FeaturePtr theFeature)
914 {
915   if (theFeature->data()->isValid()) {
916     TDF_ChildIterator aLabIter(resultLabel(theFeature->data(), 0).Father());
917     if (aLabIter.More()) {
918       TDF_Label anArgLab = aLabIter.Value();
919       Handle(TDataStd_Comment) aGroup;
920       if (aLabIter.Value().FindAttribute(TDataStd_Comment::GetID(), aGroup)) {
921         return TCollection_AsciiString(aGroup->Get()).ToCString();
922       }
923     }
924   }
925   static std::string anEmpty;
926   return anEmpty; // not found
927 }
928
929 void Model_Objects::updateResults(FeaturePtr theFeature)
930 {
931   // for not persistent is will be done by parametric updater automatically
932   //if (!theFeature->isPersistentResult()) return;
933   // check the existing results and remove them if there is nothing on the label
934   std::list<ResultPtr>::const_iterator aResIter = theFeature->results().cbegin();
935   while(aResIter != theFeature->results().cend()) {
936     ResultPtr aBody = std::dynamic_pointer_cast<ModelAPI_Result>(*aResIter);
937     if (aBody.get()) {
938       std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(aBody->data());
939       if (!aData.get() || !aData->isValid() || (!aBody->isDisabled() && aData->isDeleted())) { 
940         // found a disappeared result => remove it
941         theFeature->eraseResultFromList(aBody);
942         // start iterate from beginning because iterator is corrupted by removing
943         aResIter = theFeature->results().cbegin();
944         continue;
945       }
946     }
947     aResIter++;
948   }
949   // it may be on undo
950   if (!theFeature->data() || !theFeature->data()->isValid() || theFeature->isDisabled())
951     return;
952   // check that results are presented on all labels
953   int aResSize = theFeature->results().size();
954   TDF_ChildIterator aLabIter(resultLabel(theFeature->data(), 0).Father());
955   for(; aLabIter.More(); aLabIter.Next()) {
956     // here must be GUID of the feature
957     int aResIndex = aLabIter.Value().Tag() - 1;
958     ResultPtr aNewBody;
959     if (aResSize <= aResIndex) {
960       TDF_Label anArgLab = aLabIter.Value();
961       Handle(TDataStd_Comment) aGroup;
962       if (anArgLab.FindAttribute(TDataStd_Comment::GetID(), aGroup)) {
963         if (aGroup->Get() == ModelAPI_ResultBody::group().c_str() || 
964             aGroup->Get() == ModelAPI_ResultCompSolid::group().c_str()) {
965           aNewBody = createBody(theFeature->data(), aResIndex);
966         } else if (aGroup->Get() == ModelAPI_ResultPart::group().c_str()) {
967           std::shared_ptr<ModelAPI_ResultPart> aNewP = createPart(theFeature->data(), aResIndex); 
968           theFeature->setResult(aNewP, aResIndex);
969           if (!aNewP->partDoc().get())
970             theFeature->execute(); // create the part result: it is better to restore the previous result if it is possible
971           break;
972         } else if (aGroup->Get() == ModelAPI_ResultConstruction::group().c_str()) {
973           theFeature->execute(); // construction shapes are needed for sketch solver
974           break;
975         } else if (aGroup->Get() == ModelAPI_ResultGroup::group().c_str()) {
976           aNewBody = createGroup(theFeature->data(), aResIndex);
977         } else if (aGroup->Get() == ModelAPI_ResultParameter::group().c_str()) {
978           theFeature->attributeChanged("expression"); // just produce a value
979           break;
980         } else {
981           Events_Error::send(std::string("Unknown type of result is found in the document:") +
982             TCollection_AsciiString(aGroup->Get()).ToCString());
983         }
984       }
985       if (aNewBody && !aNewBody->data()->isDeleted()) {
986         theFeature->setResult(aNewBody, aResIndex);
987       }
988     }
989   }
990 }
991
992 ResultPtr Model_Objects::findByName(const std::string theName)
993 {
994   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator anObjIter(myFeatures);
995   for(; anObjIter.More(); anObjIter.Next()) {
996     FeaturePtr& aFeature = anObjIter.ChangeValue();
997     if (!aFeature.get() || aFeature->isDisabled()) // may be on close
998       continue;
999     const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
1000     std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
1001     for (; aRIter != aResults.cend(); aRIter++) {
1002       ResultPtr aRes = *aRIter;
1003       if (aRes.get() && aRes->data() && aRes->data()->isValid() && !aRes->isDisabled() &&
1004           aRes->data()->name() == theName) {
1005         return aRes;
1006       }
1007     }
1008   }
1009   // not found
1010   return ResultPtr();
1011 }
1012
1013 FeaturePtr Model_Objects::nextFeature(FeaturePtr theCurrent, const bool theReverse)
1014 {
1015   std::shared_ptr<Model_Data> aData = std::static_pointer_cast<Model_Data>(theCurrent->data());
1016   if (aData && aData->isValid()) {
1017     TDF_Label aFeatureLabel = aData->label().Father();
1018     Handle(TDataStd_ReferenceArray) aRefs;
1019     if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1020       for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) { // iterate all existing features
1021         TDF_Label aCurLab = aRefs->Value(a);
1022         if (aCurLab.IsEqual(aFeatureLabel)) {
1023           a += theReverse ? -1 : 1;
1024           if (a >= aRefs->Lower() && a <= aRefs->Upper())
1025             return feature(aRefs->Value(a));
1026           break; // finish iiteration: it's last feature
1027         }
1028       }
1029     }
1030   }
1031   return FeaturePtr(); // not found, last, or something is wrong
1032 }
1033
1034 FeaturePtr Model_Objects::firstFeature()
1035 {
1036   Handle(TDataStd_ReferenceArray) aRefs;
1037   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1038     return feature(aRefs->Value(aRefs->Lower()));
1039   }
1040   return FeaturePtr(); // no features at all
1041 }
1042
1043 FeaturePtr Model_Objects::lastFeature()
1044 {
1045   Handle(TDataStd_ReferenceArray) aRefs;
1046   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1047     return feature(aRefs->Value(aRefs->Upper()));
1048   }
1049   return FeaturePtr(); // no features at all
1050 }
1051
1052 bool Model_Objects::isLater(FeaturePtr theLater, FeaturePtr theCurrent) const
1053 {
1054   std::shared_ptr<Model_Data> aLaterD = std::static_pointer_cast<Model_Data>(theLater->data());
1055   std::shared_ptr<Model_Data> aCurrentD = std::static_pointer_cast<Model_Data>(theCurrent->data());
1056   if (aLaterD && aLaterD->isValid() && aCurrentD && aCurrentD->isValid()) {
1057     TDF_Label aLaterL = aLaterD->label().Father();
1058     TDF_Label aCurrentL = aCurrentD->label().Father();
1059     int aLaterI = -1, aCurentI = -1; // not found yet state
1060     Handle(TDataStd_ReferenceArray) aRefs;
1061     if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1062       for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) { // iterate all existing features
1063         TDF_Label aCurLab = aRefs->Value(a);
1064         if (aCurLab.IsEqual(aLaterL)) {
1065           aLaterI = a;
1066         } else if (aCurLab.IsEqual(aCurrentL)) {
1067           aCurentI = a;
1068         } else continue;
1069         if (aLaterI != -1 && aCurentI != -1) // both are found
1070           return aLaterI > aCurentI;
1071       }
1072     }
1073   }
1074   return false; // not found, or something is wrong
1075 }
1076
1077 std::list<std::shared_ptr<ModelAPI_Feature> > Model_Objects::allFeatures()
1078 {
1079   std::list<std::shared_ptr<ModelAPI_Feature> > aResult;
1080   Handle(TDataStd_ReferenceArray) aRefs;
1081   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1082     for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
1083       FeaturePtr aFeature = feature(aRefs->Value(a));
1084       if (aFeature.get())
1085         aResult.push_back(aFeature);
1086     }
1087   }
1088   return aResult;
1089 }
1090
1091 int Model_Objects::numInternalFeatures()
1092 {
1093   Handle(TDataStd_ReferenceArray) aRefs;
1094   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1095     return aRefs->Upper() - aRefs->Lower() + 1;
1096   }
1097   return 0; // invalid
1098 }
1099
1100 std::shared_ptr<ModelAPI_Feature> Model_Objects::internalFeature(const int theIndex)
1101 {
1102   Handle(TDataStd_ReferenceArray) aRefs;
1103   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1104     return feature(aRefs->Value(aRefs->Lower() + theIndex));
1105   }
1106   return FeaturePtr(); // invalid
1107 }
1108
1109 Standard_Integer HashCode(const TDF_Label& theLab, const Standard_Integer theUpper)
1110 {
1111   return TDF_LabelMapHasher::HashCode(theLab, theUpper);
1112
1113 }
1114 Standard_Boolean IsEqual(const TDF_Label& theLab1, const TDF_Label& theLab2)
1115 {
1116   return TDF_LabelMapHasher::IsEqual(theLab1, theLab2);
1117 }