-
Notifications
You must be signed in to change notification settings - Fork 2
/
confArgs.c
411 lines (284 loc) · 9.73 KB
/
confArgs.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
/*******************************************************/
/* confArgs.c */
/*******************************************************/
/* Captures arguments for 'conf' application */
/* Al alternative to this code is to base it on the Linux standard function 'getopt_long' */
#include "conf.h"
#include "confArgs.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
void captureFirst (int argc, char *argv[], char * firstMulticastIP, int * port, int *vol, int * verbose, int * bufferingTime);
void captureSecond (int argc, char *argv[], char * firstIP, int * port, int *vol, int * packetDuration, int *payload, int * verbose, int * bufferingTime);
/*=====================================================================*/
void printValues (int operation, const char * firstIP, const char * firstMulticastIP, int port, int vol, int packetDuration, int verbose, int payload, int bufferingTime)
{
if (operation == FIRST) {
printf ("FIRST mode.\n");
if (firstMulticastIP[0] == '\0') {
printf ("Unicast IP address requested for first.\n");
}
else printf ("Multicast IP address requested for first: %s\n", firstMulticastIP);
printf ("Packet duration %d ms.\n", packetDuration);
}
else if (operation == SECOND) {
printf ("SECOND mode");
if (payload == PCMU)
{
printf (" with 8 bits, single channel, mu law.\n");
}
else if (payload == L16_1)
{
printf (" with PCM 16 bits, singleChannel.\n");
}
printf ("Address of first node: %s.\n", firstIP);
}
printf ("Port used %d.\n", port);
printf ("Volume %d.\n", vol);
printf ("Requested buffering time: %d ms.\n", bufferingTime);
if (verbose)
{
printf ("Verbose mode ON.\n");
}
else printf ("Verbose mode OFF.\n");
};
/*=====================================================================*/
void printHelp (void)
{
printf ("\nconf first [-pLOCAL_RTP_PORT] [-c] [-vVOL] [-mMULTICAST_ADDR] [-kACCUMULATED_TIME]"
"\nconf second addressOfFirst [-pLOCAL_RTP_PORT] [-c] [-vVOL] [-lPACKET_DURATION] [-kACCUMULATED_TIME] [-yPAYLOAD]\n\n(NOTE: firstName can be either a name or an IP address\n\n");
}
/* Insert default values */
/*=====================================================================*/
void defaultValues (int *operation, char * firstIP, char * firstMulticastIP, int *port, int *vol, int *packetDuration, int *verbose, int *payload, int * bufferingTime)
{
(*operation) = FIRST; /* not very useful, but removes gcc warning about unused operation variable */
firstMulticastIP[0] = '\0';
firstIP[0] = '\0';
*port = 5004;
(*vol) = 90;
(*packetDuration) = 20; /* 20 ms */
(* payload) = PCMU;
(* verbose) = 0;
(* bufferingTime) = 100; /* 100 ms */
};
/*=====================================================================*/
void captureArguments (int argc, char *argv[], int *operation, char * firstIP, char * firstMulticastIP, int *port, int *vol, int *packetDuration, int *verbose, int *payload, int *bufferingTime)
{
if (argc==1)
{
printf ("I need to know if mode is 'first' or 'second'\n\n");
printHelp ();
exit (1); /* error */
}
defaultValues (operation, firstIP, firstMulticastIP, port, vol, packetDuration, verbose, payload, bufferingTime);
/* the first argument is always the role played by the host */
if (strcmp ("first", argv[1]) == 0)
{
(*operation) = FIRST;
(*payload)=0; /* set to 0 in 'first' */
if (argc > 2) /* need to obtain more arguments than './conf first' */
{
captureFirst (argc-1, argv, firstMulticastIP, port, vol, verbose, bufferingTime);
}
}
else if (strcmp ("second", argv[1]) == 0)
{
(*operation) = SECOND;
captureSecond (argc-1, argv, firstIP, port, vol, packetDuration, payload, verbose, bufferingTime);
}
else
{
printf ("Operation could not be identified: expecting 'first' or 'second'.\n\n");
printHelp();
exit (1); /* error */
}
}
/*=====================================================================*/
void captureFirst (int argc, char *argv[], char * firstMulticastIP, int * port, int *vol, int * verbose, int * bufferingTime)
{
int index, mostSignificantAddressComponent;
char character;
for ( index=2; argc>1; ++index, --argc)
{
if ( *argv[index] == '-')
{
character= *(++argv[index]);
switch (character)
{
case 'p': /* RTP PORT for FIRST*/
if ( sscanf (++argv[index],"%d", port) != 1)
{
printf ("\n-p must be followed by a number\n");
exit (1); /* error */
}
if ( ! (( (*port) >= 1024) && ( (*port) <= 65535) ))
{
printf ("\nPort number (-p) is out of the requested range, [1024..65535]\n");
exit (1); /* error */
}
break;
case 'c': /* VERBOSE */
(*verbose) = 1;
break;
case 'v': /* VOLume */
if ( sscanf (++argv[index],"%d", vol) != 1)
{
printf ("\n-v must be followed by a number\n");
exit (1); /* error */
}
if ( ! (( (*vol) >= 0) && ( (*vol) <= 100) ))
{
printf ("\nVolume (-v) is out of the requested range, [0..100]\n");
exit (1); /* error */
}
break;
case 'm': /* address of the second - can be mcast */
if ( sscanf (++argv[index],"%s", firstMulticastIP) != 1)
{
printf ("\nSomething should follow -m\n");
exit (1); /* error */
}
/* checks that this address is multicast. Multicast addresses are in the range 224.0.0.0 through 239.255.255.255 */
if ( sscanf ( firstMulticastIP, "%d.", &mostSignificantAddressComponent) != 1)
{
printf ("\nThe argument following -m does not seem to be an internet address\n");
exit (1); /* error */
}
if ( (mostSignificantAddressComponent < 224) | (mostSignificantAddressComponent > 239) )
{
printf ("\nThe argument following -m is out of the multicast address range\n");
exit (1); /* error */
}
break;
case 'k': /* Time accumulated in buffers */
if ( sscanf (++argv[index],"%d", bufferingTime) != 1)
{
printf ("\n-k must be followed by a number\n");
exit (1); /* error */
}
if ( ! ( ((*bufferingTime) >= 0) ))
{
printf ("\nThe buffering time (-k) must be equal or greater than 0\n");
exit (1); /* error */
}
break;
default:
printf ("\nI do not understand -%c\n", character);
printHelp ();
exit (1); /* error */
}
}
else
{ /* argument not starting with '-', reject */
printf ("Every argument of second must start with '-' \n\n");
printHelp ();
exit (1); /* error */
}
}
};
/*=====================================================================*/
void captureSecond (int argc, char *argv[], char * firstAddress, int * port, int *vol, int * packetDuration, int *payload, int * verbose, int * bufferingTime)
{
int maxNameNumber = 1;
int index;
int nameNumber = 0;
char character;
for ( index=2; argc>1; ++index, --argc)
{
if ( *argv[index] == '-')
{
character= *(++argv[index]);
switch (character)
{
case 'p': /* PORT */
if ( sscanf (++argv[index],"%d", port) != 1)
{
printf ("\n-p must be followed by a number\n");
exit (1); /* error */
}
if ( ! (( (*port) >= 1024) && ( (*port) <= 65535 )))
{
printf ("\nPort number is out of the requested range, [1024..65535]\n");
exit (1); /* error */
}
break;
case 'c': /* VERBOSE */
(*verbose) = 1;
break;
case 'v': /* VOLume */
if ( sscanf (++argv[index],"%d", vol) != 1)
{
printf ("\n-v must be followed by a number\n");
exit (1); /* error */
}
if ( ! (( (*vol) >= 0) && ( (*vol) <= 100) ))
{
printf ("\nVolume (-v) is out of the requested range, [0..100]\n");
exit (1); /* error */
}
break;
case 'l': /* Packet duration */
if ( sscanf (++argv[index],"%d", packetDuration) != 1)
{
printf ("\n-l must be followed by a number\n");
exit (1); /* error */
}
if ( ! ( ((*packetDuration) >= 0) ))
{
printf ("\nPacket duration (-l) must be greater than 0\n");
exit (1); /* error */
}
break;
case 'k': /* Accumulated time in buffers */
if ( sscanf (++argv[index],"%d", bufferingTime) != 1)
{
printf ("\n-k must be followed by a number\n");
exit (1); /* error */
}
if ( ! ( ((*bufferingTime) >= 0) ))
{
printf ("\nThe buffering time (-k) must be equal or greater than 0\n");
exit (1); /* error */
}
break;
case 'y': /* Initial PAYLOAD */
if ( sscanf (++argv[index],"%d", payload) != 1)
{
printf ("\n-y must be followed by a number\n");
exit (1); /* error */
}
if ( ! ( ((*payload) == PCMU) || ( (*payload) == L16_1) ))
{
printf ("\nUnrecognized payload number. Must be either 11 or 100.\n");
exit (1); /* error */
}
break;
default:
printf ("\nI do not understand -%c\n", character);
printHelp ();
exit (1); /* error */
}
}
else /* THERE IS A NAME */
{
strcpy (firstAddress, argv[index]);
nameNumber += 1;
if (nameNumber > maxNameNumber)
{
printf ("I expected a single non '-' argument, the IP address, and found more\n\n");
printHelp ();
exit (1); /* error */
}
}
}
if (nameNumber != 1)
{
printf ("Could not obtain an IP address\n\n");
printHelp();
exit (1); /* error */
}
};