Salome HOME
Correct processing of sketches as sub-elements of folders
[modules/shaper.git] / src / Model / Model_Objects.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <Model_Objects.h>
22 #include <Model_Data.h>
23 #include <Model_Document.h>
24 #include <Model_Events.h>
25 #include <Model_Session.h>
26 #include <Model_ResultPart.h>
27 #include <Model_ResultConstruction.h>
28 #include <Model_ResultBody.h>
29 #include <Model_ResultCompSolid.h>
30 #include <Model_ResultGroup.h>
31 #include <Model_ResultField.h>
32 #include <Model_ResultParameter.h>
33 #include <ModelAPI_Validator.h>
34 #include <ModelAPI_CompositeFeature.h>
35 #include <ModelAPI_Tools.h>
36
37 #include <Events_Loop.h>
38 #include <Events_InfoMessage.h>
39
40 #include <TDataStd_Integer.hxx>
41 #include <TDataStd_Comment.hxx>
42 #include <TDF_ChildIDIterator.hxx>
43 #include <TDataStd_ReferenceArray.hxx>
44 #include <TDataStd_HLabelArray1.hxx>
45 #include <TDataStd_Name.hxx>
46 #include <TDF_Reference.hxx>
47 #include <TDF_ChildIDIterator.hxx>
48 #include <TDF_LabelMapHasher.hxx>
49 #include <TDF_LabelMap.hxx>
50 #include <TDF_ListIteratorOfLabelList.hxx>
51
52 static const std::string& groupNameFoldering(const std::string& theGroupID,
53                                              const bool theAllowFolder)
54 {
55   if (theAllowFolder) {
56     static const std::string anOutOfFolderName = std::string("__") + ModelAPI_Feature::group();
57     static const std::string aDummyName;
58     return theGroupID == ModelAPI_Feature::group() ? anOutOfFolderName : aDummyName;
59   }
60   return theGroupID;
61 }
62
63
64 static const int TAG_OBJECTS = 2;  // tag of the objects sub-tree (features, results)
65
66 // feature sub-labels
67 static const int TAG_FEATURE_ARGUMENTS = 1;  ///< where the arguments are located
68 static const int TAG_FEATURE_RESULTS = 2;  ///< where the results are located
69
70 ///
71 /// 0:1:2 - where features are located
72 /// 0:1:2:N:1 - data of the feature N
73 /// 0:1:2:N:2:K:1 - data of the K result of the feature N
74
75 Model_Objects::Model_Objects(TDF_Label theMainLab) : myMain(theMainLab)
76 {
77 }
78
79 void Model_Objects::setOwner(DocumentPtr theDoc)
80 {
81   myDoc = theDoc;
82   // update all fields and recreate features and result objects if needed
83   TDF_LabelList aNoUpdated;
84   synchronizeFeatures(aNoUpdated, true, true, true, true);
85   myHistory.clear();
86 }
87
88 Model_Objects::~Model_Objects()
89 {
90   // delete all features of this document
91   Events_Loop* aLoop = Events_Loop::loop();
92   // erase one by one to avoid access from the feature destructor itself from he map
93   // blocks the flush signals to avoid the temporary objects visualization in the viewer
94   // they should not be shown in order to do not lose highlight by erasing them
95   bool isActive = aLoop->activateFlushes(false);
96
97   while(!myFeatures.IsEmpty()) {
98     NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFeaturesIter(myFeatures);
99     FeaturePtr aFeature = aFeaturesIter.Value();
100     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
101     ModelAPI_EventCreator::get()->sendDeleted(myDoc, ModelAPI_Feature::group());
102     ModelAPI_EventCreator::get()->sendUpdated(aFeature, EVENT_DISP);
103     aFeature->removeResults(0, false);
104     aFeature->erase();
105     myFeatures.UnBind(aFeaturesIter.Key());
106   }
107   while (!myFolders.IsEmpty()) {
108     NCollection_DataMap<TDF_Label, ObjectPtr>::Iterator aFoldersIter(myFolders);
109     ObjectPtr aFolder = aFoldersIter.Value();
110     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
111     ModelAPI_EventCreator::get()->sendDeleted(myDoc, ModelAPI_Folder::group());
112     ModelAPI_EventCreator::get()->sendUpdated(aFolder, EVENT_DISP);
113     aFolder->erase();
114     myFolders.UnBind(aFoldersIter.Key());
115   }
116   myHistory.clear();
117   aLoop->activateFlushes(isActive);
118   // erase update, because features are destroyed and update should not performed for them anywhere
119   aLoop->eraseMessages(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
120   aLoop->eraseMessages(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
121   // deleted and redisplayed is correctly performed: they know that features are destroyed
122   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_DELETED));
123   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
124
125 }
126
127 /// Appends to the array of references a new referenced label
128 static void AddToRefArray(TDF_Label& theArrayLab, TDF_Label& theReferenced, TDF_Label& thePrevLab)
129 {
130   Handle(TDataStd_ReferenceArray) aRefs;
131   if (!theArrayLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
132     aRefs = TDataStd_ReferenceArray::Set(theArrayLab, 0, 0);
133     aRefs->SetValue(0, theReferenced);
134   } else {  // extend array by one more element
135     Handle(TDataStd_HLabelArray1) aNewArray = new TDataStd_HLabelArray1(aRefs->Lower(),
136                                                                         aRefs->Upper() + 1);
137     int aPassedPrev = 0; // prev feature is found and passed
138     if (thePrevLab.IsNull()) { // null means that inserted feature must be the first
139       aNewArray->SetValue(aRefs->Lower(), theReferenced);
140       aPassedPrev = 1;
141     }
142     for (int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
143       aNewArray->SetValue(a + aPassedPrev, aRefs->Value(a));
144       if (!aPassedPrev && aRefs->Value(a).IsEqual(thePrevLab)) {
145         aPassedPrev = 1;
146         aNewArray->SetValue(a + 1, theReferenced);
147       }
148     }
149     if (!aPassedPrev) // not found: unknown situation
150       aNewArray->SetValue(aRefs->Upper() + 1, theReferenced);
151     aRefs->SetInternalArray(aNewArray);
152   }
153 }
154
155 void Model_Objects::addFeature(FeaturePtr theFeature, const FeaturePtr theAfterThis)
156 {
157   if (!theFeature->isAction()) {  // do not add action to the data model
158     TDF_Label aFeaturesLab = featuresLabel();
159     TDF_Label aFeatureLab = aFeaturesLab.NewChild();
160     // store feature in the features array: before "initData" because in macro features
161     // in initData it creates new features, appeared later than this
162     TDF_Label aPrevFeateureLab;
163     if (theAfterThis.get()) { // searching for the previous feature label
164       std::shared_ptr<Model_Data> aPrevData =
165         std::dynamic_pointer_cast<Model_Data>(theAfterThis->data());
166       if (aPrevData.get()) {
167         aPrevFeateureLab = aPrevData->label().Father();
168       }
169     }
170     AddToRefArray(aFeaturesLab, aFeatureLab, aPrevFeateureLab);
171
172     // keep the feature ID to restore document later correctly
173     TDataStd_Comment::Set(aFeatureLab, theFeature->getKind().c_str());
174     myFeatures.Bind(aFeatureLab, theFeature);
175     // must be before the event sending: for OB the feature is already added
176     updateHistory(ModelAPI_Feature::group());
177     // do not change the order:
178     // initData()
179     // sendUpdated()
180     // during python script with fillet constraint feature data should be
181     // initialized before using it in GUI
182
183     // must be after binding to the map because of "Box" macro feature that
184     // creates other features in "initData"
185     initData(theFeature, aFeatureLab, TAG_FEATURE_ARGUMENTS);
186     // event: feature is added, mist be before "initData" to update OB correctly on Duplicate:
187     // first new part, then the content
188     static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
189     ModelAPI_EventCreator::get()->sendUpdated(theFeature, anEvent);
190   } else { // make feature has not-null data anyway
191     theFeature->setData(Model_Data::invalidData());
192     theFeature->setDoc(myDoc);
193   }
194 }
195
196 /// Appends to the array of references a new referenced label.
197 /// If theIndex is not -1, removes element at this index, not theReferenced.
198 /// \returns the index of removed element
199 static int RemoveFromRefArray(TDF_Label theArrayLab, TDF_Label theReferenced,
200   const int theIndex = -1)
201 {
202   int aResult = -1;  // no returned
203   Handle(TDataStd_ReferenceArray) aRefs;
204   if (theArrayLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
205     if (aRefs->Length() == 1) {  // just erase an array
206       if ((theIndex == -1 && aRefs->Value(0) == theReferenced) || theIndex == 0) {
207         theArrayLab.ForgetAttribute(TDataStd_ReferenceArray::GetID());
208       }
209       aResult = 0;
210     } else {  // reduce the array
211       Handle(TDataStd_HLabelArray1) aNewArray = new TDataStd_HLabelArray1(aRefs->Lower(),
212                                                                           aRefs->Upper() - 1);
213       int aCount = aRefs->Lower();
214       for (int a = aCount; a <= aRefs->Upper(); a++, aCount++) {
215         if ((theIndex == -1 && aRefs->Value(a) == theReferenced) || theIndex == a) {
216           aCount--;
217           aResult = a;
218         } else {
219           aNewArray->SetValue(aCount, aRefs->Value(a));
220         }
221       }
222       aRefs->SetInternalArray(aNewArray);
223     }
224   }
225   return aResult;
226 }
227
228 void Model_Objects::refsToFeature(FeaturePtr theFeature,
229   std::set<std::shared_ptr<ModelAPI_Feature> >& theRefs, const bool isSendError)
230 {
231   // check the feature: it must have no depended objects on it
232   // the dependencies can be in the feature results
233   std::list<ResultPtr> aResults;
234   ModelAPI_Tools::allResults(theFeature, aResults);
235   std::list<ResultPtr>::const_iterator aResIter = aResults.cbegin();
236   for (; aResIter != aResults.cend(); aResIter++) {
237     ResultPtr aResult = (*aResIter);
238     std::shared_ptr<Model_Data> aData =
239         std::dynamic_pointer_cast<Model_Data>(aResult->data());
240     if (aData.get() != NULL) {
241       const std::set<AttributePtr>& aRefs = aData->refsToMe();
242       std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin(), aRefLast = aRefs.end();
243       for (; aRefIt != aRefLast; aRefIt++) {
244         FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRefIt)->owner());
245         if (aFeature.get() != NULL)
246           theRefs.insert(aFeature);
247       }
248     }
249   }
250   // the dependencies can be in the feature itself
251   std::shared_ptr<Model_Data> aData =
252       std::dynamic_pointer_cast<Model_Data>(theFeature->data());
253   if (aData.get() && !aData->refsToMe().empty()) {
254     const std::set<AttributePtr>& aRefs = aData->refsToMe();
255     std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin(), aRefLast = aRefs.end();
256     for (; aRefIt != aRefLast; aRefIt++) {
257       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRefIt)->owner());
258       if (aFeature.get() != NULL)
259         theRefs.insert(aFeature);
260     }
261   }
262
263   if (!theRefs.empty() && isSendError) {
264     Events_InfoMessage("Model_Objects",
265       "Feature '%1' is used and can not be deleted").arg(theFeature->data()->name()).send();
266   }
267 }
268
269 void Model_Objects::removeFeature(FeaturePtr theFeature)
270 {
271   std::shared_ptr<Model_Data> aData = std::static_pointer_cast<Model_Data>(theFeature->data());
272   if (aData.get() && aData->isValid()) {
273     // checking that the sub-element of composite feature is removed: if yes, inform the owner
274     std::set<std::shared_ptr<ModelAPI_Feature> > aRefs;
275     refsToFeature(theFeature, aRefs, false);
276     std::set<std::shared_ptr<ModelAPI_Feature> >::iterator aRefIter = aRefs.begin();
277     for(; aRefIter != aRefs.end(); aRefIter++) {
278       std::shared_ptr<ModelAPI_CompositeFeature> aComposite =
279         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*aRefIter);
280       if (aComposite.get() && aComposite->isSub(theFeature)) {
281         aComposite->removeFeature(theFeature);
282       }
283     }
284     // this must be before erase since theFeature erasing removes all information about
285     // the feature results and groups of results
286     // To reproduce: create sketch, extrusion, remove sketch => constructions tree is not updated
287     clearHistory(theFeature);
288     // erase fields
289     theFeature->erase();
290
291     TDF_Label aFeatureLabel = aData->label().Father();
292     if (myFeatures.IsBound(aFeatureLabel))
293       myFeatures.UnBind(aFeatureLabel);
294
295     static Events_ID EVENT_DISP = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
296     ModelAPI_EventCreator::get()->sendUpdated(theFeature, EVENT_DISP);
297     // erase all attributes under the label of feature
298     aFeatureLabel.ForgetAllAttributes();
299     // remove it from the references array
300     RemoveFromRefArray(featuresLabel(), aFeatureLabel);
301     // event: feature is deleted
302     ModelAPI_EventCreator::get()->sendDeleted(theFeature->document(), ModelAPI_Feature::group());
303     updateHistory(ModelAPI_Feature::group());
304   }
305 }
306
307 void Model_Objects::eraseAllFeatures()
308 {
309   static Events_ID kDispEvent = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
310   static const ModelAPI_EventCreator* kCreator = ModelAPI_EventCreator::get();
311   // make all features invalid (like deleted)
312   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFIter(myFeatures);
313   for(; aFIter.More(); aFIter.Next()) {
314     FeaturePtr aFeature = aFIter.Value();
315     std::list<ResultPtr> aResList;
316     ModelAPI_Tools::allResults(aFeature, aResList);
317     std::list<ResultPtr>::iterator aRIter = aResList.begin();
318     for(; aRIter != aResList.end(); aRIter++) {
319       ResultPtr aRes = *aRIter;
320       if (aRes && aRes->data()->isValid()) {
321         kCreator->sendDeleted(myDoc, aRes->groupName());
322         kCreator->sendUpdated(aRes, kDispEvent);
323         aRes->setData(aRes->data()->invalidPtr());
324
325       }
326     }
327     kCreator->sendUpdated(aFeature, kDispEvent);
328     aFeature->setData(aFeature->data()->invalidPtr());
329   }
330   kCreator->sendDeleted(myDoc, ModelAPI_Feature::group());
331   myFeatures.Clear(); // just remove features without modification of DS
332   updateHistory(ModelAPI_Feature::group());
333 }
334
335 void Model_Objects::moveFeature(FeaturePtr theMoved, FeaturePtr theAfterThis)
336 {
337   TDF_Label aFeaturesLab = featuresLabel();
338   Handle(TDataStd_ReferenceArray) aRefs;
339   if (!aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
340     return;
341   TDF_Label anAfterLab, aMovedLab =
342     std::dynamic_pointer_cast<Model_Data>(theMoved->data())->label().Father();
343   if (theAfterThis.get())
344     anAfterLab = std::dynamic_pointer_cast<Model_Data>(theAfterThis->data())->label().Father();
345
346   Handle(TDataStd_HLabelArray1) aNewArray =
347     new TDataStd_HLabelArray1(aRefs->Lower(), aRefs->Upper());
348   int aPassedMovedFrom = 0; // the prev feature location is found and passed
349   int aPassedMovedTo = 0; // the feature is added and this location is passed
350   if (!theAfterThis.get()) { // null means that inserted feature must be the first
351     aNewArray->SetValue(aRefs->Lower(), aMovedLab);
352     aPassedMovedTo = 1;
353   }
354   for (int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
355     if (aPassedMovedTo == 0 && aRefs->Value(a) == anAfterLab) { // add two
356       aPassedMovedTo++;
357       aNewArray->SetValue(a - aPassedMovedFrom, anAfterLab);
358       if (a + 1 - aPassedMovedFrom <= aRefs->Upper())
359         aNewArray->SetValue(a + 1 - aPassedMovedFrom, aMovedLab);
360     } else if (aPassedMovedFrom == 0 && aRefs->Value(a) == aMovedLab) { // skip
361       aPassedMovedFrom++;
362     } else { // just copy one
363       if (a - aPassedMovedFrom + aPassedMovedTo <= aRefs->Upper())
364         aNewArray->SetValue(a - aPassedMovedFrom + aPassedMovedTo, aRefs->Value(a));
365     }
366   }
367   if (!aPassedMovedFrom || !aPassedMovedTo) {// not found: unknown situation
368     if (!aPassedMovedFrom) {
369       static std::string aMovedFromError("The moved feature is not found");
370       Events_InfoMessage("Model_Objects", aMovedFromError).send();
371     } else {
372       static std::string aMovedToError("The 'after' feature for movement is not found");
373       Events_InfoMessage("Model_Objects", aMovedToError).send();
374     }
375     return;
376   }
377   // store the new array
378   aRefs->SetInternalArray(aNewArray);
379   // update the feature and the history
380   clearHistory(theMoved);
381   // make sure all (selection) attributes of moved feature will be updated
382   static Events_ID kUpdateSelection = Events_Loop::loop()->eventByName(EVENT_UPDATE_SELECTION);
383   ModelAPI_EventCreator::get()->sendUpdated(theMoved, kUpdateSelection, false);
384   ModelAPI_EventCreator::get()->sendReordered(theMoved);
385 }
386
387 void Model_Objects::clearHistory(ObjectPtr theObj)
388 {
389   if (theObj.get()) {
390     const std::string aGroup = theObj->groupName();
391     updateHistory(aGroup);
392
393     if (theObj->groupName() == ModelAPI_Feature::group()) { // clear results group of the feature
394       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObj);
395       std::string aResultGroup = featureResultGroup(aFeature);
396       if (!aResultGroup.empty()) {
397         std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter =
398           myHistory.find(aResultGroup);
399         if (aHIter != myHistory.end())
400           myHistory.erase(aHIter); // erase from map => this means that it is not synchronized
401       }
402     }
403   }
404 }
405
406 void Model_Objects::createHistory(const std::string& theGroupID)
407 {
408   std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter = myHistory.find(theGroupID);
409   if (aHIter == myHistory.end()) {
410     std::vector<ObjectPtr> aResult;
411     std::vector<ObjectPtr> aResultOutOfFolder;
412     FeaturePtr aLastFeatureInFolder;
413     // iterate the array of references and get feature by feature from the array
414     bool isFeature = theGroupID == ModelAPI_Feature::group();
415     bool isFolder = theGroupID == ModelAPI_Folder::group();
416     Handle(TDataStd_ReferenceArray) aRefs;
417     if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
418       for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
419         FeaturePtr aFeature = feature(aRefs->Value(a));
420         if (aFeature.get()) {
421           // if feature is in sub-component, remove it from history:
422           // it is in sub-tree of sub-component
423           bool isSub = ModelAPI_Tools::compositeOwner(aFeature).get() != NULL;
424           if (isFeature) { // here may be also disabled features
425             if (!isSub && aFeature->isInHistory()) {
426               aResult.push_back(aFeature);
427               // the feature is out of the folders
428               if (aLastFeatureInFolder.get() == NULL)
429                 aResultOutOfFolder.push_back(aFeature);
430             }
431           } else if (!aFeature->isDisabled()) { // iterate all results of not-disabled feature
432             // construction results of sub-features should not be in the tree
433             if (!isSub || theGroupID != ModelAPI_ResultConstruction::group()) {
434               // do not use reference to the list here since results can be changed by "isConcealed"
435               const std::list<std::shared_ptr<ModelAPI_Result> > aResults = aFeature->results();
436               std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator
437                 aRIter = aResults.begin();
438               for (; aRIter != aResults.cend(); aRIter++) {
439                 ResultPtr aRes = *aRIter;
440                 if (aRes->groupName() != theGroupID) break; // feature have only same group results
441                 if (!aRes->isDisabled() && aRes->isInHistory() && !aRes->isConcealed()) {
442                   aResult.push_back(*aRIter);
443                 }
444               }
445             }
446           }
447
448           // the feature closes the folder, so the next features will be treated as out-of-folder
449           if (aLastFeatureInFolder.get() && aLastFeatureInFolder == aFeature)
450             aLastFeatureInFolder = FeaturePtr();
451
452         } else {
453           // it may be a folder
454           ObjectPtr aFolder = folder(aRefs->Value(a));
455           if (aFolder.get()) {
456             // store folder information for the Features group only
457             if (isFeature || isFolder) {
458               aResult.push_back(aFolder);
459               if (!isFolder)
460                 aResultOutOfFolder.push_back(aFolder);
461             }
462
463             // get the last feature in the folder
464             AttributeReferencePtr aLastFeatAttr =
465                 aFolder->data()->reference(ModelAPI_Folder::LAST_FEATURE_ID());
466             if (aLastFeatAttr)
467               aLastFeatureInFolder = ModelAPI_Feature::feature(aLastFeatAttr->value());
468           }
469         }
470       }
471     }
472     // to be sure that isConcealed did not update the history (issue 1089) during the iteration
473     if (myHistory.find(theGroupID) == myHistory.end()) {
474       myHistory[theGroupID] = aResult;
475
476       // store the features placed out of any folder
477       const std::string& anOutOfFolderGroupID = groupNameFoldering(theGroupID, true);
478       if (!anOutOfFolderGroupID.empty())
479         myHistory[anOutOfFolderGroupID] = aResultOutOfFolder;
480     }
481   }
482 }
483
484 void Model_Objects::updateHistory(const std::shared_ptr<ModelAPI_Object> theObject)
485 {
486   clearHistory(theObject);
487 }
488
489 void Model_Objects::updateHistory(const std::string theGroup)
490 {
491   std::map<std::string, std::vector<ObjectPtr> >::iterator aHIter = myHistory.find(theGroup);
492   if (aHIter != myHistory.end()) {
493     myHistory.erase(aHIter); // erase from map => this means that it is not synchronized
494
495     // erase history for the group of objects placed out of any folder
496     const std::string& anOutOfFolderGroupID = groupNameFoldering(theGroup, true);
497     if (!anOutOfFolderGroupID.empty())
498       myHistory.erase(anOutOfFolderGroupID);
499   }
500 }
501
502 ObjectPtr Model_Objects::folder(TDF_Label theLabel) const
503 {
504   if (myFolders.IsBound(theLabel))
505     return myFolders.Find(theLabel);
506   return ObjectPtr();
507 }
508
509 FeaturePtr Model_Objects::feature(TDF_Label theLabel) const
510 {
511   if (myFeatures.IsBound(theLabel))
512     return myFeatures.Find(theLabel);
513   return FeaturePtr();  // not found
514 }
515
516 ObjectPtr Model_Objects::object(TDF_Label theLabel)
517 {
518   // try feature by label
519   FeaturePtr aFeature = feature(theLabel);
520   if (aFeature.get())
521     return feature(theLabel);
522   TDF_Label aFeatureLabel = theLabel.Father().Father();  // let's suppose it is result
523   aFeature = feature(aFeatureLabel);
524   bool isSubResult = false;
525   if (!aFeature.get() && aFeatureLabel.Depth() > 1) { // let's suppose this is sub-result of result
526     aFeatureLabel = aFeatureLabel.Father().Father();
527     aFeature = feature(aFeatureLabel);
528     isSubResult = true;
529   }
530   if (aFeature.get()) {
531     const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
532     std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.cbegin();
533     for (; aRIter != aResults.cend(); aRIter++) {
534       if (isSubResult) {
535         ResultCompSolidPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(*aRIter);
536         if (aCompRes.get()) {
537           int aNumSubs = aCompRes->numberOfSubs();
538           for(int a = 0; a < aNumSubs; a++) {
539             ResultPtr aSub = aCompRes->subResult(a);
540             if (aSub.get()) {
541               std::shared_ptr<Model_Data> aSubData = std::dynamic_pointer_cast<Model_Data>(
542                   aSub->data());
543               if (aSubData->label().Father().IsEqual(theLabel))
544                 return aSub;
545             }
546           }
547         }
548       } else {
549         std::shared_ptr<Model_Data> aResData = std::dynamic_pointer_cast<Model_Data>(
550             (*aRIter)->data());
551         if (aResData->label().Father().IsEqual(theLabel))
552           return *aRIter;
553       }
554     }
555   }
556   return FeaturePtr();  // not found
557 }
558
559 ObjectPtr Model_Objects::object(const std::string& theGroupID,
560                                 const int theIndex,
561                                 const bool theAllowFolder)
562 {
563   if (theIndex == -1)
564     return ObjectPtr();
565   createHistory(theGroupID);
566   const std::string& aGroupID = groupNameFoldering(theGroupID, theAllowFolder);
567   return aGroupID.empty() ? myHistory[theGroupID][theIndex] : myHistory[aGroupID][theIndex];
568 }
569
570 std::shared_ptr<ModelAPI_Object> Model_Objects::objectByName(
571     const std::string& theGroupID, const std::string& theName)
572 {
573   createHistory(theGroupID);
574   if (theGroupID == ModelAPI_Feature::group()) { // searching among features (in history or not)
575     std::list<std::shared_ptr<ModelAPI_Feature> > allObjs = allFeatures();
576     std::list<std::shared_ptr<ModelAPI_Feature> >::iterator anObjIter = allObjs.begin();
577     for(; anObjIter != allObjs.end(); anObjIter++) {
578       if ((*anObjIter)->data()->name() == theName)
579         return *anObjIter;
580     }
581   } else { // searching among results (concealed or not)
582     std::list<std::shared_ptr<ModelAPI_Feature> > allObjs = allFeatures();
583     std::list<std::shared_ptr<ModelAPI_Feature> >::iterator anObjIter = allObjs.begin();
584     for(; anObjIter != allObjs.end(); anObjIter++) {
585       const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = (*anObjIter)->results();
586       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.cbegin();
587       for (; aRIter != aResults.cend(); aRIter++) {
588         if (aRIter->get() && (*aRIter)->groupName() == theGroupID) {
589           if ((*aRIter)->data()->name() == theName)
590             return *aRIter;
591           ResultCompSolidPtr aCompRes =
592             std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(*aRIter);
593           if (aCompRes.get()) {
594             int aNumSubs = aCompRes->numberOfSubs();
595             for(int a = 0; a < aNumSubs; a++) {
596               ResultPtr aSub = aCompRes->subResult(a);
597               if (aSub.get() && aSub->groupName() == theGroupID) {
598                 if (aSub->data()->name() == theName)
599                   return aSub;
600               }
601             }
602           }
603         }
604       }
605     }
606   }
607   // not found
608   return ObjectPtr();
609 }
610
611 const int Model_Objects::index(std::shared_ptr<ModelAPI_Object> theObject,
612                                const bool theAllowFolder)
613 {
614   std::string aGroup = theObject->groupName();
615   // treat folder as feature
616   if (aGroup == ModelAPI_Folder::group())
617     aGroup = ModelAPI_Feature::group();
618   createHistory(aGroup);
619
620   // get the group of features out of folder (if enabled)
621   if (theAllowFolder && !groupNameFoldering(aGroup, theAllowFolder).empty())
622     aGroup = groupNameFoldering(aGroup, theAllowFolder);
623
624   std::vector<ObjectPtr>& allObjs = myHistory[aGroup];
625   std::vector<ObjectPtr>::iterator anObjIter = allObjs.begin(); // iterate to search object
626   for(int anIndex = 0; anObjIter != allObjs.end(); anObjIter++, anIndex++) {
627     if ((*anObjIter) == theObject)
628       return anIndex;
629   }
630   // not found
631   return -1;
632 }
633
634 int Model_Objects::size(const std::string& theGroupID, const bool theAllowFolder)
635 {
636   createHistory(theGroupID);
637   const std::string& aGroupID = groupNameFoldering(theGroupID, theAllowFolder);
638   return aGroupID.empty() ? int(myHistory[theGroupID].size()) : int(myHistory[aGroupID].size());
639 }
640
641 void Model_Objects::allResults(const std::string& theGroupID, std::list<ResultPtr>& theResults)
642 {
643   // iterate the array of references and get feature by feature from the array
644   Handle(TDataStd_ReferenceArray) aRefs;
645   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
646     for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
647       FeaturePtr aFeature = feature(aRefs->Value(a));
648       if (aFeature.get()) {
649         const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
650         std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
651         for (; aRIter != aResults.cend(); aRIter++) {
652           ResultPtr aRes = *aRIter;
653           if (aRes->groupName() != theGroupID) break; // feature have only same group results
654           // iterate also concealed: ALL RESULTS (for translation parts undo/redo management)
655           //if (aRes->isInHistory() && !aRes->isConcealed()) {
656             theResults.push_back(*aRIter);
657           //}
658         }
659       }
660     }
661   }
662 }
663
664
665 TDF_Label Model_Objects::featuresLabel() const
666 {
667   return myMain.FindChild(TAG_OBJECTS);
668 }
669
670 static std::string composeName(const std::string& theFeatureKind, const int theIndex)
671 {
672   std::stringstream aNameStream;
673   aNameStream << theFeatureKind << "_" << theIndex;
674   return aNameStream.str();
675 }
676
677 void Model_Objects::setUniqueName(FeaturePtr theFeature)
678 {
679   if (!theFeature->data()->name().empty())
680     return;  // not needed, name is already defined
681   std::string aName;  // result
682   // first count all features of such kind to start with index = count + 1
683   int aNumObjects = -1; // this feature is already in this map
684   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFIter(myFeatures);
685   for (; aFIter.More(); aFIter.Next()) {
686     if (aFIter.Value()->getKind() == theFeature->getKind())
687       aNumObjects++;
688   }
689   // generate candidate name
690   aName = composeName(theFeature->getKind(), aNumObjects + 1);
691   // check this is unique, if not, increase index by 1
692   for (aFIter.Initialize(myFeatures); aFIter.More();) {
693     FeaturePtr aFeature = aFIter.Value();
694     bool isSameName = aFeature->data()->name() == aName;
695     if (!isSameName) {  // check also results to avoid same results names (actual for Parts)
696       const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
697       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
698       for (; aRIter != aResults.cend(); aRIter++) {
699         isSameName = (*aRIter)->data()->name() == aName;
700       }
701     }
702
703     if (isSameName) {
704       aNumObjects++;
705       aName = composeName(theFeature->getKind(), aNumObjects + 1);
706       // reinitialize iterator to make sure a new name is unique
707       aFIter.Initialize(myFeatures);
708     } else
709       aFIter.Next();
710   }
711   theFeature->data()->setName(aName);
712 }
713
714 void Model_Objects::setUniqueName(FolderPtr theFolder)
715 {
716   if (!theFolder->name().empty())
717     return; // name is already defined
718
719   int aNbFolders = myFolders.Size();
720   std::string aName = composeName(ModelAPI_Folder::ID(), aNbFolders);
721
722   // check the uniqueness of the name
723   NCollection_DataMap<TDF_Label, ObjectPtr>::Iterator anIt(myFolders);
724   while (anIt.More()) {
725     if (anIt.Value()->data()->name() == aName) {
726       aName = composeName(ModelAPI_Folder::ID(), aNbFolders);
727       // reinitialize iterator to make sure a new name is unique
728       anIt.Initialize(myFolders);
729     } else
730       anIt.Next();
731   }
732
733   theFolder->data()->setName(aName);
734 }
735
736 void Model_Objects::initData(ObjectPtr theObj, TDF_Label theLab, const int theTag)
737 {
738   std::shared_ptr<Model_Data> aData(new Model_Data);
739   aData->setLabel(theLab.FindChild(theTag));
740   aData->setObject(theObj);
741   theObj->setDoc(myDoc);
742   theObj->setData(aData);
743   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObj);
744   if (aFeature.get()) {
745     setUniqueName(aFeature);  // must be before "initAttributes" because duplicate part uses name
746   } else { // is it a folder?
747     FolderPtr aFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(theObj);
748     if (aFolder)
749       setUniqueName(aFolder);
750   }
751   theObj->initAttributes();
752 }
753
754 std::shared_ptr<ModelAPI_Feature> Model_Objects::featureById(const int theId)
755 {
756   if (theId > 0) {
757     TDF_Label aLab = featuresLabel().FindChild(theId, Standard_False);
758     return feature(aLab);
759   }
760   return std::shared_ptr<ModelAPI_Feature>(); // not found
761 }
762
763 void Model_Objects::synchronizeFeatures(
764   const TDF_LabelList& theUpdated, const bool theUpdateReferences,
765   const bool theExecuteFeatures, const bool theOpen, const bool theFlush)
766 {
767   Model_Document* anOwner = std::dynamic_pointer_cast<Model_Document>(myDoc).get();
768   if (!anOwner) // this may happen on creation of document: nothing there, so nothing to synchronize
769     return;
770   // after all updates, sends a message that groups of features were created or updated
771   Events_Loop* aLoop = Events_Loop::loop();
772   static Events_ID aDispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
773   static Events_ID aCreateEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
774   static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
775   static Events_ID aRedispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
776   static Events_ID aDeleteEvent = Events_Loop::eventByName(EVENT_OBJECT_DELETED);
777   static Events_ID aToHideEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
778   bool isActive = aLoop->activateFlushes(false);
779
780   // collect all updated labels map
781   TDF_LabelMap anUpdatedMap;
782   TDF_ListIteratorOfLabelList anUpdatedIter(theUpdated);
783   for(; anUpdatedIter.More(); anUpdatedIter.Next()) {
784     TDF_Label& aFeatureLab = anUpdatedIter.Value();
785     while(aFeatureLab.Depth() > 3)
786       aFeatureLab = aFeatureLab.Father();
787     if (myFeatures.IsBound(aFeatureLab))
788       anUpdatedMap.Add(aFeatureLab);
789   }
790
791   // update all objects by checking are they on labels or not
792   std::set<ObjectPtr> aNewFeatures, aKeptFeatures;
793   TDF_ChildIDIterator aLabIter(featuresLabel(), TDataStd_Comment::GetID());
794   for (; aLabIter.More(); aLabIter.Next()) {
795     TDF_Label aFeatureLabel = aLabIter.Value()->Label();
796     if (!myFeatures.IsBound(aFeatureLabel) && !myFolders.IsBound(aFeatureLabel)) {
797       // a new feature or folder is inserted
798
799       std::string aFeatureID = TCollection_AsciiString(Handle(TDataStd_Comment)::DownCast(
800                                aLabIter.Value())->Get()).ToCString();
801       bool isFolder = aFeatureID == ModelAPI_Folder::ID();
802
803       std::shared_ptr<Model_Session> aSession =
804           std::dynamic_pointer_cast<Model_Session>(ModelAPI_Session::get());
805
806       // create a feature
807       ObjectPtr aFeature = isFolder ? ObjectPtr(new ModelAPI_Folder)
808                                     : ObjectPtr(aSession->createFeature(aFeatureID, anOwner));
809       if (!aFeature.get()) {
810         // somethig is wrong, most probably, the opened document has invalid structure
811         Events_InfoMessage("Model_Objects", "Invalid type of object in the document").send();
812         aLabIter.Value()->Label().ForgetAllAttributes();
813         continue;
814       }
815       aFeature->init();
816       // this must be before "setData" to redo the sketch line correctly
817       if (isFolder)
818         myFolders.Bind(aFeatureLabel, aFeature);
819       else
820         myFeatures.Bind(aFeatureLabel, std::dynamic_pointer_cast<ModelAPI_Feature>(aFeature));
821       aNewFeatures.insert(aFeature);
822       initData(aFeature, aFeatureLabel, TAG_FEATURE_ARGUMENTS);
823       updateHistory(aFeature);
824
825       // event: model is updated
826       ModelAPI_EventCreator::get()->sendUpdated(aFeature, aCreateEvent);
827     } else {  // nothing is changed, both iterators are incremented
828       ObjectPtr anObject;
829       FeaturePtr aFeature;
830       if (myFeatures.Find(aFeatureLabel, aFeature)) {
831         aKeptFeatures.insert(aFeature);
832         anObject = aFeature;
833       } else
834         if (myFolders.Find(aFeatureLabel, anObject))
835           aKeptFeatures.insert(anObject);
836
837       if (anUpdatedMap.Contains(aFeatureLabel)) {
838         if (!theOpen) { // on abort/undo/redo reinitialize attributes if something is changed
839           std::list<std::shared_ptr<ModelAPI_Attribute> > anAttrs =
840             anObject->data()->attributes("");
841           std::list<std::shared_ptr<ModelAPI_Attribute> >::iterator anAttr = anAttrs.begin();
842           for(; anAttr != anAttrs.end(); anAttr++)
843             (*anAttr)->reinit();
844         }
845         ModelAPI_EventCreator::get()->sendUpdated(anObject, anUpdateEvent);
846         if (aFeature && aFeature->getKind() == "Parameter") {
847           // if parameters are changed, update the results (issue 937)
848           const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aFeature->results();
849           std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.begin();
850           for (; aRIter != aResults.cend(); aRIter++) {
851             std::shared_ptr<ModelAPI_Result> aRes = *aRIter;
852             if (aRes->data()->isValid() && !aRes->isDisabled()) {
853               ModelAPI_EventCreator::get()->sendUpdated(aRes, anUpdateEvent);
854             }
855           }
856         }
857       }
858     }
859   }
860
861   // check all features are checked: if not => it was removed
862   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFIter(myFeatures);
863   while (aFIter.More()) {
864     if (aKeptFeatures.find(aFIter.Value()) == aKeptFeatures.end()
865       && aNewFeatures.find(aFIter.Value()) == aNewFeatures.end()) {
866         FeaturePtr aFeature = aFIter.Value();
867         // event: model is updated
868         //if (aFeature->isInHistory()) {
869         ModelAPI_EventCreator::get()->sendDeleted(myDoc, ModelAPI_Feature::group());
870         //}
871         // results of this feature must be redisplayed (hided)
872         // redisplay also removed feature (used for sketch and AISObject)
873         ModelAPI_EventCreator::get()->sendUpdated(aFeature, aRedispEvent);
874         updateHistory(aFeature);
875         aFeature->erase();
876
877         // unbind after the "erase" call: on abort sketch
878         // is removes sub-objects that corrupts aFIter
879         myFeatures.UnBind(aFIter.Key());
880         // reinitialize iterator because unbind may corrupt the previous order in the map
881         aFIter.Initialize(myFeatures);
882     } else
883       aFIter.Next();
884   }
885   // verify folders are checked: if not => is was removed
886   for (NCollection_DataMap<TDF_Label, ObjectPtr>::Iterator aFldIt(myFolders);
887        aFldIt.More(); aFldIt.Next()) {
888     ObjectPtr aCurObj = aFldIt.Value();
889     if (aKeptFeatures.find(aCurObj) == aKeptFeatures.end() &&
890         aNewFeatures.find(aCurObj) == aNewFeatures.end()) {
891       ModelAPI_EventCreator::get()->sendDeleted(myDoc, ModelAPI_Folder::group());
892       // results of this feature must be redisplayed (hided)
893       // redisplay also removed feature (used for sketch and AISObject)
894       ModelAPI_EventCreator::get()->sendUpdated(aCurObj, aRedispEvent);
895       updateHistory(aCurObj);
896       aCurObj->erase();
897
898       // unbind after the "erase" call: on abort sketch
899       // is removes sub-objects that corrupts aFIter
900       myFolders.UnBind(aFldIt.Key());
901     }
902   }
903
904   if (theUpdateReferences) {
905     synchronizeBackRefs();
906   }
907   // update results of the features (after features created because
908   // they may be connected, like sketch and sub elements)
909   // After synchronisation of back references because sketch
910   // must be set in sub-elements before "execute" by updateResults
911   std::set<FeaturePtr> aProcessed; // composites must be updated after their subs (issue 360)
912   TDF_ChildIDIterator aLabIter2(featuresLabel(), TDataStd_Comment::GetID());
913   for (; aLabIter2.More(); aLabIter2.Next()) {
914     TDF_Label aFeatureLabel = aLabIter2.Value()->Label();
915     if (myFeatures.IsBound(aFeatureLabel)) {  // a new feature is inserted
916       FeaturePtr aFeature = myFeatures.Find(aFeatureLabel);
917       updateResults(aFeature, aProcessed);
918     }
919   }
920   // the synchronize should be done after updateResults
921   // in order to correct back references of updated results
922   if (theUpdateReferences) {
923     synchronizeBackRefs();
924   }
925   if (!theUpdated.IsEmpty()) {
926     // this means there is no control what was modified => remove history cash
927     myHistory.clear();
928   }
929
930   if (theExecuteFeatures)
931     anOwner->executeFeatures() = false;
932   aLoop->activateFlushes(isActive);
933
934   if (theFlush) {
935     aLoop->flush(aDeleteEvent);
936     // delete should be emitted before create to reacts to aborted feature
937     aLoop->flush(aCreateEvent);
938     aLoop->flush(anUpdateEvent);
939     aLoop->flush(aCreateEvent); // after update of features, there could be results created
940     aLoop->flush(aDeleteEvent); // or deleted
941     aLoop->flush(aRedispEvent);
942     aLoop->flush(aToHideEvent);
943   }
944   if (theExecuteFeatures)
945     anOwner->executeFeatures() = true;
946 }
947
948 /// synchronises back references for the given object basing on the collected data
949 void Model_Objects::synchronizeBackRefsForObject(const std::set<AttributePtr>& theNewRefs,
950   ObjectPtr theObject)
951 {
952   if (!theObject.get() || !theObject->data()->isValid())
953     return; // invalid
954   std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theObject->data());
955   // iterate new list to compare with curent
956   std::set<AttributePtr>::iterator aNewIter = theNewRefs.begin();
957   for(; aNewIter != theNewRefs.end(); aNewIter++) {
958     if (aData->refsToMe().find(*aNewIter) == aData->refsToMe().end()) {
959       FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aNewIter)->owner());
960       if (aRefFeat)
961         aData->addBackReference(aRefFeat, (*aNewIter)->id());
962       else // add back reference to a folder
963         aData->addBackReference((*aNewIter)->owner(), (*aNewIter)->id());
964     }
965   }
966   if (theNewRefs.size() != aData->refsToMe().size()) { // some back ref must be removed
967     std::set<AttributePtr>::iterator aCurrentIter = aData->refsToMe().begin();
968     while(aCurrentIter != aData->refsToMe().end()) {
969       if (theNewRefs.find(*aCurrentIter) == theNewRefs.end()) {
970         // for external references from other documents this system
971         // is not working: refs are collected from
972         // different Model_Objects, so before remove check this
973         // external object exists and still referenced
974         bool aLeaveIt = false;
975         if ((*aCurrentIter)->owner().get() && (*aCurrentIter)->owner()->document() != myDoc &&
976             (*aCurrentIter)->owner()->data().get() && (*aCurrentIter)->owner()->data()->isValid()) {
977           std::list<std::pair<std::string, std::list<std::shared_ptr<ModelAPI_Object> > > > aRefs;
978           (*aCurrentIter)->owner()->data()->referencesToObjects(aRefs);
979           std::list<std::pair<std::string, std::list<std::shared_ptr<ModelAPI_Object> >>>::iterator
980             aRefIter = aRefs.begin();
981           for(; aRefIter != aRefs.end(); aRefIter++) {
982             if ((*aCurrentIter)->id() == aRefIter->first) {
983               std::list<std::shared_ptr<ModelAPI_Object> >::iterator anOIt;
984               for(anOIt = aRefIter->second.begin(); anOIt != aRefIter->second.end(); anOIt++) {
985                 if (*anOIt == theObject) {
986                   aLeaveIt = true;
987                 }
988               }
989             }
990           }
991         }
992         if (!aLeaveIt) {
993           aData->removeBackReference(*aCurrentIter);
994           aCurrentIter = aData->refsToMe().begin(); // reinitialize iteration after delete
995         } else aCurrentIter++;
996       } else aCurrentIter++;
997     }
998   }
999   aData->updateConcealmentFlag();
1000 }
1001
1002 static void collectReferences(std::shared_ptr<ModelAPI_Data> theData,
1003                               std::map<ObjectPtr, std::set<AttributePtr> >& theRefs)
1004 {
1005   if (theData.get()) {
1006     std::list<std::pair<std::string, std::list<ObjectPtr> > > aRefs;
1007     theData->referencesToObjects(aRefs);
1008     std::list<std::pair<std::string, std::list<ObjectPtr> > >::iterator aRefsIt = aRefs.begin();
1009     for(; aRefsIt != aRefs.end(); aRefsIt++) {
1010       std::list<ObjectPtr>::iterator aRefTo = aRefsIt->second.begin();
1011       for(; aRefTo != aRefsIt->second.end(); aRefTo++) {
1012         if (*aRefTo) {
1013           std::map<ObjectPtr, std::set<AttributePtr> >::iterator aFound = theRefs.find(*aRefTo);
1014           if (aFound == theRefs.end()) {
1015             theRefs[*aRefTo] = std::set<AttributePtr>();
1016             aFound = theRefs.find(*aRefTo);
1017           }
1018           aFound->second.insert(theData->attribute(aRefsIt->first));
1019         }
1020       }
1021     }
1022   }
1023 }
1024
1025 void Model_Objects::synchronizeBackRefs()
1026 {
1027   // collect all back references in the separated container: to update everything at once,
1028   // without additional Concealment switchin on and off: only the final modification
1029
1030   // referenced (slave) objects to referencing attirbutes
1031   std::map<ObjectPtr, std::set<AttributePtr> > allRefs;
1032   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator aFeatures(myFeatures);
1033   for(; aFeatures.More(); aFeatures.Next()) {
1034     FeaturePtr aFeature = aFeatures.Value();
1035     collectReferences(aFeature->data(), allRefs);
1036   }
1037   NCollection_DataMap<TDF_Label, ObjectPtr>::Iterator aFolders(myFolders);
1038   for(; aFolders.More(); aFolders.Next()) {
1039     ObjectPtr aFolder = aFolders.Value();
1040     collectReferences(aFolder->data(), allRefs);
1041   }
1042   // second iteration: just compare back-references with existing in features and results
1043   for(aFeatures.Initialize(myFeatures); aFeatures.More(); aFeatures.Next()) {
1044     FeaturePtr aFeature = aFeatures.Value();
1045     static std::set<AttributePtr> anEmpty;
1046     std::map<ObjectPtr, std::set<AttributePtr> >::iterator aFound = allRefs.find(aFeature);
1047     if (aFound == allRefs.end()) { // not found => erase all back references
1048       synchronizeBackRefsForObject(anEmpty, aFeature);
1049     } else {
1050       synchronizeBackRefsForObject(aFound->second, aFeature);
1051       allRefs.erase(aFound); // to check that all refs are counted
1052     }
1053     // also for results
1054     std::list<ResultPtr> aResults;
1055     ModelAPI_Tools::allResults(aFeature, aResults);
1056     std::list<ResultPtr>::iterator aRIter = aResults.begin();
1057     for(; aRIter != aResults.cend(); aRIter++) {
1058       aFound = allRefs.find(*aRIter);
1059       if (aFound == allRefs.end()) { // not found => erase all back references
1060         synchronizeBackRefsForObject(anEmpty, *aRIter);
1061       } else {
1062         synchronizeBackRefsForObject(aFound->second, *aRIter);
1063         allRefs.erase(aFound); // to check that all refs are counted
1064       }
1065     }
1066   }
1067   for(aFeatures.Initialize(myFeatures); aFeatures.More(); aFeatures.Next()) {
1068     FeaturePtr aFeature = aFeatures.Value();
1069     std::list<ResultPtr> aResults;
1070     ModelAPI_Tools::allResults(aFeature, aResults);
1071     // update the concealment status for disply in isConcealed of ResultBody
1072     std::list<ResultPtr>::iterator aRIter = aResults.begin();
1073     for(; aRIter != aResults.cend(); aRIter++) {
1074       (*aRIter)->isConcealed();
1075     }
1076   }
1077   // the rest all refs means that feature references to the external document feature:
1078   // process also them
1079   std::map<ObjectPtr, std::set<AttributePtr> >::iterator anExtIter = allRefs.begin();
1080   for(; anExtIter != allRefs.end(); anExtIter++) {
1081     synchronizeBackRefsForObject(anExtIter->second, anExtIter->first);
1082   }
1083 }
1084
1085 TDF_Label Model_Objects::resultLabel(
1086   const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theResultIndex)
1087 {
1088   const std::shared_ptr<Model_Data>& aData =
1089     std::dynamic_pointer_cast<Model_Data>(theFeatureData);
1090   return aData->label().Father().FindChild(TAG_FEATURE_RESULTS).FindChild(theResultIndex + 1);
1091 }
1092
1093 bool Model_Objects::hasCustomName(DataPtr theFeatureData,
1094                                   ResultPtr theResult,
1095                                   int theResultIndex,
1096                                   std::string& theParentName) const
1097 {
1098   ResultCompSolidPtr aCompSolidRes =
1099       std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theFeatureData->owner());
1100   if (aCompSolidRes) {
1101     FeaturePtr anOwner = ModelAPI_Feature::feature(theResult->data()->owner());
1102
1103     // names of sub-solids in CompSolid should be default (for example,
1104     // result of boolean operation 'Boolean_1' is a CompSolid which is renamed to 'MyBOOL',
1105     // however, sub-elements of 'MyBOOL' should be named 'Boolean_1_1', 'Boolean_1_2' etc.)
1106     std::ostringstream aDefaultName;
1107     aDefaultName << anOwner->name();
1108     // compute default name of CompSolid (name of feature + index of CompSolid's result)
1109     int aCompSolidResultIndex = 0;
1110     const std::list<ResultPtr>& aResults = anOwner->results();
1111     for (std::list<ResultPtr>::const_iterator anIt = aResults.begin();
1112          anIt != aResults.end(); ++anIt, ++aCompSolidResultIndex)
1113       if (aCompSolidRes == *anIt)
1114         break;
1115     aDefaultName << "_" << (aCompSolidResultIndex + 1);
1116     theParentName = aDefaultName.str();
1117     return false;
1118   }
1119
1120   theParentName = ModelAPI_Tools::getDefaultName(theResult, theResultIndex);
1121   return true;
1122 }
1123
1124 void Model_Objects::storeResult(std::shared_ptr<ModelAPI_Data> theFeatureData,
1125                                 std::shared_ptr<ModelAPI_Result> theResult,
1126                                 const int theResultIndex)
1127 {
1128   theResult->init();
1129   theResult->setDoc(myDoc);
1130   initData(theResult, resultLabel(theFeatureData, theResultIndex), TAG_FEATURE_ARGUMENTS);
1131   if (theResult->data()->name().empty()) {
1132     // if was not initialized, generate event and set a name
1133     std::string aNewName = theFeatureData->name();
1134     if (!hasCustomName(theFeatureData, theResult, theResultIndex, aNewName)) {
1135       std::stringstream aName;
1136       aName << aNewName;
1137       // if there are several results (issue #899: any number of result),
1138       // add unique prefix starting from second
1139       if (theResultIndex > 0 || theResult->groupName() == ModelAPI_ResultBody::group())
1140         aName << "_" << theResultIndex + 1;
1141       aNewName = aName.str();
1142     }
1143     theResult->data()->setName(aNewName);
1144   }
1145 }
1146
1147 std::shared_ptr<ModelAPI_ResultConstruction> Model_Objects::createConstruction(
1148     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1149 {
1150   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
1151   TDataStd_Comment::Set(aLab, ModelAPI_ResultConstruction::group().c_str());
1152   ObjectPtr anOldObject = object(aLab);
1153   std::shared_ptr<ModelAPI_ResultConstruction> aResult;
1154   if (anOldObject.get()) {
1155     aResult = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(anOldObject);
1156   }
1157   if (!aResult.get()) {
1158     aResult = std::shared_ptr<ModelAPI_ResultConstruction>(new Model_ResultConstruction);
1159     storeResult(theFeatureData, aResult, theIndex);
1160   }
1161   return aResult;
1162 }
1163
1164 std::shared_ptr<ModelAPI_ResultBody> Model_Objects::createBody(
1165     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1166 {
1167   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
1168   // for feature create compsolid, but for result sub create body:
1169   // only one level of recursion is supported now
1170   ResultPtr aResultOwner = std::dynamic_pointer_cast<ModelAPI_Result>(theFeatureData->owner());
1171   ObjectPtr anOldObject;
1172   if (aResultOwner.get()) {
1173     TDataStd_Comment::Set(aLab, ModelAPI_ResultBody::group().c_str());
1174   } else { // in compsolid (higher level result) old object probably may be found
1175     TDataStd_Comment::Set(aLab, ModelAPI_ResultCompSolid::group().c_str());
1176     anOldObject = object(aLab);
1177   }
1178   std::shared_ptr<ModelAPI_ResultBody> aResult;
1179   if (anOldObject.get()) {
1180     aResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(anOldObject);
1181   }
1182   if (!aResult.get()) {
1183     // create compsolid anyway; if it is compsolid, it will create sub-bodies internally
1184     if (aResultOwner.get()) {
1185       aResult = std::shared_ptr<ModelAPI_ResultBody>(new Model_ResultBody);
1186     } else {
1187       aResult = std::shared_ptr<ModelAPI_ResultBody>(new Model_ResultCompSolid);
1188     }
1189     storeResult(theFeatureData, aResult, theIndex);
1190   }
1191   return aResult;
1192 }
1193
1194 std::shared_ptr<ModelAPI_ResultPart> Model_Objects::createPart(
1195     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1196 {
1197   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
1198   TDataStd_Comment::Set(aLab, ModelAPI_ResultPart::group().c_str());
1199   ObjectPtr anOldObject = object(aLab);
1200   std::shared_ptr<ModelAPI_ResultPart> aResult;
1201   if (anOldObject.get()) {
1202     aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(anOldObject);
1203   }
1204   if (!aResult.get()) {
1205     aResult = std::shared_ptr<ModelAPI_ResultPart>(new Model_ResultPart);
1206     storeResult(theFeatureData, aResult, theIndex);
1207   }
1208   return aResult;
1209 }
1210
1211 std::shared_ptr<ModelAPI_ResultPart> Model_Objects::copyPart(
1212     const std::shared_ptr<ModelAPI_ResultPart>& theOrigin,
1213     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1214 {
1215   std::shared_ptr<ModelAPI_ResultPart> aResult = createPart(theFeatureData, theIndex);
1216   aResult->data()->reference(Model_ResultPart::BASE_REF_ID())->setValue(theOrigin);
1217   return aResult;
1218 }
1219
1220 std::shared_ptr<ModelAPI_ResultGroup> Model_Objects::createGroup(
1221     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1222 {
1223   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
1224   TDataStd_Comment::Set(aLab, ModelAPI_ResultGroup::group().c_str());
1225   ObjectPtr anOldObject = object(aLab);
1226   std::shared_ptr<ModelAPI_ResultGroup> aResult;
1227   if (anOldObject.get()) {
1228     aResult = std::dynamic_pointer_cast<ModelAPI_ResultGroup>(anOldObject);
1229   }
1230   if (!aResult.get()) {
1231     aResult = std::shared_ptr<ModelAPI_ResultGroup>(new Model_ResultGroup(theFeatureData));
1232     storeResult(theFeatureData, aResult, theIndex);
1233   }
1234   return aResult;
1235 }
1236
1237 std::shared_ptr<ModelAPI_ResultField> Model_Objects::createField(
1238     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1239 {
1240   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
1241   TDataStd_Comment::Set(aLab, ModelAPI_ResultField::group().c_str());
1242   ObjectPtr anOldObject = object(aLab);
1243   std::shared_ptr<ModelAPI_ResultField> aResult;
1244   if (anOldObject.get()) {
1245     aResult = std::dynamic_pointer_cast<ModelAPI_ResultField>(anOldObject);
1246   }
1247   if (!aResult.get()) {
1248     aResult = std::shared_ptr<ModelAPI_ResultField>(new Model_ResultField(theFeatureData));
1249     storeResult(theFeatureData, aResult, theIndex);
1250   }
1251   return aResult;
1252 }
1253
1254 std::shared_ptr<ModelAPI_ResultParameter> Model_Objects::createParameter(
1255       const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1256 {
1257   TDF_Label aLab = resultLabel(theFeatureData, theIndex);
1258   TDataStd_Comment::Set(aLab, ModelAPI_ResultParameter::group().c_str());
1259   ObjectPtr anOldObject = object(aLab);
1260   std::shared_ptr<ModelAPI_ResultParameter> aResult;
1261   if (anOldObject.get()) {
1262     aResult = std::dynamic_pointer_cast<ModelAPI_ResultParameter>(anOldObject);
1263   }
1264   if (!aResult.get()) {
1265     aResult = std::shared_ptr<ModelAPI_ResultParameter>(new Model_ResultParameter);
1266     storeResult(theFeatureData, aResult, theIndex);
1267   }
1268   return aResult;
1269 }
1270
1271 std::shared_ptr<ModelAPI_Folder> Model_Objects::createFolder(
1272     const std::shared_ptr<ModelAPI_Feature>& theBeforeThis)
1273 {
1274   FolderPtr aFolder(new ModelAPI_Folder);
1275   if (!aFolder)
1276     return aFolder;
1277
1278   TDF_Label aFeaturesLab = featuresLabel();
1279   TDF_Label aFolderLab = aFeaturesLab.NewChild();
1280   // store feature in the features array: before "initData" because in macro features
1281   // in initData it creates new features, appeared later than this
1282   TDF_Label aPrevFeatureLab;
1283   if (theBeforeThis.get()) { // searching for the previous feature label
1284     std::shared_ptr<Model_Data> aPrevData =
1285         std::dynamic_pointer_cast<Model_Data>(theBeforeThis->data());
1286     if (aPrevData.get()) {
1287       aPrevFeatureLab = nextLabel(aPrevData->label().Father(), true);
1288     }
1289   } else { // find the label of the last feature
1290     Handle(TDataStd_ReferenceArray) aRefs;
1291     if (aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
1292       aPrevFeatureLab = aRefs->Value(aRefs->Upper());
1293   }
1294   AddToRefArray(aFeaturesLab, aFolderLab, aPrevFeatureLab);
1295
1296   // keep the feature ID to restore document later correctly
1297   TDataStd_Comment::Set(aFolderLab, ModelAPI_Folder::ID().c_str());
1298   myFolders.Bind(aFolderLab, aFolder);
1299   // must be before the event sending: for OB the feature is already added
1300   updateHistory(ModelAPI_Folder::group());
1301   updateHistory(ModelAPI_Feature::group());
1302
1303   // must be after binding to the map because of "Box" macro feature that
1304   // creates other features in "initData"
1305   initData(aFolder, aFolderLab, TAG_FEATURE_ARGUMENTS);
1306   // event: folder is added, must be before "initData" to update OB correctly on Duplicate:
1307   // first new part, then the content
1308   static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
1309   ModelAPI_EventCreator::get()->sendUpdated(aFolder, anEvent);
1310
1311   return aFolder;
1312 }
1313
1314 void Model_Objects::removeFolder(std::shared_ptr<ModelAPI_Folder> theFolder)
1315 {
1316   std::shared_ptr<Model_Data> aData = std::static_pointer_cast<Model_Data>(theFolder->data());
1317   if (!aData.get() || !aData->isValid())
1318     return;
1319
1320   // this must be before erase since theFolder erasing removes all information about it
1321   clearHistory(theFolder);
1322   // erase fields
1323   theFolder->erase();
1324
1325   TDF_Label aFolderLabel = aData->label().Father();
1326   if (myFolders.IsBound(aFolderLabel))
1327     myFolders.UnBind(aFolderLabel);
1328
1329   static Events_ID EVENT_DISP = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
1330   ModelAPI_EventCreator::get()->sendUpdated(theFolder, EVENT_DISP);
1331   // erase all attributes under the label of feature
1332   aFolderLabel.ForgetAllAttributes();
1333   // remove it from the references array
1334   RemoveFromRefArray(featuresLabel(), aFolderLabel);
1335   // event: feature is deleted
1336   ModelAPI_EventCreator::get()->sendDeleted(theFolder->document(), ModelAPI_Folder::group());
1337   updateHistory(ModelAPI_Folder::group());
1338   updateHistory(ModelAPI_Feature::group());
1339 }
1340
1341 // Returns one of the limiting features of the list
1342 static FeaturePtr limitingFeature(std::list<FeaturePtr>& theFeatures, const bool isLast)
1343 {
1344   FeaturePtr aFeature;
1345   if (isLast) {
1346     aFeature = theFeatures.back();
1347     theFeatures.pop_back();
1348   } else {
1349     aFeature = theFeatures.front();
1350     theFeatures.pop_front();
1351   }
1352   return aFeature;
1353 }
1354
1355 // Verify the feature is sub-element in composite feature or it is not used in the history
1356 static bool isSkippedFeature(FeaturePtr theFeature)
1357 {
1358   bool isSub = ModelAPI_Tools::compositeOwner(theFeature).get() != NULL;
1359   return isSub || (theFeature && !theFeature->isInHistory());
1360 }
1361
1362 std::shared_ptr<ModelAPI_Folder> Model_Objects::findFolder(
1363       const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
1364       const bool theBelow)
1365 {
1366   if (theFeatures.empty())
1367     return FolderPtr(); // nothing to move
1368
1369   TDF_Label aFeaturesLab = featuresLabel();
1370   Handle(TDataStd_ReferenceArray) aRefs;
1371   if (!aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
1372     return FolderPtr(); // no reference array (something is wrong)
1373
1374   std::list<std::shared_ptr<ModelAPI_Feature> > aFeatures = theFeatures;
1375   std::shared_ptr<ModelAPI_Feature> aLimitingFeature = limitingFeature(aFeatures, theBelow);
1376
1377   std::shared_ptr<Model_Data> aData =
1378       std::static_pointer_cast<Model_Data>(aLimitingFeature->data());
1379   if (!aData || !aData->isValid())
1380     return FolderPtr(); // invalid feature
1381
1382   // label of the first feature in the list for fast searching
1383   TDF_Label aFirstFeatureLabel = aData->label().Father();
1384
1385   // find a folder above the features and
1386   // check the given features represent a sequential list of objects following the folder
1387   FolderPtr aFoundFolder;
1388   TDF_Label aLastFeatureInFolder;
1389   int aRefIndex = aRefs->Lower();
1390   for(; aRefIndex <= aRefs->Upper(); ++aRefIndex) { // iterate all existing features
1391     TDF_Label aCurLabel = aRefs->Value(aRefIndex);
1392     if (IsEqual(aCurLabel, aFirstFeatureLabel))
1393       break; // no need to continue searching
1394
1395     // searching the folder below, just continue to search last feature from the list
1396     if (theBelow)
1397       continue;
1398
1399     // if feature is in sub-component, skip it
1400     FeaturePtr aCurFeature = feature(aCurLabel);
1401     if (isSkippedFeature(aCurFeature))
1402       continue;
1403
1404     if (!aLastFeatureInFolder.IsNull()) {
1405       if (IsEqual(aCurLabel, aLastFeatureInFolder))
1406         aLastFeatureInFolder.Nullify(); // the last feature in the folder is achived
1407       continue;
1408     }
1409
1410     aFoundFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(folder(aCurLabel));
1411     if (aFoundFolder) {
1412       AttributeReferencePtr aLastFeatAttr =
1413           aFoundFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID());
1414       if (aLastFeatAttr) {
1415         // setup iterating inside a folder to find last feature
1416         ObjectPtr aLastFeature = aLastFeatAttr->value();
1417         if (aLastFeature) {
1418           aData = std::static_pointer_cast<Model_Data>(aLastFeature->data());
1419           if (aData && aData->isValid())
1420             aLastFeatureInFolder = aData->label().Father();
1421         }
1422       }
1423     }
1424   }
1425
1426   if (theBelow && aRefIndex < aRefs->Upper()) {
1427     TDF_Label aLabel;
1428     // skip following features which are sub-components or not in history
1429     for (int anIndex = aRefIndex + 1; anIndex <= aRefs->Upper(); ++anIndex) {
1430       aLabel = aRefs->Value(anIndex);
1431       FeaturePtr aCurFeature = feature(aLabel);
1432       if (!isSkippedFeature(aCurFeature))
1433         break;
1434     }
1435     // check the next object is a folder
1436     aFoundFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(folder(aLabel));
1437   }
1438
1439   if (!aLastFeatureInFolder.IsNull() || // the last feature of the folder above is not found
1440       !aFoundFolder)
1441     return FolderPtr();
1442
1443   // check the given features are sequential list
1444   int aStep = theBelow ? -1 : 1;
1445   for (aRefIndex += aStep;
1446        !aFeatures.empty() && aRefIndex >= aRefs->Lower() && aRefIndex <= aRefs->Upper();
1447        aRefIndex += aStep) {
1448     TDF_Label aCurLabel = aRefs->Value(aRefIndex);
1449     // if feature is in sub-component, skip it
1450     FeaturePtr aCurFeature = feature(aCurLabel);
1451     if (isSkippedFeature(aCurFeature))
1452       continue;
1453
1454     aLimitingFeature = limitingFeature(aFeatures, theBelow);
1455     if (!aCurFeature->data()->isEqual(aLimitingFeature->data()))
1456       return FolderPtr(); // not a sequential list
1457   }
1458
1459   return aFoundFolder;
1460 }
1461
1462 bool Model_Objects::moveToFolder(
1463       const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
1464       const std::shared_ptr<ModelAPI_Folder>& theFolder)
1465 {
1466   if (theFeatures.empty() || !theFolder)
1467     return false;
1468
1469   // labels for the folder and last feature in the list
1470   TDF_Label aFolderLabel, aLastFeatureLabel;
1471   std::shared_ptr<Model_Data> aData =
1472       std::static_pointer_cast<Model_Data>(theFolder->data());
1473   if (aData && aData->isValid())
1474     aFolderLabel = aData->label().Father();
1475   aData = std::static_pointer_cast<Model_Data>(theFeatures.back()->data());
1476   if (aData && aData->isValid())
1477     aLastFeatureLabel = aData->label().Father();
1478
1479   if (aFolderLabel.IsNull() || aLastFeatureLabel.IsNull())
1480     return false;
1481
1482   AttributeReferencePtr aFirstFeatAttr =
1483       theFolder->reference(ModelAPI_Folder::FIRST_FEATURE_ID());
1484   AttributeReferencePtr aLastFeatAttr =
1485       theFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID());
1486   bool initFirstAttr = !aFirstFeatAttr->value().get();
1487   bool initLastAttr  = !aLastFeatAttr->value().get();
1488
1489   // check the folder is below the list of features
1490   bool isFolderBelow = false;
1491   TDF_Label aFeaturesLab = featuresLabel();
1492   Handle(TDataStd_ReferenceArray) aRefs;
1493   if (!aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
1494     return false; // no reference array (something is wrong)
1495   for (int aRefIndex = aRefs->Lower(); aRefIndex <= aRefs->Upper(); ++aRefIndex) {
1496     TDF_Label aCurLabel = aRefs->Value(aRefIndex);
1497     if (aCurLabel == aFolderLabel)
1498       break; // folder is above the features
1499     else if (aCurLabel == aLastFeatureLabel) {
1500       isFolderBelow = true;
1501       break;
1502     }
1503   }
1504
1505   if (isFolderBelow) {
1506     aData = std::static_pointer_cast<Model_Data>(theFeatures.front()->data());
1507     if (!aData || !aData->isValid())
1508       return false;
1509     TDF_Label aPrevFeatureLabel = aData->label().Father();
1510     // label of the feature before the first feature in the list
1511     for (int aRefIndex = aRefs->Lower(); aRefIndex <= aRefs->Upper(); ++aRefIndex)
1512       if (aPrevFeatureLabel == aRefs->Value(aRefIndex)) {
1513         if (aRefIndex == aRefs->Lower())
1514           aPrevFeatureLabel.Nullify();
1515         else
1516           aPrevFeatureLabel = aRefs->Value(aRefIndex - 1);
1517         break;
1518       }
1519
1520     // move the folder in the list of references before the first feature
1521     RemoveFromRefArray(aFeaturesLab, aFolderLabel);
1522     AddToRefArray(aFeaturesLab, aFolderLabel, aPrevFeatureLabel);
1523     // update first feature of the folder
1524     initFirstAttr = true;
1525   } else {
1526     // update last feature of the folder
1527     initLastAttr = true;
1528   }
1529
1530   if (initFirstAttr)
1531     aFirstFeatAttr->setValue(theFeatures.front());
1532   if (initLastAttr)
1533     aLastFeatAttr->setValue(theFeatures.back());
1534
1535   updateHistory(ModelAPI_Feature::group());
1536   return true;
1537 }
1538
1539 static FolderPtr inFolder(const FeaturePtr& theFeature, const std::string& theFolderAttr)
1540 {
1541   const std::set<AttributePtr>& aRefs = theFeature->data()->refsToMe();
1542   for (std::set<AttributePtr>::iterator anIt = aRefs.begin(); anIt != aRefs.end(); ++anIt) {
1543     if ((*anIt)->id() != theFolderAttr)
1544       continue;
1545
1546     ObjectPtr anOwner = (*anIt)->owner();
1547     FolderPtr aFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(anOwner);
1548     if (aFolder.get())
1549       return aFolder;
1550   }
1551   return FolderPtr();
1552 }
1553
1554 static FolderPtr isExtractionCorrect(const FolderPtr& theFirstFeatureFolder,
1555                                      const FolderPtr& theLastFeatureFolder,
1556                                      bool& isExtractBefore)
1557 {
1558   if (theFirstFeatureFolder.get()) {
1559     if (theLastFeatureFolder.get())
1560       return theFirstFeatureFolder == theLastFeatureFolder ? theFirstFeatureFolder : FolderPtr();
1561     else
1562       isExtractBefore = true;
1563     return theFirstFeatureFolder;
1564   } else if (theLastFeatureFolder.get()) {
1565     isExtractBefore = false;
1566     return theLastFeatureFolder;
1567   }
1568   // no folder found
1569   return FolderPtr();
1570 }
1571
1572 bool Model_Objects::removeFromFolder(
1573       const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
1574       const bool theBefore)
1575 {
1576   if (theFeatures.empty())
1577     return false;
1578
1579   FolderPtr aFirstFeatureFolder =
1580       inFolder(theFeatures.front(), ModelAPI_Folder::FIRST_FEATURE_ID());
1581   FolderPtr aLastFeatureFolder =
1582       inFolder(theFeatures.back(),  ModelAPI_Folder::LAST_FEATURE_ID());
1583
1584   bool isExtractBeforeFolder = theBefore;
1585   FolderPtr aFoundFolder =
1586       isExtractionCorrect(aFirstFeatureFolder, aLastFeatureFolder, isExtractBeforeFolder);
1587   if (!aFoundFolder)
1588     return false; // list of features cannot be extracted
1589
1590   // references of the current folder
1591   ObjectPtr aFolderStartFeature;
1592   ObjectPtr aFolderEndFeature;
1593   if (aFirstFeatureFolder != aLastFeatureFolder) {
1594     aFolderStartFeature = aFoundFolder->reference(ModelAPI_Folder::FIRST_FEATURE_ID())->value();
1595     aFolderEndFeature   = aFoundFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID())->value();
1596   }
1597
1598   FeaturePtr aFeatureToFind;
1599   if (isExtractBeforeFolder) {
1600     aFeatureToFind = theFeatures.back();
1601     // if the last feature is composite, obtain its last sub-feature for correct positioning of
1602     // the folder in the reference array when theFeatures will be extracted before folder
1603     CompositeFeaturePtr aComposite =
1604         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeatureToFind);
1605     if (aComposite)
1606       aFeatureToFind = aComposite->subFeature(aComposite->numberOfSubs() - 1);
1607   } else
1608     aFeatureToFind = theFeatures.front();
1609   std::shared_ptr<Model_Data> aData =
1610       std::static_pointer_cast<Model_Data>(aFeatureToFind->data());
1611   if (!aData || !aData->isValid())
1612     return false;
1613   TDF_Label aLabelToFind = aData->label().Father();
1614
1615   // search the label in the list of references
1616   TDF_Label aFeaturesLab = featuresLabel();
1617   Handle(TDataStd_ReferenceArray) aRefs;
1618   if (!aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
1619     return false; // no reference array (something is wrong)
1620   int aRefIndex = aRefs->Lower();
1621   for (; aRefIndex <= aRefs->Upper(); ++aRefIndex)
1622     if (aRefs->Value(aRefIndex) == aLabelToFind)
1623       break;
1624
1625   // update folder position
1626   if (isExtractBeforeFolder) {
1627     aData = std::dynamic_pointer_cast<Model_Data>(aFoundFolder->data());
1628     TDF_Label aFolderLabel = aData->label().Father();
1629     TDF_Label aPrevFeatureLabel = aRefs->Value(aRefIndex);
1630     // update start reference of the folder
1631     if (aFolderStartFeature.get())
1632       aFolderStartFeature = feature(aRefs->Value(aRefIndex + 1));
1633     // move the folder in the list of references after the last feature from the list
1634     RemoveFromRefArray(aFeaturesLab, aFolderLabel);
1635     AddToRefArray(aFeaturesLab, aFolderLabel, aPrevFeatureLabel);
1636   } else {
1637     // update end reference of the folder
1638     if (aFolderEndFeature.get())
1639       aFolderEndFeature = feature(aRefs->Value(aRefIndex - 1));
1640   }
1641
1642   // update folder references
1643   aFoundFolder->reference(ModelAPI_Folder::FIRST_FEATURE_ID())->setValue(aFolderStartFeature);
1644   aFoundFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID())->setValue(aFolderEndFeature);
1645
1646   updateHistory(ModelAPI_Feature::group());
1647   return true;
1648 }
1649
1650 FolderPtr Model_Objects::findContainingFolder(const FeaturePtr& theFeature, int& theIndexInFolder)
1651 {
1652   // search the label in the list of references
1653   TDF_Label aFeaturesLab = featuresLabel();
1654   Handle(TDataStd_ReferenceArray) aRefs;
1655   if (!aFeaturesLab.FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs))
1656     return FolderPtr(); // no reference array (something is wrong)
1657
1658   std::shared_ptr<Model_Data> aData =
1659       std::static_pointer_cast<Model_Data>(theFeature->data());
1660   if (!aData || !aData->isValid())
1661     return FolderPtr();
1662   TDF_Label aLabelToFind = aData->label().Father();
1663
1664   theIndexInFolder = -1;
1665   FolderPtr aFoundFolder;
1666   TDF_Label aLastFeatureLabel;
1667
1668   for (int aRefIndex = aRefs->Lower(); aRefIndex <= aRefs->Upper(); ++aRefIndex) {
1669     TDF_Label aCurLabel = aRefs->Value(aRefIndex);
1670     if (isSkippedFeature(feature(aCurLabel)))
1671       continue;
1672
1673     if (aFoundFolder)
1674       ++theIndexInFolder;
1675
1676     if (aCurLabel == aLabelToFind) // the feature is reached
1677       return aFoundFolder;
1678
1679     if (!aFoundFolder) {
1680       // if the current label refers to a folder, feel all necessary data
1681       aFoundFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(folder(aCurLabel));
1682       if (aFoundFolder) {
1683         theIndexInFolder = -1;
1684
1685         AttributeReferencePtr aLastRef =
1686             aFoundFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID());
1687         if (aLastRef->value()) {
1688           aData = std::static_pointer_cast<Model_Data>(aLastRef->value()->data());
1689           if (aData && aData->isValid())
1690             aLastFeatureLabel = aData->label().Father();
1691         } else // folder is empty
1692           aFoundFolder = FolderPtr();
1693       }
1694     } else if (aLastFeatureLabel == aCurLabel) {
1695       // folder is finished, clear all stored data
1696       theIndexInFolder = -1;
1697       aFoundFolder = FolderPtr();
1698     }
1699   }
1700
1701   // folder is not found
1702   theIndexInFolder = -1;
1703   return FolderPtr();
1704 }
1705
1706
1707 std::shared_ptr<ModelAPI_Feature> Model_Objects::feature(
1708     const std::shared_ptr<ModelAPI_Result>& theResult)
1709 {
1710   std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theResult->data());
1711   if (aData.get()) {
1712     TDF_Label aFeatureLab = aData->label().Father().Father().Father();
1713     FeaturePtr aFeature = feature(aFeatureLab);
1714     if (!aFeature.get() && aFeatureLab.Depth() > 1) { // this may be sub-result of result
1715       aFeatureLab = aFeatureLab.Father().Father();
1716       aFeature = feature(aFeatureLab);
1717     }
1718     return aFeature;
1719   }
1720   return FeaturePtr();
1721 }
1722
1723 std::string Model_Objects::featureResultGroup(FeaturePtr theFeature)
1724 {
1725   if (theFeature->data()->isValid()) {
1726     TDF_ChildIterator aLabIter(resultLabel(theFeature->data(), 0).Father());
1727     if (aLabIter.More()) {
1728       TDF_Label anArgLab = aLabIter.Value();
1729       Handle(TDataStd_Comment) aGroup;
1730       if (aLabIter.Value().FindAttribute(TDataStd_Comment::GetID(), aGroup)) {
1731         return TCollection_AsciiString(aGroup->Get()).ToCString();
1732       }
1733     }
1734   }
1735   static std::string anEmpty;
1736   return anEmpty; // not found
1737 }
1738
1739 void Model_Objects::updateResults(FeaturePtr theFeature, std::set<FeaturePtr>& theProcessed)
1740 {
1741   if (theProcessed.find(theFeature) != theProcessed.end())
1742     return;
1743   theProcessed.insert(theFeature);
1744   // for composites update subs recursively (sketch elements results are needed for the sketch)
1745   CompositeFeaturePtr aComp = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theFeature);
1746   if (aComp.get() && aComp->getKind() != "Part") { // don't go inside of parts sub-features
1747     // update subs of composites first
1748     int aSubNum = aComp->numberOfSubs();
1749     for(int a = 0; a < aSubNum; a++) {
1750       FeaturePtr aSub = aComp->subFeature(a);
1751       updateResults(aComp->subFeature(a), theProcessed);
1752     }
1753   }
1754
1755   // for not persistent is will be done by parametric updater automatically
1756   //if (!theFeature->isPersistentResult()) return;
1757   // check the existing results and remove them if there is nothing on the label
1758   std::list<ResultPtr>::const_iterator aResIter = theFeature->results().cbegin();
1759   while(aResIter != theFeature->results().cend()) {
1760     ResultPtr aBody = std::dynamic_pointer_cast<ModelAPI_Result>(*aResIter);
1761     if (aBody.get()) {
1762       std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(aBody->data());
1763       if (!aData.get() || !aData->isValid() || (!aBody->isDisabled() && aData->isDeleted())) {
1764         // found a disappeared result => remove it
1765         theFeature->eraseResultFromList(aBody);
1766         // start iterate from beginning because iterator is corrupted by removing
1767         aResIter = theFeature->results().cbegin();
1768         continue;
1769       }
1770     }
1771     aResIter++;
1772   }
1773   // it may be on undo
1774   if (!theFeature->data() || !theFeature->data()->isValid() || theFeature->isDisabled())
1775     return;
1776   // check that results are presented on all labels
1777   int aResSize = int(theFeature->results().size());
1778   TDF_ChildIterator aLabIter(resultLabel(theFeature->data(), 0).Father());
1779   for(; aLabIter.More(); aLabIter.Next()) {
1780     // here must be GUID of the feature
1781     int aResIndex = aLabIter.Value().Tag() - 1;
1782     ResultPtr aNewBody;
1783     if (aResSize <= aResIndex) {
1784       TDF_Label anArgLab = aLabIter.Value();
1785       Handle(TDataStd_Comment) aGroup;
1786       if (anArgLab.FindAttribute(TDataStd_Comment::GetID(), aGroup)) {
1787         if (aGroup->Get() == ModelAPI_ResultBody::group().c_str() ||
1788             aGroup->Get() == ModelAPI_ResultCompSolid::group().c_str()) {
1789           aNewBody = createBody(theFeature->data(), aResIndex);
1790         } else if (aGroup->Get() == ModelAPI_ResultPart::group().c_str()) {
1791           std::shared_ptr<ModelAPI_ResultPart> aNewP = createPart(theFeature->data(), aResIndex);
1792           theFeature->setResult(aNewP, aResIndex);
1793           if (!aNewP->partDoc().get())
1794             // create the part result: it is better to restore the previous result if it is possible
1795             theFeature->execute();
1796         } else if (aGroup->Get() == ModelAPI_ResultConstruction::group().c_str()) {
1797           theFeature->execute(); // construction shapes are needed for sketch solver
1798         } else if (aGroup->Get() == ModelAPI_ResultGroup::group().c_str()) {
1799           aNewBody = createGroup(theFeature->data(), aResIndex);
1800         } else if (aGroup->Get() == ModelAPI_ResultField::group().c_str()) {
1801           aNewBody = createField(theFeature->data(), aResIndex);
1802         } else if (aGroup->Get() == ModelAPI_ResultParameter::group().c_str()) {
1803           theFeature->attributeChanged("expression"); // just produce a value
1804         } else {
1805           Events_InfoMessage("Model_Objects", "Unknown type of result is found in the document:")
1806             .arg(TCollection_AsciiString(aGroup->Get()).ToCString()).send();
1807         }
1808       }
1809       if (aNewBody && !aNewBody->data()->isDeleted()) {
1810         theFeature->setResult(aNewBody, aResIndex);
1811       }
1812     }
1813   }
1814 }
1815
1816 ResultPtr Model_Objects::findByName(const std::string theName)
1817 {
1818   ResultPtr aResult;
1819   FeaturePtr aResFeature; // keep feature to return the latest one
1820   NCollection_DataMap<TDF_Label, FeaturePtr>::Iterator anObjIter(myFeatures);
1821   for(; anObjIter.More(); anObjIter.Next()) {
1822     FeaturePtr& aFeature = anObjIter.ChangeValue();
1823     if (!aFeature.get() || aFeature->isDisabled()) // may be on close
1824       continue;
1825     std::list<ResultPtr> allResults;
1826     ModelAPI_Tools::allResults(aFeature, allResults);
1827     std::list<ResultPtr>::iterator aRIter = allResults.begin();
1828     for (; aRIter != allResults.cend(); aRIter++) {
1829       ResultPtr aRes = *aRIter;
1830       if (aRes.get() && aRes->data() && aRes->data()->isValid() && !aRes->isDisabled() &&
1831           aRes->data()->name() == theName)
1832       {
1833         if (!aResult.get() || isLater(aFeature, aResFeature)) { // select the latest
1834           aResult = aRes;
1835           aResFeature = aFeature;
1836         }
1837       }
1838     }
1839   }
1840   return aResult;
1841 }
1842
1843 TDF_Label Model_Objects::nextLabel(TDF_Label theCurrent, const bool theReverse)
1844 {
1845   Handle(TDataStd_ReferenceArray) aRefs;
1846   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1847     for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) { // iterate all existing features
1848       TDF_Label aCurLab = aRefs->Value(a);
1849       if (aCurLab.IsEqual(theCurrent)) {
1850         a += theReverse ? -1 : 1;
1851         if (a >= aRefs->Lower() && a <= aRefs->Upper())
1852           return aRefs->Value(a);
1853         break; // finish iiteration: it's last feature
1854       }
1855     }
1856   }
1857   return TDF_Label();
1858 }
1859
1860 FeaturePtr Model_Objects::nextFeature(FeaturePtr theCurrent, const bool theReverse)
1861 {
1862   std::shared_ptr<Model_Data> aData = std::static_pointer_cast<Model_Data>(theCurrent->data());
1863   if (aData.get() && aData->isValid()) {
1864     TDF_Label aFeatureLabel = aData->label().Father();
1865     TDF_Label aNextLabel = nextLabel(aFeatureLabel, theReverse);
1866     if (!aNextLabel.IsNull())
1867       return feature(aNextLabel);
1868   }
1869   return FeaturePtr(); // not found, last, or something is wrong
1870 }
1871
1872 FeaturePtr Model_Objects::firstFeature()
1873 {
1874   Handle(TDataStd_ReferenceArray) aRefs;
1875   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1876     return feature(aRefs->Value(aRefs->Lower()));
1877   }
1878   return FeaturePtr(); // no features at all
1879 }
1880
1881 FeaturePtr Model_Objects::lastFeature()
1882 {
1883   Handle(TDataStd_ReferenceArray) aRefs;
1884   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1885     return feature(aRefs->Value(aRefs->Upper()));
1886   }
1887   return FeaturePtr(); // no features at all
1888 }
1889
1890 bool Model_Objects::isLater(FeaturePtr theLater, FeaturePtr theCurrent) const
1891 {
1892   std::shared_ptr<Model_Data> aLaterD = std::static_pointer_cast<Model_Data>(theLater->data());
1893   std::shared_ptr<Model_Data> aCurrentD = std::static_pointer_cast<Model_Data>(theCurrent->data());
1894   if (aLaterD.get() && aLaterD->isValid() && aCurrentD.get() && aCurrentD->isValid()) {
1895     TDF_Label aLaterL = aLaterD->label().Father();
1896     TDF_Label aCurrentL = aCurrentD->label().Father();
1897     int aLaterI = -1, aCurentI = -1; // not found yet state
1898     Handle(TDataStd_ReferenceArray) aRefs;
1899     if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1900       for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) { // iterate all existing features
1901         TDF_Label aCurLab = aRefs->Value(a);
1902         if (aCurLab.IsEqual(aLaterL)) {
1903           aLaterI = a;
1904         } else if (aCurLab.IsEqual(aCurrentL)) {
1905           aCurentI = a;
1906         } else continue;
1907         if (aLaterI != -1 && aCurentI != -1) // both are found
1908           return aLaterI > aCurentI;
1909       }
1910     }
1911   }
1912   return false; // not found, or something is wrong
1913 }
1914
1915 std::list<std::shared_ptr<ModelAPI_Object> > Model_Objects::allObjects()
1916 {
1917   std::list<std::shared_ptr<ModelAPI_Object> > aResult;
1918   Handle(TDataStd_ReferenceArray) aRefs;
1919   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1920     for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
1921       ObjectPtr anObject = object(aRefs->Value(a));
1922       if (!anObject.get()) // is it a folder?
1923         anObject = folder(aRefs->Value(a));
1924       if (anObject.get())
1925         aResult.push_back(anObject);
1926     }
1927   }
1928   return aResult;
1929 }
1930
1931 std::list<std::shared_ptr<ModelAPI_Feature> > Model_Objects::allFeatures()
1932 {
1933   std::list<std::shared_ptr<ModelAPI_Feature> > aResult;
1934   Handle(TDataStd_ReferenceArray) aRefs;
1935   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1936     for(int a = aRefs->Lower(); a <= aRefs->Upper(); a++) {
1937       FeaturePtr aFeature = feature(aRefs->Value(a));
1938       if (aFeature.get())
1939         aResult.push_back(aFeature);
1940     }
1941   }
1942   return aResult;
1943 }
1944
1945 int Model_Objects::numInternalFeatures()
1946 {
1947   Handle(TDataStd_ReferenceArray) aRefs;
1948   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1949     return aRefs->Upper() - aRefs->Lower() + 1;
1950   }
1951   return 0; // invalid
1952 }
1953
1954 std::shared_ptr<ModelAPI_Feature> Model_Objects::internalFeature(const int theIndex)
1955 {
1956   Handle(TDataStd_ReferenceArray) aRefs;
1957   if (featuresLabel().FindAttribute(TDataStd_ReferenceArray::GetID(), aRefs)) {
1958     return feature(aRefs->Value(aRefs->Lower() + theIndex));
1959   }
1960   return FeaturePtr(); // invalid
1961 }
1962
1963 Standard_Integer HashCode(const TDF_Label& theLab, const Standard_Integer theUpper)
1964 {
1965   return TDF_LabelMapHasher::HashCode(theLab, theUpper);
1966
1967 }
1968 Standard_Boolean IsEqual(const TDF_Label& theLab1, const TDF_Label& theLab2)
1969 {
1970   return TDF_LabelMapHasher::IsEqual(theLab1, theLab2);
1971 }