-
Notifications
You must be signed in to change notification settings - Fork 0
/
cs50.c
453 lines (406 loc) · 12.5 KB
/
cs50.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
/**
* CS50 Library for C
* https://github.com/cs50/libcs50
*
* Based on Eric Roberts' genlib.c and simpio.c.
*
* Copyright (c) 2019
* All rights reserved
*
* BSD 3-Clause License
* http://www.opensource.org/licenses/BSD-3-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of CS50 nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define _GNU_SOURCE
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <math.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "cs50.h"
// Disable warnings from some compilers about the way we use variadic arguments
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-security"
/**
* Number of strings allocated by get_string.
*/
static size_t allocations = 0;
/**
* Array of strings allocated by get_string.
*/
static string *strings = NULL;
/**
* Prompts user for a line of text from standard input and returns
* it as a string (char *), sans trailing line ending. Supports
* CR (\r), LF (\n), and CRLF (\r\n) as line endings. If user
* inputs only a line ending, returns "", not NULL. Returns NULL
* upon error or no input whatsoever (i.e., just EOF). Stores string
* on heap, but library's destructor frees memory on program's exit.
*/
#undef get_string
string get_string(va_list *args, const string format, ...)
{
// Check whether we have room for another string
if (allocations * sizeof (string) == SIZE_MAX)
{
return NULL;
}
// Growable buffer for characters
string buffer = NULL;
// Capacity of buffer
size_t capacity = 0;
// Number of characters actually in buffer
size_t size = 0;
// Character read or EOF
int c;
// Prompt user
if (format != NULL)
{
// Initialize variadic argument list
va_list ap;
// Students' code will pass in printf-like arguments as variadic
// parameters. The student-facing get_string macro always sets args to
// NULL. In this case, we initialize the list of variadic parameters
// the standard way with va_start.
if (args == NULL)
{
va_start(ap, format);
}
// When functions in this library call get_string they will have
// already stored their variadic parameters in a `va_list` and so they
// just pass that in by pointer.
else
{
// Put a copy of argument list in ap so it is not consumed by vprintf
va_copy(ap, *args);
}
// Print prompt
vprintf(format, ap);
// Clean up argument list
va_end(ap);
}
// Iteratively get characters from standard input, checking for CR (Mac OS), LF (Linux), and CRLF (Windows)
while ((c = fgetc(stdin)) != '\r' && c != '\n' && c != EOF)
{
// Grow buffer if necessary
if (size + 1 > capacity)
{
// Increment buffer's capacity if possible
if (capacity < SIZE_MAX)
{
capacity++;
}
else
{
free(buffer);
return NULL;
}
// Extend buffer's capacity
string temp = realloc(buffer, capacity);
if (temp == NULL)
{
free(buffer);
return NULL;
}
buffer = temp;
}
// Append current character to buffer
buffer[size++] = c;
}
// Check whether user provided no input
if (size == 0 && c == EOF)
{
return NULL;
}
// Check whether user provided too much input (leaving no room for trailing NUL)
if (size == SIZE_MAX)
{
free(buffer);
return NULL;
}
// If last character read was CR, try to read LF as well
if (c == '\r' && (c = fgetc(stdin)) != '\n')
{
// Return NULL if character can't be pushed back onto standard input
if (c != EOF && ungetc(c, stdin) == EOF)
{
free(buffer);
return NULL;
}
}
// Minimize buffer
string s = realloc(buffer, size + 1);
if (s == NULL)
{
free(buffer);
return NULL;
}
// Terminate string
s[size] = '\0';
// Resize array so as to append string
string *tmp = realloc(strings, sizeof (string) * (allocations + 1));
if (tmp == NULL)
{
free(s);
return NULL;
}
strings = tmp;
// Append string to array
strings[allocations] = s;
allocations++;
// Return string
return s;
}
/**
* Prompts user for a line of text from standard input and returns the
* equivalent char; if text is not a single char, user is prompted
* to retry. If line can't be read, returns CHAR_MAX.
*/
char get_char(const string format, ...)
{
va_list ap;
va_start(ap, format);
// Try to get a char from user
while (true)
{
// Get line of text, returning CHAR_MAX on failure
string line = get_string(&ap, format);
if (line == NULL)
{
va_end(ap);
return CHAR_MAX;
}
// Return a char if only a char was provided
char c, d;
if (sscanf(line, "%c%c", &c, &d) == 1)
{
va_end(ap);
return c;
}
}
}
/**
* Prompts user for a line of text from standard input and returns the
* equivalent double as precisely as possible; if text does not represent
* a double or if value would cause underflow or overflow, user is
* prompted to retry. If line can't be read, returns DBL_MAX.
*/
double get_double(const string format, ...)
{
va_list ap;
va_start(ap, format);
// Try to get a double from user
while (true)
{
// Get line of text, returning DBL_MAX on failure
string line = get_string(&ap, format);
if (line == NULL)
{
va_end(ap);
return DBL_MAX;
}
// Return a double if only a double was provided
if (strlen(line) > 0 && !isspace((unsigned char) line[0]))
{
char *tail;
errno = 0;
double d = strtod(line, &tail);
if (errno == 0 && *tail == '\0' && isfinite(d) != 0 && d < DBL_MAX)
{
// Disallow hexadecimal and exponents
if (strcspn(line, "XxEePp") == strlen(line))
{
va_end(ap);
return d;
}
}
}
}
}
/**
* Prompts user for a line of text from standard input and returns the
* equivalent float as precisely as possible; if text does not represent
* a float or if value would cause underflow or overflow, user is prompted
* to retry. If line can't be read, returns FLT_MAX.
*/
float get_float(const string format, ...)
{
va_list ap;
va_start(ap, format);
// Try to get a float from user
while (true)
{
// Get line of text, returning FLT_MAX on failure
string line = get_string(&ap, format);
if (line == NULL)
{
va_end(ap);
return FLT_MAX;
}
// Return a float if only a float was provided
if (strlen(line) > 0 && !isspace((unsigned char) line[0]))
{
char *tail;
errno = 0;
float f = strtof(line, &tail);
if (errno == 0 && *tail == '\0' && isfinite(f) != 0 && f < FLT_MAX)
{
// Disallow hexadecimal and exponents
if (strcspn(line, "XxEePp") == strlen(line))
{
va_end(ap);
return f;
}
}
}
}
}
/**
* Prompts user for a line of text from standard input and returns the
* equivalent int; if text does not represent an int in [-2^31, 2^31 - 1)
* or would cause underflow or overflow, user is prompted to retry. If line
* can't be read, returns INT_MAX.
*/
int get_int(const string format, ...)
{
va_list ap;
va_start(ap, format);
// Try to get an int from user
while (true)
{
// Get line of text, returning INT_MAX on failure
string line = get_string(&ap, format);
if (line == NULL)
{
va_end(ap);
return INT_MAX;
}
// Return an int if only an int (in range) was provided
if (strlen(line) > 0 && !isspace((unsigned char) line[0]))
{
char *tail;
errno = 0;
long n = strtol(line, &tail, 10);
if (errno == 0 && *tail == '\0' && n >= INT_MIN && n < INT_MAX)
{
va_end(ap);
return n;
}
}
}
}
/**
* Prompts user for a line of text from standard input and returns the
* equivalent long; if text does not represent a long in
* [-2^63, 2^63 - 1) or would cause underflow or overflow, user is
* prompted to retry. If line can't be read, returns LONG_MAX.
*/
long get_long(const string format, ...)
{
va_list ap;
va_start(ap, format);
// Try to get a long from user
while (true)
{
// Get line of text, returning LLONG_MAX on failure
string line = get_string(&ap, format);
if (line == NULL)
{
va_end(ap);
return LONG_MAX;
}
// Return a long if only a long (in range) was provided
if (strlen(line) > 0 && !isspace((unsigned char) line[0]))
{
char *tail;
errno = 0;
long n = strtol(line, &tail, 10);
if (errno == 0 && *tail == '\0' && n < LONG_MAX)
{
va_end(ap);
return n;
}
}
}
}
/**
* Called automatically after execution exits main.
*/
static void teardown(void)
{
// Free library's strings
if (strings != NULL)
{
for (size_t i = 0; i < allocations; i++)
{
free(strings[i]);
}
free(strings);
}
}
/**
* Preprocessor magic to make initializers work somewhat portably
* Modified from http://stackoverflow.com/questions/1113409/attribute-constructor-equivalent-in-vc
*/
#if defined (_MSC_VER) // MSVC
#pragma section(".CRT$XCU",read)
#define INITIALIZER_(FUNC,PREFIX) \
static void FUNC(void); \
__declspec(allocate(".CRT$XCU")) void (*FUNC##_)(void) = FUNC; \
__pragma(comment(linker,"/include:" PREFIX #FUNC "_")) \
static void FUNC(void)
#ifdef _WIN64
#define INITIALIZER(FUNC) INITIALIZER_(FUNC,"")
#else
#define INITIALIZER(FUNC) INITIALIZER_(FUNC,"_")
#endif
#elif defined (__GNUC__) // GCC, Clang, MinGW
#define INITIALIZER(FUNC) \
static void FUNC(void) __attribute__((constructor)); \
static void FUNC(void)
#else
#error The CS50 library requires some compiler-specific features, \
but we do not recognize this compiler/version. Please file an issue at \
https://github.com/cs50/libcs50
#endif
/**
* Called automatically before execution enters main.
*/
INITIALIZER(setup)
{
// Disable buffering for standard output
setvbuf(stdout, NULL, _IONBF, 0);
atexit(teardown);
}
// Re-enable warnings
#pragma GCC diagnostic pop