]> rtime.felk.cvut.cz Git - frescor/fosa.git/blob - src_marte/tests/test_non_local_jump/test_fosa_long_jump.c
Fixing license header
[frescor/fosa.git] / src_marte / tests / test_non_local_jump / test_fosa_long_jump.c
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
56 #include <stdio.h>
57 #include <string.h>
58 #include <stdlib.h>
59 #include <unistd.h>
60 #include <time.h> // For clock_nanosleep
61
62 #include "fosa.h"
63
64 #include <misc/error_checks.h>
65
66
67
68 /*************************/
69 /* D E F I N I T I O N S */
70 /*************************/
71 #define PERIODIC_THREAD_PRIORITY (fosa_get_priority_min() + 3)
72 #define MAIN_THREAD_PRIORITY (fosa_get_priority_min() + 5)
73
74
75 /*************************/
76 /*  P R O T O T Y P E S  */
77 /*************************/
78 static void *periodic_code(void *thread_arg);
79
80 /**********************************/
81 /* S T A T I C  V A R I A B L E S */
82 /**********************************/
83 static fosa_long_jump_context_t context;
84 static void work_under_a_interruptible_budget();
85
86
87 int main()
88 {
89     fosa_thread_attr_t periodic_attr;
90     fosa_signal_t signal_set[1];
91     fosa_thread_id_t periodic_tid;
92
93     memset(&context, 0, sizeof(context) );
94
95     memset(&periodic_attr, 0, sizeof(periodic_attr) );
96     memset(&signal_set, 0, sizeof(signal_set) );
97     memset(&periodic_tid, 0, sizeof(periodic_tid) );
98
99
100     /* We set the signal mask */
101     signal_set[0] = FOSA_LONG_JUMP_SIGNAL;
102
103     CHK(  fosa_set_accepted_signals(signal_set, 1) );
104
105     /* We create a new thread with a given priority */
106     CHK(  fosa_thread_attr_init(&periodic_attr) );
107     CHK(  fosa_thread_attr_set_prio(&periodic_attr, PERIODIC_THREAD_PRIORITY)  );
108     CHK(  fosa_thread_create(&periodic_tid, &periodic_attr, periodic_code, NULL) );
109
110     printf("Main goes to sleep...\n");
111
112     sleep(2000);
113
114     return 0;
115 }
116
117 // ------------------------------------------------------------------------
118
119
120 static void *periodic_code(void *thread_arg)
121 {
122     fosa_rel_time_t period = fosa_msec_to_rel_time(2500);
123
124     fosa_thread_id_t jump_handler_thread;
125
126     fosa_signal_t jump_signal;
127     fosa_signal_info_t jump_signal_info;
128
129     fosa_clock_id_t clock_id;
130     fosa_timer_id_t jump_timer;
131
132     memset(&jump_signal, 0, sizeof(jump_signal) );
133     memset(&jump_signal_info, 0, sizeof(jump_signal_info) );
134     memset(&jump_handler_thread, 0, sizeof(jump_handler_thread) );
135     memset(&clock_id, 0, sizeof(clock_id) );
136     memset(&jump_timer, 0, sizeof(jump_timer) );
137
138
139     /* We install a long jump handler               */
140     /* - This creates the thread that will wait for */
141     /*   FOSA_JUMP_SIGNAL                           */
142     /************************************************/
143     CHK(  fosa_long_jump_install_handler(&jump_signal, &jump_handler_thread) );
144
145     /* We create a budget timer using the thread's CPU clock */
146     /*                                                       */
147     /* When the timer expires:                               */
148     /* -  Triggers the signal corresponding to signal jump   */
149     /* -  Provides a pointer to the context in siginfo.      */
150     /*                                                       */
151     /* This signal is delivered to the handler thread.       */
152     /*********************************************************/
153     CHK(  fosa_thread_get_cputime_clock( fosa_thread_self(), &clock_id) );
154     jump_signal_info.sival_ptr = &context;
155     CHK(  fosa_timer_create_with_receiver(clock_id, jump_signal, jump_signal_info,
156                                           &jump_timer, jump_handler_thread)  );
157
158
159     /* Periodic loop */
160     /*****************/
161     while (1)
162     {
163         int jumped = -1;
164         fosa_rel_time_t budget = fosa_msec_to_rel_time(1400);
165         fosa_abs_time_t activation_time;
166         struct timespec activation_time_tspec;
167         fosa_abs_time_t after_activation_time;
168         fosa_rel_time_t elapsed_time;
169
170         jumped = 0;
171
172         /* For statistical purposes we read the activation time */
173         CHK(  fosa_clock_get_time(FOSA_CLOCK_REALTIME, &activation_time) );
174
175
176
177         /* Start of the interruptible block */
178         /************************************/
179
180         /* We arm the jump_timer */
181         CHK(  fosa_rel_timer_arm(jump_timer, &budget) );
182
183         /* This is the point where the jump returns */
184         CHK(  fosa_long_jump_save_context(&context) );
185
186         /* Query if we come from a jump */
187         CHK(  fosa_long_jump_was_performed(&context, &jumped) );
188         if (!jumped)
189         {
190             /* HERE COMES THE WORK THAT CAN BE INTERRUPTED */
191             work_under_a_interruptible_budget();
192             CHK(  fosa_timer_disarm(jump_timer, NULL) );
193             printf("NOT JUMPPED\n");
194         }
195         else
196         {
197             printf("JUMPPPPPEEED\n");
198         }
199
200
201         /* End of interruptible work */
202         /*****************************/
203
204         printf("After interruptible block\n");
205
206         /* Now we measure the time duration of the block */
207         /*************************************************/
208         CHK(  fosa_clock_get_time(FOSA_CLOCK_REALTIME, &after_activation_time)  );
209         elapsed_time = fosa_abs_time_extract_interval(activation_time, after_activation_time);
210         printf("Execution time: %ld msec\n", fosa_rel_time_to_msec(after_activation_time) );
211
212         /* And we program the next loop */
213         activation_time = fosa_abs_time_incr(activation_time, period);
214         activation_time_tspec = fosa_abs_time_to_timespec(activation_time);
215         clock_nanosleep(FOSA_CLOCK_REALTIME, TIMER_ABSTIME, &activation_time_tspec,
216                         NULL);
217     }
218
219     return NULL;
220 }
221
222
223 // ------------------------------------------------------------------------------
224
225 static void work_under_a_interruptible_budget()
226 {
227     static int i = 0;
228     fosa_rel_time_t exec_time = fosa_msec_to_rel_time(1000); // 1 sec
229
230     i++;
231     printf("Start regular work\n");
232
233     fosa_eat(&exec_time);
234
235     /* Once in every 5 executions we work over the budget */
236     if (i % 5 == 0)
237     {
238         fosa_eat(&exec_time);
239         fosa_eat(&exec_time);
240         fosa_eat(&exec_time);
241         fosa_eat(&exec_time);
242         fosa_eat(&exec_time);
243         fosa_eat(&exec_time);
244     }
245
246     printf("End regular work\n");
247
248 }