Salome HOME
#1404 Random crash with Shaper: AIS presentations: operation prs, result sketch prs...
[modules/shaper.git] / src / Model / Model_Data.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_Data.hxx
4 // Created:     21 Mar 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include <Model_Data.h>
8 #include <Model_AttributeDocRef.h>
9 #include <Model_AttributeInteger.h>
10 #include <Model_AttributeDouble.h>
11 #include <Model_AttributeReference.h>
12 #include <Model_AttributeRefAttr.h>
13 #include <Model_AttributeRefList.h>
14 #include <Model_AttributeRefAttrList.h>
15 #include <Model_AttributeBoolean.h>
16 #include <Model_AttributeString.h>
17 #include <Model_AttributeSelection.h>
18 #include <Model_AttributeSelectionList.h>
19 #include <Model_AttributeIntArray.h>
20 #include <Model_Events.h>
21 #include <Model_Expression.h>
22 #include <ModelAPI_Feature.h>
23 #include <ModelAPI_Result.h>
24 #include <ModelAPI_ResultParameter.h>
25 #include <ModelAPI_Validator.h>
26 #include <ModelAPI_Session.h>
27 #include <ModelAPI_ResultPart.h>
28 #include <ModelAPI_ResultCompSolid.h>
29 #include <ModelAPI_Tools.h>
30 #include <Model_Validator.h>
31
32 #include <GeomDataAPI_Point.h>
33 #include <GeomDataAPI_Point2D.h>
34
35 #include <GeomData_Point.h>
36 #include <GeomData_Point2D.h>
37 #include <GeomData_Dir.h>
38 #include <Events_Loop.h>
39 #include <Events_Error.h>
40
41 #include <TDataStd_Name.hxx>
42 #include <TDataStd_AsciiString.hxx>
43 #include <TDataStd_IntegerArray.hxx>
44 #include <TDF_AttributeIterator.hxx>
45 #include <TDF_ChildIterator.hxx>
46 #include <TDF_RelocationTable.hxx>
47 #include <TColStd_HArray1OfByte.hxx>
48
49 #include <string>
50
51 // myLab contains:
52 // TDataStd_Name - name of the object
53 // TDataStd_IntegerArray - state of the object execution, transaction ID of update
54 // TDataStd_BooleanArray - array of flags of this data:
55 //                             0 - is in history or not
56 static const int kFlagInHistory = 0;
57 //                             1 - is displayed or not
58 static const int kFlagDisplayed = 1;
59 //                             2 - is deleted (for results) or not
60 static const int kFlagDeleted = 2;
61
62 // invalid data
63 const static std::shared_ptr<ModelAPI_Data> kInvalid(new Model_Data());
64
65 Model_Data::Model_Data() : mySendAttributeUpdated(true), myWasChangedButBlocked(false)
66 {
67 }
68
69 void Model_Data::setLabel(TDF_Label theLab)
70 {
71   myLab = theLab;
72   // set or get the default flags
73   if (!myLab.FindAttribute(TDataStd_BooleanArray::GetID(), myFlags)) {
74     // set default values if not found
75     myFlags = TDataStd_BooleanArray::Set(myLab, 0, 2);
76     myFlags->SetValue(kFlagInHistory, Standard_True); // is in history by default is true
77     myFlags->SetValue(kFlagDisplayed, Standard_True); // is displayed by default is true
78     myFlags->SetValue(kFlagDeleted, Standard_False); // is deleted by default is false
79   } else if (myFlags->Length() != 3) { // for old formats support
80     Standard_Boolean aFlag0 = myFlags->Upper() >= 0 ? myFlags->Value(0) : Standard_True;
81     Standard_Boolean aFlag1 = myFlags->Upper() >= 1 ? myFlags->Value(1) : Standard_True;
82     Standard_Boolean aFlag2 = myFlags->Upper() >= 2 ? myFlags->Value(2) : Standard_True;
83     Handle(TColStd_HArray1OfByte) aNewArray = new TColStd_HArray1OfByte(0, 2);
84     myFlags->SetInternalArray(aNewArray);
85     myFlags->SetValue(0, aFlag0); 
86     myFlags->SetValue(1, aFlag1); 
87     myFlags->SetValue(2, aFlag2); 
88   }
89 }
90
91 std::string Model_Data::name()
92 {
93   Handle(TDataStd_Name) aName;
94   if (myLab.FindAttribute(TDataStd_Name::GetID(), aName))
95     return std::string(TCollection_AsciiString(aName->Get()).ToCString());
96   return "";  // not defined
97 }
98
99 void Model_Data::setName(const std::string& theName)
100 {
101   bool isModified = false;
102   std::string anOldName = name();
103   Handle(TDataStd_Name) aName;
104   if (!myLab.FindAttribute(TDataStd_Name::GetID(), aName)) {
105     TDataStd_Name::Set(myLab, theName.c_str());
106     isModified = true;
107   } else {
108     isModified = !aName->Get().IsEqual(theName.c_str());
109     if (isModified)
110       aName->Set(theName.c_str());
111   }
112   if (mySendAttributeUpdated && isModified)
113     ModelAPI_ObjectRenamedMessage::send(myObject, anOldName, theName, this);
114 }
115
116 AttributePtr Model_Data::addAttribute(const std::string& theID, const std::string theAttrType)
117 {
118   AttributePtr aResult;
119   TDF_Label anAttrLab = myLab.FindChild(int(myAttrs.size()) + 1);
120   ModelAPI_Attribute* anAttr = 0;
121   if (theAttrType == ModelAPI_AttributeDocRef::typeId()) {
122     anAttr = new Model_AttributeDocRef(anAttrLab);
123   } else if (theAttrType == Model_AttributeInteger::typeId()) {
124     Model_AttributeInteger* anAttribute = new Model_AttributeInteger();
125     // Expression should use the same label to support backward compatibility
126     TDF_Label anExpressionLab = anAttrLab;
127     anAttribute->myExpression.reset(new Model_ExpressionInteger(anExpressionLab));
128     anAttribute->myIsInitialized = anAttribute->myExpression->isInitialized();
129     anAttr = anAttribute;
130   } else if (theAttrType == ModelAPI_AttributeDouble::typeId()) {
131     Model_AttributeDouble* anAttribute = new Model_AttributeDouble();
132     TDF_Label anExpressionLab = anAttrLab.FindChild(1);
133     anAttribute->myExpression.reset(new Model_ExpressionDouble(anExpressionLab));
134     anAttribute->myIsInitialized = anAttribute->myExpression->isInitialized();
135     anAttr = anAttribute;
136   } else if (theAttrType == Model_AttributeBoolean::typeId()) {
137     anAttr = new Model_AttributeBoolean(anAttrLab);
138   } else if (theAttrType == Model_AttributeString::typeId()) {
139     anAttr = new Model_AttributeString(anAttrLab);
140   } else if (theAttrType == ModelAPI_AttributeReference::typeId()) {
141     anAttr = new Model_AttributeReference(anAttrLab);
142   } else if (theAttrType == ModelAPI_AttributeSelection::typeId()) {
143     anAttr = new Model_AttributeSelection(anAttrLab);
144   } else if (theAttrType == ModelAPI_AttributeSelectionList::typeId()) {
145     anAttr = new Model_AttributeSelectionList(anAttrLab);
146   } else if (theAttrType == ModelAPI_AttributeRefAttr::typeId()) {
147     anAttr = new Model_AttributeRefAttr(anAttrLab);
148   } else if (theAttrType == ModelAPI_AttributeRefList::typeId()) {
149     anAttr = new Model_AttributeRefList(anAttrLab);
150   } else if (theAttrType == ModelAPI_AttributeRefAttrList::typeId()) {
151     anAttr = new Model_AttributeRefAttrList(anAttrLab);
152   } else if (theAttrType == ModelAPI_AttributeIntArray::typeId()) {
153     anAttr = new Model_AttributeIntArray(anAttrLab);
154   } 
155   // create also GeomData attributes here because only here the OCAF structure is known
156   else if (theAttrType == GeomData_Point::typeId()) {
157     GeomData_Point* anAttribute = new GeomData_Point();
158     bool anAllInitialized = true;
159     for (int aComponent = 0; aComponent < GeomData_Point::NUM_COMPONENTS; ++aComponent) {
160       TDF_Label anExpressionLab = anAttrLab.FindChild(aComponent + 1);
161       anAttribute->myExpression[aComponent].reset(new Model_ExpressionDouble(anExpressionLab));
162       anAllInitialized = anAllInitialized && anAttribute->myExpression[aComponent]->isInitialized();
163     }
164     anAttribute->myIsInitialized = anAllInitialized;
165     anAttr = anAttribute;
166   } else if (theAttrType == GeomData_Dir::typeId()) {
167     anAttr = new GeomData_Dir(anAttrLab);
168   } else if (theAttrType == GeomData_Point2D::typeId()) {
169     GeomData_Point2D* anAttribute = new GeomData_Point2D();
170     bool anAllInitialized = true;
171     for (int aComponent = 0; aComponent < GeomData_Point2D::NUM_COMPONENTS; ++aComponent) {
172       TDF_Label anExpressionLab = anAttrLab.FindChild(aComponent + 1);
173       anAttribute->myExpression[aComponent].reset(new Model_ExpressionDouble(anExpressionLab));
174       anAllInitialized = anAllInitialized && anAttribute->myExpression[aComponent]->isInitialized();
175     }
176     anAttribute->myIsInitialized = anAllInitialized;
177     anAttr = anAttribute;
178   }
179   if (anAttr) {
180     aResult = std::shared_ptr<ModelAPI_Attribute>(anAttr);
181     myAttrs[theID] = aResult;
182     anAttr->setObject(myObject);
183     anAttr->setID(theID);
184   } else {
185     Events_Error::send("Can not create unknown type of attribute " + theAttrType);
186   }
187   return aResult;
188 }
189
190 // macro for gthe generic returning of the attribute by the ID
191 #define GET_ATTRIBUTE_BY_ID(ATTR_TYPE, METHOD_NAME) \
192   std::shared_ptr<ATTR_TYPE> Model_Data::METHOD_NAME(const std::string& theID) { \
193     std::shared_ptr<ATTR_TYPE> aRes; \
194     std::map<std::string, AttributePtr >::iterator aFound = \
195       myAttrs.find(theID); \
196     if (aFound != myAttrs.end()) { \
197       aRes = std::dynamic_pointer_cast<ATTR_TYPE>(aFound->second); \
198     } \
199     return aRes; \
200   }
201 // implement nice getting methods for all ModelAPI attributes
202 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeDocRef, document);
203 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeDouble, real);
204 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeInteger, integer);
205 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeBoolean, boolean);
206 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeString, string);
207 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeReference, reference);
208 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeSelection, selection);
209 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeSelectionList, selectionList);
210 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeRefAttr, refattr);
211 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeRefList, reflist);
212 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeRefAttrList, refattrlist);
213 GET_ATTRIBUTE_BY_ID(ModelAPI_AttributeIntArray, intArray);
214
215 std::shared_ptr<ModelAPI_Attribute> Model_Data::attribute(const std::string& theID)
216 {
217   std::shared_ptr<ModelAPI_Attribute> aResult;
218   if (myAttrs.find(theID) == myAttrs.end())  // no such attribute
219     return aResult;
220   return myAttrs[theID];
221 }
222
223 const std::string& Model_Data::id(const std::shared_ptr<ModelAPI_Attribute>& theAttr)
224 {
225   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator anAttr = 
226     myAttrs.begin();
227   for (; anAttr != myAttrs.end(); anAttr++) {
228     if (anAttr->second == theAttr)
229       return anAttr->first;
230   }
231   // not found
232   static std::string anEmpty;
233   return anEmpty;
234 }
235
236 bool Model_Data::isEqual(const std::shared_ptr<ModelAPI_Data>& theData)
237 {
238   std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theData);
239   if (aData)
240     return myLab.IsEqual(aData->myLab) == Standard_True ;
241   return false;
242 }
243
244 bool Model_Data::isValid()
245 {
246   return !myLab.IsNull() && myLab.HasAttribute();
247 }
248
249 std::list<std::shared_ptr<ModelAPI_Attribute> > Model_Data::attributes(const std::string& theType)
250 {
251   std::list<std::shared_ptr<ModelAPI_Attribute> > aResult;
252   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator anAttrsIter = 
253     myAttrs.begin();
254   for (; anAttrsIter != myAttrs.end(); anAttrsIter++) {
255     if (theType.empty() || anAttrsIter->second->attributeType() == theType) {
256       aResult.push_back(anAttrsIter->second);
257     }
258   }
259   return aResult;
260 }
261
262 std::list<std::string> Model_Data::attributesIDs(const std::string& theType) 
263 {
264   std::list<std::string> aResult;
265   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator anAttrsIter = 
266     myAttrs.begin();
267   for (; anAttrsIter != myAttrs.end(); anAttrsIter++) {
268     if (theType.empty() || anAttrsIter->second->attributeType() == theType) {
269       aResult.push_back(anAttrsIter->first);
270     }
271   }
272   return aResult;
273 }
274
275 void Model_Data::sendAttributeUpdated(ModelAPI_Attribute* theAttr)
276 {
277   theAttr->setInitialized();
278   if (theAttr->isArgument()) {
279     if (mySendAttributeUpdated) {
280       if (myObject) {
281         myObject->attributeChanged(theAttr->id());
282         static const Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
283         ModelAPI_EventCreator::get()->sendUpdated(myObject, anEvent);
284       }
285     } else {
286       myWasChangedButBlocked = true;
287     }
288   }
289 }
290
291 void Model_Data::blockSendAttributeUpdated(const bool theBlock)
292 {
293   if (mySendAttributeUpdated == theBlock) {
294     mySendAttributeUpdated = !theBlock;
295     if (mySendAttributeUpdated && myWasChangedButBlocked) { // so, now it is ok to send the update signal
296       static const Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED);
297       ModelAPI_EventCreator::get()->sendUpdated(myObject, anEvent);
298       myWasChangedButBlocked = false;
299     }
300   }
301 }
302
303 void Model_Data::erase()
304 {
305   if (!myLab.IsNull()) {
306     if (myLab.HasAttribute()) {
307       // remove in order to clear back references in other objects
308       std::list<std::pair<std::string, std::list<ObjectPtr> > > aRefs;
309       referencesToObjects(aRefs);
310       std::list<std::pair<std::string, std::list<ObjectPtr> > >::iterator anAttrIter = aRefs.begin();
311       for(; anAttrIter != aRefs.end(); anAttrIter++) {
312         std::list<ObjectPtr>::iterator aReferenced = anAttrIter->second.begin();
313         for(; aReferenced != anAttrIter->second.end(); aReferenced++) {
314           if (aReferenced->get() && (*aReferenced)->data()->isValid()) {
315             std::shared_ptr<Model_Data> aData = 
316               std::dynamic_pointer_cast<Model_Data>((*aReferenced)->data());
317             aData->removeBackReference(myAttrs[anAttrIter->first]);
318           }
319         }
320       }
321     }
322     myAttrs.clear();
323     myLab.ForgetAllAttributes();
324   }
325 }
326
327 // indexes in the state array
328 enum StatesIndexes {
329   STATE_INDEX_STATE = 1, // the state type itself
330   STATE_INDEX_TRANSACTION = 2, // transaction ID
331 };
332
333 /// Returns the label array, initialises it by default values if not exists
334 static Handle(TDataStd_IntegerArray) stateArray(TDF_Label& theLab)
335 {
336   Handle(TDataStd_IntegerArray) aStateArray;
337   if (!theLab.FindAttribute(TDataStd_IntegerArray::GetID(), aStateArray)) {
338     aStateArray = TDataStd_IntegerArray::Set(theLab, 1, 2);
339     aStateArray->SetValue(STATE_INDEX_STATE, ModelAPI_StateMustBeUpdated); // default state
340     aStateArray->SetValue(STATE_INDEX_TRANSACTION, 0); // default transaction ID (not existing)
341   }
342   return aStateArray;
343 }
344
345 void Model_Data::execState(const ModelAPI_ExecState theState)
346 {
347   if (theState != ModelAPI_StateNothing) {
348     if (stateArray(myLab)->Value(STATE_INDEX_STATE) != (int)theState) {
349       stateArray(myLab)->SetValue(STATE_INDEX_STATE, (int)theState);
350     }
351   }
352 }
353
354 ModelAPI_ExecState Model_Data::execState()
355 {
356   return ModelAPI_ExecState(stateArray(myLab)->Value(STATE_INDEX_STATE));
357 }
358
359 int Model_Data::updateID()
360 {
361   return stateArray(myLab)->Value(STATE_INDEX_TRANSACTION);
362 }
363
364 void Model_Data::setUpdateID(const int theID)
365 {
366   stateArray(myLab)->SetValue(STATE_INDEX_TRANSACTION, theID);
367 }
368
369 void Model_Data::setError(const std::string& theError, bool theSend)
370 {
371   execState(ModelAPI_StateExecFailed);
372   if (theSend) {
373     Events_Error::send(theError);
374   }
375   TDataStd_AsciiString::Set(myLab, theError.c_str());
376 }
377
378 void Model_Data::eraseErrorString()
379 {
380   myLab.ForgetAttribute(TDataStd_AsciiString::GetID());
381 }
382
383 std::string Model_Data::error() const
384 {
385   Handle(TDataStd_AsciiString) anErrorAttr;
386   if (myLab.FindAttribute(TDataStd_AsciiString::GetID(), anErrorAttr)) {
387     return std::string(anErrorAttr->Get().ToCString());
388   }
389   return std::string();
390 }
391
392 int Model_Data::featureId() const
393 {
394   return myLab.Father().Tag(); // tag of the feature label
395 }
396
397 void Model_Data::eraseBackReferences()
398 {
399   myRefsToMe.clear();
400   std::shared_ptr<ModelAPI_Result> aRes = 
401     std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
402   if (aRes)
403     aRes->setIsConcealed(false);
404 }
405
406 void Model_Data::removeBackReference(FeaturePtr theFeature, std::string theAttrID)
407 {
408   AttributePtr anAttribute = theFeature->data()->attribute(theAttrID);
409   removeBackReference(anAttribute);
410 }
411
412 void Model_Data::removeBackReference(AttributePtr theAttr)
413 {
414   if (myRefsToMe.find(theAttr) == myRefsToMe.end())
415     return;
416
417   myRefsToMe.erase(theAttr);
418
419   // remove concealment immideately: on deselection it must be posible to reselect in GUI the same
420   FeaturePtr aFeatureOwner = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttr->owner());
421   if (aFeatureOwner.get() &&
422     ModelAPI_Session::get()->validators()->isConcealed(aFeatureOwner->getKind(), theAttr->id())) {
423     updateConcealmentFlag();
424   }
425 }
426
427 void Model_Data::addBackReference(FeaturePtr theFeature, std::string theAttrID, 
428    const bool theApplyConcealment)
429 {
430   // it is possible to add the same attribute twice: may be last time the owner was not Stable...
431   AttributePtr anAttribute = theFeature->data()->attribute(theAttrID);
432   if (myRefsToMe.find(anAttribute) == myRefsToMe.end())
433     myRefsToMe.insert(theFeature->data()->attribute(theAttrID));
434
435   if (theApplyConcealment &&  theFeature->isStable() && 
436       ModelAPI_Session::get()->validators()->isConcealed(theFeature->getKind(), theAttrID)) {
437     std::shared_ptr<ModelAPI_Result> aRes = 
438       std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
439     // the second condition is for history upper than concealment causer, so the feature result may
440     // be displayed and previewed; also for avoiding of quick show/hide on history
441     // moving deep down
442     if (aRes && !theFeature->isDisabled()) {
443       aRes->setIsConcealed(true);
444     }
445   }
446 }
447
448 void Model_Data::updateConcealmentFlag()
449 {
450   std::set<AttributePtr>::iterator aRefsIter = myRefsToMe.begin();
451   for(; aRefsIter != myRefsToMe.end(); aRefsIter++) {
452     if (aRefsIter->get()) {
453       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRefsIter)->owner());
454       if (aFeature.get() && !aFeature->isDisabled() && aFeature->isStable()) {
455         if (ModelAPI_Session::get()->validators()->isConcealed(
456               aFeature->getKind(), (*aRefsIter)->id())) {
457           std::shared_ptr<ModelAPI_Result> aRes = 
458             std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
459           if (aRes.get()) {
460             aRes->setIsConcealed(true); // set concealed
461           }
462           return;
463         }
464       }
465     }
466   }
467   std::shared_ptr<ModelAPI_Result> aRes = 
468     std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
469   if (aRes.get()) {
470     aRes->setIsConcealed(false);
471   }
472 }
473
474 std::set<std::string> set_union(const std::set<std::string>& theLeft, 
475                                 const std::set<std::string>& theRight)
476 {
477   std::set<std::string> aResult;
478   aResult.insert(theLeft.begin(), theLeft.end());
479   aResult.insert(theRight.begin(), theRight.end());
480   return aResult;
481 }
482
483 std::set<std::string> usedParameters(const AttributePointPtr& theAttribute)
484 {
485   std::set<std::string> anUsedParameters;
486   for (int aComponent = 0; aComponent < 3; ++aComponent)
487     anUsedParameters = set_union(anUsedParameters, theAttribute->usedParameters(aComponent));
488   return anUsedParameters;
489 }
490
491 std::set<std::string> usedParameters(const AttributePoint2DPtr& theAttribute)
492 {
493   std::set<std::string> anUsedParameters;
494   for (int aComponent = 0; aComponent < 2; ++aComponent)
495     anUsedParameters = set_union(anUsedParameters, theAttribute->usedParameters(aComponent));
496   return anUsedParameters;
497 }
498
499 std::list<ResultParameterPtr> findVariables(const std::set<std::string>& theParameters, 
500                                             const DocumentPtr& theDocument)
501 {
502   std::list<ResultParameterPtr> aResult;
503   std::set<std::string>::const_iterator aParamIt = theParameters.cbegin();
504   for (; aParamIt != theParameters.cend(); ++aParamIt) {
505     const std::string& aName = *aParamIt;
506     double aValue;
507     ResultParameterPtr aParam;
508     if (ModelAPI_Tools::findVariable(aName, aValue, aParam, theDocument))
509       aResult.push_back(aParam);
510   }
511   return aResult;
512 }
513
514 void Model_Data::referencesToObjects(
515   std::list<std::pair<std::string, std::list<ObjectPtr> > >& theRefs)
516 {
517   static Model_ValidatorsFactory* aValidators = 
518     static_cast<Model_ValidatorsFactory*>(ModelAPI_Session::get()->validators());
519   FeaturePtr aMyFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myObject);
520
521   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator anAttr = myAttrs.begin();
522   std::list<ObjectPtr> aReferenced; // not inside of cycle to avoid excess memory management
523   for(; anAttr != myAttrs.end(); anAttr++) {
524     // skip not-case attributes, that really may refer to anything not-used (issue 671)
525     if (aMyFeature.get() && !aValidators->isCase(aMyFeature, anAttr->second->id()))
526       continue;
527
528     std::string aType = anAttr->second->attributeType();
529     if (aType == ModelAPI_AttributeReference::typeId()) { // reference to object
530       std::shared_ptr<ModelAPI_AttributeReference> aRef = std::dynamic_pointer_cast<
531           ModelAPI_AttributeReference>(anAttr->second);
532       aReferenced.push_back(aRef->value());
533     } else if (aType == ModelAPI_AttributeRefAttr::typeId()) { // reference to attribute or object
534       std::shared_ptr<ModelAPI_AttributeRefAttr> aRef = std::dynamic_pointer_cast<
535           ModelAPI_AttributeRefAttr>(anAttr->second);
536       if (aRef->isObject()) {
537         aReferenced.push_back(aRef->object());
538       } else {
539         AttributePtr anAttr = aRef->attr();
540         if (anAttr.get())
541           aReferenced.push_back(anAttr->owner());
542       }
543     } else if (aType == ModelAPI_AttributeRefList::typeId()) { // list of references
544       aReferenced = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(anAttr->second)->list();
545     } else if (aType == ModelAPI_AttributeSelection::typeId()) { // selection attribute
546       std::shared_ptr<ModelAPI_AttributeSelection> aRef = std::dynamic_pointer_cast<
547           ModelAPI_AttributeSelection>(anAttr->second);
548       aReferenced.push_back(aRef->context());
549     } else if (aType == ModelAPI_AttributeSelectionList::typeId()) { // list of selection attributes
550       std::shared_ptr<ModelAPI_AttributeSelectionList> aRef = std::dynamic_pointer_cast<
551           ModelAPI_AttributeSelectionList>(anAttr->second);
552       for(int a = aRef->size() - 1; a >= 0; a--) {
553         aReferenced.push_back(aRef->value(a)->context());
554       }
555     } else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
556       std::shared_ptr<ModelAPI_AttributeRefAttrList> aRefAttr = std::dynamic_pointer_cast<
557           ModelAPI_AttributeRefAttrList>(anAttr->second);
558       std::list<std::pair<ObjectPtr, AttributePtr> > aRefs = aRefAttr->list();
559       std::list<std::pair<ObjectPtr, AttributePtr> >::const_iterator anIt = aRefs.begin(),
560                                                                      aLast = aRefs.end();
561       for (; anIt != aLast; anIt++) {
562         aReferenced.push_back(anIt->first);
563       }
564     } else if (aType == ModelAPI_AttributeInteger::typeId()) { // integer attribute
565       AttributeIntegerPtr anAttribute =
566           std::dynamic_pointer_cast<ModelAPI_AttributeInteger>(anAttr->second);
567       std::set<std::string> anUsedParameters = anAttribute->usedParameters();
568       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
569       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
570     } else if (aType == ModelAPI_AttributeDouble::typeId()) { // double attribute
571       AttributeDoublePtr anAttribute =
572           std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(anAttr->second);
573       std::set<std::string> anUsedParameters = anAttribute->usedParameters();
574       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
575       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
576     } else if (aType == GeomDataAPI_Point::typeId()) { // point attribute
577       AttributePointPtr anAttribute =
578         std::dynamic_pointer_cast<GeomDataAPI_Point>(anAttr->second);
579       std::set<std::string> anUsedParameters = usedParameters(anAttribute);
580       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
581       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
582     } else if (aType == GeomDataAPI_Point2D::typeId()) { // point attribute
583       AttributePoint2DPtr anAttribute =
584         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(anAttr->second);
585       std::set<std::string> anUsedParameters = usedParameters(anAttribute);
586       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
587       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
588     } else
589       continue; // nothing to do, not reference
590
591     if (!aReferenced.empty()) {
592       theRefs.push_back(std::pair<std::string, std::list<ObjectPtr> >(anAttr->first, aReferenced));
593       aReferenced.clear();
594     }
595   }
596 }
597
598 /// makes copy of all attributes on the given label and all sub-labels
599 static void copyAttrs(TDF_Label theSource, TDF_Label theDestination) {
600   TDF_AttributeIterator anAttrIter(theSource);
601   for(; anAttrIter.More(); anAttrIter.Next()) {
602     Handle(TDF_Attribute) aTargetAttr;
603     if (!theDestination.FindAttribute(anAttrIter.Value()->ID(), aTargetAttr)) {
604       // create a new attribute if not yet exists in the destination
605             aTargetAttr = anAttrIter.Value()->NewEmpty();
606       theDestination.AddAttribute(aTargetAttr);
607     }
608     Handle(TDF_RelocationTable) aRelocTable = new TDF_RelocationTable(); // no relocation, empty map
609     anAttrIter.Value()->Paste(aTargetAttr, aRelocTable);
610   }
611   // copy the sub-labels content
612   TDF_ChildIterator aSubLabsIter(theSource);
613   for(; aSubLabsIter.More(); aSubLabsIter.Next()) {
614     copyAttrs(aSubLabsIter.Value(), theDestination.FindChild(aSubLabsIter.Value().Tag()));
615   }
616 }
617
618 void Model_Data::copyTo(std::shared_ptr<ModelAPI_Data> theTarget)
619 {
620   TDF_Label aTargetRoot = std::dynamic_pointer_cast<Model_Data>(theTarget)->label();
621   copyAttrs(myLab, aTargetRoot);
622   // make initialized the initialized attributes
623   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator aMyIter = myAttrs.begin();
624   for(; aMyIter != myAttrs.end(); aMyIter++) {
625     if (aMyIter->second->isInitialized()) {
626       AttributePtr aTargetAttr = theTarget->attribute(aMyIter->first);
627       if (aTargetAttr)
628         aTargetAttr->setInitialized();
629     }
630   }
631 }
632
633 bool Model_Data::isInHistory()
634 {
635   return myFlags->Value(kFlagInHistory) == Standard_True;
636 }
637
638 void Model_Data::setIsInHistory(const bool theFlag)
639 {
640   return myFlags->SetValue(kFlagInHistory, theFlag);
641 }
642
643 bool Model_Data::isDeleted()
644 {
645   return myFlags->Value(kFlagDeleted) == Standard_True;
646 }
647
648 void Model_Data::setIsDeleted(const bool theFlag)
649 {
650   return myFlags->SetValue(kFlagDeleted, theFlag);
651 }
652
653 bool Model_Data::isDisplayed()
654 {
655   if (!myObject.get() || !myObject->document().get() || // object is in valid
656       myFlags->Value(kFlagDisplayed) != Standard_True) // or it was not displayed before
657     return false;
658   if (myObject->document()->isActive()) // for active documents it must be ok anyway
659     return true;
660   // any object from the root document except part result may be displayed
661   if (myObject->document() == ModelAPI_Session::get()->moduleDocument() &&
662       myObject->groupName() != ModelAPI_ResultPart::group())
663     return true;
664   return false;
665 }
666
667 void Model_Data::setDisplayed(const bool theDisplay)
668 {
669   if (theDisplay != isDisplayed()) {
670     myFlags->SetValue(kFlagDisplayed, theDisplay);
671     static Events_Loop* aLoop = Events_Loop::loop();
672     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
673     static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
674     aECreator->sendUpdated(myObject, EVENT_DISP);
675   }
676 }
677
678 std::shared_ptr<ModelAPI_Data> Model_Data::invalidPtr()
679 {
680   return kInvalid;
681 }
682
683 std::shared_ptr<ModelAPI_Data> Model_Data::invalidData()
684 {
685   return kInvalid;
686 }
687
688 std::shared_ptr<ModelAPI_Object> Model_Data::owner()
689 {
690   return myObject;
691 }