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