]> rtime.felk.cvut.cz Git - ert_linux.git/blob - ert_linux/ert_linux_main.tlc
Local definition of TRUE/FALSE is required for R2014a Simulink version.
[ert_linux.git] / ert_linux / ert_linux_main.tlc
1 %%
2 %%
3 %% description:
4 %%  This TLC script generates ert_main.c
5 %%  case.
6 %%
7 %% authors: Michal Sojka <sojkam1@fel.cvut.cz>
8 %%          Lukas Hamacek <hamacl1@fel.cvut.cz>
9 %%
10 %% Department of Control Engineering
11 %% Faculty of Electrical Engineering
12 %% Czech Technical University in Prague
13 %%
14
15 %% GENERATEDECLARATIONS
16 %%  This function generates main function declarations.
17 %%
18
19 %assign ::tid01Eq = LibGetTID01EQ()
20
21 %function generateDeclarations() Output
22
23   /* Multirate - Multitasking case main file */
24   #define _BSD_SOURCE                    /* For usleep() */
25   #define _POSIX_C_SOURCE 200112L        /* For clock_gettime() & clock_nanosleep() */
26   #include <stdio.h>                     /* This ert_main.c example uses printf/fflush */
27   #include <pthread.h>                   /* Thread library header file */
28   #include <sched.h>                     /* OS scheduler header file */
29   #include <semaphore.h>                 /* Semaphores library header file */
30   #include <time.h>
31   #include <stdlib.h>
32   #include <stdbool.h>
33   #include <unistd.h>
34   #include <sys/mman.h>                  /* For mlockall() */
35   #include "%<modelName>.h"              /* Model's header file */
36   #include "rtwtypes.h"                  /* MathWorks types */
37   %if extMode == 1
38     #include "ext_work.h"                  /* External mode header file */
39   %endif
40
41   #ifndef TRUE
42   #define TRUE true
43   #define FALSE false
44   #endif
45
46   /*==================*
47    * Required defines *
48    *==================*/
49
50   #ifndef MODEL
51   # error Must specify a model name.  Define MODEL=name.
52   #else
53   /* create generic macros that work with any model */
54   # define EXPAND_CONCAT(name1,name2) name1 ## name2
55   # define CONCAT(name1,name2) EXPAND_CONCAT(name1,name2)
56   # define MODEL_INITIALIZE CONCAT(MODEL,_initialize)
57   # define MODEL_STEP       CONCAT(MODEL,_step)
58   # define MODEL_TERMINATE  CONCAT(MODEL,_terminate)
59   # define RT_MDL           CONCAT(MODEL,_M)
60   #endif
61
62   /* Error checking */
63   #define STRINGIZE(num) #num
64   #define POS(line) __FILE__ ":" STRINGIZE(line)
65   #define CHECK0(expr) do { int __err = (expr); if (__err) { fprintf(stderr, "Error: %s returned '%s' at " POS(__LINE__) "\n", #expr, strerror(__err)); exit(1); } } while (0);
66   #define CHECKE(expr) do { if ((expr) == -1) { perror(#expr " at " POS(__LINE__)); exit(1); } } while (0);
67
68   /**
69    * Maximal priority used by base rate thread.
70    */
71   #define MAX_PRIO (sched_get_priority_min(SCHED_FIFO) + %<numSampleTimes>)
72
73   /**
74    * Thread handle of the base rate thread.
75    * Fundamental sample time = %<fundamentalStepSize>s
76    */
77   pthread_t base_rate_thread;
78
79   /**
80    * Thread handles of and semaphores for sub rate threads. The array
81    * is indexed by TID, i.e. the first one or two elements are unused.
82   %foreach i = numSampleTimes
83       %if i == 0 || i == 1 && tid01Eq
84       %continue
85     %endif
86     %assign s = sampleTime%<i>
87     %assign o = offset%<i>
88    * TID%<i>: sample time = %<s>s, offset = %<o>s
89   %endforeach
90    */
91   struct sub_rate {
92   pthread_t thread;
93   sem_t     sem;
94   } sub_rate[%<numSampleTimes>];
95
96   /**
97    * Flag if the simulation has been terminated.
98    */
99   int simulationFinished = 0;
100
101   %if extMode == 1
102     /* Indication that the base rate thread has started */
103     sem_t ext_mode_ready;
104   %endif
105 %endfunction
106
107 %function printfunc() Output
108   /% printf("%s\n", __func__); %/
109 %endfunction
110
111 %function generateRtOneStep() Output
112   %foreach j = numSampleTimes - 1
113     %assign i = j + 1
114     %if i == 1 && tid01Eq
115       %continue
116     %endif
117     void *sub_rate%<i>(void *arg)
118     {
119       while(!simulationFinished) {
120         sem_wait(&sub_rate[%<i>].sem);    /* sem_val = 1 */
121         %<printfunc()>
122         %<modelName>_step%<i>();
123         sem_wait(&sub_rate[%<i>].sem);    /* sem_val = 0 */
124       }
125     }
126   %endforeach
127 %endfunction
128
129
130 %% GENERATEMAIN
131 %%  This function generates code of the main function function.
132 %%
133 %function generateMain() Output
134   /**
135    * This is the thread function of the base rate loop.
136    * Fundamental sample time = %<fundamentalStepSize>s
137    */
138   void * base_rate()
139   {
140     %assign  sec = FEVAL("uint32", fundamentalStepSize)
141     %assign nsec = FEVAL("uint32", (fundamentalStepSize - FEVAL("floor", fundamentalStepSize))*1000000000)
142     struct timespec now, next;
143     struct timespec period = { %<sec>, %<nsec> }; /* %<fundamentalStepSize> seconds */
144     boolean_T eventFlags[%<numSampleTimes>];             /* Model has %<numSampleTimes> rates */
145     int_T taskCounter[%<numSampleTimes>] = %<FcnInitializeTaskCounter()>;
146     int_T OverrunFlags[%<numSampleTimes>];
147     int step_sem_value;
148     int_T i;
149
150     %if extMode == 1
151       %<SLibGenERTExtModeInit()>
152       CHECKE(sem_post(&ext_mode_ready));
153     %endif
154
155     clock_gettime(CLOCK_MONOTONIC, &next);
156
157     /* Main loop, running until all the threads are terminated */
158     while(rtmGetErrorStatus(%<modelName>_M) == NULL && !rtmGetStopRequested(%<modelName>_M)) {
159       %<printfunc()>
160       /* Check subrate overrun, set rates that need to run this time step*/
161       %<LibCallSetEventForThisBaseStep("eventFlags")>\
162
163       /* Trigger sub-rate threads */
164       %foreach i = numSampleTimes
165         %if i == 0 || i == 1 && tid01Eq
166           %continue
167         %endif
168         %assign s = sampleTime%<i>
169         %assign o = offset%<i>
170         /* Sampling rate %<i>, sample time = %<s>, offset = %<o> */
171         if (eventFlags[%<i>]) {
172           eventFlags[%<i>] = FALSE;
173           sem_getvalue(&sub_rate[%<i>].sem, &step_sem_value);
174           if (step_sem_value) {
175             rtmSetErrorStatus(%<modelName>_M, "Overrun");
176             printf("Sub rate %<i> overrun, sample time=%<s>s, offset=%<o>s is too fast\n");
177             break;
178           }
179           sem_post(&sub_rate[%<i>].sem);
180           sem_post(&sub_rate[%<i>].sem);
181         }
182       %endforeach
183
184       /* Execute base rate step */
185       %if solverMode == "SingleTasking"
186         %<modelName>_step();
187       %else
188         %<modelName>_step0();
189       %endif
190
191       %if extMode == 1
192         rtExtModeCheckEndTrigger();
193       %endif
194
195       do {
196         next.tv_sec += period.tv_sec;
197         next.tv_nsec += period.tv_nsec;
198         if (next.tv_nsec >= 1000000000) {
199           next.tv_sec++;
200           next.tv_nsec -= 1000000000;
201         }
202         clock_gettime(CLOCK_MONOTONIC, &now);
203         if (now.tv_sec > next.tv_sec ||
204             (now.tv_sec == next.tv_sec && now.tv_nsec > next.tv_nsec)) {
205           uint32_T usec = (now.tv_sec - next.tv_sec) * 1000000 + (now.tv_nsec - next.tv_nsec)/1000;
206           fprintf(stderr, "Base rate (%<fundamentalStepSize>s) overrun by %d us\n", usec);
207           next = now;
208           continue;
209         }
210       } while (0);
211       clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &next, NULL);
212
213     }
214
215     simulationFinished = 1;
216     /* Final step */
217     for (i = %<1 + tid01Eq>; i < %<numSampleTimes>; i++) {
218       sem_post(&sub_rate[i].sem);
219       sem_post(&sub_rate[i].sem);
220     }
221   }
222
223   /**
224    * This is the main function of the model.
225    * Multirate - Multitasking case main file
226    */
227   int_T main(int_T argc, const char_T *argv[])
228   {
229     const char_T *errStatus;
230     int_T i;
231     pthread_attr_t attr;
232     struct sched_param sched_param;
233
234     %if extMode == 1
235       /* External mode */
236       /* rtERTExtModeParseArgs(argc, argv); */
237       rtExtModeParseArgs(argc, argv, NULL);
238       CHECKE(sem_init(&ext_mode_ready, 0, 0));
239     %else
240       (void)(argc);
241       (void *)(argv);
242     %endif
243
244     CHECKE(mlockall(MCL_FUTURE));
245
246     /* Initialize model */
247     %<modelName>_initialize();
248     simulationFinished = 0;
249
250     /* Prepare task attributes */
251     CHECK0(pthread_attr_init(&attr));
252     CHECK0(pthread_attr_setinheritsched(&attr, PTHREAD_EXPLICIT_SCHED));
253     CHECK0(pthread_attr_setschedpolicy(&attr, SCHED_FIFO));
254
255     %foreach i = numSampleTimes
256       %if i == 0 || i == 1 && tid01Eq
257         %continue
258       %endif
259       %assign s = sampleTime%<i>
260       %assign o = offset%<i>
261
262       /* Initializing the step semaphore of the loop %<i> */
263       CHECKE(sem_init(&sub_rate[%<i>].sem, 0, 0));
264
265       /* Starting loop %<i> thread for sample time = %<s>s, offset = %<o>s. */
266       sched_param.sched_priority = MAX_PRIO - %<i>;
267       CHECK0(pthread_attr_setschedparam(&attr, &sched_param));
268       CHECK0(pthread_create(&sub_rate[%<i>].thread, &attr, sub_rate%<i>, (void*)%<i>));
269
270     %endforeach
271
272     /* Starting the base rate thread */
273     sched_param.sched_priority = MAX_PRIO;
274     CHECK0(pthread_attr_setschedparam(&attr, &sched_param));
275     CHECK0(pthread_create(&base_rate_thread, &attr, base_rate, NULL));
276     CHECK0(pthread_attr_destroy(&attr));
277
278     %if extMode == 1
279       /* External mode */
280       CHECKE(sem_wait(&ext_mode_ready));
281       while(rtmGetErrorStatus(%<modelName>_M) == NULL && !rtmGetStopRequested(%<modelName>_M)) {
282         rtExtModeOneStep(rtmGetRTWExtModeInfo(RT_MDL), NUMST, (boolean_T *)&rtmGetStopRequested(RT_MDL));
283         usleep(%<FEVAL("uint32", fundamentalStepSize * 1000000)>);
284       }
285     %endif
286
287     /* Wait for threads to finish */
288     pthread_join(base_rate_thread, NULL);
289     %foreach i = numSampleTimes
290       %if i == 0 || i == 1 && tid01Eq
291         %continue
292       %endif
293       pthread_join(sub_rate[%<i>].thread, NULL);
294     %endforeach
295
296     %if extMode == 1
297       rtExtModeShutdown(%<numSampleTimes>);
298     %endif
299
300     /* Terminate model */
301     %<modelName>_terminate();
302
303     errStatus = rtmGetErrorStatus(%<modelName>_M);
304     if(errStatus != NULL && strcmp(errStatus, "Simulation finished")) {
305       %%printf("%s\n", rtmGetErrorStatus(%<modelName>_M));
306       if(!strcmp(errStatus, "Overrun")) {
307         printf("ISR overrun - sampling rate too fast\n");
308       }
309       return(1);
310     }
311     return 0;
312   }
313
314 /* Local Variables: */
315 /* compile-command: "make -f %<modelName>.mk" */
316 /* End: */
317
318 %endfunction