0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/deno2/main.cc

59 lines
1.3 KiB
C++
Raw Normal View History

// 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>
#include <string>
2018-06-14 08:03:02 -04:00
#ifdef _WIN32
#include <direct.h>
#else
#include <unistd.h>
#endif
#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;
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)));
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());
std::string output;
2018-06-13 18:55:40 -04:00
CHECK(response.SerializeToString(&output));
2018-06-13 19:40:35 -04:00
deno_buf bufout{output.c_str(), output.length()};
deno_set_response(d, bufout);
}
int main(int argc, char** argv) {
2018-06-10 08:18:15 -04:00
deno_init();
2018-06-13 19:40:35 -04:00
deno_set_flags(&argc, argv);
global_argv = argv;
global_argc = argc;
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));
exit(1);
}
2018-06-11 16:36:14 -04:00
deno_delete(d);
}