forked from mfillpot/mathomatic
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.c
558 lines (529 loc) · 17.9 KB
/
main.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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
/*
* This file contains main() and the startup code for Mathomatic,
* which is a computer algebra system written in the C programming language.
*
* Copyright (C) 1987-2012 George Gesslein II.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
The chief copyright holder can be contacted at [email protected], or
George Gesslein II, P.O. Box 224, Lansing, NY 14882-0224 USA.
*/
/*
* Output to stderr is only done in this file. The rest of the Mathomatic code
* should not output to stderr; error messages should use error() or go to stdout.
* One reason for this is so that Mathomatic stdout can be redirected or piped,
* catching all output.
*
* This program only supports binary and unary operators.
* Unary operators are implemented as a binary operation with a dummy operand.
*
* In the storage format, each level of parentheses is indicated
* by a level number (origin 1). The deeper the level, the
* higher the level number.
*
* The storage format for expressions is a fixed size array of elements
* "token_type", which may be a CONSTANT, VARIABLE, or OPERATOR.
* The array always alternates between operand (CONSTANT or VARIABLE)
* and OPERATOR. There is a separate integer for each array which
* contains the current length of the expression stored in the array.
* This length is always odd and must never exceed "n_tokens".
*
* In the storage format,
* any number of TIMES and DIVIDE operators may be on the same level of parentheses,
* because they are similar and the most basic multiplicative class operators.
* The same for the PLUS and MINUS operators, because they are similar (additive class).
* All other operators are only allowed one single operator per level of parentheses,
* and no same nor different operators may be with it on that level within the current grouping.
*
* Most of the expression manipulation and comparison routines are recursive,
* calling themselves for each level of parentheses.
*
* Note that equation space numbers internally are 1 less than the equation
* space numbers displayed. That is because internal equation space numbers
* are origin 0 array indexes, while displayed equation numbers are origin 1.
*
* See the file "am.h" to start understanding the Mathomatic code and
* to adjust memory usage.
*
* C types "long long" and "long double" are not used at all in Mathomatic,
* because many architectures and compilers do not support them. These large C
* types can be used in the Mathomatic Prime Number Tools though, producing
* larger prime numbers and quickly on a 64-bit computer. 64 bits is the size
* of a double, so Mathomatic runs optimally on a 64-bit system.
*/
#if !LIBRARY /* This comments out this whole file if compiling as the symbolic math library. */
#include "includes.h"
#include "lib/mathomatic.h"
#if !NO_GETOPT_H
#include <getopt.h>
#endif
#if WIN32_CONSOLE_COLORS
#include <windows.h>
#include <wincon.h>
HANDLE hOut;
#endif
MathoMatic *mathomatic;
/*
* Display invocation usage info.
*/
void
usage(FILE *fp)
{
fprintf(fp, _("Mathomatic computer algebra system, version %s\n"), VERSION);
fprintf(fp, _("Usage: %s [ options ] [ input_files or input ]\n\n"), mathomatic->prog_name);
fprintf(fp, _("Options:\n"));
fprintf(fp, _(" -a Enable alternative color mode.\n"));
fprintf(fp, _(" -b Enable bold color mode.\n"));
fprintf(fp, _(" -c Toggle color mode.\n"));
fprintf(fp, _(" -d Set demo mode (no pausing).\n"));
fprintf(fp, _(" -e Process expressions and commands on the command line.\n"));
fprintf(fp, _(" -h Display this help and exit.\n"));
fprintf(fp, _(" -m number Specify a memory size multiplier.\n"));
fprintf(fp, _(" -q Set quiet mode (don't display prompts).\n"));
fprintf(fp, _(" -r Disable readline or editline.\n"));
fprintf(fp, _(" -s level:time Set enforced security level and max time for user's session.\n"));
fprintf(fp, _(" -t Set test mode. Use when comparing program output.\n"));
fprintf(fp, _(" -u Set unbuffered output with input echo.\n"));
fprintf(fp, _(" -v Display version number, then exit successfully.\n"));
fprintf(fp, _(" -w Wide output mode, sets unlimited width.\n"));
fprintf(fp, _(" -x Enable HTML/XHTML output mode.\n"));
fprintf(fp, _("\nPlease refer to the man page for details (type \"man mathomatic\" in shell).\n"));
}
int
main(int argc, char *argv[])
{
#if NO_GETOPT_H /* if no getopt.h is available */
extern char *optarg; /* set by getopt(3) */
extern int optind;
#endif
int i, rv;
char *cp = NULL;
double numerator, denominator;
double new_size = 0;
int aoption = false, coption = false, boption = false, wide_flag = false;
int exit_value = 0;
unsigned int time_out_seconds = 0;
#if WIN32_CONSOLE_COLORS
hOut = GetStdHandle(STD_OUTPUT_HANDLE);
#endif
#if I18N
/* Initialize internationalization so that messages are in the right language. */
setlocale(LC_ALL, "");
bindtextdomain(mathomatic->prog_name, LOCALEDIR);
textdomain(mathomatic->prog_name);
#endif
#if CYGWIN || MINGW
dir_path = strdup(dirname_win(argv[0])); /* set dir_path to this executable's directory */
#endif
mathomatic = newtMathoMatic();
/* initialize the global variables */
init_gvars(mathomatic);
mathomatic->default_out = stdout; /* set default_out to any file you want to redirect output to */
mathomatic->gfp = mathomatic->default_out;
get_screen_size(mathomatic);
/* process command line options */
while ((i = getopt(argc, argv, "s:abqrtdchuvwxm:e")) >= 0) {
switch (i) {
case 's':
if (optarg) {
mathomatic->security_level = strtod(optarg, &cp);
#if SECURE
if (mathomatic->security_level != 4) {
fprintf(stderr, _("%s: Already compiled for maximum security (level 4), therefore setting security level ignored.\n"), mathomatic->prog_name);
}
#endif
}
if (optarg == NULL || cp == NULL || (cp == optarg && *cp != ':') || (*cp != '\0' && *cp != ':')) {
fprintf(stderr, _("%s: Error in setting security level.\n"), mathomatic->prog_name);
exit(2);
}
if (*cp == ':') {
time_out_seconds = strtol(cp + 1, &cp, 10);
if (!(*cp == '\0' && time_out_seconds > 0)) {
fprintf(stderr, _("%s: Error in setting time out seconds.\n"), mathomatic->prog_name);
exit(2);
}
}
#if !SECURE
if (time_out_seconds > 0) {
printf(_("Security level is %d, time out seconds is %d.\n"), mathomatic->security_level, time_out_seconds);
}
#endif
break;
case 'w':
wide_flag = true;
break;
case 'a':
aoption = true;
break;
case 'b':
boption = true;
break;
case 'c':
coption++;
break;
case 'x':
mathomatic->html_flag = 1;
wide_flag = true;
break;
case 'm':
if (optarg)
new_size = strtod(optarg, &cp) * DEFAULT_N_TOKENS;
if (optarg == NULL || cp == NULL || *cp || new_size <= 0 || new_size >= (INT_MAX / sizeof(token_type))) {
fprintf(stderr, _("%s: Invalid memory size multiplier specified.\n"), mathomatic->prog_name);
exit(2);
}
mathomatic->n_tokens = (int) new_size;
break;
case 'q':
mathomatic->quiet_mode = true;
break;
case 'r':
mathomatic->readline_enabled = false;
break;
case 't':
mathomatic->readline_enabled = false;
wide_flag = true;
mathomatic->test_mode = true;
break;
case 'd':
mathomatic->demo_mode = true;
break;
case 'u':
mathomatic->echo_input = true;
setbuf(stdout, NULL); /* make output unbuffered */
setbuf(stderr, NULL);
break;
case 'h':
usage(stdout);
exit(0);
case 'v':
/* Don't be fancy, this may be used to test for existence. */
printf(_("Mathomatic version %s\n"), VERSION);
exit(0);
case 'e':
mathomatic->eoption = true;
mathomatic->autoselect = false;
break;
default:
usage(stdout);
exit(2);
}
}
if (mathomatic->n_tokens < 100 || mathomatic->n_tokens >= (INT_MAX / sizeof(token_type))) {
fprintf(stderr, _("%s: Standard expression array size %d out of range!\n"), mathomatic->prog_name, mathomatic->n_tokens);
}
if (!init_mem(mathomatic)) {
fprintf(stderr, _("%s: Not enough memory.\n"), mathomatic->prog_name);
exit(2);
}
#if READLINE
if (mathomatic->readline_enabled) { /* readline_enabled flag must not change after this */
if ((cp = getenv("HOME"))) {
#if MINGW
snprintf(mathomatic->history_filename_storage, sizeof(mathomatic->history_filename_storage), "%s/matho_history", cp);
#else
snprintf(mathomatic->history_filename_storage, sizeof(mathomatic->history_filename_storage), "%s/.matho_history", cp);
#endif
mathomatic->history_filename = mathomatic->history_filename_storage;
}
using_history(); /* initialize readline history */
rl_initialize(); /* initialize readline */
stifle_history(500); /* maximum of 500 entries */
rl_inhibit_completion = true; /* turn off readline file name completion */
#if 0 /* not 100% tested and this might confuse the user with the -c toggle */
#if !WIN32_CONSOLE_COLORS
if (!mathomatic->html_flag) { /* If doing ANSI color: */
mathomatic->color_flag = (tigetnum("colors") >= 8); /* autoset color output mode. Requires ncurses. */
}
#endif
#endif
#if !SECURE
if (mathomatic->security_level <= 3) {
read_history(mathomatic->history_filename); /* restore readline history of previous session */
}
#endif
}
#endif
if (mathomatic->html_flag) {
printf("<pre>\n");
}
if (!mathomatic->test_mode && !mathomatic->quiet_mode && !mathomatic->eoption) {
display_startup_message(mathomatic, stdout);
}
fflush(stdout);
#if !SECURE
/* read the user options initialization file */
if (mathomatic->security_level <= 3 && !mathomatic->test_mode && !mathomatic->demo_mode && !load_rc(mathomatic, true, NULL)) {
fprintf(stderr, _("%s: Error loading startup set options from \"%s\".\n"), mathomatic->prog_name, mathomatic->rc_file);
fprintf(stderr, _("Use the \"set no save\" command to startup with the program defaults every time.\n\n"));
}
#endif
if (wide_flag) {
mathomatic->screen_columns = 0;
mathomatic->screen_rows = 0;
}
if (coption & 1) {
mathomatic->color_flag = !mathomatic->color_flag;
}
if (boption) {
mathomatic->color_flag = 1;
mathomatic->bold_colors = 1;
}
if (mathomatic->color_flag && aoption) {
mathomatic->color_flag = 2;
}
if (mathomatic->test_mode) {
mathomatic->color_flag = 0;
} else if (!mathomatic->quiet_mode && !mathomatic->eoption) {
if (mathomatic->color_flag) {
#if WIN32_CONSOLE_COLORS
if (mathomatic->color_flag == 2) {
printf(_("%s%s color mode enabled"), mathomatic->html_flag ? "HTML" : "ANSI", mathomatic->bold_colors ? " bold" : "");
} else {
printf(_("%s%s color mode enabled"), mathomatic->html_flag ? "HTML" : "WIN32 CONSOLE", mathomatic->bold_colors ? " bold" : "");
}
#else
printf(_("%s%s color mode enabled"), mathomatic->html_flag ? "HTML" : "ANSI", mathomatic->bold_colors ? " bold" : "");
#endif
printf(_("; manage by typing \"help color\".\n"));
} else {
printf(_("Color mode turned off; manage it by typing \"help color\".\n"));
}
}
fflush(stdout);
if ((i = setjmp(mathomatic->jmp_save)) != 0) {
/* for error handling */
clean_up(mathomatic);
switch (i) {
case 14:
error(mathomatic, _("Expression too large."));
default:
printf(_("Operation aborted.\n"));
break;
}
mathomatic->previous_return_value = 0;
if (mathomatic->eoption)
exit_value = 1;
} else {
if ((rv = set_signals(time_out_seconds))) {
fprintf(stderr, _("C signal handler setting failed!\n"));
#if DEBUG
fprintf(stderr, "Failing signal is \"%s\".\n", strsignal(rv));
#endif
exit_value = 2;
}
if (!f_to_fraction(mathomatic, 0.5, &numerator, &denominator)
|| numerator != 1.0 || denominator != 2.0
|| !f_to_fraction(mathomatic, 1.0/3.0, &numerator, &denominator)
|| numerator != 1.0 || denominator != 3.0) {
fprintf(stderr, _("%s: Cannot convert any floating point values to fractions!\n"), mathomatic->prog_name);
fprintf(stderr, _("Roots will not work properly.\n"));
exit_value = 2;
}
if (max_memory_usage(mathomatic) <= 0) {
fprintf(stderr, _("%s: Calculated maximum memory usage overflows a long integer!\n"), mathomatic->prog_name);
exit_value = 2;
}
if (mathomatic->eoption) {
/* process expressions and commands from the command line */
for (i = optind; i < argc && argv[i]; i++) {
if (!display_process(mathomatic, argv[i])) {
exit_value = 1;
}
}
} else {
#if SECURE
if (!mathomatic->quiet_mode && !mathomatic->test_mode)
printf(_("Anything done here is temporary.\n"));
if (optind < argc) {
warning(mathomatic, _("File arguments ignored in high security mode."));
}
#else
if (!mathomatic->quiet_mode && !mathomatic->test_mode) {
if (optind < argc) {
printf(_("Reading in file%s specified on the command line...\n"), (optind == (argc - 1)) ? "" : "s");
} else {
if (mathomatic->security_level >= 2) {
printf(_("Anything done here is temporary.\n"));
} else {
printf(_("Anything done here is temporary, unless it is saved or redirected.\n"));
}
}
}
/* read in files specified on the command line, exit if error */
for (i = optind; i < argc && argv[i]; i++) {
if (strcmp(argv[i], "-") == 0) {
main_io_loop();
} else if (!read_file(mathomatic, argv[i])) {
fflush(NULL); /* flush all output */
fprintf(stderr, _("Read of file \"%s\" failed.\n"), argv[i]);
exit_program(1);
}
}
#endif
}
}
if (!mathomatic->eoption)
main_io_loop(); /* main input/output loop */
exit_program(exit_value); /* exit Mathomatic, doesn't return */
return(exit_value); /* so the compiler doesn't complain */
}
/*
* Repeatedly read a line of text from standard input and process the expression or command.
*/
void
main_io_loop(void)
{
char *cp = NULL;
for (;;) {
matho_set_error_str(mathomatic, NULL);
matho_set_warning_str(mathomatic, NULL);
default_color(mathomatic, false);
snprintf(mathomatic->prompt_str, sizeof(mathomatic->prompt_str), "%d%s", mathomatic->cur_equation + 1, mathomatic->html_flag ? HTML_PROMPT_STR : PROMPT_STR);
if ((cp = get_string(mathomatic, (char *) mathomatic->tlhs, mathomatic->n_tokens * sizeof(token_type))) == NULL)
break;
process(mathomatic, cp);
}
}
/*
* All signal(2) initialization goes here.
* Attach all necessary C signals to their handler functions.
*
* Return zero on success, or a non-zero unsettable signal number on error.
*/
int
set_signals(unsigned int time_out_seconds)
{
int rv = 0;
if (signal(SIGFPE, fphandler) == SIG_ERR)
rv = SIGFPE;
if (signal(SIGINT, inthandler) == SIG_ERR)
rv = SIGINT;
if (signal(SIGTERM, exithandler) == SIG_ERR)
rv = SIGTERM;
#if 0 /* Crashes entire shell window when readline is used and SIGHUP received. */
if (signal(SIGHUP, exithandler) == SIG_ERR)
rv = SIGHUP;
#endif
#if UNIX || CYGWIN
if (signal(SIGWINCH, resizehandler) == SIG_ERR)
rv = SIGWINCH;
#endif
#if 0 /* Crashes entire shell when readline is used. */
if (signal(SIGALRM, alarmhandler) == SIG_ERR)
rv = SIGALRM;
#endif
#if !MINGW
if (time_out_seconds > 0) {
alarm(time_out_seconds);
#if TIMEOUT_SECONDS
} else {
alarm(TIMEOUT_SECONDS);
#endif
}
#endif
return rv;
}
/*
* Floating point exception handler.
* Floating point exceptions are currently ignored.
*/
void
fphandler(int sig)
{
#if DEBUG
warning(mathomatic, "Floating point exception.");
#endif
}
/*
* Fancy Control-C (interrupt) signal handler.
* Interrupts processing and returns to main prompt through a polling mechanism.
* If it can't, repeated calls terminate this program.
*/
void
inthandler(int sig)
{
matho_inc_abort_flag(mathomatic);
switch (matho_get_abort_flag(mathomatic)) {
case 0:
case 1:
/* wait for graceful abort */
printf(_("\nUser interrupt signal received; three times in a row quits Mathomatic.\n"));
return;
case 2:
printf(_("\nPress Control-C once more to quit program.\n"));
return;
default:
/* abruptly quit this program */
printf(_("\nRepeatedly interrupted; returning to operating system...\n"));
exit_program(1);
}
}
#if 0
/*
* Alarm signal handler.
*/
void
alarmhandler(int sig)
{
printf(_("\nTimeout, quitting...\n"));
exit_program(mathomatic, 1);
}
#endif
/*
* Signal handler for proper exiting to the operating system.
*/
void
exithandler(int sig)
{
exit_program(1);
}
#if UNIX || CYGWIN
/*
* Window resize signal handler.
*/
void
resizehandler(int sig)
{
if (mathomatic->screen_columns)
get_screen_size(mathomatic);
}
#endif
/*
* Properly exit this program and return to the operating system.
*/
void
exit_program(int exit_value)
//int exit_value; /* zero if OK, non-zero indicates error return */
{
reset_attr(mathomatic);
if (mathomatic->html_flag) {
printf("</pre>\n");
}
#if READLINE && !SECURE
if (mathomatic->readline_enabled && mathomatic->security_level <= 3) {
write_history(mathomatic->history_filename); /* save readline history */
}
#endif
if (exit_value == 0 && !mathomatic->quiet_mode && !mathomatic->eoption && !mathomatic->html_flag) {
printf(_("ByeBye!! from Mathomatic.\n"));
}
#if VALGRIND
printf("Deallocating all Mathomatic allocated memory for valgrind memory leak checking...\n");
printf("If you are not using valgrind, please compile without -DVALGRIND.\n");
free_mem(); /* Free all known memory buffers to check for memory leaks with something like valgrind(1). */
#endif
closetMathoMatic(mathomatic);
exit(exit_value);
}
#endif