forked from mehmetgok/fifo_test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
211 lines (121 loc) · 3.21 KB
/
Copy pathmain.cpp
File metadata and controls
211 lines (121 loc) · 3.21 KB
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
#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <signal.h> /* Ctrl+C Handling */
#include <unistd.h>
#include <stdint.h> /* Extra types */
#include "fifo.h"
#define STEP_LIMIT 1000
fifo *fifoData, *fifoProdTimes, *fifoConsTimes;
static volatile int keepRunning = 1;
void intrHandler(int dummy) {
keepRunning = 0;
}
pthread_t thDataGetter, thDataProcessor;
pthread_mutex_t lock;
void *dataGetter(void*);
void *dataProcessor(void*);
int main(void) {
uint64_t file_value;
FILE * pFileProdTimes, *pFileConsTimes;
pFileProdTimes = fopen ("prodTimes.txt","w");
pFileConsTimes = fopen ("consTimes.txt","w");
signal(SIGINT, intrHandler);
fifoData = new fifo;
fifoProdTimes = new fifo;
fifoConsTimes = new fifo;
pthread_create(&thDataGetter, NULL, &dataGetter, NULL);
pthread_create(&thDataProcessor, NULL, &dataProcessor, NULL);
pthread_join( thDataGetter, NULL);
pthread_join( thDataProcessor, NULL);
while (fifoProdTimes->available())
{
fifoProdTimes->get(&file_value);
fprintf (pFileProdTimes, "%lu\r\n", file_value);
}
while (fifoConsTimes->available())
{
fifoConsTimes->get(&file_value);
fprintf (pFileConsTimes, "%lu\r\n", file_value);
}
delete fifoConsTimes;
delete fifoProdTimes;
delete fifoData;
fclose(pFileProdTimes);
fclose(pFileConsTimes);
return 0;
}
void *dataGetter(void*) {
int counts = 1;
struct timeval prodTime;
uint64_t prod_time;
while (keepRunning) {
// Add value to the queue
pthread_mutex_lock(&lock);
if (fifoData->free()>0)
{
// printf("Free:%d\r\n", fifoData->free() );
fifoData->put((uint64_t) counts);
gettimeofday(&prodTime, NULL);
prod_time = (prodTime.tv_sec * (uint64_t)1000000) + (prodTime.tv_usec);
if (fifoProdTimes->free()>0)
{
// printf("Free:%d\r\n", fifoProdTimes->free() );
fifoProdTimes->put(prod_time);
}
else
{
printf("No Room for the value, free: %d\r\n", fifoProdTimes->free() );
break;
}
counts++;
}
else
{
printf("No Room for the value, free: %d\r\n", fifoData->free() );
break;
}
pthread_mutex_unlock(&lock);
usleep(500);
if (counts>STEP_LIMIT)
break;
}
}
void *dataProcessor(void*) {
int counts = 1;
struct timeval consTime;
uint64_t cons_time;
// Data taken from dataFifo
uint64_t count_data;
while (keepRunning) {
// Get data from queue
pthread_mutex_lock(&lock);
if (fifoData->available()>0)
{
// printf("Free:%d\r\n", fifoData->free() );
fifoData->get(&count_data);
gettimeofday(&consTime, NULL);
cons_time = (consTime.tv_sec * (uint64_t)1000000) + (consTime.tv_usec);
if (fifoConsTimes->free()>0)
{
// printf("Free:%d\r\n", fifoProdTimes->free() );
fifoConsTimes->put(cons_time);
}
else
{
printf("No Room for the value, free: %d\r\n", fifoConsTimes->free() );
}
counts++;
}
else
{
printf("No Data available int the queue: %d\r\n", fifoData->available() );
}
pthread_mutex_unlock(&lock);
usleep(500);
if (counts>STEP_LIMIT)
break;
}
}