2013-04-12 01:46:58 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-09-05 01:22:24 +00:00
|
|
|
#include <stdlib.h>
|
2013-08-08 07:59:31 +00:00
|
|
|
#include <string.h>
|
2013-11-04 22:15:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
2013-08-08 07:59:31 +00:00
|
|
|
|
2013-07-01 14:21:31 +00:00
|
|
|
#include "content/public/app/content_main.h"
|
|
|
|
|
2013-08-08 07:59:31 +00:00
|
|
|
namespace node {
|
|
|
|
int Start(int argc, char *argv[]);
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:21:31 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
2013-08-16 08:38:09 +00:00
|
|
|
#include <windows.h> // NOLINT
|
2013-08-16 10:48:02 +00:00
|
|
|
#include <shellapi.h> // NOLINT
|
2013-08-08 07:59:31 +00:00
|
|
|
|
2013-07-01 14:21:31 +00:00
|
|
|
#include "app/atom_main_delegate.h"
|
2013-09-05 04:18:19 +00:00
|
|
|
#include "base/environment.h"
|
2013-07-01 14:21:31 +00:00
|
|
|
#include "content/public/app/startup_helper_win.h"
|
|
|
|
#include "sandbox/win/src/sandbox_types.h"
|
|
|
|
|
2013-11-04 22:15:19 +00:00
|
|
|
/*
|
|
|
|
* An alternate way to skin the same cat
|
|
|
|
|
|
|
|
void ConnectStdioToConsole()
|
|
|
|
{
|
|
|
|
int hCrt;
|
|
|
|
AllocConsole();
|
|
|
|
|
|
|
|
HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
|
|
hCrt = _open_osfhandle((long) handle_out, _O_TEXT);
|
|
|
|
FILE* hf_out = _fdopen(hCrt, "w");
|
|
|
|
setvbuf(hf_out, NULL, _IONBF, 1);
|
|
|
|
*stdout = *hf_out;
|
|
|
|
|
|
|
|
HANDLE handle_err = GetStdHandle(STD_ERROR_HANDLE);
|
|
|
|
hCrt = _open_osfhandle((long) handle_err, _O_TEXT);
|
|
|
|
FILE* hf_err = _fdopen(hCrt, "w");
|
|
|
|
setvbuf(hf_err, NULL, _IONBF, 1);
|
|
|
|
*stderr = *hf_err;
|
|
|
|
|
|
|
|
|
|
|
|
HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
hCrt = _open_osfhandle((long) handle_in, _O_TEXT);
|
|
|
|
FILE* hf_in = _fdopen(hCrt, "r");
|
|
|
|
setvbuf(hf_in, NULL, _IONBF, 128);
|
|
|
|
*stdin = *hf_in;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2013-08-16 10:48:02 +00:00
|
|
|
int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {
|
|
|
|
int argc = 0;
|
2013-08-31 07:42:41 +00:00
|
|
|
wchar_t** wargv = ::CommandLineToArgvW(::GetCommandLineW(), &argc);
|
2013-09-05 04:18:19 +00:00
|
|
|
|
2013-11-04 22:15:19 +00:00
|
|
|
// Attach to the parent console if we've got one so that stdio works
|
|
|
|
if (GetConsoleWindow()) {
|
|
|
|
AllocConsole() ;
|
|
|
|
AttachConsole(GetCurrentProcessId());
|
|
|
|
freopen("CON", "w", stdout);
|
|
|
|
freopen("CON", "w", stderr);
|
|
|
|
freopen("CON", "r", stdin);
|
|
|
|
}
|
|
|
|
|
2013-09-05 04:18:19 +00:00
|
|
|
scoped_ptr<base::Environment> env(base::Environment::Create());
|
|
|
|
std::string node_indicator;
|
|
|
|
if (env->GetVar("ATOM_SHELL_INTERNAL_RUN_AS_NODE", &node_indicator) &&
|
|
|
|
node_indicator == "1") {
|
2013-08-08 07:59:31 +00:00
|
|
|
// Convert argv to to UTF8
|
|
|
|
char** argv = new char*[argc];
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
// Compute the size of the required buffer
|
|
|
|
DWORD size = WideCharToMultiByte(CP_UTF8,
|
|
|
|
0,
|
2013-08-16 10:48:02 +00:00
|
|
|
wargv[i],
|
2013-08-08 07:59:31 +00:00
|
|
|
-1,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (size == 0) {
|
|
|
|
// This should never happen.
|
|
|
|
fprintf(stderr, "Could not convert arguments to utf8.");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
// Do the actual conversion
|
|
|
|
argv[i] = new char[size];
|
|
|
|
DWORD result = WideCharToMultiByte(CP_UTF8,
|
|
|
|
0,
|
2013-08-16 10:48:02 +00:00
|
|
|
wargv[i],
|
2013-08-08 07:59:31 +00:00
|
|
|
-1,
|
|
|
|
argv[i],
|
|
|
|
size,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (result == 0) {
|
|
|
|
// This should never happen.
|
|
|
|
fprintf(stderr, "Could not convert arguments to utf8.");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Now that conversion is done, we can finally start.
|
2013-09-05 01:49:22 +00:00
|
|
|
return node::Start(argc, argv);
|
2013-08-08 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 14:21:31 +00:00
|
|
|
sandbox::SandboxInterfaceInfo sandbox_info = {0};
|
|
|
|
content::InitializeSandboxInfo(&sandbox_info);
|
|
|
|
atom::AtomMainDelegate delegate;
|
|
|
|
return content::ContentMain(instance, &sandbox_info, &delegate);
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:59:31 +00:00
|
|
|
#else // defined(OS_WIN)
|
2013-07-01 14:21:31 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
#include "app/atom_library_main.h"
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2013-09-05 01:22:24 +00:00
|
|
|
char* node_indicator = getenv("ATOM_SHELL_INTERNAL_RUN_AS_NODE");
|
|
|
|
if (node_indicator != NULL && strcmp(node_indicator, "1") == 0)
|
|
|
|
return node::Start(argc, const_cast<char**>(argv));
|
2013-08-08 07:59:31 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
return AtomMain(argc, argv);
|
|
|
|
}
|
2013-07-01 14:21:31 +00:00
|
|
|
|
2013-08-08 07:59:31 +00:00
|
|
|
#endif
|