-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsharedConsumer.c
296 lines (242 loc) · 7.17 KB
/
sharedConsumer.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
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <time.h>
#include <sys/shm.h>
#include <sys/mman.h>
#include <semaphore.h>
#include <errno.h>
#define BLOCK_NUM 100
#define MIN(a,b) (((a)<(b))?(a):(b))
//shared memory name
const char *shm_name = "/AOS";
//shared memory file descriptor
int shm_fd;
//shared memory pointer
char *shm_ptr;
//semaphores used for circular buffer and shared memory
sem_t *mutex;
sem_t *not_empty;
sem_t *not_full;
//pid of producer process used to send signals
pid_t producer_pid;
//buffer size
int size;
//memory mode
int mode;
//circular buffer size
int circular_size;
//pointer to log file
FILE *logfile;
//This function checks if something failed, exits the program and prints an error in the logfile
int check(int retval)
{
if (retval == -1)
{
fprintf(logfile, "\nConsumer - ERROR (" __FILE__ ":%d) -- %s\n", __LINE__, strerror(errno));
fflush(logfile);
fclose(logfile);
printf("\tAn error has been reported on log file.\n");
fflush(stdout);
exit(-1);
}
return retval;
}
void receive_array(char buffer[])
{
//calculate size of each block of the circular buffer
int block_size = (circular_size / BLOCK_NUM);
//number of cycles needed to receive all the data
int cycles = size / block_size + (size % block_size != 0 ? 1 : 0);
//write on log file
fprintf(logfile, "c - starting receiving array...\n");
fprintf(logfile, "c - there will be %d cycles\n", cycles);
fflush(logfile);
int a = 1;
int b = 0;
int c = BLOCK_NUM;
for (int i = 0; i < cycles; i++)
{
//read string from producer
char segment[block_size];
//every time BLOCK_NUM blocks have been received, the pointer moves back to the first address of the circular buffer
if (i % BLOCK_NUM == 0 && i > 0)
{
shm_ptr -= block_size * BLOCK_NUM;
}
//coordinate with producer
sem_wait(not_empty);
sem_wait(mutex);
//copy received data into the buffer
if (i == cycles - 1)
{
int j = 0;
while ((i * block_size + j) < size)
{
buffer[i * block_size + j] = *shm_ptr;
shm_ptr++;
j++;
}
}
else
{
for (int j = 0; j < block_size; j++)
{
buffer[i * block_size + j] = *shm_ptr;
shm_ptr++;
}
}
//coordinate with producer
sem_post(mutex);
sem_post(not_full);
}
//write on log file
fprintf(logfile, "c - array received!\n");
fflush(logfile);
}
int main(int argc, char *argv[])
{
//open Log file
logfile = fopen("shared_memory_log.txt", "a");
if (logfile == NULL)
{
printf("an error occured while creating SharedMemory's log File\n");
return 0;
}
//getting size from console
if (argc < 2)
{
fprintf(stderr, "Consumer - ERROR, no size provided\n");
exit(0);
}
size = atoi(argv[1]) * 1000000;
//write on log file
fprintf(logfile, "c - received size of %dMB\n", size);
fflush(logfile);
//getting mode from console
if (argc < 3)
{
fprintf(stderr, "Consumer - ERROR, no mode provided\n");
exit(0);
}
mode = atoi(argv[2]);
//write on log file
fprintf(logfile, "c - received mode %d\n", mode);
fflush(logfile);
//getting circular budffer size from console
if (argc < 4)
{
fprintf(stderr, "Producer - ERROR, no circular size provided\n");
exit(0);
}
circular_size = atoi(argv[3]) * 1000;
//write on log file
fprintf(logfile, "c - received circular size of %dKB\n", circular_size);
fflush(logfile);
//receiving pid from producer
char *fifo_shared_producer_pid = "/tmp/shared_producer_pid";
mkfifo(fifo_shared_producer_pid, 0666);
//write on log file
fprintf(logfile, "c - open pipe for pid\n");
fflush(logfile);
int fd_pid = check(open(fifo_shared_producer_pid, O_RDONLY));
//variables for select function
struct timeval timeout;
fd_set readfds;
int sel_val;
do //wait until pid is ready
{
timeout.tv_sec = 0;
timeout.tv_usec = 1000;
FD_ZERO(&readfds);
//add the selected file descriptor to the selected fd_set
FD_SET(fd_pid, &readfds);
sel_val = check(select(FD_SETSIZE + 1, &readfds, NULL, NULL, &timeout));
} while (sel_val <= 0);
check(read(fd_pid, &producer_pid, sizeof(producer_pid)));
check(close(fd_pid));
unlink(fifo_shared_producer_pid);
//write on log file
fprintf(logfile, "c - pid %d readed and open shared memory\n", producer_pid);
fflush(logfile);
//wait until producer creates shared memory and semaphores
usleep(100000);
//open shared memory
shm_fd = check(shm_open(shm_name, O_RDONLY, 0666));
//map shared memory
if ((shm_ptr = mmap(NULL, circular_size, PROT_READ, MAP_SHARED, shm_fd, 0)) == MAP_FAILED)
{
check(-1);
}
//original shared memory pointer, used with munmap
char *original_shm_ptr = shm_ptr;
//write on log file
fprintf(logfile, "c - shared memory mapped\n");
fflush(logfile);
//initialize circular buffer semaphores
if ((mutex = sem_open("mutex", 0, 0644, 1)) == MAP_FAILED)
{
check(-1);
}
if ((not_full = sem_open("not_full", 0, 0644, BLOCK_NUM)) == MAP_FAILED)
{
check(-1);
}
if ((not_empty = sem_open("not_empty", 0, 0644, 0)) == MAP_FAILED)
{
check(-1);
}
//write on log file
fprintf(logfile, "c - semaphores opened\n");
fflush(logfile);
//switch between dynamic allocation or standard allocation
if (mode == 0)
{
//dynamic allocation of buffer
char *buffer = (char *)malloc(size);
//receive array from producer
receive_array(buffer);
//delete buffer from memory
free(buffer);
}
else
{
//increasing stack limit to let the buffer be instantieted correctly
struct rlimit limit;
limit.rlim_cur = (size + 5) * 1000000;
limit.rlim_max = (size + 5) * 1000000;
check(setrlimit(RLIMIT_STACK, &limit));
char buffer[size];
//receive array from producer
receive_array(buffer);
}
//transfer complete. Sends signal to notify the producer
check(kill(producer_pid, SIGUSR1));
check(shm_unlink(shm_name));
//close and delete semaphores
check(sem_close(mutex));
sem_unlink("mutex");
check(sem_close(not_empty));
sem_unlink("not_empty");
check(sem_close(not_full));
sem_unlink("not_full");
//write on log file
fprintf(logfile, "c - semaphores closed\n");
fflush(logfile);
//deallocate and close shared memory
check(munmap(original_shm_ptr, circular_size));
check(close(shm_fd));
//write on log file
fprintf(logfile, "c - shared memory closed\n");
fflush(logfile);
//close log file
fclose(logfile);
return 0;
}