[09ababb7] | 1 | /*
|
---|
| 2 | * Copyright (c) 2010 Jiri Svoboda
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @file Input module
|
---|
| 30 | *
|
---|
[1ebc1a62] | 31 | * Reads source code. Currently input can be read from a file (standard
|
---|
| 32 | * case), from a string literal (when parsing builtin code) or interactively
|
---|
| 33 | * from the user.
|
---|
[09ababb7] | 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <stdio.h>
|
---|
| 37 | #include <stdlib.h>
|
---|
| 38 | #include "mytypes.h"
|
---|
[1ebc1a62] | 39 | #include "os/os.h"
|
---|
[09ababb7] | 40 | #include "strtab.h"
|
---|
| 41 |
|
---|
| 42 | #include "input.h"
|
---|
| 43 |
|
---|
[1ebc1a62] | 44 | /** Size of input buffer. XXX This limits the maximum line length. */
|
---|
[09ababb7] | 45 | #define INPUT_BUFFER_SIZE 256
|
---|
| 46 |
|
---|
[074444f] | 47 | static int input_init_file(input_t *input, const char *fname);
|
---|
[37f527b] | 48 | static void input_init_interactive(input_t *input);
|
---|
| 49 | static void input_init_string(input_t *input, const char *str);
|
---|
[09ababb7] | 50 |
|
---|
[1ebc1a62] | 51 | /** Create new input object for reading from file.
|
---|
| 52 | *
|
---|
| 53 | * @param input Place to store pointer to new input object.
|
---|
| 54 | * @param fname Name of file to read from.
|
---|
| 55 | *
|
---|
| 56 | * @return EOK on success, ENOMEM when allocation fails,
|
---|
| 57 | * ENOENT when opening file fails.
|
---|
| 58 | */
|
---|
[074444f] | 59 | int input_new_file(input_t **input, const char *fname)
|
---|
[09ababb7] | 60 | {
|
---|
| 61 | *input = malloc(sizeof(input_t));
|
---|
| 62 | if (*input == NULL)
|
---|
| 63 | return ENOMEM;
|
---|
| 64 |
|
---|
[37f527b] | 65 | return input_init_file(*input, fname);
|
---|
[09ababb7] | 66 | }
|
---|
| 67 |
|
---|
[1ebc1a62] | 68 | /** Create new input object for reading from interactive input.
|
---|
| 69 | *
|
---|
| 70 | * @param input Place to store pointer to new input object.
|
---|
| 71 | * @return EOK on success, ENOMEM when allocation fails.
|
---|
| 72 | */
|
---|
[37f527b] | 73 | int input_new_interactive(input_t **input)
|
---|
| 74 | {
|
---|
| 75 | *input = malloc(sizeof(input_t));
|
---|
| 76 | if (*input == NULL)
|
---|
| 77 | return ENOMEM;
|
---|
| 78 |
|
---|
| 79 | input_init_interactive(*input);
|
---|
| 80 | return EOK;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[1ebc1a62] | 83 | /** Create new input object for reading from string.
|
---|
| 84 | *
|
---|
| 85 | * @param input Place to store pointer to new input object.
|
---|
| 86 | * @param str String literal from which to read input.
|
---|
| 87 | * @return EOK on success, ENOMEM when allocation fails.
|
---|
| 88 | */
|
---|
[37f527b] | 89 | int input_new_string(input_t **input, const char *str)
|
---|
| 90 | {
|
---|
| 91 | *input = malloc(sizeof(input_t));
|
---|
| 92 | if (*input == NULL)
|
---|
| 93 | return ENOMEM;
|
---|
| 94 |
|
---|
| 95 | input_init_string(*input, str);
|
---|
| 96 | return EOK;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
[1ebc1a62] | 99 | /** Initialize input object for reading from file.
|
---|
| 100 | *
|
---|
| 101 | * @param input Input object.
|
---|
| 102 | * @param fname Name of file to read from.
|
---|
| 103 | *
|
---|
| 104 | * @return EOK on success, ENOENT when opening file fails.
|
---|
| 105 | */
|
---|
[074444f] | 106 | static int input_init_file(input_t *input, const char *fname)
|
---|
[09ababb7] | 107 | {
|
---|
| 108 | FILE *f;
|
---|
| 109 |
|
---|
| 110 | f = fopen(fname, "rt");
|
---|
| 111 | if (f == NULL)
|
---|
| 112 | return ENOENT;
|
---|
| 113 |
|
---|
| 114 | input->buffer = malloc(INPUT_BUFFER_SIZE);
|
---|
[fa36f29] | 115 | if (input->buffer == NULL) {
|
---|
| 116 | printf("Memory allocation failed.\n");
|
---|
| 117 | exit(1);
|
---|
| 118 | }
|
---|
[09ababb7] | 119 |
|
---|
[051bc69a] | 120 | input->name = os_str_dup(fname);
|
---|
[1ebc1a62] | 121 | input->str = NULL;
|
---|
[09ababb7] | 122 | input->line_no = 0;
|
---|
| 123 | input->fin = f;
|
---|
| 124 | return EOK;
|
---|
| 125 | }
|
---|
| 126 |
|
---|
[1ebc1a62] | 127 | /** Initialize input object for reading from interactive input.
|
---|
| 128 | *
|
---|
| 129 | * @param input Input object.
|
---|
| 130 | */
|
---|
[37f527b] | 131 | static void input_init_interactive(input_t *input)
|
---|
| 132 | {
|
---|
| 133 | input->buffer = malloc(INPUT_BUFFER_SIZE);
|
---|
| 134 | if (input->buffer == NULL) {
|
---|
| 135 | printf("Memory allocation failed.\n");
|
---|
| 136 | exit(1);
|
---|
| 137 | }
|
---|
| 138 |
|
---|
[051bc69a] | 139 | input->name = "<user-input>";
|
---|
[1ebc1a62] | 140 | input->str = NULL;
|
---|
[37f527b] | 141 | input->line_no = 0;
|
---|
| 142 | input->fin = NULL;
|
---|
| 143 | }
|
---|
| 144 |
|
---|
[1ebc1a62] | 145 | /** Initialize input object for reading from string.
|
---|
| 146 | *
|
---|
| 147 | * @param input Input object.
|
---|
| 148 | * @param str String literal from which to read input.
|
---|
| 149 | */
|
---|
[37f527b] | 150 | static void input_init_string(input_t *input, const char *str)
|
---|
| 151 | {
|
---|
| 152 | input->buffer = malloc(INPUT_BUFFER_SIZE);
|
---|
| 153 | if (input->buffer == NULL) {
|
---|
| 154 | printf("Memory allocation failed.\n");
|
---|
| 155 | exit(1);
|
---|
| 156 | }
|
---|
| 157 |
|
---|
[051bc69a] | 158 | input->name = "<builtin>";
|
---|
[37f527b] | 159 | input->str = str;
|
---|
| 160 | input->line_no = 0;
|
---|
| 161 | input->fin = NULL;
|
---|
| 162 | }
|
---|
| 163 |
|
---|
[1ebc1a62] | 164 | /** Get next line of input.
|
---|
| 165 | *
|
---|
| 166 | * The pointer stored in @a line is owned by @a input and is valid until the
|
---|
| 167 | * next call to input_get_line(). The caller is not to free it. The returned
|
---|
| 168 | * line is terminated with '\n' if another line is coming (potentially empty).
|
---|
| 169 | * An empty line ("") signals end of input.
|
---|
| 170 | *
|
---|
| 171 | * @param input Input object.
|
---|
| 172 | * @param line Place to store pointer to next line.
|
---|
| 173 | *
|
---|
| 174 | * @return EOK on success, EIO on failure.
|
---|
| 175 | */
|
---|
[09ababb7] | 176 | int input_get_line(input_t *input, char **line)
|
---|
| 177 | {
|
---|
[37f527b] | 178 | const char *sp;
|
---|
| 179 | char *dp;
|
---|
[1ebc1a62] | 180 | char *line_p;
|
---|
[37f527b] | 181 | size_t cnt;
|
---|
| 182 |
|
---|
| 183 | if (input->fin != NULL) {
|
---|
| 184 | /* Reading from file. */
|
---|
| 185 | if (fgets(input->buffer, INPUT_BUFFER_SIZE, input->fin) == NULL)
|
---|
| 186 | input->buffer[0] = '\0';
|
---|
| 187 |
|
---|
| 188 | if (ferror(input->fin))
|
---|
| 189 | return EIO;
|
---|
| 190 |
|
---|
| 191 | *line = input->buffer;
|
---|
| 192 | } else if (input->str != NULL) {
|
---|
| 193 | /* Reading from a string constant. */
|
---|
| 194 |
|
---|
| 195 | /* Copy one line. */
|
---|
| 196 | sp = input->str;
|
---|
| 197 | dp = input->buffer;
|
---|
| 198 | cnt = 0;
|
---|
| 199 | while (*sp != '\n' && *sp != '\0' &&
|
---|
| 200 | cnt < INPUT_BUFFER_SIZE - 2) {
|
---|
| 201 | *dp++ = *sp++;
|
---|
| 202 | }
|
---|
[09ababb7] | 203 |
|
---|
[37f527b] | 204 | /* Advance to start of next line. */
|
---|
| 205 | if (*sp == '\n')
|
---|
| 206 | *dp++ = *sp++;
|
---|
| 207 |
|
---|
[c5cb943d] | 208 | *dp = '\0';
|
---|
[37f527b] | 209 | input->str = sp;
|
---|
| 210 | *line = input->buffer;
|
---|
| 211 | } else {
|
---|
| 212 | /* Interactive mode */
|
---|
| 213 | if (input->line_no == 0)
|
---|
| 214 | printf("sbi> ");
|
---|
| 215 | else
|
---|
| 216 | printf("... ");
|
---|
| 217 |
|
---|
[1ebc1a62] | 218 | fflush(stdout);
|
---|
| 219 | if (os_input_line(&line_p) != EOK)
|
---|
[37f527b] | 220 | return EIO;
|
---|
| 221 |
|
---|
[1ebc1a62] | 222 | *line = line_p;
|
---|
[37f527b] | 223 | }
|
---|
[09ababb7] | 224 |
|
---|
| 225 | ++input->line_no;
|
---|
| 226 | return EOK;
|
---|
| 227 | }
|
---|
| 228 |
|
---|
[1ebc1a62] | 229 | /** Get number of the last provided line of input.
|
---|
| 230 | *
|
---|
[051bc69a] | 231 | * @param input Input object.
|
---|
[1ebc1a62] | 232 | * @return Line number of the last provided input line (counting
|
---|
| 233 | * from 1 up).
|
---|
| 234 | */
|
---|
[09ababb7] | 235 | int input_get_line_no(input_t *input)
|
---|
| 236 | {
|
---|
| 237 | return input->line_no;
|
---|
| 238 | }
|
---|