1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-23 23:49:46 -05: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 17:38:47 +02:00
#include <stdlib.h>
#include <string>
2018-06-14 14:03:02 +02:00
#ifdef _WIN32
#include <direct.h>
#else
#include <unistd.h>
#endif
#include "./msg.pb.h"
2018-06-10 04:55:31 +02:00
#include "include/deno.h"
2018-06-14 01:40:35 +02: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-14 01:40:35 +02:00
char cwdbuf[1024];
2018-06-14 14:03:02 +02:00
// TODO(piscisaureus): support unicode on windows.
2018-06-14 01:40:35 +02:00
std::string cwd(getcwd(cwdbuf, sizeof(cwdbuf)));
response.set_start_cwd(cwd);
2018-06-14 01:40:35 +02: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-14 00:55:40 +02:00
CHECK(response.SerializeToString(&output));
2018-06-14 01:40:35 +02:00
deno_buf bufout{output.c_str(), output.length()};
deno_set_response(d, bufout);
}
int main(int argc, char** argv) {
2018-06-10 14:18:15 +02:00
deno_init();
2018-06-14 01:40:35 +02:00
deno_set_flags(&argc, argv);
global_argv = argv;
global_argc = argc;
Deno* d = deno_new(NULL, MessagesFromJS);
2018-06-11 22:29:34 +02:00
bool r = deno_execute(d, "deno_main.js", "denoMain();");
if (!r) {
2018-06-10 14:18:15 +02:00
printf("Error! %s\n", deno_last_exception(d));
exit(1);
}
2018-06-11 22:36:14 +02:00
deno_delete(d);
}