2017-04-18 02:40:39 +00:00
|
|
|
/*
|
2018-05-18 03:41:20 +00:00
|
|
|
* Copyright (c) 2018 Calvin Rose
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#include <janet/janet.h>
|
2018-03-14 03:39:49 +00:00
|
|
|
#include "line.h"
|
2018-01-30 04:38:49 +00:00
|
|
|
|
2018-12-06 19:30:11 +00:00
|
|
|
extern const unsigned char *janet_gen_init;
|
|
|
|
extern size_t janet_gen_init_size;
|
|
|
|
|
2017-12-30 21:46:59 +00:00
|
|
|
int main(int argc, char **argv) {
|
2018-02-07 05:44:51 +00:00
|
|
|
int i, status;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArray *args;
|
|
|
|
JanetTable *env;
|
2017-04-18 02:14:35 +00:00
|
|
|
|
2017-07-02 02:34:31 +00:00
|
|
|
/* Set up VM */
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_init();
|
|
|
|
env = janet_core_env();
|
2017-06-24 18:27:29 +00:00
|
|
|
|
2018-05-10 15:11:18 +00:00
|
|
|
/* Create args tuple */
|
2018-09-06 02:18:42 +00:00
|
|
|
args = janet_array(argc);
|
2018-07-04 04:17:34 +00:00
|
|
|
for (i = 0; i < argc; i++)
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_push(args, janet_cstringv(argv[i]));
|
2018-12-01 03:49:21 +00:00
|
|
|
janet_def(env, "process/args", janet_wrap_array(args), "Command line arguments.");
|
2018-02-07 05:44:51 +00:00
|
|
|
|
2018-03-14 03:39:49 +00:00
|
|
|
/* Expose line getter */
|
2018-11-15 20:45:41 +00:00
|
|
|
janet_def(env, "getline", janet_wrap_cfunction(janet_line_getter), NULL);
|
2018-10-21 05:35:07 +00:00
|
|
|
janet_register("getline", janet_line_getter);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_line_init();
|
2018-03-14 03:39:49 +00:00
|
|
|
|
2018-02-07 05:44:51 +00:00
|
|
|
/* Run startup script */
|
2018-12-06 19:30:11 +00:00
|
|
|
status = janet_dobytes(env, janet_gen_init, janet_gen_init_size, "init.janet", NULL);
|
2017-04-17 04:15:18 +00:00
|
|
|
|
2018-02-07 05:44:51 +00:00
|
|
|
/* Deinitialize vm */
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_deinit();
|
|
|
|
janet_line_deinit();
|
2017-04-17 04:15:18 +00:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|