-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocketConsumer.c
254 lines (209 loc) · 5.93 KB
/
socketConsumer.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
#define _GNU_SOURCE
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/resource.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <semaphore.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#define MAX_WRITE_SIZE 65535 //max tcp data length
//socket file descriptor
int fd_socket;
//port number
int portno;
//server address
struct sockaddr_in server_addr;
//socket server
struct hostent *server;
//pid of producer process used to send signals
pid_t producer_pid;
//variables for select function
struct timeval timeout;
fd_set readfds;
//buffer size
int size;
//memory mode
int mode;
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[])
{
//number of cycles needed to send all the data
int cycles = size / MAX_WRITE_SIZE + (size % MAX_WRITE_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);
for (int i = 0; i < cycles; i++)
{
//wait until data is ready
do
{
//set timeout for select
timeout.tv_sec = 0;
timeout.tv_usec = 1000;
FD_ZERO(&readfds);
//add the selected file descriptor to the selected fd_set
FD_SET(fd_socket, &readfds);
} while (check(select(FD_SETSIZE + 1, &readfds, NULL, NULL, &timeout)) <= 0);
//read string from producer
char segment[MAX_WRITE_SIZE];
check(read(fd_socket, segment, MAX_WRITE_SIZE));
//add every segment to entire buffer
if (i == cycles - 1)
{
int j = 0;
while ((i * MAX_WRITE_SIZE + j) < size)
{
buffer[i * MAX_WRITE_SIZE + j] = segment[j];
j++;
}
}
else
{
strcat(buffer, segment);
}
}
//write on log file
fprintf(logfile, "c - array received!\n");
fflush(logfile);
}
int main(int argc, char *argv[])
{
//open log file in read mode
logfile = fopen("socket_log.txt", "a");
if (logfile == NULL)
{
printf("an error occured while creating sockets's log File\n");
return 0;
}
//getting size from console
if (argc < 3)
{
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 < 4)
{
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 port number
if (argc < 5)
{
fprintf(stderr, "usage %s hostname port\n", argv[0]);
exit(0);
}
portno = atoi(argv[4]);
//write on log file
fprintf(logfile, "c - received portno %d\n", portno);
fflush(logfile);
//create socket
fd_socket = check(socket(AF_INET, SOCK_STREAM, 0));
if (fd_socket < 0)
{
check(-1);
}
//write on log file
fprintf(logfile, "c - socket created\n");
fflush(logfile);
//get host
server = gethostbyname(argv[3]);
if (server == NULL)
{
check(-1);
}
//write on log file
fprintf(logfile, "c - correct server\n");
fflush(logfile);
//set server address for connection
bzero((char *)&server_addr, sizeof(server_addr));
server_addr.sin_family = AF_INET;
bcopy((char *)server->h_addr,
(char *)&server_addr.sin_addr.s_addr,
server->h_length);
server_addr.sin_port = htons(portno);
//open new connection
if (check(connect(fd_socket, (struct sockaddr *)&server_addr, sizeof(server_addr))) < 0)
{
check(-1);
}
//write on log file
fprintf(logfile, "c - connected to socket\n");
fflush(logfile);
//receiving pid from producer
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_socket, &readfds);
sel_val = select(FD_SETSIZE + 1, &readfds, NULL, NULL, &timeout);
} while (sel_val <= 0);
check(read(fd_socket, &producer_pid, sizeof(producer_pid)));
//write on log file
fprintf(logfile, "c - pid %d readed\n", producer_pid);
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));
//close socket
check(close(fd_socket));
//write on log file
fprintf(logfile, "c - socket closed\n");
fflush(logfile);
//close log file
fclose(logfile);
return 0;
}