]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Document.cpp
Salome HOME
Fix for the issue #2020 : take into account not yet loaded documents to generate...
[modules/shaper.git] / src / Model / Model_Document.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_Document.cxx
4 // Created:     28 Feb 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include <Model_Document.h>
8 #include <Model_Data.h>
9 #include <Model_Objects.h>
10 #include <Model_Application.h>
11 #include <Model_Session.h>
12 #include <Model_Events.h>
13 #include <ModelAPI_ResultPart.h>
14 #include <ModelAPI_Validator.h>
15 #include <ModelAPI_CompositeFeature.h>
16 #include <ModelAPI_AttributeSelectionList.h>
17 #include <ModelAPI_Tools.h>
18 #include <ModelAPI_ResultBody.h>
19 #include <ModelAPI_ResultCompSolid.h>
20 #include <Events_Loop.h>
21 #include <Events_InfoMessage.h>
22
23 #include <TDataStd_Integer.hxx>
24 #include <TDataStd_Comment.hxx>
25 #include <TDF_ChildIDIterator.hxx>
26 #include <TDataStd_ReferenceArray.hxx>
27 #include <TDataStd_ReferenceList.hxx>
28 #include <TDataStd_IntegerArray.hxx>
29 #include <TDataStd_HLabelArray1.hxx>
30 #include <TDataStd_Name.hxx>
31 #include <TDataStd_AsciiString.hxx>
32 #include <TDF_Reference.hxx>
33 #include <TDF_ChildIDIterator.hxx>
34 #include <TDF_LabelMapHasher.hxx>
35 #include <TDF_Delta.hxx>
36 #include <TDF_AttributeDelta.hxx>
37 #include <TDF_AttributeDeltaList.hxx>
38 #include <TDF_ListIteratorOfAttributeDeltaList.hxx>
39 #include <TDF_ListIteratorOfLabelList.hxx>
40 #include <TDF_LabelMap.hxx>
41 #include <TDF_DeltaOnAddition.hxx>
42 #include <TNaming_Builder.hxx>
43 #include <TNaming_SameShapeIterator.hxx>
44 #include <TNaming_Iterator.hxx>
45 #include <TNaming_NamedShape.hxx>
46 #include <TNaming_Tool.hxx>
47
48 #include <TopExp_Explorer.hxx>
49 #include <TopoDS_Shape.hxx>
50
51 #include <OSD_File.hxx>
52 #include <OSD_Path.hxx>
53 #include <CDF_Session.hxx>
54 #include <CDF_Directory.hxx>
55
56 #include <climits>
57 #ifndef WIN32
58 #include <sys/stat.h>
59 #endif
60
61 #ifdef WIN32
62 # define _separator_ '\\'
63 #else
64 # define _separator_ '/'
65 #endif
66
67 static const int UNDO_LIMIT = 1000;  // number of possible undo operations (big for sketcher)
68
69 static const int TAG_GENERAL = 1;  // general properties tag
70
71 // general sub-labels
72 /// where the reference to the current feature label is located (or no attribute if null feature)
73 static const int TAG_CURRENT_FEATURE = 1; ///< reference to the current feature
74 static const int TAG_CURRENT_TRANSACTION = 2; ///< integer, index of the transaction
75 static const int TAG_SELECTION_FEATURE = 3; ///< integer, tag of the selection feature label
76 static const int TAG_NODES_STATE = 4; ///< array, tag of the Object Browser nodes states
77 ///< naming structures constructions selected from other document
78 static const int TAG_EXTERNAL_CONSTRUCTIONS = 5;
79
80 Model_Document::Model_Document(const int theID, const std::string theKind)
81     : myID(theID), myKind(theKind), myIsActive(false),
82       myDoc(new TDocStd_Document("BinOcaf"))  // binary OCAF format
83 {
84 #ifdef TINSPECTOR
85   CDF_Session::CurrentSession()->Directory()->Add(myDoc);
86 #endif
87   myObjs = new Model_Objects(myDoc->Main());
88   myDoc->SetUndoLimit(UNDO_LIMIT);
89   myTransactionSave = 0;
90   myExecuteFeatures = true;
91   // to have something in the document and avoid empty doc open/save problem
92   // in transaction for nesting correct working
93   myDoc->NewCommand();
94   TDataStd_Integer::Set(myDoc->Main().Father(), 0);
95   // this to avoid creation of integer attribute outside the transaction after undo
96   transactionID();
97   myDoc->CommitCommand();
98 }
99
100 void Model_Document::setThis(DocumentPtr theDoc)
101 {
102   myObjs->setOwner(theDoc);
103 }
104
105 /// Returns the file name of this document by the name of directory and identifier of a document
106 static TCollection_ExtendedString DocFileName(const char* theDirName, const std::string& theID)
107 {
108   TCollection_ExtendedString aPath((const Standard_CString) theDirName);
109   // remove end-separators
110   while(aPath.Length() &&
111         (aPath.Value(aPath.Length()) == '\\' || aPath.Value(aPath.Length()) == '/'))
112     aPath.Remove(aPath.Length());
113   aPath += _separator_;
114   aPath += theID.c_str();
115   aPath += ".cbf";  // standard binary file extension
116   return aPath;
117 }
118
119 bool Model_Document::isRoot() const
120 {
121   return this == Model_Session::get()->moduleDocument().get();
122 }
123
124 bool Model_Document::load(const char* theDirName, const char* theFileName, DocumentPtr theThis)
125 {
126   Handle(Model_Application) anApp = Model_Application::getApplication();
127   if (isRoot()) {
128     anApp->setLoadPath(theDirName);
129   }
130   TCollection_ExtendedString aPath(DocFileName(theDirName, theFileName));
131   PCDM_ReaderStatus aStatus = (PCDM_ReaderStatus) -1;
132   Handle(TDocStd_Document) aLoaded;
133   try {
134     aStatus = anApp->Open(aPath, aLoaded);
135   } catch (Standard_Failure) {
136     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
137     Events_InfoMessage("Model_Document",
138         "Exception in opening of document: %1").arg(aFail->GetMessageString()).send();
139     return false;
140   }
141   bool isError = aStatus != PCDM_RS_OK;
142   if (isError) {
143     switch (aStatus) {
144       case PCDM_RS_UnknownDocument:
145         Events_InfoMessage("Model_Document", "Can not open document").send();
146         break;
147       case PCDM_RS_AlreadyRetrieved:
148         Events_InfoMessage("Model_Document", "Can not open document: already opened").send();
149         break;
150       case PCDM_RS_AlreadyRetrievedAndModified:
151         Events_InfoMessage("Model_Document",
152             "Can not open document: already opened and modified").send();
153         break;
154       case PCDM_RS_NoDriver:
155         Events_InfoMessage("Model_Document",
156                            "Can not open document: driver library is not found").send();
157         break;
158       case PCDM_RS_UnknownFileDriver:
159         Events_InfoMessage("Model_Document",
160                            "Can not open document: unknown driver for opening").send();
161         break;
162       case PCDM_RS_OpenError:
163         Events_InfoMessage("Model_Document", "Can not open document: file open error").send();
164         break;
165       case PCDM_RS_NoVersion:
166         Events_InfoMessage("Model_Document", "Can not open document: invalid version").send();
167         break;
168       case PCDM_RS_NoModel:
169         Events_InfoMessage("Model_Document", "Can not open document: no data model").send();
170         break;
171       case PCDM_RS_NoDocument:
172         Events_InfoMessage("Model_Document", "Can not open document: no document inside").send();
173         break;
174       case PCDM_RS_FormatFailure:
175         Events_InfoMessage("Model_Document", "Can not open document: format failure").send();
176         break;
177       case PCDM_RS_TypeNotFoundInSchema:
178         Events_InfoMessage("Model_Document", "Can not open document: invalid object").send();
179         break;
180       case PCDM_RS_UnrecognizedFileFormat:
181         Events_InfoMessage("Model_Document",
182                            "Can not open document: unrecognized file format").send();
183         break;
184       case PCDM_RS_MakeFailure:
185         Events_InfoMessage("Model_Document", "Can not open document: make failure").send();
186         break;
187       case PCDM_RS_PermissionDenied:
188         Events_InfoMessage("Model_Document", "Can not open document: permission denied").send();
189         break;
190       case PCDM_RS_DriverFailure:
191         Events_InfoMessage("Model_Document", "Can not open document: driver failure").send();
192         break;
193       default:
194         Events_InfoMessage("Model_Document", "Can not open document: unknown error").send();
195         break;
196     }
197   }
198   std::shared_ptr<Model_Session> aSession =
199     std::dynamic_pointer_cast<Model_Session>(Model_Session::get());
200   if (!isError) {
201     myDoc = aLoaded;
202     myDoc->SetUndoLimit(UNDO_LIMIT);
203
204     // to avoid the problem that feature is created in the current, not this, document
205     aSession->setActiveDocument(anApp->document(myID), false);
206     aSession->setCheckTransactions(false);
207     if (myObjs)
208       delete myObjs;
209     myObjs = new Model_Objects(myDoc->Main()); // synchronisation is inside
210     myObjs->setOwner(theThis);
211     // update the current features status
212     setCurrentFeature(currentFeature(false), false);
213     aSession->setCheckTransactions(true);
214     aSession->setActiveDocument(Model_Session::get()->moduleDocument(), false);
215     // this is done in Part result "activate", so no needed here. Causes not-blue active part.
216     // aSession->setActiveDocument(anApp->getDocument(myID), true);
217
218     // make sub-parts as loaded by demand
219     std::list<ResultPtr> aPartResults;
220     myObjs->allResults(ModelAPI_ResultPart::group(), aPartResults);
221     std::list<ResultPtr>::iterator aPartRes = aPartResults.begin();
222     for(; aPartRes != aPartResults.end(); aPartRes++) {
223       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aPartRes);
224       if (aPart.get())
225         anApp->setLoadByDemand(aPart->data()->name(),
226           aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->docId());
227     }
228
229   } else { // open failed, but new documnet was created to work with it: inform the model
230     aSession->setActiveDocument(Model_Session::get()->moduleDocument(), false);
231   }
232   return !isError;
233 }
234
235 bool Model_Document::save(
236   const char* theDirName, const char* theFileName, std::list<std::string>& theResults)
237 {
238   // create a directory in the root document if it is not yet exist
239   Handle(Model_Application) anApp = Model_Application::getApplication();
240   if (isRoot()) {
241 #ifdef WIN32
242     CreateDirectory(theDirName, NULL);
243 #else
244     mkdir(theDirName, 0x1ff);
245 #endif
246   }
247   // filename in the dir is id of document inside of the given directory
248   TCollection_ExtendedString aPath(DocFileName(theDirName, theFileName));
249   PCDM_StoreStatus aStatus;
250   try {
251     aStatus = anApp->SaveAs(myDoc, aPath);
252   } catch (Standard_Failure) {
253     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
254     Events_InfoMessage("Model_Document",
255         "Exception in saving of document: %1").arg(aFail->GetMessageString()).send();
256     return false;
257   }
258   bool isDone = aStatus == PCDM_SS_OK || aStatus == PCDM_SS_No_Obj;
259   if (!isDone) {
260     switch (aStatus) {
261       case PCDM_SS_DriverFailure:
262         Events_InfoMessage("Model_Document",
263                            "Can not save document: save driver-library failure").send();
264         break;
265       case PCDM_SS_WriteFailure:
266         Events_InfoMessage("Model_Document", "Can not save document: file writing failure").send();
267         break;
268       case PCDM_SS_Failure:
269       default:
270         Events_InfoMessage("Model_Document", "Can not save document").send();
271         break;
272     }
273   }
274   myTransactionSave = int(myTransactions.size());
275   if (isDone) {  // save also sub-documents if any
276     theResults.push_back(TCollection_AsciiString(aPath).ToCString());
277     // iterate all result parts to find all loaded or not yet loaded documents
278     std::list<ResultPtr> aPartResults;
279     myObjs->allResults(ModelAPI_ResultPart::group(), aPartResults);
280     std::list<ResultPtr>::iterator aPartRes = aPartResults.begin();
281     for(; aPartRes != aPartResults.end(); aPartRes++) {
282       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aPartRes);
283       if (!aPart->isActivated()) {
284         // copy not-activated document that is not in the memory
285         std::string aDocName = aPart->data()->name();
286         if (!aDocName.empty()) {
287           // just copy file
288           TCollection_AsciiString aSubPath(DocFileName(anApp->loadPath().c_str(), aDocName));
289           OSD_Path aPath(aSubPath);
290           OSD_File aFile(aPath);
291           if (aFile.Exists()) {
292             TCollection_AsciiString aDestinationDir(DocFileName(theDirName, aDocName));
293             OSD_Path aDestination(aDestinationDir);
294             aFile.Copy(aDestination);
295             theResults.push_back(aDestinationDir.ToCString());
296           } else {
297             Events_InfoMessage("Model_Document",
298               "Can not open file %1 for saving").arg(aSubPath.ToCString()).send();
299           }
300         }
301       } else { // simply save opened document
302         isDone = std::dynamic_pointer_cast<Model_Document>(aPart->partDoc())->
303           save(theDirName, aPart->data()->name().c_str(), theResults);
304       }
305     }
306   }
307   return isDone;
308 }
309
310 void Model_Document::close(const bool theForever)
311 {
312   std::shared_ptr<ModelAPI_Session> aPM = Model_Session::get();
313   if (!isRoot() && this == aPM->activeDocument().get()) {
314     aPM->setActiveDocument(aPM->moduleDocument());
315   } else if (isRoot()) {
316     // erase the active document if root is closed
317     aPM->setActiveDocument(DocumentPtr());
318   }
319   // close all subs
320   const std::set<int> aSubs = subDocuments();
321   std::set<int>::iterator aSubIter = aSubs.begin();
322   for (; aSubIter != aSubs.end(); aSubIter++) {
323     std::shared_ptr<Model_Document> aSub = subDoc(*aSubIter);
324     if (aSub->myObjs) // if it was not closed before
325       aSub->close(theForever);
326   }
327
328   // close for thid document needs no transaction in this document
329   std::static_pointer_cast<Model_Session>(Model_Session::get())->setCheckTransactions(false);
330
331   // close all only if it is really asked, otherwise it can be undoed/redoed
332   if (theForever) {
333     // flush everything to avoid messages with bad objects
334     delete myObjs;
335     myObjs = 0;
336     if (myDoc->CanClose() == CDM_CCS_OK)
337       myDoc->Close();
338     mySelectionFeature.reset();
339   } else {
340     setCurrentFeature(FeaturePtr(), false); // disables all features
341     // update the OB: features are disabled (on remove of Part)
342     Events_Loop* aLoop = Events_Loop::loop();
343     static Events_ID aDeleteEvent = Events_Loop::eventByName(EVENT_OBJECT_DELETED);
344     aLoop->flush(aDeleteEvent);
345   }
346
347   std::static_pointer_cast<Model_Session>(Model_Session::get())->setCheckTransactions(true);
348 }
349
350 void Model_Document::startOperation()
351 {
352   incrementTransactionID(); // outside of transaction in order to avoid empty transactions keeping
353   if (myDoc->HasOpenCommand()) {  // start of nested command
354     if (myDoc->CommitCommand()) {
355       // commit the current: it will contain all nested after compactification
356       myTransactions.rbegin()->myOCAFNum++; // if has open command, the list is not empty
357     }
358     myNestedNum.push_back(0); // start of nested operation with zero transactions inside yet
359     myDoc->OpenCommand();
360   } else {  // start the simple command
361     myDoc->NewCommand();
362   }
363   // starts a new operation
364   myTransactions.push_back(Transaction());
365   if (!myNestedNum.empty())
366     (*myNestedNum.rbegin())++;
367   myRedos.clear();
368   // new command for all subs
369   const std::set<int> aSubs = subDocuments();
370   std::set<int>::iterator aSubIter = aSubs.begin();
371   for (; aSubIter != aSubs.end(); aSubIter++)
372     subDoc(*aSubIter)->startOperation();
373 }
374
375 void Model_Document::compactNested()
376 {
377   if (!myNestedNum.empty()) {
378     int aNumToCompact = *(myNestedNum.rbegin());
379     int aSumOfTransaction = 0;
380     for(int a = 0; a < aNumToCompact; a++) {
381       aSumOfTransaction += myTransactions.rbegin()->myOCAFNum;
382       myTransactions.pop_back();
383     }
384     // the latest transaction is the start of lower-level operation which startes the nested
385     myTransactions.rbegin()->myOCAFNum += aSumOfTransaction;
386     myNestedNum.pop_back();
387   }
388 }
389
390 /// Compares the content of the given attributes, returns true if equal.
391 /// This method is used to avoid empty transactions when only "current" is changed
392 /// to some value and then comes back in this transaction, so, it compares only
393 /// references and Boolean and Integer Arrays for the current moment.
394 static bool isEqualContent(Handle(TDF_Attribute) theAttr1, Handle(TDF_Attribute) theAttr2)
395 {
396   if (Standard_GUID::IsEqual(theAttr1->ID(), TDF_Reference::GetID())) { // reference
397     Handle(TDF_Reference) aRef1 = Handle(TDF_Reference)::DownCast(theAttr1);
398     Handle(TDF_Reference) aRef2 = Handle(TDF_Reference)::DownCast(theAttr2);
399     if (aRef1.IsNull() && aRef2.IsNull())
400       return true;
401     if (aRef1.IsNull() || aRef2.IsNull())
402       return false;
403     return aRef1->Get().IsEqual(aRef2->Get()) == Standard_True;
404   } else if (Standard_GUID::IsEqual(theAttr1->ID(), TDataStd_BooleanArray::GetID())) {
405     Handle(TDataStd_BooleanArray) anArr1 = Handle(TDataStd_BooleanArray)::DownCast(theAttr1);
406     Handle(TDataStd_BooleanArray) anArr2 = Handle(TDataStd_BooleanArray)::DownCast(theAttr2);
407     if (anArr1.IsNull() && anArr2.IsNull())
408       return true;
409     if (anArr1.IsNull() || anArr2.IsNull())
410       return false;
411     if (anArr1->Lower() == anArr2->Lower() && anArr1->Upper() == anArr2->Upper()) {
412       for(int a = anArr1->Lower(); a <= anArr1->Upper(); a++) {
413         if (a == 1 && // second is for display
414             anArr2->Label().Tag() == 1 && (anArr2->Label().Depth() == 4 ||
415             anArr2->Label().Depth() == 6))
416           continue;
417         if (anArr1->Value(a) != anArr2->Value(a))
418           return false;
419       }
420       return true;
421     }
422   } else if (Standard_GUID::IsEqual(theAttr1->ID(), TDataStd_IntegerArray::GetID())) {
423     Handle(TDataStd_IntegerArray) anArr1 = Handle(TDataStd_IntegerArray)::DownCast(theAttr1);
424     Handle(TDataStd_IntegerArray) anArr2 = Handle(TDataStd_IntegerArray)::DownCast(theAttr2);
425     if (anArr1.IsNull() && anArr2.IsNull())
426       return true;
427     if (anArr1.IsNull() || anArr2.IsNull())
428       return false;
429     if (anArr1->Lower() == anArr2->Lower() && anArr1->Upper() == anArr2->Upper()) {
430       for(int a = anArr1->Lower(); a <= anArr1->Upper(); a++)
431         if (anArr1->Value(a) != anArr2->Value(a)) {
432           // avoid the transaction ID checking
433           if (a == 2 && anArr1->Upper() == 2 && anArr2->Label().Tag() == 1 &&
434             (anArr2->Label().Depth() == 4 || anArr2->Label().Depth() == 6))
435             continue;
436           return false;
437         }
438       return true;
439     }
440   } else if (Standard_GUID::IsEqual(theAttr1->ID(), TDataStd_ReferenceArray::GetID())) {
441     Handle(TDataStd_ReferenceArray) anArr1 = Handle(TDataStd_ReferenceArray)::DownCast(theAttr1);
442     Handle(TDataStd_ReferenceArray) anArr2 = Handle(TDataStd_ReferenceArray)::DownCast(theAttr2);
443     if (anArr1.IsNull() && anArr2.IsNull())
444       return true;
445     if (anArr1.IsNull() || anArr2.IsNull())
446       return false;
447     if (anArr1->Lower() == anArr2->Lower() && anArr1->Upper() == anArr2->Upper()) {
448       for(int a = anArr1->Lower(); a <= anArr1->Upper(); a++)
449         if (anArr1->Value(a) != anArr2->Value(a)) {
450           // avoid the transaction ID checking
451           if (a == 2 && anArr1->Upper() == 2 && anArr2->Label().Tag() == 1 &&
452             (anArr2->Label().Depth() == 4 || anArr2->Label().Depth() == 6))
453             continue;
454           return false;
455         }
456       return true;
457     }
458   } else if (Standard_GUID::IsEqual(theAttr1->ID(), TDataStd_ReferenceList::GetID())) {
459     Handle(TDataStd_ReferenceList) aList1 = Handle(TDataStd_ReferenceList)::DownCast(theAttr1);
460     Handle(TDataStd_ReferenceList) aList2= Handle(TDataStd_ReferenceList)::DownCast(theAttr2);
461     if (aList1.IsNull() && aList2.IsNull())
462       return true;
463     if (aList1.IsNull() || aList2.IsNull())
464       return false;
465     const TDF_LabelList& aLList1 = aList1->List();
466     const TDF_LabelList& aLList2 = aList2->List();
467     TDF_ListIteratorOfLabelList aLIter1(aLList1);
468     TDF_ListIteratorOfLabelList aLIter2(aLList2);
469     for(; aLIter1.More() && aLIter2.More(); aLIter1.Next(), aLIter2.Next()) {
470       if (aLIter1.Value() != aLIter2.Value())
471         return false;
472     }
473     return !aLIter1.More() && !aLIter2.More(); // both lists are with the same size
474   } else if (Standard_GUID::IsEqual(theAttr1->ID(), TDF_TagSource::GetID())) {
475     return true; // it just for created and removed feature: nothing is changed
476   }
477   return false;
478 }
479
480 /// Returns true if the last transaction is actually empty: modification to te same values
481 /// were performed only
482 static bool isEmptyTransaction(const Handle(TDocStd_Document)& theDoc) {
483   Handle(TDF_Delta) aDelta;
484   aDelta = theDoc->GetUndos().Last();
485   TDF_LabelList aDeltaList;
486   aDelta->Labels(aDeltaList); // it clears list, so, use new one and then append to the result
487   for(TDF_ListIteratorOfLabelList aListIter(aDeltaList); aListIter.More(); aListIter.Next()) {
488     return false;
489   }
490   // add also label of the modified attributes
491   const TDF_AttributeDeltaList& anAttrs = aDelta->AttributeDeltas();
492   for (TDF_ListIteratorOfAttributeDeltaList anAttr(anAttrs); anAttr.More(); anAttr.Next()) {
493     Handle(TDF_AttributeDelta)& anADelta = anAttr.Value();
494     Handle(TDF_DeltaOnAddition) anAddition = Handle(TDF_DeltaOnAddition)::DownCast(anADelta);
495     if (anAddition.IsNull()) { // if the attribute was added, transaction is not empty
496       if (!anADelta->Label().IsNull() && !anADelta->Attribute().IsNull()) {
497         Handle(TDF_Attribute) aCurrentAttr;
498         if (anADelta->Label().FindAttribute(anADelta->Attribute()->ID(), aCurrentAttr)) {
499           if (isEqualContent(anADelta->Attribute(), aCurrentAttr)) {
500             continue; // attribute is not changed actually
501           }
502         } else
503           if (Standard_GUID::IsEqual(anADelta->Attribute()->ID(), TDataStd_AsciiString::GetID())) {
504             continue; // error message is disappeared
505         }
506       }
507     }
508     return false;
509   }
510   return true;
511 }
512
513 bool Model_Document::finishOperation()
514 {
515   bool isNestedClosed = !myDoc->HasOpenCommand() && !myNestedNum.empty();
516   static std::shared_ptr<Model_Session> aSession =
517     std::static_pointer_cast<Model_Session>(Model_Session::get());
518
519   // open transaction if nested is closed to fit inside
520   // all synchronizeBackRefs and flushed consequences
521   if (isNestedClosed) {
522     myDoc->OpenCommand();
523   }
524   // do it before flashes to enable and recompute nesting features correctly
525   if (myNestedNum.empty() || (isNestedClosed && myNestedNum.size() == 1)) {
526     // if all nested operations are closed, make current the higher level objects (to perform
527     // it in the python scripts correctly): sketch become current after creation ofsub-elements
528     FeaturePtr aCurrent = currentFeature(false);
529     CompositeFeaturePtr aMain, aNext = ModelAPI_Tools::compositeOwner(aCurrent);
530     while(aNext.get()) {
531       aMain = aNext;
532       aNext = ModelAPI_Tools::compositeOwner(aMain);
533     }
534     if (aMain.get() && aMain != aCurrent)
535       setCurrentFeature(aMain, false);
536   }
537   myObjs->synchronizeBackRefs();
538   Events_Loop* aLoop = Events_Loop::loop();
539   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
540   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
541   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
542   aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_DELETED));
543
544   if (isNestedClosed) {
545     if (myDoc->CommitCommand())
546       myTransactions.rbegin()->myOCAFNum++;
547   }
548
549   // this must be here just after everything is finished but before real transaction stop
550   // to avoid messages about modifications outside of the transaction
551   // and to rebuild everything after all updates and creates
552   if (isRoot()) { // once for root document
553     Events_Loop::loop()->autoFlush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
554     static std::shared_ptr<Events_Message> aFinishMsg
555       (new Events_Message(Events_Loop::eventByName("FinishOperation")));
556     Events_Loop::loop()->send(aFinishMsg);
557     Events_Loop::loop()->autoFlush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED), false);
558   }
559   // to avoid "updated" message appearance by updater
560   //aLoop->clear(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
561
562   // finish for all subs first: to avoid nested finishing and "isOperation" calls problems inside
563   bool aResult = false;
564   const std::set<int> aSubs = subDocuments();
565   std::set<int>::iterator aSubIter = aSubs.begin();
566   for (; aSubIter != aSubs.end(); aSubIter++)
567     if (subDoc(*aSubIter)->finishOperation())
568       aResult = true;
569
570   // transaction may be empty if this document was created during this transaction (create part)
571   if (!myTransactions.empty() && myDoc->CommitCommand()) {
572     // if commit is successfull, just increment counters
573     if (isEmptyTransaction(myDoc)) { // erase this transaction
574       myDoc->Undo();
575       myDoc->ClearRedos();
576     } else {
577       myTransactions.rbegin()->myOCAFNum++;
578       aResult = true;
579     }
580   }
581
582   if (isNestedClosed) {
583     compactNested();
584   }
585   if (!aResult && !myTransactions.empty() /* it can be for just created part document */)
586     aResult = myTransactions.rbegin()->myOCAFNum != 0;
587
588   if (!aResult && isRoot()) {
589     // nothing inside in all documents, so remove this transaction from the transactions list
590     undoInternal(true, false);
591   }
592   // on finish clear redos in any case (issue 446) and for all subs (issue 408)
593   myDoc->ClearRedos();
594   myRedos.clear();
595   for (aSubIter = aSubs.begin(); aSubIter != aSubs.end(); aSubIter++) {
596     subDoc(*aSubIter)->myDoc->ClearRedos();
597     subDoc(*aSubIter)->myRedos.clear();
598   }
599
600   return aResult;
601 }
602
603 /// Returns in theDelta labels that has been modified in the latest transaction of theDoc
604 static void modifiedLabels(const Handle(TDocStd_Document)& theDoc, TDF_LabelList& theDelta,
605   const bool isRedo = false) {
606   Handle(TDF_Delta) aDelta;
607   if (isRedo)
608     aDelta = theDoc->GetRedos().First();
609   else
610     aDelta = theDoc->GetUndos().Last();
611   TDF_LabelList aDeltaList;
612   aDelta->Labels(aDeltaList); // it clears list, so, use new one and then append to the result
613   for(TDF_ListIteratorOfLabelList aListIter(aDeltaList); aListIter.More(); aListIter.Next()) {
614     theDelta.Append(aListIter.Value());
615   }
616   // add also label of the modified attributes
617   const TDF_AttributeDeltaList& anAttrs = aDelta->AttributeDeltas();
618   /// named shape evolution also modifies integer on this label: exclude it
619   TDF_LabelMap anExcludedInt;
620   for (TDF_ListIteratorOfAttributeDeltaList anAttr(anAttrs); anAttr.More(); anAttr.Next()) {
621     if (anAttr.Value()->Attribute()->ID() == TDataStd_BooleanArray::GetID()) {
622       // Boolean array is used for feature auxiliary attributes only, feature args are not modified
623       continue;
624     }
625     if (anAttr.Value()->Attribute()->ID() == TNaming_NamedShape::GetID()) {
626       anExcludedInt.Add(anAttr.Value()->Label());
627       // named shape evolution is changed in history update => skip them,
628       // they are not the features arguents
629       continue;
630     }
631     if (anAttr.Value()->Attribute()->ID() == TDataStd_Integer::GetID()) {
632       if (anExcludedInt.Contains(anAttr.Value()->Label()))
633         continue;
634     }
635       theDelta.Append(anAttr.Value()->Label());
636   }
637   TDF_ListIteratorOfLabelList aDeltaIter(theDelta);
638   for(; aDeltaIter.More(); aDeltaIter.Next()) {
639     if (anExcludedInt.Contains(aDeltaIter.Value())) {
640       theDelta.Remove(aDeltaIter);
641       if (!aDeltaIter.More())
642         break;
643     }
644   }
645 }
646
647 void Model_Document::abortOperation()
648 {
649   TDF_LabelList aDeltaLabels; // labels that are updated during "abort"
650   if (!myNestedNum.empty() && !myDoc->HasOpenCommand()) {  // abort all what was done in nested
651     compactNested();
652     // store undo-delta here as undo actually does in the method later
653     int a, aNumTransactions = myTransactions.rbegin()->myOCAFNum;
654     for(a = 0; a < aNumTransactions; a++) {
655       modifiedLabels(myDoc, aDeltaLabels);
656       myDoc->Undo();
657     }
658     for(a = 0; a < aNumTransactions; a++) {
659       myDoc->Redo();
660     }
661
662     undoInternal(false, false);
663     myDoc->ClearRedos();
664     myRedos.clear();
665   } else { // abort the current
666     int aNumTransactions = myTransactions.rbegin()->myOCAFNum;
667     myTransactions.pop_back();
668     if (!myNestedNum.empty())
669       (*myNestedNum.rbegin())--;
670     // roll back the needed number of transactions
671     //myDoc->AbortCommand();
672     // instead of abort, do commit and undo: to get the delta of modifications
673     if (myDoc->CommitCommand())  {
674       modifiedLabels(myDoc, aDeltaLabels);
675       myDoc->Undo();
676     }
677     for(int a = 0; a < aNumTransactions; a++) {
678       modifiedLabels(myDoc, aDeltaLabels);
679       myDoc->Undo();
680     }
681     myDoc->ClearRedos();
682   }
683   // abort for all subs, flushes will be later, in the end of root abort
684   const std::set<int> aSubs = subDocuments();
685   std::set<int>::iterator aSubIter = aSubs.begin();
686   for (; aSubIter != aSubs.end(); aSubIter++)
687     subDoc(*aSubIter)->abortOperation();
688   // references may be changed because they are set in attributes on the fly
689   myObjs->synchronizeFeatures(aDeltaLabels, true, false, false, isRoot());
690 }
691
692 bool Model_Document::isOperation() const
693 {
694   // operation is opened for all documents: no need to check subs
695   return myDoc->HasOpenCommand() == Standard_True ;
696 }
697
698 bool Model_Document::isModified()
699 {
700   // is modified if at least one operation was commited and not undoed
701   return myTransactions.size() != myTransactionSave || isOperation();
702 }
703
704 bool Model_Document::canUndo()
705 {
706   // issue 406 : if transaction is opened, but nothing to undo behind, can not undo
707   int aCurrentNum = isOperation() ? 1 : 0;
708   if (myDoc->GetAvailableUndos() > 0 &&
709       // there is something to undo in nested
710       (myNestedNum.empty() || *myNestedNum.rbegin() - aCurrentNum > 0) &&
711       myTransactions.size() - aCurrentNum > 0 /* for omitting the first useless transaction */)
712     return true;
713   // check other subs contains operation that can be undoed
714   const std::set<int> aSubs = subDocuments();
715   std::set<int>::iterator aSubIter = aSubs.begin();
716   for (; aSubIter != aSubs.end(); aSubIter++) {
717     std::shared_ptr<Model_Document> aSub = subDoc(*aSubIter);
718     if (aSub->myObjs) {// if it was not closed before
719       if (aSub->canUndo())
720         return true;
721     }
722   }
723
724   return false;
725 }
726
727 void Model_Document::undoInternal(const bool theWithSubs, const bool theSynchronize)
728 {
729   if (myTransactions.empty())
730     return;
731   int aNumTransactions = myTransactions.rbegin()->myOCAFNum;
732   myRedos.push_back(*myTransactions.rbegin());
733   myTransactions.pop_back();
734   if (!myNestedNum.empty())
735     (*myNestedNum.rbegin())--;
736   // roll back the needed number of transactions
737   TDF_LabelList aDeltaLabels;
738   for(int a = 0; a < aNumTransactions; a++) {
739     if (theSynchronize)
740       modifiedLabels(myDoc, aDeltaLabels);
741     myDoc->Undo();
742   }
743
744   if (theWithSubs) {
745     // undo for all subs
746     const std::set<int> aSubs = subDocuments();
747     std::set<int>::iterator aSubIter = aSubs.begin();
748     for (; aSubIter != aSubs.end(); aSubIter++) {
749       if (!subDoc(*aSubIter)->myObjs)
750         continue;
751       subDoc(*aSubIter)->undoInternal(theWithSubs, theSynchronize);
752     }
753   }
754   // after undo of all sub-documents to avoid updates on not-modified data (issue 370)
755   if (theSynchronize) {
756     myObjs->synchronizeFeatures(aDeltaLabels, true, false, false, isRoot());
757     // update the current features status
758     setCurrentFeature(currentFeature(false), false);
759   }
760 }
761
762 void Model_Document::undo()
763 {
764   undoInternal(true, true);
765 }
766
767 bool Model_Document::canRedo()
768 {
769   if (!myRedos.empty())
770     return true;
771   // check other subs contains operation that can be redoed
772   const std::set<int> aSubs = subDocuments();
773   std::set<int>::iterator aSubIter = aSubs.begin();
774   for (; aSubIter != aSubs.end(); aSubIter++) {
775     if (!subDoc(*aSubIter)->myObjs)
776       continue;
777     if (subDoc(*aSubIter)->canRedo())
778       return true;
779   }
780   return false;
781 }
782
783 void Model_Document::redo()
784 {
785   if (!myNestedNum.empty())
786     (*myNestedNum.rbegin())++;
787   int aNumRedos = myRedos.rbegin()->myOCAFNum;
788   myTransactions.push_back(*myRedos.rbegin());
789   myRedos.pop_back();
790   TDF_LabelList aDeltaLabels;
791   for(int a = 0; a < aNumRedos; a++) {
792     modifiedLabels(myDoc, aDeltaLabels, true);
793     myDoc->Redo();
794   }
795
796   // redo for all subs
797   const std::set<int> aSubs = subDocuments();
798   std::set<int>::iterator aSubIter = aSubs.begin();
799   for (; aSubIter != aSubs.end(); aSubIter++)
800     subDoc(*aSubIter)->redo();
801
802   // after redo of all sub-documents to avoid updates on not-modified data (issue 370)
803   myObjs->synchronizeFeatures(aDeltaLabels, true, false, false, isRoot());
804   // update the current features status
805   setCurrentFeature(currentFeature(false), false);
806 }
807
808 std::list<std::string> Model_Document::undoList() const
809 {
810   std::list<std::string> aResult;
811   // the number of skipped current operations (on undo they will be aborted)
812   int aSkipCurrent = isOperation() ? 1 : 0;
813   std::list<Transaction>::const_reverse_iterator aTrIter = myTransactions.crbegin();
814   int aNumUndo = int(myTransactions.size());
815   if (!myNestedNum.empty())
816     aNumUndo = *myNestedNum.rbegin();
817   for( ; aNumUndo > 0; aTrIter++, aNumUndo--) {
818     if (aSkipCurrent == 0) aResult.push_back(aTrIter->myId);
819     else aSkipCurrent--;
820   }
821   return aResult;
822 }
823
824 std::list<std::string> Model_Document::redoList() const
825 {
826   std::list<std::string> aResult;
827   std::list<Transaction>::const_reverse_iterator aTrIter = myRedos.crbegin();
828   for( ; aTrIter != myRedos.crend(); aTrIter++) {
829     aResult.push_back(aTrIter->myId);
830   }
831   return aResult;
832 }
833
834 void Model_Document::operationId(const std::string& theId)
835 {
836   myTransactions.rbegin()->myId = theId;
837 }
838
839 FeaturePtr Model_Document::addFeature(std::string theID, const bool theMakeCurrent)
840 {
841   std::shared_ptr<Model_Session> aSession =
842     std::dynamic_pointer_cast<Model_Session>(ModelAPI_Session::get());
843   FeaturePtr aFeature = aSession->createFeature(theID, this);
844   if (!aFeature)
845     return aFeature;
846   aFeature->init();
847   Model_Document* aDocToAdd;
848   if (!aFeature->documentToAdd().empty()) { // use the customized document to add
849     if (aFeature->documentToAdd() != kind()) { // the root document by default
850       aDocToAdd = std::dynamic_pointer_cast<Model_Document>(aSession->moduleDocument()).get();
851     } else {
852       aDocToAdd = this;
853     }
854   } else { // if customized is not presented, add to "this" document
855     aDocToAdd = this;
856   }
857   if (aFeature) {
858     // searching for feature after which must be added the next feature: this is the current feature
859     // but also all sub-features of this feature
860     FeaturePtr aCurrent = aDocToAdd->currentFeature(false);
861     bool isModified = true;
862     for(CompositeFeaturePtr aComp = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aCurrent);
863         aComp.get() && isModified;
864         aComp = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aCurrent)) {
865       isModified =  false;
866       int aSubs = aComp->numberOfSubs(false);
867       for(int a = 0; a < aSubs; a++) {
868         FeaturePtr aSub = aComp->subFeature(a, false);
869         if (myObjs->isLater(aSub, aCurrent)) {
870           isModified =  true;
871           aCurrent = aSub;
872         }
873       }
874     }
875     aDocToAdd->myObjs->addFeature(aFeature, aCurrent);
876     if (!aFeature->isAction()) {  // do not add action to the data model
877       if (theMakeCurrent)  // after all this feature stays in the document, so make it current
878         aDocToAdd->setCurrentFeature(aFeature, false);
879     } else { // feature must be executed
880        // no creation event => updater not working, problem with remove part
881       aFeature->execute();
882     }
883   }
884   return aFeature;
885 }
886
887
888 void Model_Document::refsToFeature(FeaturePtr theFeature,
889   std::set<std::shared_ptr<ModelAPI_Feature> >& theRefs, const bool isSendError)
890 {
891   myObjs->refsToFeature(theFeature, theRefs, isSendError);
892 }
893
894 void Model_Document::removeFeature(FeaturePtr theFeature)
895 {
896   myObjs->removeFeature(theFeature);
897 }
898
899 // recursive function to check if theSub is a child of theMain composite feature
900 // through all the hierarchy of parents
901 static bool isSub(const CompositeFeaturePtr theMain, const FeaturePtr theSub) {
902   CompositeFeaturePtr aParent = ModelAPI_Tools::compositeOwner(theSub);
903   if (!aParent.get())
904     return false;
905   if (aParent == theMain)
906     return true;
907   return isSub(theMain, aParent);
908 }
909
910
911 void Model_Document::moveFeature(FeaturePtr theMoved, FeaturePtr theAfterThis)
912 {
913   bool aCurrentUp = theMoved == currentFeature(false);
914   if (aCurrentUp) {
915     setCurrentFeatureUp();
916   }
917   // if user adds after high-level feature with nested,
918   // add it after all nested (otherwise the nested will be disabled)
919   CompositeFeaturePtr aCompositeAfter =
920     std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theAfterThis);
921   if (aCompositeAfter.get()) {
922     FeaturePtr aSub = aCompositeAfter;
923     do {
924       FeaturePtr aNext = myObjs->nextFeature(aSub);
925       if (!isSub(aCompositeAfter, aNext)) {
926         theAfterThis = aSub;
927         break;
928       }
929       aSub = aNext;
930     } while (aSub.get());
931   }
932
933   myObjs->moveFeature(theMoved, theAfterThis);
934   if (aCurrentUp) { // make the moved feature enabled or disabled due to the real status
935     setCurrentFeature(currentFeature(false), false);
936   } else if (theAfterThis == currentFeature(false)) {
937     // must be after move to make enabled all features which are before theMoved
938     setCurrentFeature(theMoved, true);
939   }
940 }
941
942 void Model_Document::updateHistory(const std::shared_ptr<ModelAPI_Object> theObject)
943 {
944   myObjs->updateHistory(theObject);
945 }
946
947 void Model_Document::updateHistory(const std::string theGroup)
948 {
949   myObjs->updateHistory(theGroup);
950 }
951
952 const std::set<int> Model_Document::subDocuments() const
953 {
954   std::set<int> aResult;
955   std::list<ResultPtr> aPartResults;
956   myObjs->allResults(ModelAPI_ResultPart::group(), aPartResults);
957   std::list<ResultPtr>::iterator aPartRes = aPartResults.begin();
958   for(; aPartRes != aPartResults.end(); aPartRes++) {
959     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aPartRes);
960     if (aPart && aPart->isActivated()) {
961       aResult.insert(aPart->original()->partDoc()->id());
962     }
963   }
964   return aResult;
965 }
966
967 std::shared_ptr<Model_Document> Model_Document::subDoc(int theDocID)
968 {
969   // just store sub-document identifier here to manage it later
970   return std::dynamic_pointer_cast<Model_Document>(
971     Model_Application::getApplication()->document(theDocID));
972 }
973
974 ObjectPtr Model_Document::object(const std::string& theGroupID, const int theIndex)
975 {
976   return myObjs->object(theGroupID, theIndex);
977 }
978
979 std::shared_ptr<ModelAPI_Object> Model_Document::objectByName(
980     const std::string& theGroupID, const std::string& theName)
981 {
982   return myObjs->objectByName(theGroupID, theName);
983 }
984
985 const int Model_Document::index(std::shared_ptr<ModelAPI_Object> theObject)
986 {
987   return myObjs->index(theObject);
988 }
989
990 int Model_Document::size(const std::string& theGroupID)
991 {
992   if (myObjs == 0) // may be on close
993     return 0;
994   return myObjs->size(theGroupID);
995 }
996
997 std::shared_ptr<ModelAPI_Feature> Model_Document::currentFeature(const bool theVisible)
998 {
999   if (!myObjs) // on close document feature destruction it may call this method
1000     return std::shared_ptr<ModelAPI_Feature>();
1001   TDF_Label aRefLab = generalLabel().FindChild(TAG_CURRENT_FEATURE);
1002   Handle(TDF_Reference) aRef;
1003   if (aRefLab.FindAttribute(TDF_Reference::GetID(), aRef)) {
1004     TDF_Label aLab = aRef->Get();
1005     FeaturePtr aResult = myObjs->feature(aLab);
1006     if (theVisible) { // get nearest visible (in history) going up
1007       while(aResult.get() &&  !aResult->isInHistory()) {
1008         aResult = myObjs->nextFeature(aResult, true);
1009       }
1010     }
1011     return aResult;
1012   }
1013   return std::shared_ptr<ModelAPI_Feature>(); // null feature means the higher than first
1014 }
1015
1016 void Model_Document::setCurrentFeature(
1017   std::shared_ptr<ModelAPI_Feature> theCurrent, const bool theVisible)
1018 {
1019   // blocks the flush signals to avoid each objects visualization in the viewer
1020   // they should not be shown once after all modifications are performed
1021   Events_Loop* aLoop = Events_Loop::loop();
1022   bool isActive = aLoop->activateFlushes(false);
1023
1024   TDF_Label aRefLab = generalLabel().FindChild(TAG_CURRENT_FEATURE);
1025   CompositeFeaturePtr aMain; // main feature that may nest the new current
1026   std::set<FeaturePtr> anOwners; // composites that contain theCurrent (with any level of nesting)
1027   if (theCurrent.get()) {
1028     aMain = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theCurrent);
1029     CompositeFeaturePtr anOwner = ModelAPI_Tools::compositeOwner(theCurrent);
1030     while(anOwner.get()) {
1031       if (!aMain.get()) {
1032         aMain = anOwner;
1033       }
1034       anOwners.insert(anOwner);
1035       anOwner = ModelAPI_Tools::compositeOwner(anOwner);
1036     }
1037   }
1038
1039   if (theVisible && !theCurrent.get()) {
1040     // needed to avoid disabling of PartSet initial constructions
1041     FeaturePtr aNext =
1042       theCurrent.get() ? myObjs->nextFeature(theCurrent) : myObjs->firstFeature();
1043     for (; aNext.get(); aNext = myObjs->nextFeature(theCurrent)) {
1044       if (aNext->isInHistory()) {
1045         break; // next in history is not needed
1046       } else { // next not in history is good for making current
1047         theCurrent = aNext;
1048       }
1049     }
1050   }
1051   if (theCurrent.get()) {
1052     std::shared_ptr<Model_Data> aData = std::static_pointer_cast<Model_Data>(theCurrent->data());
1053     if (!aData.get() || !aData->isValid()) {
1054       aLoop->activateFlushes(isActive);
1055       return;
1056     }
1057     TDF_Label aFeatureLabel = aData->label().Father();
1058
1059     Handle(TDF_Reference) aRef;
1060     if (aRefLab.FindAttribute(TDF_Reference::GetID(), aRef)) {
1061       aRef->Set(aFeatureLabel);
1062     } else {
1063       aRef = TDF_Reference::Set(aRefLab, aFeatureLabel);
1064     }
1065   } else { // remove reference for the null feature
1066     aRefLab.ForgetAttribute(TDF_Reference::GetID());
1067   }
1068   // make all features after this feature disabled in reversed order
1069   // (to remove results without deps)
1070   static Events_ID aRedispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
1071
1072   bool aPassed = false; // flag that the current object is already passed in cycle
1073   FeaturePtr anIter = myObjs->lastFeature();
1074   bool aWasChanged = false;
1075   bool isCurrentParameter = theCurrent.get() && theCurrent->getKind() == "Parameter";
1076   for(; anIter.get(); anIter = myObjs->nextFeature(anIter, true)) {
1077     // check this before passed become enabled: the current feature is enabled!
1078     if (anIter == theCurrent) aPassed = true;
1079
1080     bool aDisabledFlag = !aPassed;
1081     if (aMain.get()) {
1082       if (isSub(aMain, anIter)) // sub-elements of not-disabled feature are not disabled
1083         aDisabledFlag = false;
1084       else if (anOwners.find(anIter) != anOwners.end())
1085         // disable the higher-level feature is the nested is the current
1086         aDisabledFlag = true;
1087     }
1088
1089     if (anIter->getKind() == "Parameter") {
1090       // parameters are always out of the history of features, but not parameters
1091       // due to the issue 1491 all parameters are kept enabled any time
1092       //if (!isCurrentParameter)
1093         aDisabledFlag = false;
1094     } else if (isCurrentParameter) {
1095       // if paramater is active, all other features become enabled (issue 1307)
1096       aDisabledFlag = false;
1097     }
1098
1099     if (anIter->setDisabled(aDisabledFlag)) {
1100       static Events_ID anUpdateEvent = aLoop->eventByName(EVENT_OBJECT_UPDATED);
1101       // state of feature is changed => so inform that it must be updated if it has such state
1102       if (!aDisabledFlag &&
1103           (anIter->data()->execState() == ModelAPI_StateMustBeUpdated ||
1104            anIter->data()->execState() == ModelAPI_StateInvalidArgument))
1105         ModelAPI_EventCreator::get()->sendUpdated(anIter, anUpdateEvent);
1106       // flush is in the end of this method
1107       ModelAPI_EventCreator::get()->sendUpdated(anIter, aRedispEvent /*, false*/);
1108       aWasChanged = true;
1109     }
1110     // update for everyone the concealment flag immideately: on edit feature in the midle of history
1111     if (aWasChanged) {
1112       std::list<ResultPtr> aResults;
1113       ModelAPI_Tools::allResults(anIter, aResults);
1114       std::list<ResultPtr>::const_iterator aRes = aResults.begin();
1115       for(; aRes != aResults.end(); aRes++) {
1116         if ((*aRes).get() && (*aRes)->data()->isValid() && !(*aRes)->isDisabled())
1117           std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->updateConcealmentFlag();
1118       }
1119       // update the concealment status for disply in isConcealed of ResultBody
1120       for(aRes = aResults.begin(); aRes != aResults.end(); aRes++) {
1121         if ((*aRes).get() && (*aRes)->data()->isValid() && !(*aRes)->isDisabled())
1122           (*aRes)->isConcealed();
1123       }
1124     }
1125   }
1126   // unblock  the flush signals and up them after this
1127   aLoop->activateFlushes(isActive);
1128 }
1129
1130 void Model_Document::setCurrentFeatureUp()
1131 {
1132   // on remove just go up for minimum step: highlight external objects in sketch causes
1133   // problems if it is true: here and in "setCurrentFeature"
1134   FeaturePtr aCurrent = currentFeature(false);
1135   if (aCurrent.get()) { // if not, do nothing because null is the upper
1136     FeaturePtr aPrev = myObjs->nextFeature(aCurrent, true);
1137     // make the higher level composite as current (sketch becomes disabled if line is enabled)
1138     if (aPrev.get()) {
1139       FeaturePtr aComp = ModelAPI_Tools::compositeOwner(aPrev);
1140       // without cycle (issue 1555): otherwise extrusion fuse
1141       // will be enabled and displayed whaen inside sketch
1142       if (aComp.get())
1143           aPrev = aComp;
1144     }
1145     // do not flush: it is called only on remove, it will be flushed in the end of transaction
1146     setCurrentFeature(aPrev, false);
1147   }
1148 }
1149
1150 TDF_Label Model_Document::generalLabel() const
1151 {
1152   return myDoc->Main().FindChild(TAG_GENERAL);
1153 }
1154
1155 std::shared_ptr<ModelAPI_ResultConstruction> Model_Document::createConstruction(
1156     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1157 {
1158   return myObjs->createConstruction(theFeatureData, theIndex);
1159 }
1160
1161 std::shared_ptr<ModelAPI_ResultBody> Model_Document::createBody(
1162     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1163 {
1164   return myObjs->createBody(theFeatureData, theIndex);
1165 }
1166
1167 std::shared_ptr<ModelAPI_ResultPart> Model_Document::createPart(
1168     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1169 {
1170   return myObjs->createPart(theFeatureData, theIndex);
1171 }
1172
1173 std::shared_ptr<ModelAPI_ResultPart> Model_Document::copyPart(
1174       const std::shared_ptr<ModelAPI_ResultPart>& theOrigin,
1175       const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1176 {
1177   return myObjs->copyPart(theOrigin, theFeatureData, theIndex);
1178 }
1179
1180 std::shared_ptr<ModelAPI_ResultGroup> Model_Document::createGroup(
1181     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1182 {
1183   return myObjs->createGroup(theFeatureData, theIndex);
1184 }
1185
1186 std::shared_ptr<ModelAPI_ResultField> Model_Document::createField(
1187     const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1188 {
1189   return myObjs->createField(theFeatureData, theIndex);
1190 }
1191
1192 std::shared_ptr<ModelAPI_ResultParameter> Model_Document::createParameter(
1193       const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex)
1194 {
1195   return myObjs->createParameter(theFeatureData, theIndex);
1196 }
1197
1198 std::shared_ptr<ModelAPI_Feature> Model_Document::feature(
1199     const std::shared_ptr<ModelAPI_Result>& theResult)
1200 {
1201   return myObjs->feature(theResult);
1202 }
1203
1204 Standard_Integer HashCode(const TDF_Label& theLab, const Standard_Integer theUpper)
1205 {
1206   return TDF_LabelMapHasher::HashCode(theLab, theUpper);
1207
1208 }
1209 Standard_Boolean IsEqual(const TDF_Label& theLab1, const TDF_Label& theLab2)
1210 {
1211   return TDF_LabelMapHasher::IsEqual(theLab1, theLab2);
1212 }
1213
1214 void Model_Document::addNamingName(const TDF_Label theLabel, std::string theName)
1215 {
1216   myNamingNames[theName] = theLabel;
1217 }
1218
1219 void Model_Document::changeNamingName(const std::string theOldName, const std::string theNewName)
1220 {
1221   std::map<std::string, TDF_Label>::iterator aFind = myNamingNames.find(theOldName);
1222   if (aFind != myNamingNames.end()) {
1223     myNamingNames[theNewName] = aFind->second;
1224     myNamingNames.erase(theOldName);
1225   }
1226 }
1227
1228 TDF_Label Model_Document::findNamingName(std::string theName)
1229 {
1230   std::map<std::string, TDF_Label>::iterator aFind = myNamingNames.find(theName);
1231   if (aFind != myNamingNames.end()) {
1232     return aFind->second;
1233   }
1234   // not found exact name, try to find by sub-components
1235   std::string::size_type aSlash = theName.rfind('/');
1236   if (aSlash != std::string::npos) {
1237     std::string anObjName = theName.substr(0, aSlash);
1238     aFind = myNamingNames.find(anObjName);
1239     if (aFind != myNamingNames.end()) {
1240       TCollection_ExtendedString aSubName(theName.substr(aSlash + 1).c_str());
1241       // searching sub-labels with this name
1242       TDF_ChildIDIterator aNamesIter(aFind->second, TDataStd_Name::GetID(), Standard_True);
1243       for(; aNamesIter.More(); aNamesIter.Next()) {
1244         Handle(TDataStd_Name) aName = Handle(TDataStd_Name)::DownCast(aNamesIter.Value());
1245         if (aName->Get() == aSubName)
1246           return aName->Label();
1247       }
1248       // If not found child label with the exact sub-name, then try to find compound with
1249       // such sub-name without suffix.
1250       Standard_Integer aSuffixPos = aSubName.SearchFromEnd('_');
1251       if (aSuffixPos != -1) {
1252         TCollection_ExtendedString anIndexStr = aSubName.Split(aSuffixPos);
1253         aSubName.Remove(aSuffixPos);
1254         aNamesIter.Initialize(aFind->second, TDataStd_Name::GetID(), Standard_True);
1255         for(; aNamesIter.More(); aNamesIter.Next()) {
1256           Handle(TDataStd_Name) aName = Handle(TDataStd_Name)::DownCast(aNamesIter.Value());
1257           if (aName->Get() == aSubName) {
1258             return aName->Label();
1259           }
1260         }
1261       }
1262     }
1263   }
1264   return TDF_Label(); // not found
1265 }
1266
1267 ResultPtr Model_Document::findByName(const std::string theName)
1268 {
1269   return myObjs->findByName(theName);
1270 }
1271
1272 std::list<std::shared_ptr<ModelAPI_Feature> > Model_Document::allFeatures()
1273 {
1274   return myObjs->allFeatures();
1275 }
1276
1277 void Model_Document::setActive(const bool theFlag)
1278 {
1279   if (theFlag != myIsActive) {
1280     myIsActive = theFlag;
1281     // redisplay all the objects of this part
1282     static Events_Loop* aLoop = Events_Loop::loop();
1283     static Events_ID aRedispEvent = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
1284
1285     for(int a = size(ModelAPI_Feature::group()) - 1; a >= 0; a--) {
1286       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(
1287         object(ModelAPI_Feature::group(), a));
1288       if (aFeature.get() && aFeature->data()->isValid()) {
1289         const std::list<std::shared_ptr<ModelAPI_Result> >& aResList = aFeature->results();
1290         std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRes = aResList.begin();
1291         for(; aRes != aResList.end(); aRes++) {
1292           ModelAPI_EventCreator::get()->sendUpdated(*aRes, aRedispEvent);
1293           // #issue 1048: sub-compsolids also
1294           ResultCompSolidPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(*aRes);
1295           if (aCompRes.get()) {
1296             int aNumSubs = aCompRes->numberOfSubs();
1297             for(int a = 0; a < aNumSubs; a++) {
1298               ResultPtr aSub = aCompRes->subResult(a);
1299               if (aSub.get()) {
1300                 ModelAPI_EventCreator::get()->sendUpdated(aSub, aRedispEvent);
1301               }
1302             }
1303           }
1304         }
1305       }
1306     }
1307   }
1308 }
1309
1310 bool Model_Document::isActive() const
1311 {
1312   return myIsActive;
1313 }
1314
1315 int Model_Document::transactionID()
1316 {
1317   Handle(TDataStd_Integer) anIndex;
1318   if (!generalLabel().FindChild(TAG_CURRENT_TRANSACTION).
1319       FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
1320     anIndex = TDataStd_Integer::Set(generalLabel().FindChild(TAG_CURRENT_TRANSACTION), 1);
1321   }
1322   return anIndex->Get();
1323 }
1324
1325 void Model_Document::incrementTransactionID()
1326 {
1327   int aNewVal = transactionID() + 1;
1328   TDataStd_Integer::Set(generalLabel().FindChild(TAG_CURRENT_TRANSACTION), aNewVal);
1329 }
1330 void Model_Document::decrementTransactionID()
1331 {
1332   int aNewVal = transactionID() - 1;
1333   TDataStd_Integer::Set(generalLabel().FindChild(TAG_CURRENT_TRANSACTION), aNewVal);
1334 }
1335
1336 TDF_Label Model_Document::extConstructionsLabel() const
1337 {
1338   return myDoc->Main().FindChild(TAG_EXTERNAL_CONSTRUCTIONS);
1339 }
1340
1341 bool Model_Document::isOpened()
1342 {
1343   return myObjs && !myDoc.IsNull();
1344 }
1345
1346 int Model_Document::numInternalFeatures()
1347 {
1348   return myObjs->numInternalFeatures();
1349 }
1350
1351 std::shared_ptr<ModelAPI_Feature> Model_Document::internalFeature(const int theIndex)
1352 {
1353   return myObjs->internalFeature(theIndex);
1354 }
1355
1356 std::shared_ptr<ModelAPI_Feature> Model_Document::featureById(const int theId)
1357 {
1358   return myObjs->featureById(theId);
1359 }
1360
1361 void Model_Document::synchronizeTransactions()
1362 {
1363   Model_Document* aRoot =
1364     std::dynamic_pointer_cast<Model_Document>(ModelAPI_Session::get()->moduleDocument()).get();
1365   if (aRoot == this)
1366     return; // don't need to synchronise root with root
1367
1368   std::shared_ptr<Model_Session> aSession =
1369     std::dynamic_pointer_cast<Model_Session>(Model_Session::get());
1370   while(myRedos.size() > aRoot->myRedos.size()) { // remove redos in this
1371     aSession->setCheckTransactions(false);
1372     redo();
1373     aSession->setCheckTransactions(true);
1374   }
1375   /* this case can not be reproduced in any known case for the current moment, so, just comment
1376   while(myRedos.size() < aRoot->myRedos.size()) { // add more redos in this
1377     undoInternal(false, true);
1378   }*/
1379 }
1380
1381 /// Feature that is used for selection in the Part document by the external request
1382 class Model_SelectionInPartFeature : public ModelAPI_Feature {
1383 public:
1384   /// Nothing to do in constructor
1385   Model_SelectionInPartFeature() : ModelAPI_Feature() {}
1386
1387   /// Returns the unique kind of a feature
1388   virtual const std::string& getKind() {
1389     static std::string MY_KIND("InternalSelectionInPartFeature");
1390     return MY_KIND;
1391   }
1392   /// Request for initialization of data model of the object: adding all attributes
1393   virtual void initAttributes() {
1394     data()->addAttribute("selection", ModelAPI_AttributeSelectionList::typeId());
1395   }
1396   /// Nothing to do in the execution function
1397   virtual void execute() {}
1398
1399 };
1400
1401 //! Returns the feature that is used for calculation of selection externally from the document
1402 AttributeSelectionListPtr Model_Document::selectionInPartFeature()
1403 {
1404   // return already created, otherwise create
1405   if (!mySelectionFeature.get() || !mySelectionFeature->data()->isValid()) {
1406     // create a new one
1407     mySelectionFeature = FeaturePtr(new Model_SelectionInPartFeature);
1408
1409     TDF_Label aFeatureLab = generalLabel().FindChild(TAG_SELECTION_FEATURE);
1410     std::shared_ptr<Model_Data> aData(new Model_Data);
1411     aData->setLabel(aFeatureLab.FindChild(1));
1412     aData->setObject(mySelectionFeature);
1413     mySelectionFeature->setDoc(myObjs->owner());
1414     mySelectionFeature->setData(aData);
1415     std::string aName = id() + "_Part";
1416     mySelectionFeature->data()->setName(aName);
1417     mySelectionFeature->setDoc(myObjs->owner());
1418     mySelectionFeature->initAttributes();
1419     mySelectionFeature->init(); // to make it enabled and Update correctly
1420     // this update may cause recomputation of the part after selection on it, that is not needed
1421     mySelectionFeature->data()->blockSendAttributeUpdated(true);
1422   }
1423   return mySelectionFeature->selectionList("selection");
1424 }
1425
1426 FeaturePtr Model_Document::lastFeature()
1427 {
1428   if (myObjs)
1429     return myObjs->lastFeature();
1430   return FeaturePtr();
1431 }
1432
1433 static Handle(TNaming_NamedShape) searchForOriginalShape(TopoDS_Shape theShape, TDF_Label aMain) {
1434   Handle(TNaming_NamedShape) aResult;
1435   while(!theShape.IsNull()) { // searching for the very initial shape that produces this one
1436     TopoDS_Shape aShape = theShape;
1437     theShape.Nullify();
1438     // to avoid crash of TNaming_SameShapeIterator if pure shape does not exists
1439     if (!TNaming_Tool::HasLabel(aMain, aShape))
1440       break;
1441     for(TNaming_SameShapeIterator anIter(aShape, aMain); anIter.More(); anIter.Next()) {
1442       TDF_Label aNSLab = anIter.Label();
1443       Handle(TNaming_NamedShape) aNS;
1444       if (aNSLab.FindAttribute(TNaming_NamedShape::GetID(), aNS)) {
1445         for(TNaming_Iterator aShapesIter(aNS); aShapesIter.More(); aShapesIter.Next()) {
1446           if (aShapesIter.Evolution() == TNaming_SELECTED ||
1447               aShapesIter.Evolution() == TNaming_DELETE)
1448             continue; // don't use the selection evolution
1449           if (aShapesIter.NewShape().IsSame(aShape)) { // found the original shape
1450             aResult = aNS;
1451             if (aResult->Evolution() == TNaming_MODIFY)
1452               theShape = aShapesIter.OldShape();
1453             // otherwise may me searching for another item of this shape with longer history
1454             if (!theShape.IsNull())
1455               break;
1456           }
1457         }
1458       }
1459     }
1460   }
1461   return aResult;
1462 }
1463
1464 std::shared_ptr<ModelAPI_Feature> Model_Document::producedByFeature(
1465     std::shared_ptr<ModelAPI_Result> theResult,
1466     const std::shared_ptr<GeomAPI_Shape>& theShape)
1467 {
1468   ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theResult);
1469   if (!aBody.get()) {
1470     return feature(theResult); // for not-body just returns the feature that produced this result
1471   }
1472   // otherwise get the shape and search the very initial label for it
1473   TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();
1474   if (aShape.IsNull())
1475     return FeaturePtr();
1476
1477   // for comsolids and compounds all the naming is located in the main object, so, try to use
1478   // it first
1479   ResultCompSolidPtr aMain = ModelAPI_Tools::compSolidOwner(theResult);
1480   if (aMain.get()) {
1481     FeaturePtr aMainRes = producedByFeature(aMain, theShape);
1482     if (aMainRes)
1483       return aMainRes;
1484   }
1485
1486   std::shared_ptr<Model_Data> aBodyData = std::dynamic_pointer_cast<Model_Data>(theResult->data());
1487   if (!aBodyData.get() || !aBodyData->isValid())
1488     return FeaturePtr();
1489
1490   TopoDS_Shape anOldShape; // old shape in the pair oldshape->theShape in the named shape
1491   TopoDS_Shape aShapeContainer; // old shape of the shape that contains aShape as sub-element
1492   Handle(TNaming_NamedShape) aCandidatInThis, aCandidatContainer;
1493   TDF_Label aBodyLab = aBodyData->label();
1494   // use childs and this label (the lowest priority)
1495   TDF_ChildIDIterator aNSIter(aBodyLab, TNaming_NamedShape::GetID(), Standard_True);
1496   bool aUseThis = !aNSIter.More();
1497   while(anOldShape.IsNull() && (aNSIter.More() || aUseThis)) {
1498     Handle(TNaming_NamedShape) aNS;
1499     if (aUseThis) {
1500       if (!aBodyLab.FindAttribute(TNaming_NamedShape::GetID(), aNS))
1501         break;
1502     } else {
1503       aNS = Handle(TNaming_NamedShape)::DownCast(aNSIter.Value());
1504     }
1505     for(TNaming_Iterator aShapesIter(aNS); aShapesIter.More(); aShapesIter.Next()) {
1506       if (aShapesIter.Evolution() == TNaming_SELECTED || aShapesIter.Evolution() == TNaming_DELETE)
1507         continue; // don't use the selection evolution
1508       if (aShapesIter.NewShape().IsSame(aShape)) { // found the original shape
1509         aCandidatInThis = aNS;
1510         if (aCandidatInThis->Evolution() == TNaming_MODIFY)
1511           anOldShape = aShapesIter.OldShape();
1512         // otherwise may me searching for another item of this shape with longer history
1513         if (!anOldShape.IsNull())
1514           break;
1515       }
1516       // check that the shape contains aShape as sub-shape to fill container
1517       if (aShapesIter.NewShape().ShapeType() < aShape.ShapeType() && aCandidatContainer.IsNull()) {
1518         TopExp_Explorer anExp(aShapesIter.NewShape(), aShape.ShapeType());
1519         for(; anExp.More(); anExp.Next()) {
1520           if (aShape.IsSame(anExp.Current())) {
1521             aCandidatContainer = aNS;
1522             aShapeContainer = aShapesIter.NewShape();
1523           }
1524         }
1525       }
1526     }
1527     // iterate to the next label or to the body label in the end
1528     if (!aUseThis)
1529       aNSIter.Next();
1530     if (!aNSIter.More()) {
1531       if (aUseThis)
1532         break;
1533       aUseThis = true;
1534     }
1535   }
1536   if (aCandidatInThis.IsNull()) {
1537     // to fix 1512: searching for original shape of this shape
1538     // if modification of it is not in this result
1539     aCandidatInThis = searchForOriginalShape(aShape, myDoc->Main());
1540     if (aCandidatInThis.IsNull()) {
1541       if (aCandidatContainer.IsNull())
1542         return FeaturePtr();
1543       // with the lower priority use the higher level shape that contains aShape
1544       aCandidatInThis = aCandidatContainer;
1545       anOldShape = aShapeContainer;
1546     } else {
1547       // to stop the searching by the following searchForOriginalShape
1548       anOldShape.Nullify();
1549     }
1550   }
1551
1552   Handle(TNaming_NamedShape) aNS = searchForOriginalShape(anOldShape, myDoc->Main());
1553   if (!aNS.IsNull())
1554     aCandidatInThis = aNS;
1555
1556   FeaturePtr aResult;
1557   TDF_Label aResultLab = aCandidatInThis->Label();
1558   while(aResultLab.Depth() > 3)
1559     aResultLab = aResultLab.Father();
1560   FeaturePtr aFeature = myObjs->feature(aResultLab);
1561   if (aFeature.get()) {
1562     if (!aResult.get() || myObjs->isLater(aResult, aFeature)) {
1563       aResult = aFeature;
1564     }
1565   }
1566   return aResult;
1567 }
1568
1569 bool Model_Document::isLater(FeaturePtr theLater, FeaturePtr theCurrent) const
1570 {
1571   return myObjs->isLater(theLater, theCurrent);
1572 }
1573
1574 void Model_Document::storeNodesState(const std::list<bool>& theStates)
1575 {
1576   TDF_Label aLab = generalLabel().FindChild(TAG_NODES_STATE);
1577   aLab.ForgetAllAttributes();
1578   if (!theStates.empty()) {
1579     Handle(TDataStd_BooleanArray) anArray =
1580       TDataStd_BooleanArray::Set(aLab, 0, int(theStates.size()) - 1);
1581     std::list<bool>::const_iterator aState = theStates.begin();
1582     for(int anIndex = 0; aState != theStates.end(); aState++, anIndex++) {
1583       anArray->SetValue(anIndex, *aState);
1584     }
1585   }
1586 }
1587
1588 void Model_Document::restoreNodesState(std::list<bool>& theStates) const
1589 {
1590   TDF_Label aLab = generalLabel().FindChild(TAG_NODES_STATE);
1591   Handle(TDataStd_BooleanArray) anArray;
1592   if (aLab.FindAttribute(TDataStd_BooleanArray::GetID(), anArray)) {
1593     int anUpper = anArray->Upper();
1594     for(int anIndex = 0; anIndex <= anUpper; anIndex++) {
1595       theStates.push_back(anArray->Value(anIndex) == Standard_True);
1596     }
1597   }
1598 }