Salome HOME
PR: merge from tag mergeto_trunk_20Jan05
[modules/yacs.git] / idl / SALOME_Component.idl
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 //
20 //
21 //
22 //  File   : SALOME_Component.idl
23 //  Author : Paul RASCLE, EDF
24 //  $Header: /dn05/salome/CVS/SALOME_ROOT/idl/SALOME_Component.idl
25
26 #ifndef _SALOME_COMPONENT_IDL_
27 #define _SALOME_COMPONENT_IDL_
28 /*!  
29
30 This is a package of interfaces used for connecting new components to %SALOME application. It also contains a set of interfaces used
31 for management of %MED component in %SALOME application.
32 */
33 module Engines
34 {
35 /*!
36     General Key Value Structure to set or get properties, for component
37 */
38   struct KeyValuePair
39   {
40     string key;
41     any value;
42   };
43
44   typedef sequence<KeyValuePair> FieldsDict;
45
46   interface Component ;
47
48 /*! \brief Interface of the %Container
49
50    This interface defines the process of loading and registration
51     of new components in %SALOME application
52 */
53   interface Container
54   {
55
56 /*!
57     Loads into the container a new component, registers it and starts it's CORBA servant.
58     \param nameToRegister     Name of the component which will be registered in Registry (or Name Service)
59     \param componentName     Name of the constructed library of the %component
60     \return a loaded component
61 */
62     Component load_impl(in string nameToRegister, in string componentName);
63
64 /*!
65     Stops the component servant, and deletes all related objects
66     \param component_i     Component to be removed
67 */
68     void remove_impl(in Component component_i);
69
70 /*!
71     Discharges all components from the container.
72 */
73     void finalize_removal() ;
74 /*!
75      Determines whether the server has been loaded or not.
76 */
77
78     void ping();
79 /*!
80    Name of the %container
81 */
82     readonly attribute string name ;
83 /*!
84    Name of the machine containing this container (location of the container).
85 */
86     readonly attribute string machineName ;
87 /*!
88    Returns True if the %container has been killed
89 */
90     boolean Kill_impl() ;
91 /*!
92    Shutdown the Container process.
93 */
94     oneway void Shutdown();
95 /*!
96    Returns the hostname of the container
97 */
98     string getHostName();
99 /*!
100    Returns the PID of the container
101 */
102     long getPID();
103   };
104 /*! \brief Interface of the %component
105
106     This interface is used for interaction between the %container and the %component and between
107     the components inside the container.
108 */
109   interface Component
110   {
111 /*!
112    The name of the instance of the %Component
113 */
114     readonly attribute string instanceName ;
115 /*!
116    The name of the interface of the %Component
117 */
118     readonly attribute string interfaceName ;
119 /*!
120     Determines whether the server has already been loaded or not.
121 */
122     void ping();
123 /*!
124     Deactivates the %Component.
125 */
126     void destroy() ;
127 /*!
128     Returns the container that the %Component refers to.
129 */
130     Container GetContainerRef() ;
131 /*!
132     Gives a sequence of (key=string,value=any) to the component. 
133     Base class component stores the sequence in a map.
134     The map is cleared before.
135     This map is for use by derived classes. 
136 */
137     void setProperties(in FieldsDict dico);
138 /*!
139     returns a previously stored map (key=string,value=any) as a sequence.
140     See setProperties(in FieldsDict dico).
141 */
142     FieldsDict getProperties();
143 /*!
144    This method is used by the %SUPERVISOR component. It sets the names of the graph and of the node.
145    \param aGraphName Name of graph
146    \param aNodeName Name of node
147 */
148     void Names( in string aGraphName , in string aNodeName ) ;
149 /*!
150    Returns True if the %Component has been killed.
151 */
152     boolean Kill_impl() ;
153 /*!
154    Returns True if the activity of the %Component has been stopped. (It's action can't be resumed)
155 */
156     boolean Stop_impl() ;
157 /*!
158    Returns True if the activity of the %Component has been suspended. (It's action can be resumed)
159 */
160     boolean Suspend_impl() ;
161 /*!
162    Returns True if the activity of the %Component has been resumed.
163 */
164     boolean Resume_impl() ;
165 /*!
166    Returns the Cpu used (long does not run with python !...)
167 */
168     long CpuUsed_impl() ;
169   } ;
170 } ;
171
172 #endif