Salome HOME
0d502ded0a34a1c24d6e79c1df5e22b4f2d98db7
[modules/shaper.git] / src / Model / Model_AttributeReference.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_AttributeReference.cxx
4 // Created:     2 Apr 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include "Model_AttributeReference.h"
8 #include "Model_Application.h"
9 #include "Model_Events.h"
10 #include "Model_Data.h"
11 #include "Model_Objects.h"
12 #include <ModelAPI_Feature.h>
13 #include <ModelAPI_Session.h>
14
15 #include <TDataStd_Comment.hxx>
16 #include <TDataStd_AsciiString.hxx>
17 #include <TDF_Tool.hxx>
18
19 using namespace std;
20
21 void Model_AttributeReference::setValue(ObjectPtr theObject)
22 {
23   // now allow to deselect in this attribute: extrusion from/to
24   //if(!theObject)
25   //  return;
26   ObjectPtr aValue = value();
27   if (!myIsInitialized || aValue != theObject) {
28     REMOVE_BACK_REF(aValue);
29
30     TDF_Label anObjLab;
31     if (theObject.get() && theObject->data()->isValid()) {
32       std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(
33         theObject->data());
34       anObjLab = aData->label().Father(); // object label
35     }
36     // same document, use reference attribute
37     if (anObjLab.IsNull() || owner()->document() == theObject->document()) {
38
39       if (anObjLab.IsNull()) {
40         myRef->Set(myRef->Label());
41       } else {
42         myRef->Set(anObjLab);  // references to the object label
43       }
44        // remove external link attributes (if any)
45       myRef->Label().ForgetAttribute(TDataStd_Comment::GetID());
46       myRef->Label().ForgetAttribute(TDataStd_AsciiString::GetID());
47     } else { // different document: store the document name (comment) and entry (string): external
48       // if these attributes exist, the link is external: keep reference to access the label
49       std::ostringstream anIdString; // string with document Id
50       anIdString<<theObject->document()->id();
51       TDataStd_Comment::Set(myRef->Label(), anIdString.str().c_str());
52       TCollection_AsciiString anEntry;
53       TDF_Tool::Entry(anObjLab, anEntry);
54       TDataStd_AsciiString::Set(myRef->Label(), anEntry);
55     }
56     // do it before the transaction finish to make just created/removed objects know dependencies
57     // and reference from composite feature is removed automatically
58     ADD_BACK_REF(theObject);
59
60     owner()->data()->sendAttributeUpdated(this);
61   }
62 }
63
64 ObjectPtr Model_AttributeReference::value()
65 {
66   Handle(TDataStd_Comment) aDocID;
67   if (myRef->Label().FindAttribute(TDataStd_Comment::GetID(), aDocID)) { // external ref
68     int anID = atoi(TCollection_AsciiString(aDocID->Get()).ToCString());
69     DocumentPtr aRefDoc = Model_Application::getApplication()->document(anID);
70     if (aRefDoc.get()) {
71       Handle(TDataStd_AsciiString) anEntry;
72       if (myRef->Label().FindAttribute(TDataStd_AsciiString::GetID(), anEntry)) {
73         std::shared_ptr<Model_Document> aDR = std::dynamic_pointer_cast<Model_Document>(aRefDoc);
74         TDF_Label aRefLab;
75         TDF_Tool::Label(aDR->objects()->featuresLabel().Data(), 
76           anEntry->Get().ToCString(), aRefLab);
77         if (!aRefLab.IsNull()) {
78           return aDR->objects()->object(aRefLab);
79         }
80       }
81     }
82   } else { // internal ref
83     if (owner().get()) {
84       std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
85           owner()->document());
86       if (aDoc) {
87         TDF_Label aRefLab = myRef->Get();
88         if (!aRefLab.IsNull()) {  // it may happen with old document, issue #285
89           return aDoc->objects()->object(aRefLab);
90         }
91       }
92     }
93   }
94   return FeaturePtr();
95 }
96
97 bool Model_AttributeReference::isInitialized()
98 {
99   if (myRef->Label() == myRef->Get() && !myRef->Label().IsAttribute(TDataStd_Comment::GetID())) {
100     // empty reference is not initialized
101     return false;
102   }
103   return ModelAPI_AttributeReference::isInitialized();
104 }
105
106 Model_AttributeReference::Model_AttributeReference(TDF_Label& theLabel)
107 {
108   myLab = theLabel;
109   reinit();
110 }
111
112 void Model_AttributeReference::reinit()
113 {
114   myIsInitialized = myLab.FindAttribute(TDF_Reference::GetID(), myRef) == Standard_True;
115   if (!myIsInitialized) {
116     myRef = TDF_Reference::Set(myLab, myLab);  // not initialized references to itself
117   } else {
118     if (owner()) {
119       std::shared_ptr<Model_Document> aDoc =
120         std::dynamic_pointer_cast<Model_Document>(owner()->document());
121     }
122   }
123 }
124
125 void Model_AttributeReference::setObject(const std::shared_ptr<ModelAPI_Object>& theObject)
126 {
127   if (owner() != theObject) {
128     ModelAPI_AttributeReference::setObject(theObject);
129     //std::shared_ptr<Model_Document> aDoc =
130     //  std::dynamic_pointer_cast<Model_Document>(owner()->document());
131   }
132 }
133
134 Model_AttributeReference::~Model_AttributeReference()
135 {}