X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeRefAttr.cpp;h=0c24fe3e1b762cfa047e634473aca9408b288c2c;hb=b6f308f901ef00da365c40bab25c5f03b547adf0;hp=4e8a52b0e195119681a8903e3ca0fcb84968d436;hpb=ab609302e92e1b644e39dd08b07138fec7a0caa1;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeRefAttr.cpp b/src/Model/Model_AttributeRefAttr.cpp index 4e8a52b0e..0c24fe3e1 100644 --- a/src/Model/Model_AttributeRefAttr.cpp +++ b/src/Model/Model_AttributeRefAttr.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeRefAttr.cxx // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV @@ -5,6 +7,7 @@ #include "Model_AttributeRefAttr.h" #include "Model_Application.h" #include "Model_Data.h" +#include "Model_Objects.h" #include using namespace std; @@ -14,36 +17,55 @@ bool Model_AttributeRefAttr::isObject() return myID->Get().Length() == 0; } -void Model_AttributeRefAttr::setAttr(boost::shared_ptr theAttr) +void Model_AttributeRefAttr::setAttr(std::shared_ptr theAttr) { - boost::shared_ptr aData = boost::dynamic_pointer_cast( + std::shared_ptr aData = std::dynamic_pointer_cast( theAttr->owner()->data()); string anID = aData->id(theAttr); if (myIsInitialized && object() == theAttr->owner() && myID->Get().IsEqual(anID.c_str())) return; // nothing is changed + REMOVE_BACK_REF(theAttr->owner()); myRef->Set(aData->label().Father()); myID->Set(aData->id(theAttr).c_str()); + ADD_BACK_REF(theAttr->owner()); owner()->data()->sendAttributeUpdated(this); } -boost::shared_ptr Model_AttributeRefAttr::attr() +std::shared_ptr Model_AttributeRefAttr::attr() { ObjectPtr anObj = object(); - if (anObj) { - boost::shared_ptr aData = boost::dynamic_pointer_cast(anObj->data()); + if (anObj && anObj->data()) { + std::shared_ptr aData = std::dynamic_pointer_cast(anObj->data()); return aData->attribute(TCollection_AsciiString(myID->Get()).ToCString()); } // not initialized - return boost::shared_ptr(); + return std::shared_ptr(); } void Model_AttributeRefAttr::setObject(ObjectPtr theObject) { - if (theObject && (!myIsInitialized || myID->Get().Length() != 0 || object() != theObject)) { - boost::shared_ptr aData = boost::dynamic_pointer_cast( + // the back reference from the previous object to the attribute should be removed + ObjectPtr anObject = object(); + if (theObject.get() && (!myIsInitialized || myID->Get().Length() != 0 || object() != theObject)) { + REMOVE_BACK_REF(anObject); + + std::shared_ptr aData = std::dynamic_pointer_cast( theObject->data()); myRef->Set(aData->label().Father()); myID->Set(""); // feature is identified by the empty ID + + // do it before the transaction finish to make just created/removed objects know dependencies + // and reference from composite feature is removed automatically + FeaturePtr anOwnerFeature = std::dynamic_pointer_cast(owner()); + if (anOwnerFeature.get()) { + aData->addBackReference(anOwnerFeature, id(), false); + } + ADD_BACK_REF(theObject); + owner()->data()->sendAttributeUpdated(this); + } else if (theObject.get() == NULL) { + REMOVE_BACK_REF(anObject); + myRef->Set(myRef->Label()); // reference to itself means that object is null + myID->Set(""); // feature is identified by the empty ID owner()->data()->sendAttributeUpdated(this); } } @@ -51,17 +73,25 @@ void Model_AttributeRefAttr::setObject(ObjectPtr theObject) ObjectPtr Model_AttributeRefAttr::object() { if (myRef->Get() != myRef->Label()) { // initialized - boost::shared_ptr aDoc = boost::dynamic_pointer_cast( + std::shared_ptr aDoc = std::dynamic_pointer_cast( owner()->document()); if (aDoc) { TDF_Label aRefLab = myRef->Get(); - return aDoc->object(aRefLab); + return aDoc->objects()->object(aRefLab); } } // not initialized return ObjectPtr(); } +bool Model_AttributeRefAttr::isInitialized() +{ + if (myRef->Get() == myRef->Label()) { // empty is not initialized: sketch parallelity + return false; + } + return ModelAPI_AttributeRefAttr::isInitialized(); +} + Model_AttributeRefAttr::Model_AttributeRefAttr(TDF_Label& theLabel) { myIsInitialized = theLabel.FindAttribute(TDataStd_Comment::GetID(), myID) == Standard_True;