1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModelAPI_AttributeReference.cxx
5 // Author: Mikhail PONIKAROV
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>
15 #include <TDataStd_Comment.hxx>
16 #include <TDataStd_AsciiString.hxx>
17 #include <TDF_Tool.hxx>
21 void Model_AttributeReference::setValue(ObjectPtr theObject)
23 // now allow to deselect in this attribute: extrusion from/to
26 ObjectPtr aValue = value();
27 if (!myIsInitialized || aValue != theObject) {
28 REMOVE_BACK_REF(aValue);
31 if (theObject.get() && theObject->data()->isValid()) {
32 std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(
34 anObjLab = aData->label().Father(); // object label
36 // same document, use reference attribute
37 if (anObjLab.IsNull() || owner()->document() == theObject->document()) {
39 if (anObjLab.IsNull()) {
40 myRef->Set(myRef->Label());
42 myRef->Set(anObjLab); // references to the object label
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);
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);
60 owner()->data()->sendAttributeUpdated(this);
64 ObjectPtr Model_AttributeReference::value()
66 if (isInitialized()) {
67 Handle(TDataStd_Comment) aDocID;
68 if (myRef->Label().FindAttribute(TDataStd_Comment::GetID(), aDocID)) { // external ref
69 int anID = atoi(TCollection_AsciiString(aDocID->Get()).ToCString());
70 DocumentPtr aRefDoc = Model_Application::getApplication()->document(anID);
72 Handle(TDataStd_AsciiString) anEntry;
73 if (myRef->Label().FindAttribute(TDataStd_AsciiString::GetID(), anEntry)) {
74 std::shared_ptr<Model_Document> aDR = std::dynamic_pointer_cast<Model_Document>(aRefDoc);
76 TDF_Tool::Label(aDR->objects()->featuresLabel().Data(), anEntry->Get().ToCString(), aRefLab);
77 if (!aRefLab.IsNull()) {
78 return aDR->objects()->object(aRefLab);
82 } else { // internal ref
83 std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
86 TDF_Label aRefLab = myRef->Get();
87 if (!aRefLab.IsNull()) { // it may happen with old document, issue #285
88 return aDoc->objects()->object(aRefLab);
97 bool Model_AttributeReference::isInitialized()
99 if (myRef->Label() == myRef->Get() && !myRef->Label().IsAttribute(TDataStd_Comment::GetID())) {
100 // empty reference is not initialized
103 return ModelAPI_AttributeReference::isInitialized();
106 Model_AttributeReference::Model_AttributeReference(TDF_Label& theLabel)
108 myIsInitialized = theLabel.FindAttribute(TDF_Reference::GetID(), myRef) == Standard_True;
109 if (!myIsInitialized) {
110 myRef = TDF_Reference::Set(theLabel, theLabel); // not initialized references to itself
113 std::shared_ptr<Model_Document> aDoc =
114 std::dynamic_pointer_cast<Model_Document>(owner()->document());
119 void Model_AttributeReference::setObject(const std::shared_ptr<ModelAPI_Object>& theObject)
121 if (owner() != theObject) {
122 ModelAPI_AttributeReference::setObject(theObject);
123 std::shared_ptr<Model_Document> aDoc =
124 std::dynamic_pointer_cast<Model_Document>(owner()->document());
128 Model_AttributeReference::~Model_AttributeReference()