X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModel%2FModel_AttributeReference.cpp;h=beb04549cffe4a51c359d83158e386613ddb07e8;hb=4af82842098757e6e7f4f28e2eb744d184bb2b3e;hp=9cfd4a91c3ef72ee3df11bdd76f6deadcb5e650f;hpb=329d73a7dbce38e38063ff41186be492e3529ab5;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeReference.cpp b/src/Model/Model_AttributeReference.cpp index 9cfd4a91c..beb04549c 100644 --- a/src/Model/Model_AttributeReference.cpp +++ b/src/Model/Model_AttributeReference.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeReference.cxx // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV @@ -6,42 +8,124 @@ #include "Model_Application.h" #include "Model_Events.h" #include "Model_Data.h" +#include "Model_Objects.h" #include +#include + +#include +#include +#include using namespace std; void Model_AttributeReference::setValue(ObjectPtr theObject) { - if (!myIsInitialized || value() != theObject) { - boost::shared_ptr aData = - boost::dynamic_pointer_cast(theObject->data()); - if (myRef.IsNull()) { - boost::shared_ptr aMyData = - boost::dynamic_pointer_cast(owner()->data()); - myRef = TDF_Reference::Set(aMyData->label(), aData->label()); - } else { - myRef->Set(aData->label()); + // now allow to deselect in this attribute: extrusion from/to + //if(!theObject) + // return; + ObjectPtr aValue = value(); + if (!myIsInitialized || aValue != theObject) { + REMOVE_BACK_REF(aValue); + + TDF_Label anObjLab; + if (theObject.get() && theObject->data()->isValid()) { + std::shared_ptr aData = std::dynamic_pointer_cast( + theObject->data()); + anObjLab = aData->label().Father(); // object label + } + // same document, use reference attribute + if (anObjLab.IsNull() || owner()->document() == theObject->document()) { + + if (anObjLab.IsNull()) { + myRef->Set(myRef->Label()); + } else { + myRef->Set(anObjLab); // references to the object label + } + // remove external link attributes (if any) + myRef->Label().ForgetAttribute(TDataStd_Comment::GetID()); + myRef->Label().ForgetAttribute(TDataStd_AsciiString::GetID()); + } else { // different document: store the document name (comment) and entry (string): external + // if these attributes exist, the link is external: keep reference to access the label + TDataStd_Comment::Set(myRef->Label(), theObject->document()->id().c_str()); + TCollection_AsciiString anEntry; + TDF_Tool::Entry(anObjLab, anEntry); + TDataStd_AsciiString::Set(myRef->Label(), anEntry); } + // do it before the transaction finish to make just created/removed objects know dependencies + // and reference from composite feature is removed automatically + ADD_BACK_REF(theObject); + owner()->data()->sendAttributeUpdated(this); } } ObjectPtr Model_AttributeReference::value() { - if (!myRef.IsNull()) { - boost::shared_ptr aDoc = - boost::dynamic_pointer_cast(owner()->document()); - if (aDoc) { - TDF_Label aRefLab = myRef->Get(); - return aDoc->object(aRefLab); + if (isInitialized()) { + Handle(TDataStd_Comment) aDocID; + if (myRef->Label().FindAttribute(TDataStd_Comment::GetID(), aDocID)) { // external ref + DocumentPtr aRefDoc = + ModelAPI_Session::get()->document(TCollection_AsciiString(aDocID->Get()).ToCString()); + if (aRefDoc) { + Handle(TDataStd_AsciiString) anEntry; + if (myRef->Label().FindAttribute(TDataStd_AsciiString::GetID(), anEntry)) { + std::shared_ptr aDR = std::dynamic_pointer_cast(aRefDoc); + TDF_Label aRefLab; + TDF_Tool::Label(aDR->objects()->featuresLabel().Data(), anEntry->Get().ToCString(), aRefLab); + if (!aRefLab.IsNull()) { + return aDR->objects()->object(aRefLab); + } + } + } + } else { // internal ref + std::shared_ptr aDoc = std::dynamic_pointer_cast( + owner()->document()); + if (aDoc) { + TDF_Label aRefLab = myRef->Get(); + if (!aRefLab.IsNull()) { // it may happen with old document, issue #285 + return aDoc->objects()->object(aRefLab); + } + } } } // not initialized return FeaturePtr(); } +bool Model_AttributeReference::isInitialized() +{ + if (myRef->Label() == myRef->Get() && !myRef->Label().IsAttribute(TDataStd_Comment::GetID())) { + // empty reference is not initialized + return false; + } + return ModelAPI_AttributeReference::isInitialized(); +} + Model_AttributeReference::Model_AttributeReference(TDF_Label& theLabel) { - // not initialized by value yet: attribute is not set to the label! myIsInitialized = theLabel.FindAttribute(TDF_Reference::GetID(), myRef) == Standard_True; + if (!myIsInitialized) { + myRef = TDF_Reference::Set(theLabel, theLabel); // not initialized references to itself + } else { + if (owner()) { + std::shared_ptr aDoc = + std::dynamic_pointer_cast(owner()->document()); + } + } +} + +void Model_AttributeReference::setObject(const std::shared_ptr& theObject) +{ + if (owner() != theObject) { + ModelAPI_AttributeReference::setObject(theObject); + std::shared_ptr aDoc = + std::dynamic_pointer_cast(owner()->document()); + } +} + +Model_AttributeReference::~Model_AttributeReference() +{ + std::shared_ptr aDoc = + std::dynamic_pointer_cast(owner()->document()); + TDF_Label aLab = myRef->Get(); }