Version: 9.15.0
CORBAComponent.hxx
Go to the documentation of this file.
1 // Copyright (C) 2006-2025 CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 
20 #ifndef _CORBACOMPONENT_HXX_
21 #define _CORBACOMPONENT_HXX_
22 
23 #include "ComponentInstance.hxx"
24 #include <omniORB4/CORBA.h>
25 
26 namespace YACS
27 {
28  namespace ENGINE
29  {
30  class ServiceNode;
31 
37  {
38  public:
39  CORBAComponent(const std::string& name);
40  CORBAComponent(const CORBAComponent& other);
41  virtual ~CORBAComponent();
42  virtual void load(Task *askingNode);
43  virtual void unload(Task *askingNode);
44  virtual bool isLoaded(Task *askingNode) const;
45  virtual ServiceNode* createNode(const std::string& name);
46  virtual ComponentInstance* clone() const;
47  virtual ComponentInstance* cloneAlways() const;
48  virtual std::string getFileRepr() const;
49  virtual CORBA::Object_ptr getCompoPtr();
50  public:
51  static const char KIND[];
52  virtual std::string getKind() const;
53  virtual std::string getKindForNode() const;
54  protected:
55  CORBA::Object_var _objComponent;
56  };
57  }
58 }
59 
60 #endif
Class for CORBA component instance.
virtual std::string getKind() const
Return the component kind.
virtual ComponentInstance * clone() const
Clone the component instance.
virtual void load(Task *askingNode)
Load the component.
virtual CORBA::Object_ptr getCompoPtr()
CORBAComponent(const std::string &name)
CORBAComponent constructor.
CORBA::Object_var _objComponent
virtual ComponentInstance * cloneAlways() const
virtual std::string getKindForNode() const
virtual void unload(Task *askingNode)
Unload the component.
virtual std::string getFileRepr() const
For dump in file.
virtual bool isLoaded(Task *askingNode) const
Is the component instance already loaded ?
virtual ServiceNode * createNode(const std::string &name)
Create a ServiceNode with this component instance and no input or output port.
Base class for all component instances.
Class for calculation node associated with a component service.
Definition: ServiceNode.hxx:35