blob: 98e2c620aabf5b5828536a6907b39ca96c26bc99 [file] [log] [blame]
Gavin Howard5715b042018-02-12 16:11:42 -07001/*
Gavin Howardb5904bf2018-02-20 13:28:18 -07002 * *****************************************************************************
Gavin Howard5715b042018-02-12 16:11:42 -07003 *
Zach van Rijn6d2cf3f2020-01-14 22:05:02 +00004 * Copyright (c) 2018-2020 Gavin D. Howard and contributors.
Gavin Howard5715b042018-02-12 16:11:42 -07005 *
Gavin Howard7345cb92019-04-08 14:13:43 -06006 * All rights reserved.
Gavin Howard5715b042018-02-12 16:11:42 -07007 *
Gavin Howard7345cb92019-04-08 14:13:43 -06008 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * * Redistributions of source code must retain the above copyright notice, this
12 * list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above copyright notice,
15 * this list of conditions and the following disclaimer in the documentation
16 * and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
Gavin Howard5715b042018-02-12 16:11:42 -070029 *
Gavin Howardb5904bf2018-02-20 13:28:18 -070030 * *****************************************************************************
Gavin Howard5715b042018-02-12 16:11:42 -070031 *
Gavin Howardd2a05252018-09-27 14:00:40 -060032 * Common code for the lexers.
Gavin Howard5715b042018-02-12 16:11:42 -070033 *
34 */
35
Gavin Howard27fdfb92018-03-21 07:56:59 -060036#include <assert.h>
Gavin Howard8a596d42018-01-15 15:46:01 -070037#include <ctype.h>
38#include <stdbool.h>
Gavin Howard8a596d42018-01-15 15:46:01 -070039#include <string.h>
40
Gavin Howard29493062018-03-20 19:57:37 -060041#include <status.h>
Gavin Howard3ba6c8d2018-02-15 12:23:35 -070042#include <lex.h>
Gavin Howardd5551672018-09-22 19:52:42 -060043#include <vm.h>
Gavin Howarda6527882019-02-19 20:23:17 -070044#include <bc.h>
Gavin Howard8a596d42018-01-15 15:46:01 -070045
Gavin Howard50c8c2d2018-12-27 11:58:34 -070046BcStatus bc_lex_invalidChar(BcLex *l, char c) {
47 l->t = BC_LEX_INVALID;
Gavin Howard03cd1122018-12-31 14:08:15 -070048 return bc_lex_verr(l, BC_ERROR_PARSE_CHAR, c);
Gavin Howard50c8c2d2018-12-27 11:58:34 -070049}
50
Gavin Howarded5c8312018-09-27 12:04:08 -060051void bc_lex_lineComment(BcLex *l) {
Gavin Howardad477312018-12-24 15:51:35 -070052 l->t = BC_LEX_WHITESPACE;
Gavin Howard5c14da62019-02-16 23:47:48 -070053 while (l->i < l->len && l->buf[l->i] != '\n') l->i += 1;
Gavin Howarded5c8312018-09-27 12:04:08 -060054}
55
Gavin Howard52446f22018-12-13 11:39:22 -070056BcStatus bc_lex_comment(BcLex *l) {
57
58 size_t i, nlines = 0;
59 const char *buf = l->buf;
60 bool end = false;
61 char c;
62
Gavin Howard5c14da62019-02-16 23:47:48 -070063 l->i += 1;
Gavin Howardad477312018-12-24 15:51:35 -070064 l->t = BC_LEX_WHITESPACE;
Gavin Howard52446f22018-12-13 11:39:22 -070065
Gavin Howard5c14da62019-02-16 23:47:48 -070066 for (i = l->i; !end; i += !end) {
Gavin Howard52446f22018-12-13 11:39:22 -070067
Gavin Howard1ab22d22019-01-03 13:32:17 -070068 for (; (c = buf[i]) && c != '*'; ++i) nlines += (c == '\n');
Gavin Howard52446f22018-12-13 11:39:22 -070069
Gavin Howardecafd4f2019-02-23 09:30:45 -070070 if (BC_ERR(!c || buf[i + 1] == '\0')) {
Gavin Howard52446f22018-12-13 11:39:22 -070071 l->i = i;
Gavin Howard03cd1122018-12-31 14:08:15 -070072 return bc_lex_err(l, BC_ERROR_PARSE_COMMENT);
Gavin Howard52446f22018-12-13 11:39:22 -070073 }
74
75 end = buf[i + 1] == '/';
76 }
77
78 l->i = i + 2;
79 l->line += nlines;
80
81 return BC_STATUS_SUCCESS;
82}
83
Gavin Howard364df3b2018-09-28 09:48:19 -060084void bc_lex_whitespace(BcLex *l) {
85 char c;
Gavin Howardad477312018-12-24 15:51:35 -070086 l->t = BC_LEX_WHITESPACE;
Gavin Howard53eba8b2018-10-31 15:14:37 -060087 for (c = l->buf[l->i]; c != '\n' && isspace(c); c = l->buf[++l->i]);
Gavin Howard364df3b2018-09-28 09:48:19 -060088}
89
Gavin Howard3ae1f8e2019-02-15 11:56:25 -070090void bc_lex_commonTokens(BcLex *l, char c) {
91 if (!c) l->t = BC_LEX_EOF;
92 else if (c == '\n') l->t = BC_LEX_NLINE;
93 else bc_lex_whitespace(l);
94}
95
Gavin Howard7ad5a662019-02-19 14:40:46 -070096static size_t bc_lex_num(BcLex *l, char start, bool int_only) {
Gavin Howard8a596d42018-01-15 15:46:01 -070097
Gavin Howard53eba8b2018-10-31 15:14:37 -060098 const char *buf = l->buf + l->i;
Gavin Howard8dd307e2019-01-08 23:05:19 -070099 size_t i;
Gavin Howard7ad5a662019-02-19 14:40:46 -0700100 char c;
Gavin Howard94f14102019-01-11 09:39:57 -0700101 bool last_pt, pt = (start == '.');
Gavin Howardf2a40492018-03-05 11:27:29 -0700102
Gavin Howard7ad5a662019-02-19 14:40:46 -0700103 for (i = 0; (c = buf[i]) && (BC_LEX_NUM_CHAR(c, pt, int_only) ||
Gavin Howard8dd307e2019-01-08 23:05:19 -0700104 (c == '\\' && buf[i + 1] == '\n')); ++i)
105 {
Gavin Howard25f60882019-01-11 09:20:51 -0700106 if (c == '\\') {
107
108 if (buf[i + 1] == '\n') {
109
110 i += 2;
111
112 // Make sure to eat whitespace at the beginning of the line.
Gavin Howard7ad5a662019-02-19 14:40:46 -0700113 while(isspace(buf[i]) && buf[i] != '\n') i += 1;
Gavin Howard25f60882019-01-11 09:20:51 -0700114
115 c = buf[i];
116
Gavin Howard7ad5a662019-02-19 14:40:46 -0700117 if (!BC_LEX_NUM_CHAR(c, pt, int_only)) break;
Gavin Howard25f60882019-01-11 09:20:51 -0700118 }
119 else break;
Gavin Howard63738202018-09-26 15:34:20 -0600120 }
Gavin Howard8dd307e2019-01-08 23:05:19 -0700121
Gavin Howard94f14102019-01-11 09:39:57 -0700122 last_pt = (c == '.');
Gavin Howard25f60882019-01-11 09:20:51 -0700123 if (pt && last_pt) break;
Gavin Howard94f14102019-01-11 09:39:57 -0700124 pt = pt || last_pt;
Gavin Howard07732ec2018-02-27 15:40:02 -0700125
Gavin Howardad477312018-12-24 15:51:35 -0700126 bc_vec_push(&l->str, &c);
Gavin Howard63738202018-09-26 15:34:20 -0600127 }
Gavin Howard07732ec2018-02-27 15:40:02 -0700128
Gavin Howard7ad5a662019-02-19 14:40:46 -0700129 return i;
130}
131
132BcStatus bc_lex_number(BcLex *l, char start) {
133
134 l->t = BC_LEX_NUMBER;
135
136 bc_vec_npop(&l->str, l->str.len);
137 bc_vec_push(&l->str, &start);
138
139 l->i += bc_lex_num(l, start, false);
Gavin Howarda6527882019-02-19 20:23:17 -0700140
Gavin Howard7ad5a662019-02-19 14:40:46 -0700141#if BC_ENABLE_EXTRA_MATH
142 {
143 char c = l->buf[l->i];
144
145 if (c == 'e') {
146
Gavin Howarda6527882019-02-19 20:23:17 -0700147#if BC_ENABLED
148 if (BC_IS_POSIX) {
Gavin Howard2425bf22019-04-08 17:05:45 -0600149 BcStatus s = bc_lex_err(l, BC_ERROR_POSIX_EXP_NUM);
Gavin Howardecafd4f2019-02-23 09:30:45 -0700150 if (BC_ERR(s)) return s;
Gavin Howarda6527882019-02-19 20:23:17 -0700151 }
152#endif // BC_ENABLED
153
Gavin Howard7ad5a662019-02-19 14:40:46 -0700154 bc_vec_push(&l->str, &c);
155 l->i += 1;
156 c = l->buf[l->i];
157
158 if (c == BC_LEX_NEG_CHAR) {
159 bc_vec_push(&l->str, &c);
160 l->i += 1;
161 c = l->buf[l->i];
162 }
163
Gavin Howardecafd4f2019-02-23 09:30:45 -0700164 if (BC_ERR(!BC_LEX_NUM_CHAR(c, false, true)))
Gavin Howard7ad5a662019-02-19 14:40:46 -0700165 return bc_lex_verr(l, BC_ERROR_PARSE_CHAR, c);
166
167 l->i += bc_lex_num(l, 0, true);
168 }
169 }
170#endif // BC_ENABLE_EXTRA_MATH
171
Gavin Howardad477312018-12-24 15:51:35 -0700172 bc_vec_pushByte(&l->str, '\0');
Gavin Howard7ad5a662019-02-19 14:40:46 -0700173
174 return BC_STATUS_SUCCESS;
Gavin Howard8a596d42018-01-15 15:46:01 -0700175}
176
Gavin Howard5c14da62019-02-16 23:47:48 -0700177void bc_lex_name(BcLex *l) {
Gavin Howard8412ba82018-10-04 13:03:24 -0600178
Gavin Howard88c25302018-10-17 13:32:23 -0600179 size_t i = 0;
Gavin Howard53eba8b2018-10-31 15:14:37 -0600180 const char *buf = l->buf + l->i - 1;
Gavin Howard88c25302018-10-17 13:32:23 -0600181 char c = buf[i];
Gavin Howard8412ba82018-10-04 13:03:24 -0600182
Gavin Howardad477312018-12-24 15:51:35 -0700183 l->t = BC_LEX_NAME;
Gavin Howard8412ba82018-10-04 13:03:24 -0600184
Gavin Howard9a4b6cd2018-10-23 15:13:30 -0600185 while ((c >= 'a' && c <= 'z') || isdigit(c) || c == '_') c = buf[++i];
Gavin Howard8412ba82018-10-04 13:03:24 -0600186
Gavin Howardad477312018-12-24 15:51:35 -0700187 bc_vec_string(&l->str, i, buf);
Gavin Howard8412ba82018-10-04 13:03:24 -0600188
189 // Increment the index. We minus 1 because it has already been incremented.
Gavin Howard53eba8b2018-10-31 15:14:37 -0600190 l->i += i - 1;
Gavin Howard8412ba82018-10-04 13:03:24 -0600191}
192
Gavin Howard48354e82019-01-02 18:15:56 -0700193void bc_lex_init(BcLex *l) {
Gavin Howardfe9a3022019-06-21 20:40:45 -0600194 assert(l != NULL);
Gavin Howardad477312018-12-24 15:51:35 -0700195 bc_vec_init(&l->str, sizeof(char), NULL);
Gavin Howard69185042018-09-10 15:46:20 -0600196}
197
Gavin Howard63738202018-09-26 15:34:20 -0600198void bc_lex_free(BcLex *l) {
Gavin Howardfe9a3022019-06-21 20:40:45 -0600199 assert(l != NULL);
Gavin Howardad477312018-12-24 15:51:35 -0700200 bc_vec_free(&l->str);
Gavin Howard69185042018-09-10 15:46:20 -0600201}
202
Gavin Howard63738202018-09-26 15:34:20 -0600203void bc_lex_file(BcLex *l, const char *file) {
Gavin Howardfe9a3022019-06-21 20:40:45 -0600204 assert(l != NULL && file != NULL);
Gavin Howard63738202018-09-26 15:34:20 -0600205 l->line = 1;
Gavin Howard7536dcf2018-12-15 19:27:09 -0700206 vm->file = file;
Gavin Howard8a596d42018-01-15 15:46:01 -0700207}
208
Gavin Howard364df3b2018-09-28 09:48:19 -0600209BcStatus bc_lex_next(BcLex *l) {
210
211 BcStatus s;
212
Gavin Howardfe9a3022019-06-21 20:40:45 -0600213 assert(l != NULL);
Gavin Howard364df3b2018-09-28 09:48:19 -0600214
Gavin Howardad477312018-12-24 15:51:35 -0700215 l->last = l->t;
Gavin Howard56158792019-01-14 12:03:14 -0700216 l->line += (l->i != 0 && l->buf[l->i - 1] == '\n');
Gavin Howard7536dcf2018-12-15 19:27:09 -0700217
Gavin Howard2d188a52019-02-25 14:19:08 -0700218 if (BC_ERR(l->last == BC_LEX_EOF)) return bc_lex_err(l, BC_ERROR_PARSE_EOF);
Gavin Howard364df3b2018-09-28 09:48:19 -0600219
Gavin Howardad477312018-12-24 15:51:35 -0700220 l->t = BC_LEX_EOF;
Gavin Howardc39fd492018-10-04 10:07:03 -0600221
Gavin Howardf9b86ee2018-12-28 13:18:27 -0700222 if (l->i == l->len) return BC_STATUS_SUCCESS;
Gavin Howard364df3b2018-09-28 09:48:19 -0600223
Gavin Howard364df3b2018-09-28 09:48:19 -0600224 // Loop until failure or we don't have whitespace. This
225 // is so the parser doesn't get inundated with whitespace.
Gavin Howard53eba8b2018-10-31 15:14:37 -0600226 do {
Gavin Howard48354e82019-01-02 18:15:56 -0700227 s = vm->next(l);
Gavin Howarde5f11c72019-02-23 09:42:51 -0700228 } while (BC_NO_ERR(!s) && l->t == BC_LEX_WHITESPACE);
Gavin Howard364df3b2018-09-28 09:48:19 -0600229
230 return s;
Gavin Howard35753922018-03-21 19:22:08 -0600231}
Gavin Howardc9a9c472018-10-02 17:23:01 -0600232
233BcStatus bc_lex_text(BcLex *l, const char *text) {
Gavin Howardfe9a3022019-06-21 20:40:45 -0600234 assert(l != NULL && text != NULL);
Gavin Howard890d0c02018-10-30 16:34:50 -0600235 l->buf = text;
Gavin Howard53eba8b2018-10-31 15:14:37 -0600236 l->i = 0;
Gavin Howardc9a9c472018-10-02 17:23:01 -0600237 l->len = strlen(text);
Gavin Howardad477312018-12-24 15:51:35 -0700238 l->t = l->last = BC_LEX_INVALID;
Gavin Howardc9a9c472018-10-02 17:23:01 -0600239 return bc_lex_next(l);
240}