-
Notifications
You must be signed in to change notification settings - Fork 0
/
program.c
416 lines (387 loc) · 8.95 KB
/
program.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//ho scrtto solo la logica da seguire
#include <stdio.h>
#include "declarations.h"
#include "bison.tab.h"
#include "flex.lex.h"
#include <stdlib.h>
#include <stdarg.h>
#include <signal.h>
#include <string.h>
#include <sys/time.h>
int trovato=0;
elenco_cond* condi=NULL;
assegnazioni* as=NULL;
elenco_stati* elenco=NULL;
int waitinterrupt=0;
action* az=NULL;
event* eventi=NULL;
//event* interrupt=NULL;
int interruzioni=0;
int cic=0;
elenco_stati* status=NULL;
stato* stato0=NULL;
String errore="evento non valido per lo stato corrente\n";
FILE * fp;
char * line = NULL;
ssize_t ra;
int end_of_file=0;
struct itimerval timer;
struct itimerval timer1;
/*dubbi e perplessita
* qualche volta dovrò alloracare spazio alle strutture contenute in altre strutture dati!!! ATTENZIONE
* gli IF sono implementati solo al primo livello
*/
//interruzione del "clock", tempo fittizio ideato da noi
//handler timer
void timer_handler(int signum){
if (interruzioni==1 || cic==1){
return;
}
interruzioni=1;
while(eventi!=NULL){
printf("%s\n",eventi->value);
if(strcmp(eventi->value,"0")==0){
stato0=status->value;
trovato=1;
break;
}
eventi=eventi->next;
status=status->next;
}
waitinterrupt=0;
}
ssize_t readline(char **lineptr, FILE *stream){
size_t len = 0; // Size of the buffer, ignored.
ssize_t chars = getline(lineptr, &len, stream);
if((*lineptr)[chars-1] == '\n') {
(*lineptr)[chars-2] = '\0';
--chars;
--chars;
}
return chars;
}
void evento_handler(int signum){
if (interruzioni==1 || end_of_file){
return;
}
interruzioni=1;
if((ra = readline(&line, fp)) == -1) {
interruzioni=0;
end_of_file=1;
return;
}
while(eventi!=NULL){
if(strcmp(eventi->value, line)==0){
stato0=status->value;
trovato=1;
break;
}
eventi=eventi->next;
status=status->next;
}
if(eventi==NULL){
printf("errore: evento non presente per tale stato\n");
interruzioni=0;
eventi=stato0->eventi;
status=stato0->el_stati;
waitinterrupt=1;
}
}
void* tipo(assegnazioni* a){
switch (a->type){
case 10: return (char*) a->value;
case 11: return (int*) a->value;
case 12: return (float*) a->value;
case 13: return (double*) a->value;
case 14: return a->value;
case 15:{
assegnazioni* at=as;
while(at!=NULL){
if(strcmp(at->nome, a->value)==0)
{
return tipo(at);
}
at=at->next;
}
return (String) a->value;
}
}
}
//funzione che esegue le azioni (da fare)
int do_(operazioni* v){
switch (v->operatore){
case 40:{
if(v->primo!=NULL){
printf("%s\n",(v->primo)->nome);
}
else{ printf("%s",errore);}
break;
}
case 20:{
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=(int)tipo(v->secondo)+(int)tipo(v->terzo);
break;
}
x=x->next;
}
break;
}
case 21:{
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=(int)tipo(v->secondo)-(int)tipo(v->terzo);
break;
}
x=x->next;
}
break;
}
case 22:{
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=(int)tipo(v->secondo)*(int)tipo(v->terzo);
break;
}
x=x->next;
}
break;
}
case 23:{
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=(int)tipo(v->secondo)/(int)tipo(v->terzo);
break;
}
x=x->next;
}
break;
}
case 24: {
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=x->value+1;
break;
}
x=x->next;
}
break;
}
case 25:{
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=x->value-1;
break;
}
x=x->next;
}
break;
}
case 26:{
assegnazioni* x=as;
while (x!=NULL){
if(strcmp(v->primo->nome, x->nome)==0){
x->value=v->value;
break;
}
x=x->next;
}
break;
}
}
return 1;
}
int confronto(cond* c){
switch (c->paragone){
case 1: return tipo(c->primo)> tipo(c->secondo);
case 2: return tipo(c->primo)< tipo(c->secondo);
case 3: return tipo(c->primo)!= tipo(c->secondo);
case 4: return tipo(c->primo)== tipo(c->secondo);
case 5: return tipo(c->primo)>= tipo(c->secondo);
case 6: return tipo(c->primo)<= tipo(c->secondo);
case 7: return tipo(c->primo)&& tipo(c->secondo);
case 8: return tipo(c->primo)|| tipo(c->secondo);
}
}
//fatta
stato* analisi(stato* s){
setitimer (ITIMER_VIRTUAL, &timer1, NULL);
setitimer (ITIMER_REAL, &timer, NULL);
trovato=0;
interruzioni=0;
printf("%s\n",s->nome);
az=s->azioni;
while(az!=NULL){
do_(az->op);
az=az->next;
}
//analisi dei cicli
cicli* cicl=s->cic;
if(cicl!=NULL){
cic=1;
if(cicl->tipo==1){
add_assegnazioni(cicl->as, as);
}
while(confronto(cicl->con)){
//printf("%d\n",confronto(cicl->con));
az=cicl->az;
while(az!=NULL){
do_(az->op);
az=az->next;
}
condi=cicl->condi;
while(condi!=NULL){
if(confronto(condi->value)){
az=(condi->value)->az;
while(az!=NULL){
do_(az->op);
az=az->next;
}
eventi=((condi->value)->s)->causa;
status=((condi->value)->s)->effetto;
while(interruzioni==0){
}
break;
}
condi=condi->next;
}
az=(cicl->el)->oper;
while(az!=NULL){
do_(az->op);
az=az->next;
}
if((cicl->el)->cambio!=NULL && !(trovato)){
eventi=((cicl->el)->cambio)->causa;
status=((cicl->el)->cambio)->effetto;
while(interruzioni==0){
}
}
}
}
cic=0;
condi=s->el_cond;
while(condi!=NULL){
if(confronto(condi->value)){
az=(condi->value)->az;
while(az!=NULL){
do_(az->op);
az=az->next;
}
if((condi->value)->s!=NULL){
eventi=((condi->value)->s)->causa;
status=((condi->value)->s)->effetto;
while(interruzioni==0){
}
trovato=1;
break;
}
}
condi=condi->next;
}
if(s->el_stati!=NULL && !(trovato)){
eventi=s->eventi;
status=s->el_stati;
while(interruzioni==0){
}
/* se è stata ricevuta un'interruzione da un evento stato0 muta e diventa il nuovo evento,
* se l'interruzione è data dallo scadere del tempo allora si possono verificare due situazioni:
* - o era previsto un cambio di stato allo scadere del tempo e allora stato0 cambierà
* - o stato0 non muta e si ricomincerà con analisi dello stato0
* */
//cerco in elenco lo stato con il nome uguale a quello che sta in stato0
//perchè elenco ha una struttura dati completa mentre stato0 possiede solo il nome dello stato
}
while(waitinterrupt==1){}
elenco_stati* el=elenco;
while(el!=NULL){
if (strcmp((el->value)->nome, stato0->nome)==0){
stato0=el->value;
break;
}
el=el->next;
}
return stato0;
}
int run(assegnazioni* ass,event* evv,event* azz,elenco_stati* el){
as=ass;
elenco=el;
while(el!=NULL){
if(strcmp((el->value)->nome, "idle")==0){
stato0=el->value;
break;
}
el=el->next;
}
while(1){
stato0=analisi(stato0);
}
return 1;
}
//analisi errori bison
void yyerror(char *s, ...){
va_list ap;
va_start(ap, s);
fprintf(stderr, "%d: error: ", yylineno);
vfprintf(stderr, s, ap);
fprintf(stderr, "\n");
}
//programma principale e configurazione handler
int main(int argc, char **argv){
if(!(yyin = fopen("test.txt", "r"))) {
printf("errore\n");
return (1);
}
////////////////////////////////////////////////////////////////////
//inizializzazione lettura file
fp = fopen("events.txt", "r");
if (fp == NULL){
printf("errore nell'apertura file");
}
////////////////////////////////////////////////////////////////////
// 1° interrupt
struct sigaction sa;
/* Install timer_handler as the signal handler for SIGVTALRM. */
memset (&sa, 0, sizeof (sa));
sa.sa_handler = &timer_handler;
sigaction (SIGALRM, &sa, NULL);
/* Configure the timer to expire after 500 msec... */
timer.it_value.tv_sec = 0;
timer.it_value.tv_usec = 70000;
/* ... and every 500 msec after that. */
timer.it_interval.tv_sec = 0;
timer.it_interval.tv_usec = 700000;
/* Start a virtual timer. It counts down whenever this process is
executing. */
setitimer (ITIMER_REAL, &timer, NULL);
///////////////////////////////////////////////////////////////////
//2° interrupt
struct sigaction sa1;
/* Install timer_handler as the signal handler for SIGVTALRM. */
memset (&sa1, 0, sizeof (sa1));
sa1.sa_handler = &evento_handler;
sigaction (SIGVTALRM, &sa1, NULL);
/* Configure the timer to expire after 500 msec... */
timer1.it_value.tv_sec = 0;
timer1.it_value.tv_usec = 50000;
/* ... and every 500 msec after that. */
timer1.it_interval.tv_sec = 0;
timer1.it_interval.tv_usec = 500000;
/* Start a virtual timer. It counts down whenever this process is
executing. */
setitimer (ITIMER_VIRTUAL, &timer1, NULL);
////////////////////////////////////////////////////////////////////
int flag=0;
flag = yyparse();
fclose(yyin);
fclose(fp);
if (line){
free(line);
}
return flag;
}