Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ***************************************************************************** |
| 3 | * |
| 4 | * Copyright 2018 Gavin D. Howard |
| 5 | * |
| 6 | * Permission to use, copy, modify, and/or distribute this software for any |
| 7 | * purpose with or without fee is hereby granted. |
| 8 | * |
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH |
| 10 | * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 11 | * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 12 | * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 13 | * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR |
| 14 | * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 15 | * PERFORMANCE OF THIS SOFTWARE. |
| 16 | * |
| 17 | * ***************************************************************************** |
| 18 | * |
| 19 | * Constant data for bc. |
| 20 | * |
| 21 | */ |
| 22 | |
Gavin Howard | 8f4b207 | 2018-08-02 22:41:29 -0600 | [diff] [blame] | 23 | #include <bc.h> |
Gavin Howard | 2949306 | 2018-03-20 19:57:37 -0600 | [diff] [blame] | 24 | #include <status.h> |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 25 | #include <lex.h> |
| 26 | #include <parse.h> |
| 27 | |
Gavin Howard | f6e3fb3 | 2018-08-09 13:48:59 -0600 | [diff] [blame] | 28 | const char bc_header[] = |
Gavin Howard | fb4d4d0 | 2018-07-05 18:36:21 -0600 | [diff] [blame] | 29 | "bc 1.0\n" |
Gavin Howard | 9d8285d | 2018-03-12 11:56:15 -0600 | [diff] [blame] | 30 | "bc copyright (c) 2018 Gavin D. Howard and contributors\n" |
Gavin Howard | a280bde | 2018-03-13 13:49:12 -0600 | [diff] [blame] | 31 | "Report bugs at: https://github.com/gavinhoward/bc\n\n" |
| 32 | "This is free software with ABSOLUTELY NO WARRANTY.\n\n"; |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 33 | |
Gavin Howard | 79ce08b | 2018-06-21 16:21:55 -0600 | [diff] [blame] | 34 | const char bc_err_fmt[] = "\n%s error: %s\n\n"; |
| 35 | |
| 36 | const char *bc_errs[] = { |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 37 | "bc", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 38 | "Lex", |
Gavin Howard | 9a65a4e | 2018-03-15 18:26:57 -0600 | [diff] [blame] | 39 | "Parse", |
| 40 | "Math", |
| 41 | "Runtime", |
| 42 | "POSIX", |
Gavin Howard | 9a65a4e | 2018-03-15 18:26:57 -0600 | [diff] [blame] | 43 | }; |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 44 | |
Gavin Howard | 79ce08b | 2018-06-21 16:21:55 -0600 | [diff] [blame] | 45 | const uint8_t bc_err_indices[] = { |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 46 | BC_ERR_IDX_BC, BC_ERR_IDX_BC, BC_ERR_IDX_BC, BC_ERR_IDX_BC, |
| 47 | BC_ERR_IDX_LEX, BC_ERR_IDX_LEX, BC_ERR_IDX_LEX, BC_ERR_IDX_LEX, |
| 48 | BC_ERR_IDX_PARSE, BC_ERR_IDX_PARSE, BC_ERR_IDX_PARSE, BC_ERR_IDX_PARSE, |
| 49 | BC_ERR_IDX_PARSE, BC_ERR_IDX_PARSE, BC_ERR_IDX_PARSE, |
| 50 | BC_ERR_IDX_MATH, BC_ERR_IDX_MATH, BC_ERR_IDX_MATH, BC_ERR_IDX_MATH, |
| 51 | BC_ERR_IDX_MATH, BC_ERR_IDX_MATH, |
| 52 | BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, |
| 53 | BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, |
| 54 | BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, |
Gavin Howard | a049214 | 2018-08-29 15:28:35 -0600 | [diff] [blame] | 55 | BC_ERR_IDX_EXEC, BC_ERR_IDX_EXEC, |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 56 | BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, |
| 57 | BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, |
| 58 | BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, BC_ERR_IDX_POSIX, |
Gavin Howard | a049214 | 2018-08-29 15:28:35 -0600 | [diff] [blame] | 59 | BC_ERR_IDX_VEC, BC_ERR_IDX_VEC, |
| 60 | BC_ERR_IDX_BC, BC_ERR_IDX_BC, BC_ERR_IDX_BC, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | const char *bc_err_descs[] = { |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 64 | NULL, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 65 | "memory allocation error", |
| 66 | "I/O error", |
Gavin Howard | ddaa4c1 | 2018-03-24 14:50:12 -0600 | [diff] [blame] | 67 | "file is not text", |
Gavin Howard | e77b83d | 2018-03-29 14:24:26 -0600 | [diff] [blame] | 68 | |
| 69 | "bad character", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 70 | "string end could not be found", |
| 71 | "comment end could not be found", |
| 72 | "end of file", |
| 73 | |
Gavin Howard | bdb2f92 | 2018-03-15 09:25:18 -0600 | [diff] [blame] | 74 | "bad token", |
| 75 | "bad expression", |
| 76 | "bad print statement", |
| 77 | "bad function definition", |
| 78 | "bad assignment: left must be scale, ibase, " |
| 79 | "obase, last, var, or array element", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 80 | "no auto variable found", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 81 | "function parameter or auto var has the same name as another", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 82 | |
| 83 | "negative number", |
| 84 | "non integer number", |
| 85 | "overflow", |
| 86 | "divide by zero", |
| 87 | "negative square root", |
Gavin Howard | bdb2f92 | 2018-03-15 09:25:18 -0600 | [diff] [blame] | 88 | "bad number string", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 89 | |
Gavin Howard | 27fdfb9 | 2018-03-21 07:56:59 -0600 | [diff] [blame] | 90 | "could not open file", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 91 | "mismatched parameters", |
| 92 | "undefined function", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 93 | "file is not executable", |
| 94 | "could not install signal handler", |
Gavin Howard | 293aec9 | 2018-03-13 12:29:18 -0600 | [diff] [blame] | 95 | "bad scale; must be [0, BC_SCALE_MAX]", |
| 96 | "bad ibase; must be [2, 16]", |
| 97 | "bad obase; must be [2, BC_BASE_MAX]", |
Gavin Howard | bdb2f92 | 2018-03-15 09:25:18 -0600 | [diff] [blame] | 98 | "string too long: must be [1, BC_STRING_MAX]", |
| 99 | "array too long; must be [1, BC_DIM_MAX]", |
| 100 | "bad read() expression", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 101 | "read() call inside of a read() call", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 102 | "variable is wrong type", |
Gavin Howard | a049214 | 2018-08-29 15:28:35 -0600 | [diff] [blame] | 103 | "signal caught", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 104 | |
Gavin Howard | bdb2f92 | 2018-03-15 09:25:18 -0600 | [diff] [blame] | 105 | "POSIX only allows one character names; the following is bad:", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 106 | "POSIX does not allow '#' script comments", |
| 107 | "POSIX does not allow the following keyword:", |
| 108 | "POSIX does not allow a period ('.') as a shortcut for the last result", |
| 109 | "POSIX requires parentheses around return expressions", |
Gavin Howard | bdb2f92 | 2018-03-15 09:25:18 -0600 | [diff] [blame] | 110 | "POSIX does not allow boolean operators; the following is bad:", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 111 | "POSIX does not allow comparison operators outside if or loops", |
Gavin Howard | 5aff504 | 2018-03-23 08:08:19 -0600 | [diff] [blame] | 112 | "POSIX requires exactly one comparison operator per condition", |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 113 | "POSIX does not allow an empty init expression in a for loop", |
| 114 | "POSIX does not allow an empty condition expression in a for loop", |
| 115 | "POSIX does not allow an empty update expression in a for loop", |
| 116 | "POSIX requires the left brace be on the same line as the function header", |
Gavin Howard | a049214 | 2018-08-29 15:28:35 -0600 | [diff] [blame] | 117 | |
| 118 | "index is out of bounds", |
| 119 | "item already exists", |
Gavin Howard | 5f0cf2c | 2018-08-31 20:22:34 -0600 | [diff] [blame] | 120 | #ifndef NDEBUG |
Gavin Howard | a049214 | 2018-08-29 15:28:35 -0600 | [diff] [blame] | 121 | "quit request not honored", |
| 122 | "limits request not honored", |
Gavin Howard | 5f0cf2c | 2018-08-31 20:22:34 -0600 | [diff] [blame] | 123 | #endif |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 124 | }; |
| 125 | |
Gavin Howard | 67598a7 | 2018-06-21 15:04:07 -0600 | [diff] [blame] | 126 | const char bc_sig_msg[34] = "\ninterrupt (type \"quit\" to exit)\n"; |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 127 | |
Gavin Howard | ff66e29 | 2018-03-28 12:47:58 -0600 | [diff] [blame] | 128 | const char bc_lang_func_main[7] = "(main)"; |
| 129 | const char bc_lang_func_read[7] = "(read)"; |
| 130 | |
Gavin Howard | e0eec66 | 2018-03-29 17:53:20 -0600 | [diff] [blame] | 131 | #ifndef NDEBUG |
Gavin Howard | ff66e29 | 2018-03-28 12:47:58 -0600 | [diff] [blame] | 132 | const char bc_lang_inst_chars[] = |
Gavin Howard | 375263e | 2018-09-04 15:10:18 -0600 | [diff] [blame] | 133 | "edED_^*/%+-=;?~<>!|&`{}@[],NVMACaI.LlrOqpQsSJjPR$H"; |
Gavin Howard | e0eec66 | 2018-03-29 17:53:20 -0600 | [diff] [blame] | 134 | #endif // NDEBUG |
Gavin Howard | 101b5e6 | 2018-03-26 07:46:27 -0600 | [diff] [blame] | 135 | |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 136 | const BcLexKeyword bc_lex_keywords[20] = { |
Gavin Howard | 665a993 | 2018-03-26 13:04:58 -0600 | [diff] [blame] | 137 | BC_LEX_KW_ENTRY("auto", 4, true), |
| 138 | BC_LEX_KW_ENTRY("break", 5, true), |
| 139 | BC_LEX_KW_ENTRY("continue", 8, false), |
| 140 | BC_LEX_KW_ENTRY("define", 6, true), |
| 141 | BC_LEX_KW_ENTRY("else", 4, false), |
| 142 | BC_LEX_KW_ENTRY("for", 3, true), |
| 143 | BC_LEX_KW_ENTRY("halt", 4, false), |
| 144 | BC_LEX_KW_ENTRY("ibase", 5, true), |
| 145 | BC_LEX_KW_ENTRY("if", 2, true), |
| 146 | BC_LEX_KW_ENTRY("last", 4, false), |
| 147 | BC_LEX_KW_ENTRY("length", 6, true), |
| 148 | BC_LEX_KW_ENTRY("limits", 6, false), |
| 149 | BC_LEX_KW_ENTRY("obase", 5, true), |
| 150 | BC_LEX_KW_ENTRY("print", 5, false), |
| 151 | BC_LEX_KW_ENTRY("quit", 4, true), |
| 152 | BC_LEX_KW_ENTRY("read", 4, false), |
| 153 | BC_LEX_KW_ENTRY("return", 6, true), |
| 154 | BC_LEX_KW_ENTRY("scale", 5, true), |
| 155 | BC_LEX_KW_ENTRY("sqrt", 4, true), |
| 156 | BC_LEX_KW_ENTRY("while", 5, true), |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | const char bc_num_hex_digits[] = "0123456789ABCDEF"; |
| 160 | |
| 161 | // This is an array that corresponds to token types. An entry is |
| 162 | // true if the token is valid in an expression, false otherwise. |
| 163 | const bool bc_parse_token_exprs[] = { |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 164 | true, true, true, true, true, true, true, true, true, true, true, true, true, |
Gavin Howard | 5cc6581 | 2018-06-21 15:08:45 -0600 | [diff] [blame] | 165 | true, true, true, true, true, true, true, true, true, true, true, true, false, |
| 166 | false, true, true, false, false, false, false, false, false, false, true, |
| 167 | true, false, false, false, false, false, false, false, true, false, true, |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 168 | true, true, true, false, false, true, false, true, true, false, false, false, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 169 | }; |
| 170 | |
| 171 | // This is an array of data for operators that correspond to token types. |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 172 | const BcOp bc_parse_ops[] = { |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 173 | { 0, false }, { 0, false }, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 174 | { 1, false }, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 175 | { 2, false }, |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 176 | { 3, true }, { 3, true }, { 3, true }, |
| 177 | { 4, true }, { 4, true }, |
| 178 | { 6, true }, { 6, true }, { 6, true }, { 6, true }, { 6, true }, { 6, true }, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 179 | { 7, false }, |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 180 | { 8, true }, { 8, true }, |
Gavin Howard | 39b6408 | 2018-09-02 00:10:18 -0600 | [diff] [blame] | 181 | { 5, false }, { 5, false }, { 5, false }, { 5, false }, { 5, false }, |
| 182 | { 5, false }, { 5, false }, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 183 | }; |
| 184 | |
Gavin Howard | ce8fb79 | 2018-09-04 15:08:36 -0600 | [diff] [blame] | 185 | const BcNumBinaryOp bc_program_ops[] = { |
Gavin Howard | 45ff357 | 2018-05-15 16:33:58 -0600 | [diff] [blame] | 186 | bc_num_pow, bc_num_mul, bc_num_div, bc_num_mod, bc_num_add, bc_num_sub, |
Gavin Howard | f456d37 | 2018-03-10 20:11:41 -0700 | [diff] [blame] | 187 | }; |
| 188 | |
Gavin Howard | ff66e29 | 2018-03-28 12:47:58 -0600 | [diff] [blame] | 189 | const char bc_program_stdin_name[] = "<stdin>"; |
Gavin Howard | 67598a7 | 2018-06-21 15:04:07 -0600 | [diff] [blame] | 190 | const char bc_program_ready_prompt[] = "ready for more input\n"; |