Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/kernel.git] / idl / SALOME_Comm.idl
index a01eca1a6ae5a5b622a61a17538e96d4dfac72ca..a859403a22a058566c40190f5fa667f7677a2230 100644 (file)
@@ -1,5 +1,35 @@
+//  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  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.
+//
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
+//
+//  You should have received a copy of the GNU Lesser General Public
+//  License along with this library; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#ifndef _SALOME_COMM_IDL_
+#define _SALOME_COMM_IDL_
+
 #include "SALOME_Exception.idl"
 
+/*!
+  \file SALOME_Comm.idl \brief This file contains a set of interfaces used for communication
+  between components
+ */
+
 module SALOME {
   
   enum TypeOfDataTransmitted { _DOUBLE_,_INT_ };
@@ -20,33 +50,40 @@ module SALOME {
 
   interface Sender {
     TypeOfDataTransmitted getTypeOfDataTransmitted();
-    Sender buildOtherWithProtocol(in TypeOfCommunication type);
     void release();
   };
 
+  interface SenderDouble : Sender {
+    SenderDouble buildOtherWithProtocol(in TypeOfCommunication type);
+  };
+
+  interface SenderInt : Sender {
+    SenderInt buildOtherWithProtocol(in TypeOfCommunication type);
+  };
+
   //No compulsory copy between double and CORBA::Double
-  interface CorbaDoubleNCSender : Sender {
+  interface CorbaDoubleNCSender : SenderDouble {
     unsigned long getSize();
     vectorOfDouble sendPart(in unsigned long n1,in unsigned long n2);
     vectorOfDouble send();
   };
 
   //Compulsory copy between double and CORBA::Double
-  interface CorbaDoubleCSender : Sender {
+  interface CorbaDoubleCSender : SenderDouble {
     unsigned long getSize();
     //unsigned long getSize2();
     vectorOfDouble sendPart(in unsigned long n1,in unsigned long n2);
   };
 
   //No compulsory copy between int and CORBA::Long
-  interface CorbaLongNCSender : Sender {
+  interface CorbaLongNCSender : SenderInt {
     unsigned long getSize();
     vectorOfLong sendPart(in unsigned long n1,in unsigned long n2);
     vectorOfLong send();
   };
 
   //Compulsory copy between int and CORBA::Long
-  interface CorbaLongCSender : Sender {
+  interface CorbaLongCSender : SenderInt {
     unsigned long getSize();
     vectorOfLong sendPart(in unsigned long n1,in unsigned long n2);
   };
@@ -63,6 +100,12 @@ module SALOME {
     void close(in param p);
   };
 
+  interface MPISenderDouble : SenderDouble,MPISender {
+  };
+
+  interface MPISenderInt : SenderInt,MPISender {
+  };
+
   interface SocketSender : Sender {
     typedef struct Parameter {
       unsigned long lstart;
@@ -78,4 +121,17 @@ module SALOME {
     void send();
   };
 
+  interface SocketSenderDouble : SenderDouble,SocketSender {
+  };
+
+  interface SocketSenderInt : SenderInt,SocketSender {
+  };
+
+  interface Matrix {
+    SenderDouble getData();
+    long getSizeOfColumn();
+    void release();
+  };
 };
+
+#endif