Salome HOME
Issue #1664 In the Sketcher, add the function Split a segment
[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(), anEntry->Get().ToCString(), aRefLab);
76         if (!aRefLab.IsNull()) {
77           return aDR->objects()->object(aRefLab);
78         }
79       }
80     }
81   } else { // internal ref
82     if (owner().get()) {
83       std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
84           owner()->document());
85       if (aDoc) {
86         TDF_Label aRefLab = myRef->Get();
87         if (!aRefLab.IsNull()) {  // it may happen with old document, issue #285
88           return aDoc->objects()->object(aRefLab);
89         }
90       }
91     }
92   }
93   return FeaturePtr();
94 }
95
96 bool Model_AttributeReference::isInitialized()
97 {
98   if (myRef->Label() == myRef->Get() && !myRef->Label().IsAttribute(TDataStd_Comment::GetID())) {
99     // empty reference is not initialized
100     return false;
101   }
102   return ModelAPI_AttributeReference::isInitialized();
103 }
104
105 Model_AttributeReference::Model_AttributeReference(TDF_Label& theLabel)
106 {
107   myIsInitialized = theLabel.FindAttribute(TDF_Reference::GetID(), myRef) == Standard_True;
108   if (!myIsInitialized) {
109     myRef = TDF_Reference::Set(theLabel, theLabel);  // not initialized references to itself
110   } else {
111     if (owner()) {
112       std::shared_ptr<Model_Document> aDoc =
113         std::dynamic_pointer_cast<Model_Document>(owner()->document());
114     }
115   }
116 }
117
118 void Model_AttributeReference::setObject(const std::shared_ptr<ModelAPI_Object>& theObject)
119 {
120   if (owner() != theObject) {
121     ModelAPI_AttributeReference::setObject(theObject);
122     //std::shared_ptr<Model_Document> aDoc =
123     //  std::dynamic_pointer_cast<Model_Document>(owner()->document());
124   }
125 }
126
127 Model_AttributeReference::~Model_AttributeReference()
128 {}