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