Salome HOME
CCAR: add Observer CORBA object to SALOMEDS module to implement a notification
[modules/kernel.git] / idl / SALOME_ContainerManager.idl
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _SALOME_CONTAINERMANAGER_IDL_
24 #define _SALOME_CONTAINERMANAGER_IDL_
25
26 #include "SALOME_Exception.idl"
27 #include "SALOME_Component.idl"
28
29 /*! \file SALOME_ContainerManager.idl \brief interfaces for %SALOME launcher and container manager
30 */
31
32 module Engines
33 {
34
35 //!  Type to transmit list of resources.
36 typedef sequence<string> ResourceList;
37 //! components list
38 typedef sequence<string> CompoList;
39 //! files list
40 typedef sequence<string> FilesList;
41 //! modules list
42 typedef sequence<string> ModulesList;
43
44 //! A generic parameter
45 struct Parameter
46 {
47   string name;
48   string value;
49 };
50 //! Generic parameter list
51 typedef sequence<Engines::Parameter> ParameterList;
52
53 //! Type to describe required properties of a resource
54 struct ResourceParameters
55 {
56   //! resource name - manual selection
57   string name;
58   //! host name
59   string hostname;
60   //! if given required operating system 
61   string OS;
62   //! if given list of components that could be loaded on a container
63   //! Optional if no resource are found with this constraint
64   CompoList componentList;
65
66   // Permits to order resources
67   //! required number of proc
68   long nb_proc;
69   //! required memory size
70   long mem_mb;
71   //! required frequency
72   long cpu_clock;
73   //! required number of node
74   long nb_node;
75   //! required number of proc per node
76   long nb_proc_per_node;
77
78   // Permits to configure SALOME resource management
79   //! resource management policy : first, cycl, altcycl or best (can be extended)
80   string policy;
81   //! restricted list of resources to search in
82   ResourceList resList;
83 };
84
85 //! Type to describe required properties of a container
86 struct ContainerParameters
87 {
88   //! container name if given else automatic
89   string container_name;
90
91   //! creation mode for GiveContainer if given else automatic 
92   /*!start creates a new container
93    * get  try to find an existing container
94    * getorstart   use an existing container if it exists or creates a new one
95    */
96   string mode;
97
98   //! container working directory if given else automatic
99   string workingdir;
100
101   // Parallel part
102   //! Number of proc of a parallel container
103   long nb_proc;
104   //! if true start a MPI container
105   boolean isMPI;
106   //! PaCO specific informations
107   string parallelLib;
108
109   //! Parameters to choose a resource
110   ResourceParameters resource_params;
111 };
112
113 //!  Type to describe a resource
114 struct ResourceDefinition
115 {
116   //! name 
117   string name;
118   //! hostname 
119   string hostname;
120   //! protocol to connect to the resource
121   //! protocol used to start a remote container (ssh or rsh)
122   string protocol;
123   //! login name to use to start a remote container
124   string username;
125   //! salome application to use to start a remote container
126   string applipath;
127   //! list of available components 
128   CompoList componentList;
129   //! Type of resource: interactive or batch
130   string mode;
131
132   //! operating system 
133   string OS;
134   //! memory size per node
135   long mem_mb;
136   //! frequency
137   long cpu_clock;
138   //! number of node
139   long nb_node;
140   //! number of proc per node
141   long nb_proc_per_node;
142   //! batch system
143   string batch;
144   //! MPI implementation
145   string mpiImpl;
146   //! if the resource is a cluster:
147   //! internal protocol to use to start a remote container (ssh or rsh) on the cluster
148   string iprotocol;
149 };
150
151 //! exception thrown if a computer is not found in the catalog
152 exception NotFound {};
153
154 struct JobParameters
155 {
156   string job_name;
157   //! Job Type - Could be equal to "command" or "yacs_file" or "python_salome"
158   string job_type;
159
160   // Common values
161   string job_file;
162   string env_file; 
163   FilesList in_files;
164   FilesList out_files;
165   string work_directory;
166   string local_directory;
167   string result_directory;
168
169   /*! Time for the batch (has to be like this : hh:mm) - Could be empty, in
170        this case, default value of the selected resource will be used.
171   */
172   string maximum_duration; 
173
174   // Memory is expressed in megabytes -> mem_mb
175   // Number of Processors -> nb_proc
176   ResourceParameters resource_required;
177
178   /*!
179     Name of the batch queue choosed - optional
180   */
181   string queue;
182
183   /*!
184     Specific parameters for each type of job - optional
185   */
186   Engines::ParameterList specific_parameters;
187 };
188
189 struct JobDescription
190 {
191   long job_id;
192   Engines::JobParameters job_parameters;
193 };
194 typedef sequence<Engines::JobDescription> JobsList;
195
196 interface SalomeLauncherObserver
197 {
198   void notify(in string event_name, in string event_data);
199 };
200
201 /*! \brief Interface of the %salomelauncher
202     This interface is used for interaction with the unique instance
203     of SalomeLauncher
204 */
205 interface SalomeLauncher
206 {
207   // Main methods
208   long   createJob    (in Engines::JobParameters job_parameters) raises (SALOME::SALOME_Exception);
209   void   launchJob    (in long job_id)                           raises (SALOME::SALOME_Exception);
210   string getJobState  (in long job_id)                           raises (SALOME::SALOME_Exception);
211   void   getJobResults(in long job_id, in string directory)      raises (SALOME::SALOME_Exception);
212   void   removeJob    (in long job_id)                           raises (SALOME::SALOME_Exception);
213
214   // Useful methods
215   long    createJobWithFile(in string xmlJobFile, in string clusterName) raises (SALOME::SALOME_Exception);
216   boolean testBatch        (in ResourceParameters params)                raises (SALOME::SALOME_Exception);
217
218   // SALOME kernel service methods
219   void Shutdown();
220   long getPID();
221
222   // Observer and introspection methods
223   void addObserver(in Engines::SalomeLauncherObserver observer);
224   void removeObserver(in Engines::SalomeLauncherObserver observer);
225   Engines::JobsList getJobsList();
226   Engines::JobParameters getJobParameters(in long job_id) raises (SALOME::SALOME_Exception);
227
228   // Save and load methods
229   void loadJobs(in string jobs_file) raises (SALOME::SALOME_Exception);
230   void saveJobs(in string jobs_file) raises (SALOME::SALOME_Exception);
231
232 };
233   
234 /*! \brief Interface of the %containerManager
235     This interface is used for interaction with the unique instance
236     of ContainerManager
237 */
238 interface ContainerManager
239 {
240   //! GiveContainer - use mode parameter of ContainerParameters to configure
241   //! how this method works
242   //! Currently: get, start, getorstart, findorstart, find
243   Container GiveContainer(in ContainerParameters params) raises (SALOME::SALOME_Exception);
244
245   //!  Shutdown all containers that have been launched by the container manager
246   void ShutdownContainers();
247 } ;
248   
249 /*! \brief Interface of the %resourcesManager
250     This interface is used for interaction with the unique instance
251     of ResourcesManager
252 */
253 interface ResourcesManager
254 {
255   //!  Find first available resource in a resources list
256   string FindFirst(in ResourceList possibleResources);
257
258   //!  Find best available computer according to policy in a computers list
259   string Find(in string policy, in ResourceList possibleResources);
260
261   //!  Get a list of resources that are best suited to launch a container given constraints 
262   /*! 
263        The constraints are resource constraints (params) and components constraints (componentList)
264   */
265   ResourceList GetFittingResources(in ResourceParameters params) raises (SALOME::SALOME_Exception);
266
267   //!  Get definition of a resource
268   ResourceDefinition GetResourceDefinition(in string name);
269
270   //! Add a new resource to the resource_manager
271   /*!
272       write -> true, resource manager will add it into a xml_file
273       xml_file -> could be empty, in this case if write is true, resource manager will write
274       the resource in its first ResourceCatalog file
275     */
276   void AddResource(in ResourceDefinition new_resource, in boolean write, in string xml_file) 
277     raises (SALOME::SALOME_Exception);
278
279   //! Remove a new resource to the resource_manager
280   /*!
281       write -> true, resource manager will write a new xml_file
282       xml_file -> could be empty, in this case if write is true, resource manager will write
283       the resource in its first ResourceCatalog file
284     */
285   void RemoveResource(in string resource_name, in boolean write, in string xml_file) 
286     raises (SALOME::SALOME_Exception);
287 };
288
289
290 // For compatibility - will be erased on SALOME 6
291 typedef sequence<string> MachineList;
292 //!  Type to describe required properties of a container.
293 struct MachineParameters
294 {
295   //! container name if given else automatic
296   string container_name;
297   //! host name if given else automatic
298   string hostname;
299   //! if given list of components that could be loaded on the container
300   CompoList componentList;
301   //! if given restricted list of machines to search in
302   MachineList computerList;
303   //! required operating system 
304   string OS;
305   //! required memory size
306   long mem_mb;
307   //! required frequency
308   long cpu_clock;
309   //! required number of proc per node
310   long nb_proc_per_node;
311   //! required number of node
312   long nb_node;
313   //! if true start a MPI container
314   boolean isMPI;
315   //! container working directory 
316   string workingdir;
317   //! creation mode for GiveContainer. 
318   /*!start creates a new container
319    * get  try to find an existing container
320    * getorstart   use an existing container if it exists or creates a new one
321    */
322   string mode;
323   //! resource management policy : first, cycl, altcycl or best (can be extended)
324   string policy;
325
326   //! PaCO specific informations
327   string parallelLib;
328   long nb_component_nodes;
329 };
330 };
331   
332 #endif