]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_Data.cpp
Salome HOME
Issue #1383 Preview button: implementation on the Updater level
[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     // send signal even if the new value corresponds to the one in data model: undo issue 980
352     static const Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_ERROR_CHANGED);
353     ModelAPI_EventCreator::get()->sendUpdated(myObject, anEvent, false);
354   }
355 }
356
357 ModelAPI_ExecState Model_Data::execState()
358 {
359   return ModelAPI_ExecState(stateArray(myLab)->Value(STATE_INDEX_STATE));
360 }
361
362 int Model_Data::updateID()
363 {
364   return stateArray(myLab)->Value(STATE_INDEX_TRANSACTION);
365 }
366
367 void Model_Data::setUpdateID(const int theID)
368 {
369   stateArray(myLab)->SetValue(STATE_INDEX_TRANSACTION, theID);
370 }
371
372 void Model_Data::setError(const std::string& theError, bool theSend)
373 {
374   execState(ModelAPI_StateExecFailed);
375   if (theSend) {
376     Events_Error::send(theError);
377   }
378   TDataStd_AsciiString::Set(myLab, theError.c_str());
379   static const Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_ERROR_CHANGED);
380   ModelAPI_EventCreator::get()->sendUpdated(myObject, anEvent, false);
381 }
382
383 void Model_Data::eraseErrorString()
384 {
385   myLab.ForgetAttribute(TDataStd_AsciiString::GetID());
386 }
387
388 std::string Model_Data::error() const
389 {
390   Handle(TDataStd_AsciiString) anErrorAttr;
391   if (myLab.FindAttribute(TDataStd_AsciiString::GetID(), anErrorAttr)) {
392     return std::string(anErrorAttr->Get().ToCString());
393   }
394   return std::string();
395 }
396
397 int Model_Data::featureId() const
398 {
399   return myLab.Father().Tag(); // tag of the feature label
400 }
401
402 void Model_Data::eraseBackReferences()
403 {
404   myRefsToMe.clear();
405   std::shared_ptr<ModelAPI_Result> aRes = 
406     std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
407   if (aRes)
408     aRes->setIsConcealed(false);
409 }
410
411 void Model_Data::removeBackReference(FeaturePtr theFeature, std::string theAttrID)
412 {
413   AttributePtr anAttribute = theFeature->data()->attribute(theAttrID);
414   removeBackReference(anAttribute);
415 }
416
417 void Model_Data::removeBackReference(AttributePtr theAttr)
418 {
419   if (myRefsToMe.find(theAttr) == myRefsToMe.end())
420     return;
421
422   myRefsToMe.erase(theAttr);
423
424   // remove concealment immideately: on deselection it must be posible to reselect in GUI the same
425   FeaturePtr aFeatureOwner = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttr->owner());
426   if (aFeatureOwner.get() &&
427     ModelAPI_Session::get()->validators()->isConcealed(aFeatureOwner->getKind(), theAttr->id())) {
428     updateConcealmentFlag();
429   }
430 }
431
432 void Model_Data::addBackReference(FeaturePtr theFeature, std::string theAttrID, 
433    const bool theApplyConcealment)
434 {
435   // it is possible to add the same attribute twice: may be last time the owner was not Stable...
436   AttributePtr anAttribute = theFeature->data()->attribute(theAttrID);
437   if (myRefsToMe.find(anAttribute) == myRefsToMe.end())
438     myRefsToMe.insert(theFeature->data()->attribute(theAttrID));
439
440   if (theApplyConcealment &&  theFeature->isStable() && 
441       ModelAPI_Session::get()->validators()->isConcealed(theFeature->getKind(), theAttrID)) {
442     std::shared_ptr<ModelAPI_Result> aRes = 
443       std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
444     // the second condition is for history upper than concealment causer, so the feature result may
445     // be displayed and previewed; also for avoiding of quick show/hide on history
446     // moving deep down
447     if (aRes && !theFeature->isDisabled()) {
448       aRes->setIsConcealed(true);
449     }
450   }
451 }
452
453 void Model_Data::updateConcealmentFlag()
454 {
455   std::set<AttributePtr>::iterator aRefsIter = myRefsToMe.begin();
456   for(; aRefsIter != myRefsToMe.end(); aRefsIter++) {
457     if (aRefsIter->get()) {
458       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRefsIter)->owner());
459       if (aFeature.get() && !aFeature->isDisabled() && aFeature->isStable()) {
460         if (ModelAPI_Session::get()->validators()->isConcealed(
461               aFeature->getKind(), (*aRefsIter)->id())) {
462           std::shared_ptr<ModelAPI_Result> aRes = 
463             std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
464           if (aRes.get()) {
465             aRes->setIsConcealed(true); // set concealed
466           }
467           return;
468         }
469       }
470     }
471   }
472   std::shared_ptr<ModelAPI_Result> aRes = 
473     std::dynamic_pointer_cast<ModelAPI_Result>(myObject);
474   if (aRes.get()) {
475     aRes->setIsConcealed(false);
476   }
477 }
478
479 std::set<std::string> set_union(const std::set<std::string>& theLeft, 
480                                 const std::set<std::string>& theRight)
481 {
482   std::set<std::string> aResult;
483   aResult.insert(theLeft.begin(), theLeft.end());
484   aResult.insert(theRight.begin(), theRight.end());
485   return aResult;
486 }
487
488 std::set<std::string> usedParameters(const AttributePointPtr& theAttribute)
489 {
490   std::set<std::string> anUsedParameters;
491   for (int aComponent = 0; aComponent < 3; ++aComponent)
492     anUsedParameters = set_union(anUsedParameters, theAttribute->usedParameters(aComponent));
493   return anUsedParameters;
494 }
495
496 std::set<std::string> usedParameters(const AttributePoint2DPtr& theAttribute)
497 {
498   std::set<std::string> anUsedParameters;
499   for (int aComponent = 0; aComponent < 2; ++aComponent)
500     anUsedParameters = set_union(anUsedParameters, theAttribute->usedParameters(aComponent));
501   return anUsedParameters;
502 }
503
504 std::list<ResultParameterPtr> findVariables(const std::set<std::string>& theParameters, 
505                                             const DocumentPtr& theDocument)
506 {
507   std::list<ResultParameterPtr> aResult;
508   std::set<std::string>::const_iterator aParamIt = theParameters.cbegin();
509   for (; aParamIt != theParameters.cend(); ++aParamIt) {
510     const std::string& aName = *aParamIt;
511     double aValue;
512     ResultParameterPtr aParam;
513     if (ModelAPI_Tools::findVariable(aName, aValue, aParam, theDocument))
514       aResult.push_back(aParam);
515   }
516   return aResult;
517 }
518
519 void Model_Data::referencesToObjects(
520   std::list<std::pair<std::string, std::list<ObjectPtr> > >& theRefs)
521 {
522   static Model_ValidatorsFactory* aValidators = 
523     static_cast<Model_ValidatorsFactory*>(ModelAPI_Session::get()->validators());
524   FeaturePtr aMyFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myObject);
525
526   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator anAttr = myAttrs.begin();
527   std::list<ObjectPtr> aReferenced; // not inside of cycle to avoid excess memory management
528   for(; anAttr != myAttrs.end(); anAttr++) {
529     // skip not-case attributes, that really may refer to anything not-used (issue 671)
530     if (aMyFeature.get() && !aValidators->isCase(aMyFeature, anAttr->second->id()))
531       continue;
532
533     std::string aType = anAttr->second->attributeType();
534     if (aType == ModelAPI_AttributeReference::typeId()) { // reference to object
535       std::shared_ptr<ModelAPI_AttributeReference> aRef = std::dynamic_pointer_cast<
536           ModelAPI_AttributeReference>(anAttr->second);
537       aReferenced.push_back(aRef->value());
538     } else if (aType == ModelAPI_AttributeRefAttr::typeId()) { // reference to attribute or object
539       std::shared_ptr<ModelAPI_AttributeRefAttr> aRef = std::dynamic_pointer_cast<
540           ModelAPI_AttributeRefAttr>(anAttr->second);
541       if (aRef->isObject()) {
542         aReferenced.push_back(aRef->object());
543       } else {
544         AttributePtr anAttr = aRef->attr();
545         if (anAttr.get())
546           aReferenced.push_back(anAttr->owner());
547       }
548     } else if (aType == ModelAPI_AttributeRefList::typeId()) { // list of references
549       aReferenced = std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(anAttr->second)->list();
550     } else if (aType == ModelAPI_AttributeSelection::typeId()) { // selection attribute
551       std::shared_ptr<ModelAPI_AttributeSelection> aRef = std::dynamic_pointer_cast<
552           ModelAPI_AttributeSelection>(anAttr->second);
553       aReferenced.push_back(aRef->context());
554     } else if (aType == ModelAPI_AttributeSelectionList::typeId()) { // list of selection attributes
555       std::shared_ptr<ModelAPI_AttributeSelectionList> aRef = std::dynamic_pointer_cast<
556           ModelAPI_AttributeSelectionList>(anAttr->second);
557       for(int a = aRef->size() - 1; a >= 0; a--) {
558         aReferenced.push_back(aRef->value(a)->context());
559       }
560     } else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
561       std::shared_ptr<ModelAPI_AttributeRefAttrList> aRefAttr = std::dynamic_pointer_cast<
562           ModelAPI_AttributeRefAttrList>(anAttr->second);
563       std::list<std::pair<ObjectPtr, AttributePtr> > aRefs = aRefAttr->list();
564       std::list<std::pair<ObjectPtr, AttributePtr> >::const_iterator anIt = aRefs.begin(),
565                                                                      aLast = aRefs.end();
566       for (; anIt != aLast; anIt++) {
567         aReferenced.push_back(anIt->first);
568       }
569     } else if (aType == ModelAPI_AttributeInteger::typeId()) { // integer attribute
570       AttributeIntegerPtr anAttribute =
571           std::dynamic_pointer_cast<ModelAPI_AttributeInteger>(anAttr->second);
572       std::set<std::string> anUsedParameters = anAttribute->usedParameters();
573       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
574       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
575     } else if (aType == ModelAPI_AttributeDouble::typeId()) { // double attribute
576       AttributeDoublePtr anAttribute =
577           std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(anAttr->second);
578       std::set<std::string> anUsedParameters = anAttribute->usedParameters();
579       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
580       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
581     } else if (aType == GeomDataAPI_Point::typeId()) { // point attribute
582       AttributePointPtr anAttribute =
583         std::dynamic_pointer_cast<GeomDataAPI_Point>(anAttr->second);
584       std::set<std::string> anUsedParameters = usedParameters(anAttribute);
585       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
586       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
587     } else if (aType == GeomDataAPI_Point2D::typeId()) { // point attribute
588       AttributePoint2DPtr anAttribute =
589         std::dynamic_pointer_cast<GeomDataAPI_Point2D>(anAttr->second);
590       std::set<std::string> anUsedParameters = usedParameters(anAttribute);
591       std::list<ResultParameterPtr> aParameters = findVariables(anUsedParameters, aMyFeature->document());
592       aReferenced.insert(aReferenced.end(), aParameters.begin(), aParameters.end());
593     } else
594       continue; // nothing to do, not reference
595
596     if (!aReferenced.empty()) {
597       theRefs.push_back(std::pair<std::string, std::list<ObjectPtr> >(anAttr->first, aReferenced));
598       aReferenced.clear();
599     }
600   }
601 }
602
603 /// makes copy of all attributes on the given label and all sub-labels
604 static void copyAttrs(TDF_Label theSource, TDF_Label theDestination) {
605   TDF_AttributeIterator anAttrIter(theSource);
606   for(; anAttrIter.More(); anAttrIter.Next()) {
607     Handle(TDF_Attribute) aTargetAttr;
608     if (!theDestination.FindAttribute(anAttrIter.Value()->ID(), aTargetAttr)) {
609       // create a new attribute if not yet exists in the destination
610             aTargetAttr = anAttrIter.Value()->NewEmpty();
611       theDestination.AddAttribute(aTargetAttr);
612     }
613     Handle(TDF_RelocationTable) aRelocTable = new TDF_RelocationTable(); // no relocation, empty map
614     anAttrIter.Value()->Paste(aTargetAttr, aRelocTable);
615   }
616   // copy the sub-labels content
617   TDF_ChildIterator aSubLabsIter(theSource);
618   for(; aSubLabsIter.More(); aSubLabsIter.Next()) {
619     copyAttrs(aSubLabsIter.Value(), theDestination.FindChild(aSubLabsIter.Value().Tag()));
620   }
621 }
622
623 void Model_Data::copyTo(std::shared_ptr<ModelAPI_Data> theTarget)
624 {
625   TDF_Label aTargetRoot = std::dynamic_pointer_cast<Model_Data>(theTarget)->label();
626   copyAttrs(myLab, aTargetRoot);
627   // make initialized the initialized attributes
628   std::map<std::string, std::shared_ptr<ModelAPI_Attribute> >::iterator aMyIter = myAttrs.begin();
629   for(; aMyIter != myAttrs.end(); aMyIter++) {
630     if (aMyIter->second->isInitialized()) {
631       AttributePtr aTargetAttr = theTarget->attribute(aMyIter->first);
632       if (aTargetAttr)
633         aTargetAttr->setInitialized();
634     }
635   }
636 }
637
638 bool Model_Data::isInHistory()
639 {
640   return myFlags->Value(kFlagInHistory) == Standard_True;
641 }
642
643 void Model_Data::setIsInHistory(const bool theFlag)
644 {
645   return myFlags->SetValue(kFlagInHistory, theFlag);
646 }
647
648 bool Model_Data::isDeleted()
649 {
650   return myFlags->Value(kFlagDeleted) == Standard_True;
651 }
652
653 void Model_Data::setIsDeleted(const bool theFlag)
654 {
655   return myFlags->SetValue(kFlagDeleted, theFlag);
656 }
657
658 bool Model_Data::isDisplayed()
659 {
660   if (!myObject.get() || !myObject->document().get() || // object is in valid
661       myFlags->Value(kFlagDisplayed) != Standard_True) // or it was not displayed before
662     return false;
663   if (myObject->document()->isActive()) // for active documents it must be ok anyway
664     return true;
665   // any object from the root document except part result may be displayed
666   if (myObject->document() == ModelAPI_Session::get()->moduleDocument() &&
667       myObject->groupName() != ModelAPI_ResultPart::group())
668     return true;
669   return false;
670 }
671
672 void Model_Data::setDisplayed(const bool theDisplay)
673 {
674   if (theDisplay != isDisplayed()) {
675     myFlags->SetValue(kFlagDisplayed, theDisplay);
676     static Events_Loop* aLoop = Events_Loop::loop();
677     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
678     static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
679     aECreator->sendUpdated(myObject, EVENT_DISP);
680   }
681 }
682
683 std::shared_ptr<ModelAPI_Data> Model_Data::invalidPtr()
684 {
685   return kInvalid;
686 }
687
688 std::shared_ptr<ModelAPI_Data> Model_Data::invalidData()
689 {
690   return kInvalid;
691 }
692
693 std::shared_ptr<ModelAPI_Object> Model_Data::owner()
694 {
695   return myObject;
696 }