-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththreads.c
483 lines (399 loc) · 14.9 KB
/
threads.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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
// - include guard -----------------------------------------------------------
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <fcntl.h>
#include <sys/types.h>
#include <time.h>
#include <string.h>
#include <termios.h>
#include <unistd.h> // for STDIN_FILENO
#include <pthread.h>
#include "prg_io_nonblock.h"
#define MY_DEVICE_OUT "/tmp/pipe.out"
#define MY_DEVICE_IN "/tmp/pipe.in"
#define NUM_CHUNKS 100
#define SIZE_C_W 64
#define SIZE_C_H 48
#define W 640
#define H 480
#define N_RE 10
#define N_IM 10
#include "messages.h"
#include "xwin_sdl.h"
typedef struct { // shared date structure
int alarm_period;
int cid;
int prev_cid;
bool quit;
int fd; //forwarding
int rd;// recieving
bool is_serial_open; // if comunication established
bool abort;
pthread_mutex_t *mtx;
pthread_cond_t *cond;
pthread_cond_t *cond2;
bool is_cond2_signaled;
bool compute_used;
bool is_compute_set;
bool refresh_screen;
bool compute_done;
uint8_t n;
} data_t;
void call_termios(int reset); // raw mode terminal
void* input_thread(void*);
void* output_thread(void*);
void* alarm_thread(void*);
bool send_message(data_t *data, message *msg);
message *buffer_parse(data_t *data, int message_type);
// - main function -----------------------------------------------------------
int main(int argc, char *argv[])
{
data_t data = { .alarm_period = 0,.quit = false, .fd = EOF, .is_serial_open = false, .abort = false, .is_cond2_signaled = false, .cid = 0, .compute_used = false, .is_compute_set = false, .refresh_screen = false, .compute_done = false };
enum { INPUT, OUTPUT, ALARM, NUM_THREADS };
const char *threads_names[] = { "Input", "Output", "Alarm", };
void* (*thr_functions[])(void*) = { input_thread, output_thread, alarm_thread};
pthread_t threads[NUM_THREADS];
pthread_mutex_t mtx;
pthread_cond_t cond;
pthread_mutex_init(&mtx, NULL); // initialize mutex with default attributes
pthread_cond_init(&cond, NULL); // initialize condition variable with default attributes
data.mtx = &mtx; // make the mutex accessible from the shared data structure
data.cond = &cond; // make the cond accessible from the shared data structure
data.cond2 = &cond;
call_termios(0);
for (int i = 0; i < NUM_THREADS; ++i) { // create threads
int r = pthread_create(&threads[i], NULL, thr_functions[i], &data);
printf("\033[1;35mTHREAD\033[0m: Create thread '%s' %s\r\n", threads_names[i], ( r == 0 ? "OK" : "FAIL") );
}
int *ex;
for (int i = 0; i < NUM_THREADS; ++i) { // join threads so main doesnt end before threads
printf("\033[1;35mTHREAD\033[0m: Call join to the thread %s\r\n", threads_names[i]);
int r = pthread_join(threads[i], (void*)&ex);
printf("\033[1;35mTHREAD\033[0m: Joining the thread %s has been %s - exit value %i\r\n", threads_names[i], (r == 0 ? "OK" : "FAIL"), *ex);
}
call_termios(1); // restore terminal settings
return EXIT_SUCCESS;
}
// - function -----------------------------------------------------------------
void call_termios(int reset)
{
static struct termios tio, tioOld;
tcgetattr(STDIN_FILENO, &tio);
if (reset) {
tcsetattr(STDIN_FILENO, TCSANOW, &tioOld);
} else {
tioOld = tio; //backup
cfmakeraw(&tio);
tcsetattr(STDIN_FILENO, TCSANOW, &tio);
}
}
// - function -----------------------------------------------------------------
void* input_thread(void* d)
{
data_t *data = (data_t*)d;
static int r = 0;
int c;
bool qq = false;
while((!qq)){ // until pipe isnt open - dont do anything
pthread_mutex_lock(data->mtx);
qq = data->is_serial_open;
pthread_mutex_unlock(data->mtx);
}
message msg2;
while ((c = getchar()) != 'q') {
pthread_mutex_lock(data->mtx);
int period = data->alarm_period;
switch (c) {
case 'g':
{
pthread_mutex_unlock(data->mtx);
msg2 = (message){.type = MSG_GET_VERSION,};
send_message(data, &msg2);
fsync(data->fd); // sync the data
pthread_mutex_lock(data->mtx);
printf("\033[1;34mINFO\033[0m: Get version set\r\n");
}
break;
case 's':
{
pthread_mutex_unlock(data->mtx);
msg2 = (message){.type = MSG_SET_COMPUTE, .data.set_compute = { .c_re = -0.4, .c_im = 0.6, .d_re = 0.005, .d_im = (double)-11/2400, .n = 60}};
data->n = 60;
send_message(data, &msg2);
fsync(data->fd); // sync the data
data->is_compute_set = true;
pthread_mutex_lock(data->mtx);
printf("\033[1;34mINFO\033[0m: Set compute message sent\r\n");
}
break;
case '1':
{
pthread_mutex_unlock(data->mtx);
if(!data->is_compute_set){
printf("\033[1;33mWARNING\033[0m: Compute message is not set\r\n");
printf("\033[1;32mHINT:\033[0m: If you want to set compute message, press s\r\n");
pthread_mutex_lock(data->mtx);
break;
}
if(data->compute_used){
printf("\033[1;33mWARNING\033[0m: Compute thread is already running\r\n");
printf("\033[1;32mHINT:\033[0m: If you want to abort computation, press a\r\n");
pthread_mutex_lock(data->mtx);
break;
}
if(data->compute_done){
printf("\033[1;33mWARNING\033[0m: Compute thread is already done\r\n");
printf("\033[1;32mHINT:\033[0m: If you want to reset cid, press r\r\n");
pthread_mutex_lock(data->mtx);
break;
}
data->abort = false;
double re = -1.6; //start of the x-coords (real]
double im =1.1; //start of the y-coords (imaginary)
data->prev_cid = data->cid;
msg2 = (message){.type = MSG_COMPUTE, .data.compute = { .cid = data->cid, .re = re, .im = im ,.n_re = N_RE, .n_im = N_IM}};
send_message(data, &msg2);
fsync(data->fd); // sync the data
data->compute_used = true;
pthread_mutex_lock(data->mtx);
}
break;
case 'l':
{
if(!data->compute_used)
data->refresh_screen = true;
else{
printf("\033[1;33mWARNING\033[0m: Computing is underway - cant refresh window\r\n");
printf("\033[1;32mHINT:\033[0m: If you want to abort computing, press a\r\n");
}
}
break;
case 'a':
{
pthread_mutex_unlock(data->mtx);
data->abort = true;
data->compute_used = false;
printf("\n");
//printf("\033[1;33mWARNING\033[0m: Abort computation message sent\r\n");
msg2 = (message){.type = MSG_ABORT,};
send_message(data, &msg2);
fsync(data->fd); // sync the data
pthread_mutex_lock(data->mtx);
}
break;
case 'r':
{
pthread_mutex_unlock(data->mtx);
data->cid = 0;
printf("\033[1;34mINFO\033[0m: Reset cid\r\n");
data->compute_done = false;
pthread_mutex_lock(data->mtx);
}
}
if (data->alarm_period != period) {
pthread_cond_signal(data->cond); // signal the output thread to refresh
}
data->alarm_period = period;
pthread_mutex_unlock(data->mtx);
}
pthread_mutex_unlock(data->mtx);
data->quit = true;
r = 1;
pthread_mutex_lock(data->mtx);
pthread_cond_broadcast(data->cond);
pthread_mutex_unlock(data->mtx);
fprintf(stderr, "\033[1;35mTHREAD\033[0m: Exit input thread %lu\r\n", (unsigned long)pthread_self());
return &r;
}
void* output_thread(void* d)
{
data_t *data = (data_t*)d;
static int r = 0;
bool q = false;
data->fd = io_open_write(MY_DEVICE_OUT);
if (data->fd == EOF) {
fprintf(stderr, "\033[1;31mERROR\033[0m: Unable to open the file %s\n", MY_DEVICE_OUT);
exit(1);
}
data->rd = io_open_read(MY_DEVICE_IN);
if (data->rd == EOF){
fprintf(stderr, "\033[1;31mERROR\033[0m: Unable to open the file %s\n", MY_DEVICE_IN);
exit(1); // not coding style but whatever
}
message msg = {.type = MSG_STARTUP, .data.startup = { .message = "Henlo"}};
send_message(data, &msg);
//open SDL window
xwin_init(W, H);
unsigned char *img = malloc(W * H * 3); // 3 bytes per pixel for RGB
if (img == NULL) {
fprintf(stderr, "Failed to allocate memory for image\n");
exit(1);
}
for (int y = 0; y < H; ++y) { // fill the image with some color
for (int x = 0; x < W; ++x) {
int idx = (y * W + x) * 3;
img[idx] = 100; // red component
img[idx + 1] = 0; // green component
img[idx + 2] = 10; // blue component
}
}
xwin_redraw(W, H, img);
if (io_putc(data->fd, 'i') != 1) { // sends init byte
fprintf(stderr, "\033[1;31mERROR\033[0m: Unable to send the init byte\n");
exit(1);
}
fsync(data->fd); // sync the data
pthread_mutex_lock(data->mtx);
data->is_serial_open = true;
while (!q) { // main loop for data output
pthread_cond_wait(data->cond, data->mtx); // wait for next event
uint8_t c = '\0';
io_getc_timeout(data->rd, 0,&c);
if(c == MSG_VERSION){
//printf("Version message recieved:");
message *msg = buffer_parse(data, MSG_VERSION);
printf("\033[1;32mVERSION\033[0m: %c. %c. %c\r\n", msg->data.version.major, msg->data.version.minor, msg->data.version.patch);
free(msg);
c = '\0';
}
if(c == MSG_ERROR){
printf("\033[1;31mERROR\033[0m: Module sent error\r\n");
}
if(data->refresh_screen){
printf("\033[1;34mINFO\033[0m: Refreshing screen\r\n");
data->refresh_screen = false;
for (int y = 0; y < H; ++y) { // fill the image with some color
for (int x = 0; x < W; ++x) {
int idx = (y * W + x) * 3;
img[idx] = 100; // red component
img[idx + 1] = 0; // green component
img[idx + 2] = 10; // blue component
}
}
xwin_redraw(W, H, img);
}
if(c == MSG_DONE){
//printf("Done message recieved:");
message *msg = buffer_parse(data, MSG_DONE);
printf("\033[1;34mINFO\033[0m: Done message recieved\r\n");
data->compute_used = false;
data->compute_done = true;
free(msg);
c = '\0';
}
if(c == MSG_COMPUTE_DATA){
//printf("Compute data recieved:");
message *msg = buffer_parse(data, MSG_COMPUTE_DATA);
uint8_t i_re = msg->data.compute_data.i_re;
uint8_t i_im = msg->data.compute_data.i_im;
int x_im = (msg->data.compute_data.cid % 10)*64; // starting pos for redraw - one chunk
int y_im = (msg->data.compute_data.cid / 10)*48;
data->cid = msg->data.compute_data.cid;
int x = x_im + i_re; // x coordinate of the pixel in the image
int y = y_im + i_im; // y coordinate of the pixel in the image
int idx = (y * W + x) * 3; // index of the pixel in the 1D array
double t = (double)msg->data.compute_data.iter / data->n; // t is in [0, 1]
if(t == 1){
uint8_t red = 0; // red component
uint8_t green = 0; // green component
uint8_t blue = 0; // blue component
img[idx] = red; // red component
img[idx + 1] = green; // green component
img[idx + 2] = blue; // blue component
}
else{
uint8_t red = (uint8_t)(9 * (1 - t) * t * t * t * 255); // red component
uint8_t green = (uint8_t)(15 * (1 - t) * (1 - t) * t * t * 255); // green component
uint8_t blue = (uint8_t)(8.5 * (1 - t) * (1 - t) * (1 - t) * t * 255); // blue component
img[idx] = red; // red component
img[idx + 1] = green; // green component
img[idx + 2] = blue; // blue component
}
if(data->cid != data->prev_cid){ // if the chunk is done (cid changed
xwin_redraw(W, H, img);
}
else if(data->cid == 99 && idx == 3*W*H){ // if the last chunk is done
xwin_redraw(W, H, img);
}
data->prev_cid = data->cid;
free(msg);
c = '\0';
}
q = data->quit;
fflush(stdout);
}
pthread_mutex_unlock(data->mtx);
if (io_putc(data->fd, 'q') != 1) { // sends exit byte
fprintf(stderr, "\033[1;31mERROR\033[0m: Unable to send the end byte\r\n");
exit(1);
}
fsync(data->fd); // sync the data
io_close(data->fd);
io_close(data->rd);
fprintf(stderr, "\033[1;35mTHREAD\033[0m: Exit output thread %lu\r\n", (unsigned long)pthread_self());
xwin_close();
free(img);
return &r;
}
// - function -----------------------------------------------------------------
void* alarm_thread(void* d)
{
data_t *data = (data_t*)d;
bool qq = false;
while((!qq)){ // until pipe isnt open - dont do anything
pthread_mutex_lock(data->mtx);
qq = data->is_serial_open;
pthread_mutex_unlock(data->mtx);
}
printf("\033[1;34mINFO\033[0m: pipe unlocked\r\n");
static int r = 0;
pthread_mutex_lock(data->mtx);
bool q = data->quit;
//useconds_t period = data->alarm_period * 1000; // alarm_period is in ms
pthread_mutex_unlock(data->mtx);
while (!q) {
//usleep(period);
pthread_mutex_lock(data->mtx);
q = data->quit;
pthread_cond_broadcast(data->cond); // broadcast condition for output thread - to prevent buffer overflow
pthread_mutex_unlock(data->mtx);
xwin_poll_events();
}
fprintf(stderr, "\033[1;35mTHREAD\033[0m: Exit alarm thread %lu\r\n", (unsigned long)pthread_self());
return &r;
}
bool send_message(data_t *data, message *msg){
uint8_t msg_buf[sizeof(message)];
int size;
//printf("sending\n");
fill_message_buf(msg, msg_buf,sizeof(message), &size);
//printf("filled");
pthread_mutex_lock(data->mtx);
int ret = write(data->fd, msg_buf, size);
pthread_mutex_unlock(data->mtx);
return size == ret;
}
message *buffer_parse(data_t *data, int message_type){
uint8_t c;
int len = 0;
uint8_t msg_buf[sizeof(message)];
int i = 0;
get_message_size(message_type, &len);
msg_buf[i++] = message_type; // add the first byte
while((i < len)){
io_getc_timeout(data->rd, 0, &c);
msg_buf[i++] = c;
}
message *msg = malloc(sizeof(message));
msg->type = message_type;
get_message_size(message_type, &len);
if(!parse_message_buf(msg_buf, len, msg)){
fprintf(stderr, "\033[1;31mERROR\033[0m: Unable to parse the message\n");
free(msg);
exit(1);
}
return msg;
}
/* end of threads.c */