2017-04-18 02:40:39 +00:00
|
|
|
/*
|
2019-01-06 08:23:03 +00:00
|
|
|
* Copyright (c) 2019 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.
|
|
|
|
*/
|
|
|
|
|
2019-10-30 00:18:44 +00:00
|
|
|
#ifndef JANET_AMALG
|
2019-02-19 01:13:35 +00:00
|
|
|
#include <janet.h>
|
2018-03-14 03:39:49 +00:00
|
|
|
#include "line.h"
|
2019-10-30 00:18:44 +00:00
|
|
|
#endif
|
2018-01-30 04:38:49 +00:00
|
|
|
|
2019-05-27 02:31:30 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2019-07-28 01:44:44 +00:00
|
|
|
#include <shlwapi.h>
|
2019-05-27 02:31:30 +00:00
|
|
|
#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
|
|
|
|
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2019-05-27 02:31:30 +00:00
|
|
|
#ifdef _WIN32
|
2019-07-28 01:44:44 +00:00
|
|
|
/* Enable color console on windows 10 console and utf8 output. */
|
2019-05-27 02:31:30 +00:00
|
|
|
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
|
|
DWORD dwMode = 0;
|
|
|
|
GetConsoleMode(hOut, &dwMode);
|
|
|
|
dwMode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING;
|
|
|
|
SetConsoleMode(hOut, dwMode);
|
2019-05-31 19:30:23 +00:00
|
|
|
SetConsoleOutputCP(65001);
|
2019-05-27 02:31:30 +00:00
|
|
|
#endif
|
|
|
|
|
2017-07-02 02:34:31 +00:00
|
|
|
/* Set up VM */
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_init();
|
2019-03-08 16:39:18 +00:00
|
|
|
|
|
|
|
/* Replace original getline with new line getter */
|
|
|
|
JanetTable *replacements = janet_table(0);
|
|
|
|
janet_table_put(replacements, janet_csymbolv("getline"), janet_wrap_cfunction(janet_line_getter));
|
|
|
|
janet_line_init();
|
|
|
|
|
|
|
|
/* Get core env */
|
|
|
|
env = janet_core_env(replacements);
|
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);
|
2019-07-27 14:31:03 +00:00
|
|
|
for (i = 1; i < argc; i++)
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_push(args, janet_cstringv(argv[i]));
|
2018-02-07 05:44:51 +00:00
|
|
|
|
2019-07-27 14:31:03 +00:00
|
|
|
/* Save current executable path to (dyn :executable) */
|
|
|
|
janet_table_put(env, janet_ckeywordv("executable"), janet_cstringv(argv[0]));
|
2019-07-28 18:25:14 +00:00
|
|
|
|
2018-02-07 05:44:51 +00:00
|
|
|
/* Run startup script */
|
2019-10-29 23:16:32 +00:00
|
|
|
Janet mainfun, out;
|
|
|
|
janet_resolve(env, janet_csymbol("cli-main"), &mainfun);
|
|
|
|
Janet mainargs[1] = { janet_wrap_array(args) };
|
2019-10-29 23:47:54 +00:00
|
|
|
JanetFiber *fiber = janet_fiber(janet_unwrap_function(mainfun), 64, 1, mainargs);
|
|
|
|
fiber->env = env;
|
|
|
|
status = janet_continue(fiber, janet_wrap_nil(), &out);
|
2019-11-05 18:51:15 +00:00
|
|
|
if (status != JANET_SIGNAL_OK) {
|
|
|
|
janet_stacktrace(fiber, out);
|
|
|
|
}
|
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;
|
|
|
|
}
|