X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.cpp;h=09a768acf8b9f2b19cc385c1d3bbf96ef8e70cc2;hb=1834431e0e067cbb4616f42679562d56af528f5e;hp=ebd970ca510786a3f23567e91de0546c23bcfaf3;hpb=82f94d044ced40be786427ddee839e3c263fe277;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.cpp b/src/PartSetPlugin/PartSetPlugin_Part.cpp index ebd970ca5..09a768acf 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Part.cpp @@ -1,9 +1,11 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Part.cxx // Created: 27 Mar 2014 // Author: Mikhail PONIKAROV #include "PartSetPlugin_Part.h" -#include "ModelAPI_PluginManager.h" +#include "ModelAPI_Session.h" #include "ModelAPI_Document.h" #include "ModelAPI_Data.h" #include "ModelAPI_AttributeDocRef.h" @@ -16,27 +18,25 @@ PartSetPlugin_Part::PartSetPlugin_Part() } void PartSetPlugin_Part::initAttributes() -{ - data()->addAttribute(PART_ATTR_DOC_REF, ModelAPI_AttributeDocRef::type()); +{ // all is in part result } -void PartSetPlugin_Part::execute() +void PartSetPlugin_Part::execute() { - boost::shared_ptr aDocRef = data()->docRef(PART_ATTR_DOC_REF); - if (!aDocRef->value()) { // create a document if not yet created - boost::shared_ptr aPartSetDoc = - ModelAPI_PluginManager::get()->rootDocument(); - aDocRef->setValue(aPartSetDoc->subDocument(data()->name())); - } - // create a result only once - if (results().empty()) { - boost::shared_ptr aResult = document()->createPart(); - document()->storeResult(data(), aResult); - if (aResult->data()->name().empty()) - aResult->data()->setName(data()->name()); + ResultPartPtr aResult = std::dynamic_pointer_cast(firstResult()); + if (!aResult) { + aResult = document()->createPart(data()); + setResult(aResult); + // do not activate part by simple execution if it is not loaded yet: it must be explicitly + // activated for this + if (!ModelAPI_Session::get()->isLoadByDemand(aResult->data()->name())) { + aResult->activate(); + } } } -boost::shared_ptr PartSetPlugin_Part::documentToAdd() { - return ModelAPI_PluginManager::get()->rootDocument(); +const std::string& PartSetPlugin_Part::documentToAdd() +{ + // part must be added only to the module document + return ModelAPI_Session::get()->moduleDocument()->kind(); }