]> rtime.felk.cvut.cz Git - frescor/fosa.git/blob - include/fosa_opaque_types.h
move all the time related issues to FOSA absolute and relative data types.
[frescor/fosa.git] / include / fosa_opaque_types.h
1 //----------------------------------------------------------------------
2 //  Copyright (C) 2006 - 2007 by the FRESCOR consortium:
3 //
4 //    Universidad de Cantabria,              SPAIN
5 //    University of York,                    UK
6 //    Scuola Superiore Sant'Anna,            ITALY
7 //    Kaiserslautern University,             GERMANY
8 //    Univ. Politecnica  Valencia,           SPAIN
9 //    Czech Technical University in Prague,  CZECH REPUBLIC
10 //    ENEA                                   SWEDEN
11 //    Thales Communication S.A.              FRANCE
12 //    Visual Tools S.A.                      SPAIN
13 //    Rapita Systems Ltd                     UK
14 //    Evidence                               ITALY
15 //
16 //    See http://www.frescor.org
17 //
18 //        The FRESCOR project (FP6/2005/IST/5-034026) is funded
19 //        in part by the European Union Sixth Framework Programme
20 //        The European Union is not liable of any use that may be
21 //        made of this code.
22 //
23 //
24 //  based on previous work (FSF) done in the FIRST project
25 //
26 //   Copyright (C) 2005  Mälardalen University, SWEDEN
27 //                       Scuola Superiore S.Anna, ITALY
28 //                       Universidad de Cantabria, SPAIN
29 //                       University of York, UK
30 //
31 // This file is part of FOSA (Frsh Operating System Abstraction)
32 //
33 // FOSA is free software; you can redistribute it and/or modify it
34 // under terms of the GNU General Public License as published by the
35 // Free Software Foundation; either version 2, or (at your option) any
36 // later version.  FOSA is distributed in the hope that it will be
37 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
38 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
39 // General Public License for more details. You should have received a
40 // copy of the GNU General Public License along with FOSA; see file
41 // COPYING. If not, write to the Free Software Foundation, 675 Mass Ave,
42 // Cambridge, MA 02139, USA.
43 //
44 // As a special exception, including FOSA header files in a file,
45 // instantiating FOSA generics or templates, or linking other files
46 // with FOSA objects to produce an executable application, does not
47 // by itself cause the resulting executable application to be covered
48 // by the GNU General Public License. This exception does not
49 // however invalidate any other reasons why the executable file might be
50 // covered by the GNU Public License.
51 // -----------------------------------------------------------------------
52 //fosa_opaque_types.h
53 //==============================================
54 //  ********  ******    ********  **********
55 //  **///// /**    **  **//////  /**     /**
56 //  **      /**    ** /**        /**     /**
57 //  ******* /**    ** /********* /**********
58 //  **////  /**    ** ////////** /**//////**
59 //  **      /**    **        /** /**     /**
60 //  **      /**    **  ********  /**     /**
61 //  //       /******/  ////////   //      //
62 //
63 // FOSA(Frescor Operating System Adaptation layer)
64 //================================================
65
66 // Implementation dependent definitions
67
68 #ifndef _FOSA_OPAQUE_TYPES_H_
69 #define _FOSA_OPAQUE_TYPES_H_
70
71 #include <stdbool.h>
72
73 #include "fosa_cpp_macros.h"
74 #include "fosa_opaque_types_time.h"
75
76 ///////////////////////  MARTE_OS /////////////////////////////
77
78 #ifdef MARTE_OS
79
80 #include <pthread.h>
81 #include <signal.h>
82 #include <time.h>
83 #include <sched.h>
84 #include <errno.h>
85
86 FOSA_CPP_BEGIN_DECLS
87
88
89 /* Thread and signals */
90 /**********************/
91 typedef pthread_t FOSA_THREAD_ID_T_OPAQUE;
92 typedef pthread_attr_t FOSA_THREAD_ATTR_T_OPAQUE;
93
94 typedef int FOSA_SIGNAL_T_OPAQUE;
95 /* Signal info is defined as a union in thread_and_signals */
96
97 #define FOSA_SIGNAL_MIN       SIGRTMIN
98 #define FOSA_SIGNAL_MAX       SIGRTMIN+0
99
100 #define FOSA_NULL_SIGNAL 0
101
102 /* Clocks and timers */
103 /**********************/
104 typedef clockid_t FOSA_CLOCK_ID_T_OPAQUE;
105 typedef timer_t FOSA_TIMER_ID_T_OPAQUE;
106
107 #define FOSA_SYSTEM_CLOCK_OPAQUE  CLOCK_MONOTONIC
108
109 /* Mutex and conditional variables */
110 /***********************************/
111 typedef pthread_mutex_t FOSA_MUTEX_T_OPAQUE;
112 typedef pthread_cond_t FOSA_COND_T_OPAQUE;
113
114
115 /* Application defined Scheduling */
116 /**********************************/
117 #define FOSA_ADS_ACTIONS_T_OPAQUE  struct \
118 { \
119     posix_appsched_actions_t actions; \
120     struct timespec *timeout_ptr; \
121     struct timespec timeout; \
122     bool rejected; \
123     bool suspended; \
124     bool activated; \
125
126
127
128 /* Local jump */
129 /**************/
130 #include "marte_non_local_jmp.h"
131
132 #define FOSA_LONG_JUMP_CONTEXT_T_OPAQUE  struct { \
133   marte_nonlocaljmp_context_t marte_context;      \
134   fosa_thread_id_t tid;                            \
135 }
136
137
138 /* FOSA errors */
139 /***************/
140 /** Not enough memory available **/
141 #define FOSA_ENOMEM   ENOMEM
142
143 /** Invalid parameter **/
144 #define FOSA_EINVAL   EINVAL
145
146 /** Still pending information **/
147 #define FOSA_EAGAIN   EAGAIN
148
149 /** FOSA ADS errors **/
150 #ifdef MARTE_OS
151 #define EREJECT   201 /* (for linux_lib_arch) Appsched has rejected object */
152 #endif
153
154 #define FOSA_EREJECT   EREJECT
155 #define FOSA_EMASKED   -2
156 #define FOSA_EPOLICY   -3
157
158 #define FOSA_ETIMEDOUT ETIMEDOUT
159
160 #endif
161
162 ///////////////////////  End of MARTE_OS  /////////////////////////////
163
164
165 /////////////////////// RT_LINUX ///////////////////////////
166
167 #ifdef RT_LINUX
168
169 /* Very similar to MARTE_OS but I leave separate for clarity */
170
171 #include <pthread.h>
172 #include <signal.h>
173 #include <time.h>
174 #include <sched.h>
175 #include <errno.h>
176 #include <rtl_timer.h>
177
178
179 /* Threads and signals */
180 /***********************/
181 #define    FOSA_THREAD_ID_T_OPAQUE pthread_t
182
183 typedef pthread_attr_t FOSA_THREAD_ATTR_T_OPAQUE;
184 typedef int FOSA_SIGNAL_T_OPAQUE;
185 /* Signal info is defined as a union in fosa_types.h */
186
187 // The minimum and maximum signal numbers that may be used by the FRSH
188 // implementation
189 #define FOSA_SIGNAL_MIN       SIGRTMIN
190 #define FOSA_SIGNAL_MAX       SIGRTMIN+0
191 #define FOSA_NULL_SIGNAL 0
192
193 /* Clocks and timers */
194 /*********************/
195 #define    FOSA_CLOCK_ID_T_OPAQUE    clockid_t
196 #define    FOSA_TIMER_ID_T_OPAQUE    timer_t
197 #define    FOSA_SYSTEM_CLOCK_OPAQUE  CLOCK_MONOTONIC
198
199 /* Mutex and cond vars */
200 /***********************/
201 typedef pthread_mutex_t FOSA_MUTEX_T_OPAQUE;
202 #define    FOSA_COND_T_OPAQUE        pthread_cond_t
203
204
205 /* FOSA Errors */
206 /***************/
207 /** Not enough memory available **/
208 #define FOSA_ENOMEM   ENOMEM
209 /** Invalid parameter **/
210 #define FOSA_EINVAL   EINVAL
211 /** Still pending information **/
212 #define FOSA_EAGAIN   EAGAIN
213
214 /** FOSA ADS errors **/
215 #define FOSA_EREJECT   EREJECT
216 #define FOSA_EMASKED   -2
217 #define FOSA_EPOLICY   -3
218
219 #define FOSA_ETIMEDOUT ETIMEDOUT
220
221 #endif
222
223 ///////////////////////  End of RT_LINUX  /////////////////////////////
224
225
226 ////////////////////////// OSE    //////////////////////////////////////
227
228 #ifdef OSE
229
230
231
232 /* Put OSE dependent includes and defines here */
233
234 #endif /* OSE */
235
236
237
238 /////////////////////// AQuoSA ///////////////////////////
239
240 #ifdef AQuoSA
241
242 #include <unistd.h>
243 #include <linux/unistd.h>
244
245 #define _XOPEN_SOURCE 500
246 #define __USE_UNIX98
247 #include <pthread.h>
248
249 #include <signal.h>
250 #include <errno.h>
251 #include <time.h>
252
253 /* Time */
254 /********/
255 // typedef struct timespec fosa_rel_time_t;
256 // typedef struct timespec fosa_abs_time_t;
257
258
259 /* Threads and signals */
260 /***********************/
261 typedef struct {
262         pthread_t pthread_id;
263         pid_t linux_pid;
264         pid_t linux_tid;
265 } FOSA_THREAD_ID_T_OPAQUE;
266
267
268 typedef pthread_attr_t FOSA_THREAD_ATTR_T_OPAQUE;
269 typedef int FOSA_SIGNAL_T_OPAQUE;
270
271
272 // The minimum and maximum signal numbers that may be used by the FRSH
273 // implementation
274 #define FOSA_SIGNAL_MIN       SIGRTMIN
275 #define FOSA_SIGNAL_MAX       SIGRTMIN+0
276
277 #define FOSA_NULL_SIGNAL 0
278
279
280 /* Clocks and signals */
281 /**********************/
282 #define    FOSA_CLOCK_ID_T_OPAQUE    clockid_t
283 #define    FOSA_SYSTEM_CLOCK_OPAQUE  CLOCK_MONOTONIC
284 #define    FOSA_TIMER_ID_T_OPAQUE    timer_t
285
286
287
288 /* Mutex and cond vars */
289 /***********************/
290 typedef pthread_mutex_t FOSA_MUTEX_T_OPAQUE;
291 #define    FOSA_COND_T_OPAQUE        pthread_cond_t
292
293
294 /* Application Defined Scheduling */
295 /**********************************/
296 /* hack to get AQuoSA sources compile without having none
297  * of the application level scheduler header files and symbols */
298 #define posix_appsched_actions_t int
299 #define FOSA_LONG_JUMP_CONTEXT_T_OPAQUE int
300
301 #define FOSA_ADS_ACTIONS_T_OPAQUE posix_appsched_actions_t
302
303
304 /* FOSA Errors */
305
306 /** Not enough memory available **/
307 #define FOSA_ENOMEM   ENOMEM
308
309 /** Invalid parameter **/
310 #define FOSA_EINVAL   EINVAL
311
312 /** Still pending information **/
313 #define FOSA_EAGAIN   EAGAIN
314
315 #define FOSA_EREJECT   EREJECT
316 #define FOSA_EMASKED   -2
317 #define FOSA_EPOLICY   -3
318
319 #define FOSA_ETIMEDOUT ETIMEDOUT
320
321
322 #endif 
323 ////////////////// END of AQuoSA //////////////////////
324
325
326
327 /////////////////////////////////// PARTIKLE ///////////////////////////////////////////
328 #if defined(PARTIKLE)
329
330 #include <pthread.h>
331 #include <signal.h>
332 #include <time.h>
333 #include <sched.h>
334 #include <stdlib.h>
335 #include <setjmp.h>
336
337 typedef struct {
338     posix_appsched_actions_t actions;
339     struct timespec * timeout_ptr;
340     struct timespec timeout;
341     bool rejected;
342     bool suspended;
343     bool activated;
344 } FOSA_ADS_ACTIONS_T_OPAQUE;
345
346 typedef struct {
347   jmp_buf jmp_context;
348   bool jmp_hasexecuted;
349   sigset_t jmp_sigmask;
350 } FOSA_LONG_JUMP_CONTEXT_T_OPAQUE;
351
352 typedef pthread_t                   FOSA_THREAD_ID_T_OPAQUE;
353 typedef pthread_attr_t              FOSA_THREAD_ATTR_T_OPAQUE;
354 typedef int                         FOSA_SIGNAL_T_OPAQUE;
355 typedef clockid_t                   FOSA_CLOCK_ID_T_OPAQUE;
356 typedef timer_t                     FOSA_TIMER_ID_T_OPAQUE;
357 typedef pthread_cond_t              FOSA_COND_T_OPAQUE;
358 typedef pthread_mutex_t             FOSA_MUTEX_T_OPAQUE;
359
360
361
362 enum _fosa_clocks_e {
363   FOSA_SYSTEM_CLOCK_OPAQUE = CLOCK_MONOTONIC
364 };
365
366 enum _fosa_signal_limits_e {
367   LONGJMP_NSIG = 3,
368   LONGJMP_FIRSTSIG = SIGRTMAX - LONGJMP_NSIG + 1,
369   FOSA_SIGNAL_MAX = LONGJMP_FIRSTSIG - 1,
370   FOSA_SIGNAL_MIN = FOSA_SIGNAL_MAX,
371 };
372
373 enum _fosa_errors_e {
374   FOSA_EINVAL = EINVAL,
375   FOSA_EAGAIN = EAGAIN,
376   FOSA_EREJECT = EREJECT,
377   FOSA_EMASKED = EMASKED,
378   FOSA_EPOLICY = EPOLICY, 
379   FOSA_ETIMEDOUT = ETIMEDOUT,
380   FOSA_ENOMEM = ENOMEM,
381 };
382
383 #endif
384 /////////////////////////////////// PARTIKLE  END //////////////////////////////////////
385
386
387
388 ////////////////////////// VIRTUAL TIME    //////////////////////////////////////
389 #ifdef VIRTUAL_TIME
390
391 /* Time */
392 /********/
393 // typedef struct timespec fosa_rel_time_t;
394 // typedef struct timespec fosa_abs_time_t;
395
396 #include <fosa_vt.h>
397
398 #define FOSA_THREAD_ID_T_OPAQUE   vt_posix_process_t
399 #define FOSA_THREAD_ATTR_T_OPAQUE fosa_thread_attr_t
400 #define FOSA_SIGNAL_T_OPAQUE      int
401
402 #define FOSA_MUTEX_T_OPAQUE fosa_mutex_t
403
404 // The minimum and maximum signal numbers that may be used by the FRSH
405 // implementation
406 #define FOSA_SIGNAL_MIN       8
407 #define FOSA_SIGNAL_MAX       31
408
409 // the min. and max. priority a fosa thread can have
410 #define FOSA_PRIORITY_MAX VT_PRIORITY_MIN - 1
411 #define FOSA_PRIORITY_MIN VT_PRIORITY_MAX
412
413 #define FOSA_NULL_SIGNAL        0
414
415 /* FOSA Errors and return values*/
416
417 /** Invalid parameter **/
418 #define FOSA_EINVAL   -1
419
420 /** Not enough memory available **/
421 #define FOSA_ENOMEM   -2
422
423 /** Still pending information **/
424 #define FOSA_EAGAIN   -3
425
426 /** Mutex not available **/
427 #define FOSA_EBUSY         -4
428
429 /** Cond var timedout **/
430 #define FOSA_ETIMEDOUT  -5
431
432 /** FOSA ADS errors **/
433 #define FOSA_EREJECT   -6
434 #define FOSA_EMASKED   -7
435
436
437 /** Sched policy not correct */
438 #define FOSA_EPOLICY    -8
439
440 /** the value given by thread_id is not valid for ADS */
441 #define FOSA_ESRCH              -9
442
443 /** retval if no action performed **/
444 #define FOSA_NO_ACTION  0
445
446 #endif /* VIRTUAL_TIME */
447 //////////////////////////End of VIRTUAL TIME ///////////////////////////////////
448
449
450 ////////////////////////// DUMMY_OS    //////////////////////////////////////
451
452 #if defined(DUMMY_OS)
453
454 /* With this define we make sure that we are truly POSIX and OSE */
455 /* independent at the FRSH code.                                 */
456 /*****************************************************************/
457
458 /* Time */
459 /********/
460 // typedef struct timespec fosa_rel_time_t;
461 // typedef struct timespec fosa_abs_time_t;
462
463 /* Thread and signals */
464 /**********************/
465 typedef int FOSA_THREAD_ID_T_OPAQUE;
466 typedef int FOSA_THREAD_ATTR_T_OPAQUE;
467
468 typedef int FOSA_SIGNAL_T_OPAQUE;
469 typedef int FOSA_SIGNAL_INFO_T_OPAQUE;
470
471 /* Signal info is defined as a union in thread_and_signals */
472
473 #define FOSA_SIGNAL_MIN     42
474 #define FOSA_SIGNAL_MAX     44
475
476 #define FOSA_NULL_SIGNAL 0
477
478 /* Clocks and timers */
479 /**********************/
480 typedef int FOSA_CLOCK_ID_T_OPAQUE;
481 typedef int FOSA_TIMER_ID_T_OPAQUE;
482
483 #define FOSA_SYSTEM_CLOCK_OPAQUE  25
484
485 /* Mutex and conditional variables */
486 /***********************************/
487 typedef int FOSA_MUTEX_T_OPAQUE;
488 typedef int FOSA_COND_T_OPAQUE;
489
490 /* Application defined Scheduling */
491 /**********************************/
492 #define FOSA_ADS_ACTIONS_T_OPAQUE  int
493
494
495 #endif /* DUMMY */
496 //////////////////////////End of DUMMY_OS ////////////////////////////////////
497
498 FOSA_CPP_END_DECLS
499
500
501 #endif // _FOSA_OPAQUE_TYPES_H_