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 <unistd.h>
|
|
|
|
#include <string>
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-13 18:55:40 -04:00
|
|
|
#include "v8/src/base/logging.h"
|
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-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);
|
|
|
|
|
|
|
|
char cwdbuf[1024];
|
|
|
|
std::string cwd(getcwd(cwdbuf, sizeof(cwdbuf)));
|
|
|
|
|
|
|
|
deno::Msg response;
|
|
|
|
response.set_command(deno::Msg_Command_START);
|
|
|
|
response.set_start_cwd(cwd);
|
|
|
|
|
|
|
|
std::string output;
|
2018-06-13 18:55:40 -04:00
|
|
|
CHECK(response.SerializeToString(&output));
|
2018-06-13 13:38:22 -04:00
|
|
|
|
|
|
|
auto bufout = deno_buf{output.c_str(), output.length()};
|
|
|
|
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 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
|
|
|
}
|