2018-06-09 18:32:04 -04:00
|
|
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
|
|
// All rights reserved. MIT License.
|
|
|
|
#include <stdio.h>
|
2018-06-12 11:38:47 -04:00
|
|
|
#include <stdlib.h>
|
2018-06-13 13:38:22 -04:00
|
|
|
#include <string>
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-14 08:03:02 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <direct.h>
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2018-06-13 13:38:22 -04:00
|
|
|
#include "./msg.pb.h"
|
2018-06-09 22:55:31 -04:00
|
|
|
#include "include/deno.h"
|
2018-06-13 19:40:35 -04:00
|
|
|
#include "v8/src/base/logging.h"
|
|
|
|
|
|
|
|
static char** global_argv;
|
|
|
|
static int global_argc;
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-13 13:38:22 -04:00
|
|
|
void MessagesFromJS(Deno* d, const char* channel, deno_buf buf) {
|
|
|
|
printf("MessagesFromJS %s\n", channel);
|
|
|
|
|
|
|
|
deno::Msg response;
|
|
|
|
response.set_command(deno::Msg_Command_START);
|
2018-06-13 19:40:35 -04:00
|
|
|
|
|
|
|
char cwdbuf[1024];
|
2018-06-14 08:03:02 -04:00
|
|
|
// TODO(piscisaureus): support unicode on windows.
|
2018-06-13 19:40:35 -04:00
|
|
|
std::string cwd(getcwd(cwdbuf, sizeof(cwdbuf)));
|
2018-06-13 13:38:22 -04:00
|
|
|
response.set_start_cwd(cwd);
|
|
|
|
|
2018-06-13 19:40:35 -04:00
|
|
|
for (int i = 0; i < global_argc; ++i) {
|
|
|
|
printf("arg %d %s\n", i, global_argv[i]);
|
|
|
|
response.add_start_argv(global_argv[i]);
|
|
|
|
}
|
|
|
|
printf("response.start_argv_size %d \n", response.start_argv_size());
|
|
|
|
|
2018-06-13 13:38:22 -04:00
|
|
|
std::string output;
|
2018-06-13 18:55:40 -04:00
|
|
|
CHECK(response.SerializeToString(&output));
|
2018-06-13 13:38:22 -04:00
|
|
|
|
2018-06-13 19:40:35 -04:00
|
|
|
deno_buf bufout{output.c_str(), output.length()};
|
2018-06-13 13:38:22 -04:00
|
|
|
deno_set_response(d, bufout);
|
|
|
|
}
|
|
|
|
|
2018-06-09 18:32:04 -04:00
|
|
|
int main(int argc, char** argv) {
|
2018-06-10 08:18:15 -04:00
|
|
|
deno_init();
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-13 19:40:35 -04:00
|
|
|
deno_set_flags(&argc, argv);
|
|
|
|
global_argv = argv;
|
|
|
|
global_argc = argc;
|
|
|
|
|
2018-06-13 13:38:22 -04:00
|
|
|
Deno* d = deno_new(NULL, MessagesFromJS);
|
2018-06-11 16:29:34 -04:00
|
|
|
bool r = deno_execute(d, "deno_main.js", "denoMain();");
|
|
|
|
if (!r) {
|
2018-06-10 08:18:15 -04:00
|
|
|
printf("Error! %s\n", deno_last_exception(d));
|
2018-06-09 18:32:04 -04:00
|
|
|
exit(1);
|
|
|
|
}
|
2018-06-11 16:36:14 -04:00
|
|
|
deno_delete(d);
|
2018-06-09 18:32:04 -04:00
|
|
|
}
|