X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeDocRef.cpp;h=760be075208aff3857e518bf273b94a0c4088b42;hb=3ce3e69a217055142b03d67add35d054979a6340;hp=93c8af71346ce82569f5cea6cf867f8b0d8ac55b;hpb=59352d0f59edef8f37d436517f5b0c0fbecd7305;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeDocRef.cpp b/src/Model/Model_AttributeDocRef.cpp index 93c8af713..760be0752 100644 --- a/src/Model/Model_AttributeDocRef.cpp +++ b/src/Model/Model_AttributeDocRef.cpp @@ -1,40 +1,56 @@ -// File: ModelAPI_AttributeDocRef.cxx -// Created: 2 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "Model_AttributeDocRef.h" #include "Model_Application.h" -#include "Model_Events.h" -#include +#include +#include -using namespace std; - -void Model_AttributeDocRef::setValue(boost::shared_ptr theDoc) +void Model_AttributeDocRef::setValue(std::shared_ptr theDoc) { - TCollection_ExtendedString aNewID(theDoc->id().c_str()); - if (myComment->Get() != aNewID) { - myComment->Set(TCollection_ExtendedString(theDoc->id().c_str())); - - static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_UPDATED); - Model_FeatureUpdatedMessage aMsg(owner(), anEvent); - Events_Loop::loop()->send(aMsg); + if (myID->Get() != theDoc->id()) { + myID->Set(theDoc->id()); + owner()->data()->sendAttributeUpdated(this); } } -boost::shared_ptr Model_AttributeDocRef::value() +std::shared_ptr Model_AttributeDocRef::value() +{ + return Model_Application::getApplication()->document(myID->Get()); +} + +int Model_AttributeDocRef::docId() { - if (myComment->Get().Length()) - return Model_Application::getApplication()->getDocument( - TCollection_AsciiString(myComment->Get()).ToCString()); - // not initialized - return boost::shared_ptr(); + return myID->Get(); } Model_AttributeDocRef::Model_AttributeDocRef(TDF_Label& theLabel) { - // check the attribute could be already presented in this doc (after load document) - if (!theLabel.FindAttribute(TDataStd_Comment::GetID(), myComment)) { - // create attribute: not initialized by value yet, just empty string - myComment = TDataStd_Comment::Set(theLabel, ""); + myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), myID) == Standard_True; + if (!myIsInitialized) { + int aNewID = Model_Application::getApplication()->generateDocumentId(); + myID = TDataStd_Integer::Set(theLabel, aNewID); + myIsInitialized = true; } } + +void Model_AttributeDocRef::reinit() +{ + // myLab is unknown, nevertheless, lose of attribute DocRef for live feature seems impossible +}