forked from cory/tildefriends
76 lines
1.5 KiB
C++
76 lines
1.5 KiB
C++
|
#include "Task.h"
|
||
|
#include "TaskStub.h"
|
||
|
#include "TaskTryCatch.h"
|
||
|
|
||
|
#include <cstring>
|
||
|
#include <libplatform/libplatform.h>
|
||
|
#include <uv.h>
|
||
|
#include <v8.h>
|
||
|
#include <v8-platform.h>
|
||
|
|
||
|
#if !defined (_WIN32) && !defined (__MACH__)
|
||
|
#include <signal.h>
|
||
|
#include <sys/prctl.h>
|
||
|
#include <unistd.h>
|
||
|
#endif
|
||
|
|
||
|
v8::Platform* gPlatform = 0;
|
||
|
|
||
|
|
||
|
int main(int argc, char* argv[]) {
|
||
|
uv_setup_args(argc, argv);
|
||
|
TaskStub::initialize();
|
||
|
v8::V8::InitializeICU();
|
||
|
gPlatform = v8::platform::CreateDefaultPlatform();
|
||
|
v8::V8::InitializePlatform(gPlatform);
|
||
|
v8::V8::Initialize();
|
||
|
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
|
||
|
|
||
|
bool isChild = false;
|
||
|
const char* coreTask = "core/core.js";
|
||
|
|
||
|
for (int i = 1; i < argc; ++i) {
|
||
|
if (!std::strcmp(argv[i], "--child")) {
|
||
|
isChild = true;
|
||
|
} else {
|
||
|
coreTask = argv[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#if !defined (_WIN32)
|
||
|
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
|
||
|
perror("signal");
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
if (isChild) {
|
||
|
#if !defined (_WIN32) && !defined (__MACH__)
|
||
|
prctl(PR_SET_PDEATHSIG, SIGHUP);
|
||
|
#endif
|
||
|
Task task;
|
||
|
task.configureFromStdin();
|
||
|
task.activate();
|
||
|
task.run();
|
||
|
} else {
|
||
|
#if !defined (_WIN32) && !defined (__MACH__)
|
||
|
setpgid(0, 0);
|
||
|
#endif
|
||
|
Task task;
|
||
|
task.setTrusted(true);
|
||
|
task.activate();
|
||
|
|
||
|
{
|
||
|
v8::Isolate::Scope isolateScope(task.getIsolate());
|
||
|
v8::HandleScope handleScope(task.getIsolate());
|
||
|
v8::Context::Scope contextScope(task.getContext());
|
||
|
TaskTryCatch tryCatch(&task);
|
||
|
task.execute(coreTask);
|
||
|
}
|
||
|
task.run();
|
||
|
}
|
||
|
|
||
|
v8::V8::Dispose();
|
||
|
|
||
|
return 0;
|
||
|
}
|