X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FSalomePythonComponent.cxx;h=f6609f42eda3d694f9d8b3362f05833ad819f77b;hb=refs%2Fheads%2Fomu%2Fworkloadmanager;hp=3122a6fa8c405cbe0351b29de3874a8967620d2c;hpb=f3b2b68ffecc5033287a7a255c8507f8989fb87f;p=modules%2Fyacs.git diff --git a/src/runtime/SalomePythonComponent.cxx b/src/runtime/SalomePythonComponent.cxx index 3122a6fa8..f6609f42e 100644 --- a/src/runtime/SalomePythonComponent.cxx +++ b/src/runtime/SalomePythonComponent.cxx @@ -1,9 +1,9 @@ -// Copyright (C) 2006-2013 CEA/DEN, EDF R&D +// Copyright (C) 2006-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. +// 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 @@ -44,11 +44,11 @@ SalomePythonComponent::~SalomePythonComponent() { } -void SalomePythonComponent::load() +void SalomePythonComponent::load(Task *askingNode) { if(_container) { - _container->start(this); + _container->start(askingNode); return; } //This component has no specified container : use default container policy @@ -56,16 +56,16 @@ void SalomePythonComponent::load() //throw Exception("SalomePythonComponent::load : no container specified !!! To be implemented in executor to allocate default a Container in case of presenceOfDefaultContainer."); } -void SalomePythonComponent::unload() +void SalomePythonComponent::unload(Task *askingNode) { } -bool SalomePythonComponent::isLoaded() +bool SalomePythonComponent::isLoaded(Task *askingNode) const { if(!_container) return false; else - return _container->isAlreadyStarted(this); + return _container->isAlreadyStarted(askingNode); } std::string SalomePythonComponent::getKind() const @@ -85,6 +85,11 @@ ComponentInstance* SalomePythonComponent::clone() const return new SalomePythonComponent(*this); } +ComponentInstance *SalomePythonComponent::cloneAlways() const +{ + return new SalomePythonComponent(*this); +} + ServiceNode *SalomePythonComponent::createNode(const std::string &name) { ServiceNode* node=new SalomePythonNode(name); @@ -99,10 +104,10 @@ std::string SalomePythonComponent::getFileRepr() const return stream.str(); } -std::string SalomePythonComponent::getStringValueToExportInInterp() const +std::string SalomePythonComponent::getStringValueToExportInInterp(const Task *askingNode) const { if(!_container) return "localhost/FactoryServer"; else - return _container->getPlacementId(this); + return _container->getPlacementId(askingNode); }