Salome HOME
Synchronize adm files
[modules/kernel.git] / src / DSC / DSC_User / Datastream / Calcium / CalciumC.c
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 //  File   : Calcium.c
24 //  Author : Eric Fayolle (EDF)
25 //  Module : KERNEL
26 //
27 #include "calcium.h"
28 #include "calciumf.h"
29 #include "CalciumFortranInt.h"
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <stddef.h>
34
35 // Interface C de SalomeCalcium
36
37 typedef int InfoType;
38 typedef char bool;
39
40 //TODO: ajouter les prototypes pour eviter les pbs de passage par valeur
41 InfoType ecp_fint_ (void * component, char* nomVar, float t);
42 InfoType ecp_fini_ (void * component, char* nomVar, int i);
43 InfoType ecp_efft_ (void * component, char* nomVar, float t);
44 InfoType ecp_effi_ (void * component, char* nomVar, int i);
45
46 /************************************/
47 /* INTERFACES DE LECTURE EN 0 COPIE */
48 /************************************/
49
50 /* Definition des méthodes calcium étendues en 0 copie */
51 /* Le buffer est alloué par le port pas par l'utilisateur */
52 /* Remarquer le type ** de data */
53 /* L'utilisateur devra appeler ecp_..._free pour désallouer le buffer interne */
54 /* Attention en cas de lectures multiples : le buffer retourné est le même */
55 /* Attention si les niveaux sont actifs le buffer peut être supprimé automatiquement par calcium. */
56
57 #define CALCIUM_EXT_LECT_INTERFACE_C_(_name,_timeType,_type,_typeName,_qual) \
58   InfoType ecp_##_name (void * component, int mode,                     \
59                         _timeType * ti, _timeType * tf, int * i,        \
60                         char * nomvar, int bufferLength,                \
61                         int * nRead, _type _qual ** data ) {            \
62     size_t _nRead;                                                      \
63     long   _i=*i;                                                       \
64     fflush(stdout);                                                     \
65     fflush(stderr);                                                     \
66                                                                         \
67     InfoType info =  ecp_lecture_##_typeName (component, mode, ti, tf, &_i, \
68                                               nomvar, bufferLength, &_nRead, \
69                                               data );                   \
70     /*    std::cout << "-------- CalciumInterface(C Part), Valeur de data : " << std::endl; */ \
71     /*    std::cout << "Ptr :" << *data << std::endl;                           */ \
72     /*    for (int j=0; j<_nRead;++j)                                           */ \
73     /*      printf("--- Valeur de data[%d] : %d \n",j,(*data)[j]);              */ \
74     /*    std::cout << "Ptr :" << *data << std::endl;                           */ \
75     /*                                                                  */ \
76     /*    std::cerr << "-------- CalciumInterface(C Part) MARK 2 ------------------" << std::endl; */ \
77     if(mode == CP_SEQUENTIEL)   \
78       *i = _i;                                                          \
79     *nRead=_nRead;                                                      \
80     /*    std::cerr << "-------- CalciumInterface(C Part) MARK 3 ------------------" << std::endl; */ \
81                                                                         \
82     return info;                                                        \
83   };                                                                    \
84   void ecp_##_name##_free ( _type _qual * data) {                       \
85     ecp_lecture_##_typeName##_free(data);                               \
86   };
87
88
89 /* L'interface de cette routine diffère de celle obtenue par la macro :
90    CALCIUM_LECT_INTERFACE_C_.
91    Le paramètre supplémentaire strSize indique la taille fixe et identique
92    des chaînes stockées dans data (les ports CALCIUM n'en n'ont pas besoin)
93 */
94 InfoType ecp_lch(void * component, int mode, float * ti,        float * tf, int * i,
95                 char  * nomvar, int bufferLength, int * nRead,
96                 char *** data, int strSize) {
97
98   size_t _nRead;
99   long   _i=*i;
100   fflush(stdout);fflush(stderr);
101
102   InfoType info =  ecp_lecture_str (component, mode, ti, tf, &_i,
103                                     nomvar, bufferLength, &_nRead,
104                                     data);/*, strSize );
105                                              strSize est  inutile pour les ports CALCIUM
106                                              qui gèrent des tailles quelconques de chaines. */
107   if(mode == CP_SEQUENTIEL)
108     *i = _i;
109   *nRead=_nRead;
110   fflush(stdout);fflush(stderr);
111   return info;
112 };
113
114 void ecp_lch_free (char* * data) {                              \
115   ecp_lecture_str_free(data);                                   \
116 };
117
118
119 #define STAR *
120 /*REVERIFIER MAINTENANT 0 COPY avec int2integer*/
121 CALCIUM_EXT_LECT_INTERFACE_C_(len,float,int,int2integer,);
122 CALCIUM_EXT_LECT_INTERFACE_C_(lre,float,float,float,);
123 /*Permet d'envoyer/recevoir des réels sur un port Double  */
124 CALCIUM_EXT_LECT_INTERFACE_C_(lrd,float ,float  ,float2double,);
125 CALCIUM_EXT_LECT_INTERFACE_C_(ldb,double,double,double,);
126
127 CALCIUM_EXT_LECT_INTERFACE_C_(llo,float,int,bool,);
128 CALCIUM_EXT_LECT_INTERFACE_C_(lcp,float,float,cplx,);
129 /* CALCIUM_EXT_LECT_INTERFACE_C_(lch,float,char,STAR[]);  */
130
131
132
133 /**************************************/
134 /* INTERFACES DE LECTURE AVEC RECOPIE */
135 /**************************************/
136
137 #define CALCIUM_LECT_INTERFACE_C_(_name,_timeType,_calInt,_type,_typeName,_qual,lastarg) \
138   _calInt cp_##_name (void * component, _calInt mode,                   \
139                        _timeType * ti, _timeType * tf, _calInt * i,     \
140                        char * nomvar, _calInt bufferLength,             \
141                        _calInt * nRead, _type _qual * data              \
142                        lastarg ) {                                      \
143                                                                         \
144     int    _mode         = (int) mode;                                  \
145     size_t _bufferLength = bufferLength;                                \
146     size_t _nRead;                                                      \
147     long   _i            =*i;                                           \
148     fflush(stdout);                                                     \
149     fflush(stderr);                                                     \
150                                                                         \
151     if ( (data == NULL) || (_bufferLength < 1) ) return CPNTNULL;       \
152                                                                         \
153     _calInt info =  ecp_lecture_##_typeName (component, _mode, ti, tf, &_i, \
154                                               nomvar, _bufferLength, &_nRead, \
155                                               &data );                  \
156     if(mode == CP_SEQUENTIEL)                                           \
157       *i = _i;                                                          \
158     *nRead=_nRead;                                                      \
159     fflush(stdout);                                                     \
160     fflush(stderr);                                                     \
161                                                                         \
162     return info;                                                        \
163   };                                                                    \
164   void cp_##_name##_free ( _type _qual * data) {                        \
165     ecp_lecture_##_typeName##_free(data);                               \
166   };
167
168
169 /* L'interface de cette routine diffère de celle obtenue par la macro :
170    CALCIUM_LECT_INTERFACE_C_.
171    Le paramètre supplémentaire strSize indique la taille fixe et identique
172    des chaînes stockées dans data (les ports CALCIUM n'en n'ont pas besoin)
173 */
174
175 /* InfoType cp_lch(void * component, int mode, float * ti,      float * tf, int * i, */
176 /*              char  * nomvar, int bufferLength, int * nRead, */
177 /*              char ** data, int strSize) { */
178
179 /*   size_t _nRead;                                                      */
180 /*   long   _i=*i;                                                       */
181 /*   fflush(stdout);fflush(stderr);                                                      */
182 /*   fprintf(stderr,"Beginning of cp_lch: %s %d %f\n",nomvar,*i,*ti);    */
183 /*   if ( (data == NULL) || (bufferLength < 1) ) return CPNTNULL;        */
184 /*   InfoType info =  ecp_lecture_str (component, mode, ti, tf, &_i,  */
185 /*                                  nomvar, bufferLength, &_nRead,  */
186 /*                                  &data);*/
187 /*, strSize );  */
188 /*                                           strSize est  inutile pour les ports CALCIUM */
189 /*                                           qui gèrent des tailles quelconques de chaines.  */
190 /*   if(mode == CP_SEQUENTIEL)                                           */
191 /*     *i = _i;                                                          */
192 /*   *nRead=_nRead;                                                      */
193 /*   fprintf(stderr,"End of cp_lch: %s %d \n",nomvar,*i);                        */
194 /*   fflush(stdout);fflush(stderr);                                                      */
195 /*   return info;                                                        */
196 /* };                                                                    */
197
198
199 /* Definition des méthodes calcium standard  */
200 /* CALCIUM_LECT_INTERFACE_C_( <suffixe du nom de l'interface à générer>, <type du paramètre temporel>, <type d'entier à utiliser pour les paramètres de type entier>,
201                               <type de données>, <nom de l'interface C2CPP à utiliser>, <qualificateur de type optionnel des données>,<paramètres supplémentaire ignoré>)*/
202
203 CALCIUM_LECT_INTERFACE_C_(len,float ,int,int    ,int2integer,,);
204 /*llg ne fonctionnera pas toujours correctement (port calcium_integer) si sizeof(long) == 64 bits && cal_int==int (32 bits)
205   sinon problème de conversion de 64bits vers 32bits */
206 CALCIUM_LECT_INTERFACE_C_(llg,float ,int,long   ,long2integer,,);
207
208 CALCIUM_LECT_INTERFACE_C_(lln,float ,int,long   ,long,,);
209
210 CALCIUM_LECT_INTERFACE_C_(lre,float ,int,float  ,float,,);
211 /*Permet d'envoyer/recevoir des réels sur un port Double  */
212 CALCIUM_LECT_INTERFACE_C_(lrd,float ,int,float  ,float2double,,);
213 CALCIUM_LECT_INTERFACE_C_(ldb,double,int,double ,double,,);
214
215 CALCIUM_LECT_INTERFACE_C_(llo,float ,int,int    ,bool,,);
216 CALCIUM_LECT_INTERFACE_C_(lcp,float ,int,float  ,cplx,,);
217 #define STAR *
218 #define LCH_LAST_PARAM ,int strsize
219 CALCIUM_LECT_INTERFACE_C_(lch,float ,int,char   ,str,STAR, LCH_LAST_PARAM );
220
221
222 /* Definition des méthodes calcium destinées à l'interfaçage fortran
223    avec une taille des INTEGER fortran paramétrés à la configuration du KERNEL  */
224
225 CALCIUM_LECT_INTERFACE_C_(len_fort_,float ,cal_int,cal_int ,integer,,);
226 CALCIUM_LECT_INTERFACE_C_(lin_fort_,float ,cal_int,int     ,int2integer,,);
227 /*llg_fort_ ne fonctionnera pas toujours correctement (port calcium_integer) si sizeof(long) == 64 bits && cal_int==int (32 bits)
228   sinon problème de conversion de 64bits vers 32bits */
229 CALCIUM_LECT_INTERFACE_C_(llg_fort_,float ,cal_int,long    ,long2integer,,);
230
231 CALCIUM_LECT_INTERFACE_C_(lre_fort_,float ,cal_int,float   ,float,,);
232 CALCIUM_LECT_INTERFACE_C_(lrd_fort_,float ,cal_int,float   ,float2double,,);
233 CALCIUM_LECT_INTERFACE_C_(ldb_fort_,double,cal_int,double  ,double,,);
234 CALCIUM_LECT_INTERFACE_C_(llo_fort_,float ,cal_int,int     ,bool,,);   /*int pour bool ou cal_int */
235 CALCIUM_LECT_INTERFACE_C_(lcp_fort_,float ,cal_int,float   ,cplx,,);
236 CALCIUM_LECT_INTERFACE_C_(lch_fort_,float ,cal_int,char    ,str,STAR, LCH_LAST_PARAM );
237
238 CALCIUM_LECT_INTERFACE_C_(lln_fort_,float ,cal_int,long    ,long,,);
239
240 /**********************************************/
241 /*  INTERFACES DE DÉBUT ET DE FIN DE COUPLAGE */
242 /**********************************************/
243
244 InfoType cp_cd (void * component, char * instanceName) {
245   InfoType info =  ecp_cd_(component,instanceName);
246   return info;
247 }
248
249 InfoType cp_fin (void * component, int code) {
250   /* TODO : gérer avec les callbacks des ports DSC */
251
252   InfoType info =  ecp_fin_(component,code);
253
254   return info;
255 }
256
257
258 /***************************/
259 /*  INTERFACES D'ECRITURE  */
260 /***************************/
261
262 #define CALCIUM_ECR_INTERFACE_C_(_name,_timeType,_calInt,_type,_typeName,_qual,lastarg) \
263   _calInt cp_##_name (void * component, _calInt mode,                   \
264                        _timeType t, _calInt i,                          \
265                        char * nomvar, _calInt nbelem,                   \
266                        _type _qual * data                               \
267                        lastarg ) {                                      \
268                                                                         \
269     int     _mode         =  mode;                                      \
270     long    _i            =  i;                                         \
271     size_t  _nbelem       =  nbelem;                                    \
272     _timeType _t          =  t;                                         \
273     fflush(stdout);                                                     \
274     fflush(stderr);                                                     \
275     if ( (data == NULL) || (nbelem < 1) ) return CPNTNULL;              \
276                                                                         \
277     _calInt info =  ecp_ecriture_##_typeName (component, _mode, &_t, _i, \
278                                                nomvar, _nbelem,         \
279                                                data );                  \
280     fflush(stdout);                                                     \
281     fflush(stderr);                                                     \
282                                                                         \
283     return info;                                                        \
284   };                                                                    \
285
286
287
288
289 /* InfoType cp_ech(void * component, int mode, float t, int i, */
290 /*              char  * nomvar,  int nbelem, */
291 /*              char ** data, int strSize) { */
292
293 /*long   _i=i;*/
294 /*   fflush(stdout);fflush(stderr);                                                      */
295 /*   fprintf(stderr,"Beginning of cp_ech: %s %d %f\n",nomvar,i,t);       */
296 /*   if ( (data == NULL) || (nbelem < 1) ) return CPNTNULL;              */
297
298 /*   InfoType info =  ecp_ecriture_str (component, mode, &t, i,  */
299 /*                                   nomvar, nbelem,             */
300 /*                                   data); */
301 /*, strSize );*/
302 /*   fprintf(stderr,"End of cp_ech: %s %d \n",nomvar,i);                         */
303 /*   fflush(stdout);                                                     */
304 /*   fflush(stderr);                                                     */
305
306 /*   return info;                                                        */
307 /* };                                                                    */
308
309 /*  Definition des méthodes calcium standard  */
310 /*  CALCIUM_ECR_INTERFACE_C_(_name,_timeType,_calInt,type,_typeName,_qual) */
311 CALCIUM_ECR_INTERFACE_C_(een,float ,int,int   ,int2integer,,);
312 /*elg ne fonctionnera pas toujours correctement (port calcium_integer) si sizeof(long) == 64 bits && cal_int==int (32 bits)
313   sinon problème de conversion de 64bits vers 32bits */
314 CALCIUM_ECR_INTERFACE_C_(elg,float ,int,long  ,long2integer,,);
315 CALCIUM_ECR_INTERFACE_C_(ere,float ,int,float ,float,,);
316 /*Permet d'envoyer/recevoir des réels sur un port Double  */
317 CALCIUM_ECR_INTERFACE_C_(erd,float ,int,float ,float2double,,);
318 CALCIUM_ECR_INTERFACE_C_(edb,double,int,double,double,,);
319
320 CALCIUM_ECR_INTERFACE_C_(elo,float ,int,int   ,bool,,);
321 CALCIUM_ECR_INTERFACE_C_(ecp,float ,int,float ,cplx,,);
322 CALCIUM_ECR_INTERFACE_C_(ech,float ,int,char  ,str,STAR,LCH_LAST_PARAM );
323
324 CALCIUM_ECR_INTERFACE_C_(eln,float ,int,long  ,long,,);
325
326 /* Definition des méthodes calcium destinées à l'interfaçage fortran
327    avec une taille des INTEGER fortran paramétrés à la configuration du KERNEL  */
328
329 CALCIUM_ECR_INTERFACE_C_(een_fort_,float ,cal_int,cal_int,integer,,);
330 /*elg_fort_ ne fonctionnera pas toujours correctement (port calcium_integer) si sizeof(long) == 64 bits && cal_int==int (32 bits)
331   sinon problème de conversion de 64bits vers 32bits */
332 CALCIUM_ECR_INTERFACE_C_(elg_fort_,float ,cal_int,long   ,long2integer,,);
333 CALCIUM_ECR_INTERFACE_C_(ein_fort_,float ,cal_int,int    ,int2integer,,);
334 CALCIUM_ECR_INTERFACE_C_(ere_fort_,float ,cal_int,float ,float,,);
335 CALCIUM_ECR_INTERFACE_C_(erd_fort_,float ,cal_int,float ,float2double,,);
336 CALCIUM_ECR_INTERFACE_C_(edb_fort_,double,cal_int,double,double,,);
337 CALCIUM_ECR_INTERFACE_C_(elo_fort_,float ,cal_int,int   ,bool,,);
338 CALCIUM_ECR_INTERFACE_C_(ecp_fort_,float ,cal_int,float ,cplx,,);
339 CALCIUM_ECR_INTERFACE_C_(ech_fort_,float ,cal_int,char  ,str,STAR,LCH_LAST_PARAM );
340
341 CALCIUM_ECR_INTERFACE_C_(eln_fort_,float ,cal_int,long   ,long,,);
342
343 /***************************/
344 /*  Interface for cleaning */
345 /***************************/
346
347 InfoType cp_fini (void * component, char * nomvar, int i)
348 {
349   InfoType info =  ecp_fini_(component,nomvar,i);
350   return info;
351 }
352
353 InfoType cp_fint (void * component, char * nomvar, float t)
354 {
355   InfoType info =  ecp_fint_(component,nomvar,t);
356   return info;
357 }
358
359 InfoType cp_effi (void * component, char * nomvar, int i)
360 {
361   InfoType info =  ecp_effi_(component,nomvar,i);
362   return info;
363 }
364
365 InfoType cp_efft (void * component, char * nomvar, float t)
366 {
367   InfoType info =  ecp_efft_(component,nomvar,t);
368   return info;
369 }