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