]> SALOME platform Git repositories - modules/kernel.git/blob - idl/SALOME_Comm.idl
Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / idl / SALOME_Comm.idl
1 //  Copyright (C) 2007-2008  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 #ifndef _SALOME_COMM_IDL_
23 #define _SALOME_COMM_IDL_
24
25 #include "SALOME_Exception.idl"
26
27 module SALOME {
28   
29   enum TypeOfDataTransmitted { _DOUBLE_,_INT_ };
30
31   enum TypeOfCommunication { CORBA_ , MPI_ , SOCKET_ };
32
33   typedef sequence<double> vectorOfDouble;
34   
35   typedef sequence<long> vectorOfLong;
36   
37   interface MultiCommClass {
38     void setProtocol(in TypeOfCommunication typ);
39   };
40
41   interface ServantLifeCycle {
42     void release();
43   };
44
45   interface Sender {
46     TypeOfDataTransmitted getTypeOfDataTransmitted();
47     void release();
48   };
49
50   interface SenderDouble : Sender {
51     SenderDouble buildOtherWithProtocol(in TypeOfCommunication type);
52   };
53
54   interface SenderInt : Sender {
55     SenderInt buildOtherWithProtocol(in TypeOfCommunication type);
56   };
57
58   //No compulsory copy between double and CORBA::Double
59   interface CorbaDoubleNCSender : SenderDouble {
60     unsigned long getSize();
61     vectorOfDouble sendPart(in unsigned long n1,in unsigned long n2);
62     vectorOfDouble send();
63   };
64
65   //Compulsory copy between double and CORBA::Double
66   interface CorbaDoubleCSender : SenderDouble {
67     unsigned long getSize();
68     //unsigned long getSize2();
69     vectorOfDouble sendPart(in unsigned long n1,in unsigned long n2);
70   };
71
72   //No compulsory copy between int and CORBA::Long
73   interface CorbaLongNCSender : SenderInt {
74     unsigned long getSize();
75     vectorOfLong sendPart(in unsigned long n1,in unsigned long n2);
76     vectorOfLong send();
77   };
78
79   //Compulsory copy between int and CORBA::Long
80   interface CorbaLongCSender : SenderInt {
81     unsigned long getSize();
82     vectorOfLong sendPart(in unsigned long n1,in unsigned long n2);
83   };
84
85   interface MPISender : Sender {
86     typedef struct Parameter {
87       unsigned long myproc;
88       unsigned long tag1;
89       unsigned long tag2;
90       string service;
91     } param;
92     param getParam();
93     void send();
94     void close(in param p);
95   };
96
97   interface MPISenderDouble : SenderDouble,MPISender {
98   };
99
100   interface MPISenderInt : SenderInt,MPISender {
101   };
102
103   interface SocketSender : Sender {
104     typedef struct Parameter {
105       unsigned long lstart;
106       unsigned long lend;
107       unsigned long myport;
108      string internet_address;
109     } param;
110     param getParam();
111     void initCom() raises(SALOME_Exception);
112     void acceptCom() raises(SALOME_Exception);
113     void closeCom();
114     void endOfCom() raises(SALOME_Exception);
115     void send();
116   };
117
118   interface SocketSenderDouble : SenderDouble,SocketSender {
119   };
120
121   interface SocketSenderInt : SenderInt,SocketSender {
122   };
123
124   interface Matrix {
125     SenderDouble getData();
126     long getSizeOfColumn();
127     void release();
128   };
129 };
130
131 #endif