1 // Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // File : SALOME_Component.idl
23 // Author : Paul RASCLE, EDF
25 #ifndef _SALOME_COMPONENT_IDL_
26 #define _SALOME_COMPONENT_IDL_
28 #include "SALOME_GenericObj.idl"
29 #include "SALOMEDS.idl"
30 #include "SALOME_Exception.idl"
31 #include "SALOME_PyNode.idl"
33 /*! \file SALOME_Component.idl \brief interfaces for EngineComponent and Container
37 This is a package of interfaces used for connecting new components to %SALOME
38 application. It also contains a set of interfaces used for management of %MED
39 component in %SALOME application.
44 A byte stream which is used for binary data transfer between different
47 typedef sequence<octet> TMPFile;
49 //! General Key Value Structure to set or get properties, for component
56 //! Structure data type to hold reference on data
62 typedef sequence<KeyValuePair> FieldsDict;
63 typedef sequence<string> ListOfOptions;
64 typedef sequence<string> ListOfIdentifiers;
66 interface EngineComponent ;
68 interface fileTransfer ;
69 interface Salome_file;
70 interface DataContainer;
72 typedef sequence<DataContainer> ListOfData;
74 /*! \brief Interface of the %Container.
75 This interface defines the process of loading and registration
76 of new components in %SALOME application
82 /*! \brief Loads a new component class (dynamic library).
84 \param componentName like COMPONENT, (Python or C++ implementation)
85 try to make a Python import of COMPONENT,
86 then a lib open of libCOMPONENTEngine.so
87 \param reason in case of error (return false) a string explaining the error
88 \return true if load successfull or already done, false otherwise
90 boolean load_component_Library(in string componentName, out string reason);
92 //! Create a new servant instance of a component.
94 Component library must be loaded.
95 \param componentName Name of the component which will be registered
96 in Registry and Name Service,
97 (instance number suffix added to the registered name)
98 \param studyId 0 if instance is not associated to a study,
99 >0 otherwise (== study id)
100 \return a loaded component
102 Engines::EngineComponent create_component_instance(in string componentName,
105 //! Create a new servant instance of a component with environment variables specified.
107 Component library must be loaded.
108 \param componentName Name of the component which will be registered
109 in Registry and Name Service,
110 (instance number suffix added to the registered name)
111 \param studyId 0 if instance is not associated to a study,
112 >0 otherwise (== study id)
113 \param env a dict of env variables
114 \param reason in case of error (return nil) a string explaining the error
115 \return a loaded component
117 Engines::EngineComponent create_component_instance_env(in string componentName,
118 in long studyId, in FieldsDict env,
120 //! Find a servant instance of a component
122 \param registeredName Name of the component in Registry or Name Service,
123 without instance suffix number
124 \param studyId 0 if instance is not associated to a study,
125 >0 otherwise (== study id)
126 \return the first instance found with same studyId
128 EngineComponent find_component_instance(in string registeredName,
131 //! Find a servant instance of a component, or create a new one.
133 Loads the component library if needed.
134 Only applicable to multiStudy components.
135 \param nameToRegister Name of the component which will be registered
136 in Registry (or Name Service)
137 \param componentName Name of the constructed library of the %component
138 (not used any more, give empty string)
139 \return a loaded component
141 EngineComponent load_impl(in string nameToRegister,
142 in string componentName);
144 //! Remove the component servant, and deletes all related objects
146 \param component_i Component to be removed
148 void remove_impl(in EngineComponent component_i);
150 //! Unload component libraries from the container.
151 void finalize_removal() ;
153 //! Determines whether the server has been loaded or not.
156 //! Name of the %container
157 readonly attribute string name ;
159 //! working directory of the %container
160 readonly attribute string workingdir ;
162 //! name of the %container log file (this has been set by the launcher)
163 attribute string logfilename ;
165 //! Shutdown the Container process.
168 //! Returns the hostname of the container
169 string getHostName();
171 //! Returns the PID of the container
174 //! Kill the container
176 Returns True if the %container has been killed.
177 Kept for Superv compilation but can't work, unless oneway...
180 boolean Kill_impl() ;
184 returns a fileRef object if origFileName exists and is readable
185 else returns null object. Only one fileRef is created for a given
186 file name, so, several calls with the same file name returns the
189 fileRef createFileRef(in string origFileName);
191 //! Create a Salome_file
193 returns a Salome_file object if origFileName exists and is readable
194 else returns null object.
196 \param origFileName name of the file to be managed (can contain the path).
198 \return Salome_file CORBA reference.
200 Salome_file createSalome_file(in string origFileName);
202 //! Create a fileTransfer
204 returns a fileTransfer object used to copy files from the container
205 machine to the clients machines. Only one fileTransfer instance is
206 created in a container.
208 fileTransfer getFileTransfer();
210 //! Copy a file from a remote host (container) to a local file
212 \param contai the remote container
213 \param remoteFile the file on the remote host to copy
214 \param localFile the local file to create by copy
216 void copyFile(in Container contai, in string remoteFile, in string localFile);
218 //! Create a PyNode in the container
220 \param nodeName the name of the PyNode
221 \param code python code as text to load in the node
223 PyNode createPyNode(in string nodeName, in string code) raises(SALOME::SALOME_Exception);
225 //! Retrieves the last created PyNode instance with createPyNode.
226 PyNode getDefaultPyNode();
228 //! Create a PyScriptNode in the container
230 \param nodeName the name of the PyScriptNode
231 \param code python code as text to load in the node
233 PyScriptNode createPyScriptNode(in string nodeName, in string code) raises(SALOME::SALOME_Exception);
235 //! Retrieves the last created PyScriptNode instance with createPyScriptNode.
236 PyScriptNode getDefaultPyScriptNode();
239 /*! \brief Interface to pass data files from the client side to the SALOME Container.
240 Passes data from client side to the SALOME container (where component engine is running)
241 size via the CORBA bus as a stream of bytes.
244 interface DataContainer
246 //! This operation returns the stream with the data file content.
249 //! Returns the name of the document corresponding to this data container.
252 //! Returns the identifier of the document corresponding to this data container.
255 //! Returns the extension (type) of the document corresponding to this data container.
256 //! It is taked from the SIMAN URL.
259 //! Defines the extension. It is required is extension of the file is not
260 //! matched with a read extension: archived file, for example.
261 void setExtension(in string extension);
265 /*! \brief Interface of the %component.
266 This interface is used for interaction between the %container and the
267 %component and between the components inside the container.
269 interface EngineComponent
271 //! The name of the instance of the %Component
272 readonly attribute string instanceName ;
274 //! The name of the interface of the %Component
275 readonly attribute string interfaceName ;
277 //! Determines whether the server has already been loaded or not.
280 //! Get study associated to component instance
282 get study associated to component instance
283 \return -1: not initialised (Internal Error)
284 0: multistudy component instance
285 >0: study id associated to this instance
289 //! Remove component instance from container
291 Deactivates the %Component.
292 -- TO BE USED BY CONTAINER ONLY (Container housekeeping) --
293 use remove_impl from Container instead !
297 //! Returns the container that the %Component refers to.
298 Container GetContainerRef() ;
300 //! Set component instance properties
302 Gives a sequence of (key=string,value=any) to the component.
303 Base class component stores the sequence in a map.
304 The map is cleared before.
305 This map is for use by derived classes.
307 void setProperties(in FieldsDict dico);
309 //! Get component instance properties
311 returns a previously stored map (key=string,value=any) as a sequence.
312 See setProperties(in FieldsDict dico).
314 FieldsDict getProperties();
316 //! Set an option value
318 This method is to set an option specific to a certain EngineComponent.
320 void SetOption(in string optionName, in string value);
322 //! Return an option value
324 This method is to get value of an option specific to a certain EngineComponent.
326 string GetOption(in string optionName);
328 //! Set name of a node in a graph (for %SUPERVISOR use)
330 This method is used by the %SUPERVISOR component. It sets the names of
331 the graph and of the node.
332 \param aGraphName Name of graph
333 \param aNodeName Name of node
335 void Names( in string aGraphName , in string aNodeName ) ;
337 //! Kill the component (if you can)
339 Returns True if the %Component has been killed.
341 boolean Kill_impl() ;
343 //! Stop the component (if you can)
345 Returns True if the activity of the %Component has been stopped.
346 (It's action can't be resumed)
348 boolean Stop_impl() ;
350 //! Suspend the component
352 Returns True if the activity of the %Component has been suspended.
353 (It's action can be resumed)
355 boolean Suspend_impl() ;
357 //! Resume the component
359 Returns True if the activity of the %Component has been resumed.
361 boolean Resume_impl() ;
367 long CpuUsed_impl() ;
369 //! Get a python dump
371 Returns a python script, which is being played back reproduces
372 the data model of component
374 TMPFile DumpPython(in Object theStudy,
375 in boolean isPublished,
376 in boolean isMultiFile,
377 out boolean isValidScript);
380 //! Returns a CORBA Ref of a input Salome_file managed by a service.
383 \param service_name service's name.
384 \param file_name name of the requested file.
386 \return CORBA Ref of the requested file.
388 \exception contains informations of what if the component cannot
389 sends the file's reference.
391 Engines::Salome_file getInputFileToService(in string service_name,
392 in string Salome_file_name) raises(SALOME::SALOME_Exception);
394 //! Check service input files (transfer them if needed)
396 This method is used before the activation of the service. It calls
397 recvFiles() on all the input Salome_file files of the service.
399 Before each recvFiles(), it uses the callback method named configureSalome_file.
400 This method allows the user to configure the files managed by the Salome_file.
402 By default, there is no files managed when a Salome_file is created,
403 but the supervisor set some files managed by the Salome_file from the information contained
404 into the schema file.
406 \param service_name service's name.
408 \exception contains informations about files that are not in a good state.
410 void checkInputFilesToService(in string service_name) raises(SALOME::SALOME_Exception);
412 //! This method adds a input Salome_file to a service of the component.
415 \param service_name service's name.
416 \param Salome_file_name name of the Salome_file
418 \return a reference of the Salome_file
420 \exception raises an exception if there is already
421 a Salome_file with this name for the service.
423 Engines::Salome_file setInputFileToService(in string service_name,
424 in string Salome_file_name) raises(SALOME::SALOME_Exception);
426 //! Returns a CORBA Ref of a output Salome_file managed by a service.
429 \param service_name service's name.
430 \param file_name name of the requested file.
432 \return CORBA Ref of the requested file.
434 \exception contains informations of what if the component cannot
435 sends the file's reference.
437 Engines::Salome_file getOutputFileToService(in string service_name,
438 in string Salome_file_name) raises(SALOME::SALOME_Exception);
440 //! Check service output files (transfer them if needed)
442 This method is used at the end of the service. It calls
443 recvFiles() on all the output Salome_file files of the service.
445 Before each recvFiles(), it uses the callback method named configureSalome_file.
446 This method allows the user to configure the files managed by the Salome_file.
448 By default, there is no files managed when a Salome_file is created,
449 but the supervisor set some files managed by the Salome_file from the information contained
450 into the schema file.
452 \param service_name service's name.
454 \exception contains informations about files that are not in a good state.
456 void checkOutputFilesToService(in string service_name) raises(SALOME::SALOME_Exception);
458 //! This method adds an output Salome_file to a service of the component.
461 \param service_name service's name.
462 \param Salome_file_name name of the Salome_file
464 \return a reference of the Salome_file
466 \exception raises an exception if there is already
467 a Salome_file with this name for the service.
469 Engines::Salome_file setOutputFileToService(in string service_name,
470 in string Salome_file_name) raises(SALOME::SALOME_Exception);
472 //! Indicate if the component instance provides custom information about its objects.
474 Returns true if the component provides custom information about its objects, false otherwise.
475 Should be redefined in the certain component to return true in case of this
476 component provides such information.
478 boolean hasObjectInfo();
480 //! Get custom information about the given object.
482 This method is used to get the custom information about the given object.
483 Should be redefined in the certain component in case of this
484 component provides such information.
485 It is worth using this method only if hasObjectInfo() method returns true.
487 \param entry object's entry.
488 \param studyId study id
490 \return an information about the given object.
492 string getObjectInfo(in long studyId, in string entry);
494 //! Get version of the component
496 This method is supposed to be implemented in all derived classes; default implementation
497 returns "unknown" string that means that no version information about the component is available.
498 \note The version of the component is stored to the study, as a part of general persistence
499 mechanism; once stored, version information in the study cannot be changed.
501 \return string containing component's version, e.g. "1.0"
505 //! Generic Import operation to let the component to import data, corresponding to it.
507 \param studyId indentifier of the study where the data must be placed
508 \param data data for import: usually this is just imported file content
509 \param options additional options for Importat operation
510 \return the sequence of identifiers of the importedData in the component (to use later in the export function)
512 ListOfIdentifiers importData(in long studyId, in DataContainer data, in ListOfOptions options);
514 //! Generic Export operation to ket the component export all modified data corresponding to it.
516 \param studyId identifier of the study that contains the exported data
518 ListOfData getModifiedData(in long studyId);
522 \brief Base interface of the %component that supports exporting data.
524 interface ImportableComponent
526 /*! \brief Get a list of supported formats */
527 SALOME::StringSeq GetImportableFormats();
528 boolean ImportDataAs(in string format, in SALOME::GenericObj exporter);
531 //! A block of binary data used for file transfer. The maximum size of the block is defined on server side.
532 typedef sequence<octet> fileBlock;
534 /*! \brief Interface of fileTransfer.
535 The fileTransfer and fileRef interfaces provide a file transfer service
536 between different computers.
538 interface fileTransfer : SALOME::GenericObj
540 //! Open the file transfer
542 open method returns a key (fileId) that identifies the structure
543 (ex: C FILE), associated to the original file on the server.
544 The structure is created by a container for transfer of files availables
545 on the computer which runs the container.
546 Each open gives a unique fileId, to allow concurrent reads of the same
549 long open(in string fileName);
550 //! Open the file transfer in write mode for file fileName
552 \param fileName the file to copy into with putBlock
553 \return the id to use with putBlock
555 long openW(in string fileName);
557 //! Close the file transfer
559 when the file transfer is finished, close method releases structures
560 created by open method, identified by fileId.
562 void close(in long fileId);
564 //! Get a file data block
566 Get successive blocks of octets from the original file.
567 The last block is empty, and identifies the end of file.
569 fileBlock getBlock(in long fileId);
571 //! Put a file data block
573 \param fileId identification of the file obtained by openW
574 \param block a data block to copy into the file identified by fileId
576 void putBlock(in long fileId, in fileBlock block);
580 //! A file managed by a Salome_file.
587 string source_file_name;
588 //! status ("present" or "notpresent")
591 Engines::Container container;
594 //! A sequence of Engines::file.
595 typedef sequence<Engines::file> files;
598 //! The state of a Salome_file.
602 //! hdf5 file where the file can be saved
603 string hdf5_file_name;
604 //! number of files managed
605 long number_of_files;
606 //! information if all the files are received
611 /*! \brief Interface of a Salome_file managed
612 This file is independent of a Salome module. It can managed one or more
613 real files. It's useful for parallel files. Currently Salome_file cannot manage
614 two files that have the same name but not the same path.
616 interface Salome_file : Engines::fileTransfer
618 //! Load a Salome_file from a hdf5 file.
621 \param hdf5_file name (with path) of the hdf5_file.
623 \exception contains informations of errors if the loading doesn't succeed.
625 void load(in string hdf5_file) raises (SALOME::SALOME_Exception);
627 //! Save a Salome_file into a hdf5_file.
630 \param hdf5_file name (with path) of the hdf5_file.
632 \exception contains informations of errors if the save doesn't succeed.
635 void save(in string hdf5_file) raises (SALOME::SALOME_Exception);
637 //! Save a Salome_file into a hdf5_file.
639 All files that are managed are saved into the hdf5_file
641 \param hdf5_file name (with path) of the hdf5_file.
643 \exception contains informations of errors if the save doesn't succeed.
646 void save_all(in string hdf5_file) raises (SALOME::SALOME_Exception);
650 //! Add a Local file to the Salome_file.
653 \param file_name name of the file with the path.
655 \exception raised if the file is already added into the Salome_file.
657 void setLocalFile(in string comp_file_name) raises (SALOME::SALOME_Exception);
659 //! Add a Distributed file to the Salome_file.
662 \param comp_file_name name of the file with the path.
664 \exception raised if the file is already added into the Salome_file.
666 void setDistributedFile(in string comp_file_name) raises (SALOME::SALOME_Exception);
668 //! Connect a Salome_file with another Salome_file.
670 It works only if the Salome_file managed only one file
672 \param source_Salome_file Salome_file that managed the distributed version of the file.
674 \exception raised if there is more or less than one file.
676 void connect(in Engines::Salome_file source_Salome_file) raises (SALOME::SALOME_Exception);
678 //! Connect the managed file file_name to a Salome_file.
681 \param file_name name of the file without the path.
682 \param source_Salome_file Salome_file that managed the distributed version of the file.
684 \exception raised if the file doesn't exist.
686 void connectDistributedFile(in string file_name,
687 in Engines::Salome_file source_Salome_file) raises (SALOME::SALOME_Exception);
689 //! Connect the file_name with a Distributed file_name.
692 \param file_name name of the file without the path.
693 \param source_file_name It's the name of the file managed by the distributed source Salome_file.
695 \exception raised if the file doesn't exist.
697 void setDistributedSourceFile(in string file_name,
698 in string source_file_name) raises (SALOME::SALOME_Exception);
702 //! Get all the distributed files managed by the Salome_file and check all the local files.
705 \exception raised if some of the files are not ok.
707 void recvFiles() raises (SALOME::SALOME_Exception) ;
711 //! Remove a file of the Salome_file.
714 \param file_name name of the file.
716 \exception raised if the file doesn't exist.
718 void removeFile(in string file_name) raises (SALOME::SALOME_Exception);
720 //! Remove all the files of the Salome_file.
725 //! Get the list of the files managed by the Salome_file.
727 The list can be empty.
729 Engines::files getFilesInfos();
731 //! Get a file managed by the Salome_file.
734 \param file_name the name of the file.
736 \return CORBA file reference.
738 \exception raised if the file doesn't exist.
740 Engines::file getFileInfos(in string file_name) raises (SALOME::SALOME_Exception);
742 //! Return the state of the Salome_file.
743 Engines::SfState getSalome_fileState();
746 //! Set the container where files are.
749 \param container container CORBA's reference.
751 void setContainer(in Engines::Container container);
754 /*! \brief Interface of fileRef.
755 The fileTransfer and fileRef interfaces provide a file transfer service
756 between different computers.
758 A fileRef object is associated to an original file (origFileName) on a
759 machine (refMachine).
760 It is created by a container (factoryServer) on refMachine,
761 with createFileRef(in string origFileName) method.
762 The fileRef object maintains a list of (machine,filename) for copies.
763 If a copy exists on myMachine, getRef(myMachine) returns the file name
764 of the copy on myMachine, else returns empy string.
765 If there is no copy on myMachine, method getFileTransfer() from container
766 factoryServer on refMachine provides a fileTransfer object dedicated to
768 After the copy, addRef(myMachine, localFileNameOnMyMachine) registers
769 the file name of the copy on myMachine.
773 //! the original file
774 readonly attribute string origFileName;
775 //! the machine of the original file
776 readonly attribute string refMachine;
778 Container getContainer();
780 boolean addRef(in string machine,
783 string getRef(in string machine);