2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/app/atom_main.h"
|
2015-03-17 12:55:53 +00:00
|
|
|
#include "atom/app/atom_main_args.h"
|
2013-11-05 05:12:13 +00:00
|
|
|
|
2013-09-05 01:22:24 +00:00
|
|
|
#include <stdlib.h>
|
2013-08-08 07:59:31 +00:00
|
|
|
#include <string.h>
|
2013-11-05 02:00:11 +00:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
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-11-05 02:00:11 +00:00
|
|
|
#include <windows.h>
|
2015-01-23 00:09:03 +00:00
|
|
|
#include <shellscalingapi.h>
|
|
|
|
#include <tchar.h>
|
2013-11-05 02:00:11 +00:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/app/atom_main_delegate.h"
|
|
|
|
#include "atom/common/crash_reporter/win/crash_service_main.h"
|
2014-07-11 12:58:00 +00:00
|
|
|
#include "base/environment.h"
|
2015-01-23 00:09:03 +00:00
|
|
|
#include "base/win/windows_version.h"
|
2013-11-05 02:00:11 +00:00
|
|
|
#include "content/public/app/startup_helper_win.h"
|
|
|
|
#include "sandbox/win/src/sandbox_types.h"
|
2014-07-11 12:58:00 +00:00
|
|
|
#include "ui/gfx/win/dpi.h"
|
2013-12-31 11:51:17 +00:00
|
|
|
#elif defined(OS_LINUX) // defined(OS_WIN)
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/app/atom_main_delegate.h" // NOLINT
|
2013-12-31 11:51:17 +00:00
|
|
|
#include "content/public/app/content_main.h"
|
|
|
|
#else // defined(OS_LINUX)
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/app/atom_library_main.h"
|
2013-12-31 11:51:17 +00:00
|
|
|
#endif // defined(OS_MACOSX)
|
2013-11-05 02:00:11 +00:00
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
#include "atom/app/node_main.h"
|
2015-01-17 00:12:12 +00:00
|
|
|
#include "base/i18n/icu_util.h"
|
|
|
|
|
2013-07-01 14:21:31 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
2015-01-23 00:09:03 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Win8.1 supports monitor-specific DPI scaling.
|
|
|
|
bool SetProcessDpiAwarenessWrapper(PROCESS_DPI_AWARENESS value) {
|
|
|
|
typedef HRESULT(WINAPI *SetProcessDpiAwarenessPtr)(PROCESS_DPI_AWARENESS);
|
|
|
|
SetProcessDpiAwarenessPtr set_process_dpi_awareness_func =
|
|
|
|
reinterpret_cast<SetProcessDpiAwarenessPtr>(
|
|
|
|
GetProcAddress(GetModuleHandleA("user32.dll"),
|
|
|
|
"SetProcessDpiAwarenessInternal"));
|
|
|
|
if (set_process_dpi_awareness_func) {
|
|
|
|
HRESULT hr = set_process_dpi_awareness_func(value);
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
VLOG(1) << "SetProcessDpiAwareness succeeded.";
|
|
|
|
return true;
|
|
|
|
} else if (hr == E_ACCESSDENIED) {
|
|
|
|
LOG(ERROR) << "Access denied error from SetProcessDpiAwareness. "
|
|
|
|
"Function called twice, or manifest was used.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function works for Windows Vista through Win8. Win8.1 must use
|
|
|
|
// SetProcessDpiAwareness[Wrapper].
|
|
|
|
BOOL SetProcessDPIAwareWrapper() {
|
|
|
|
typedef BOOL(WINAPI *SetProcessDPIAwarePtr)(VOID);
|
|
|
|
SetProcessDPIAwarePtr set_process_dpi_aware_func =
|
|
|
|
reinterpret_cast<SetProcessDPIAwarePtr>(
|
|
|
|
GetProcAddress(GetModuleHandleA("user32.dll"),
|
|
|
|
"SetProcessDPIAware"));
|
|
|
|
return set_process_dpi_aware_func &&
|
|
|
|
set_process_dpi_aware_func();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnableHighDPISupport() {
|
|
|
|
if (!SetProcessDpiAwarenessWrapper(PROCESS_SYSTEM_DPI_AWARE)) {
|
|
|
|
SetProcessDPIAwareWrapper();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
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-19 12:56:22 +00:00
|
|
|
scoped_ptr<base::Environment> env(base::Environment::Create());
|
2013-11-05 00:56:50 +00:00
|
|
|
|
2013-11-19 12:56:22 +00:00
|
|
|
// Make output work in console if we are not in cygiwn.
|
|
|
|
std::string os;
|
|
|
|
if (env->GetVar("OS", &os) && os != "cygwin") {
|
|
|
|
AttachConsole(ATTACH_PARENT_PROCESS);
|
|
|
|
|
|
|
|
FILE* dontcare;
|
|
|
|
freopen_s(&dontcare, "CON", "w", stdout);
|
|
|
|
freopen_s(&dontcare, "CON", "w", stderr);
|
|
|
|
freopen_s(&dontcare, "CON", "r", stdin);
|
|
|
|
}
|
2013-11-04 22:15:19 +00:00
|
|
|
|
2015-03-17 12:55:53 +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,
|
|
|
|
wargv[i],
|
|
|
|
-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,
|
2013-08-08 07:59:31 +00:00
|
|
|
0,
|
2013-08-16 10:48:02 +00:00
|
|
|
wargv[i],
|
2013-08-08 07:59:31 +00:00
|
|
|
-1,
|
2015-03-17 12:55:53 +00:00
|
|
|
argv[i],
|
|
|
|
size,
|
2013-08-08 07:59:31 +00:00
|
|
|
NULL,
|
|
|
|
NULL);
|
2015-03-17 12:55:53 +00:00
|
|
|
if (result == 0) {
|
|
|
|
// This should never happen.
|
|
|
|
fprintf(stderr, "Could not convert arguments to utf8.");
|
|
|
|
exit(1);
|
2013-08-08 07:59:31 +00:00
|
|
|
}
|
2015-03-17 12:55:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string node_indicator, crash_service_indicator;
|
|
|
|
if (env->GetVar("ATOM_SHELL_INTERNAL_RUN_AS_NODE", &node_indicator) &&
|
|
|
|
node_indicator == "1") {
|
|
|
|
// Now that argv conversion is done, we can finally start.
|
2015-01-17 00:12:12 +00:00
|
|
|
base::i18n::InitializeICU();
|
2015-03-13 00:03:16 +00:00
|
|
|
return atom::NodeMain(argc, argv);
|
2013-11-24 09:35:58 +00:00
|
|
|
} else if (env->GetVar("ATOM_SHELL_INTERNAL_CRASH_SERVICE",
|
|
|
|
&crash_service_indicator) &&
|
|
|
|
crash_service_indicator == "1") {
|
|
|
|
return crash_service::Main(cmd);
|
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;
|
2014-06-30 03:44:05 +00:00
|
|
|
|
2015-01-23 00:09:03 +00:00
|
|
|
// We don't want to set DPI awareness on pre-Win7 because we don't support
|
|
|
|
// DirectWrite there. GDI fonts are kerned very badly, so better to leave
|
|
|
|
// DPI-unaware and at effective 1.0. See also ShouldUseDirectWrite().
|
|
|
|
if (base::win::GetVersion() >= base::win::VERSION_WIN7)
|
|
|
|
EnableHighDPISupport();
|
2014-07-11 12:58:00 +00:00
|
|
|
|
2014-06-30 03:44:05 +00:00
|
|
|
content::ContentMainParams params(&delegate);
|
|
|
|
params.instance = instance;
|
|
|
|
params.sandbox_info = &sandbox_info;
|
2015-03-29 11:53:47 +00:00
|
|
|
atom::AtomCommandLine::Init(argc, argv);
|
2014-06-30 03:44:05 +00:00
|
|
|
return content::ContentMain(params);
|
2013-07-01 14:21:31 +00:00
|
|
|
}
|
|
|
|
|
2013-12-31 11:51:17 +00:00
|
|
|
#elif defined(OS_LINUX) // defined(OS_WIN)
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
|
|
char* node_indicator = getenv("ATOM_SHELL_INTERNAL_RUN_AS_NODE");
|
2015-01-17 00:12:12 +00:00
|
|
|
if (node_indicator != NULL && strcmp(node_indicator, "1") == 0) {
|
|
|
|
base::i18n::InitializeICU();
|
2015-03-13 00:03:16 +00:00
|
|
|
return atom::NodeMain(argc, const_cast<char**>(argv));
|
2015-01-17 00:12:12 +00:00
|
|
|
}
|
2013-12-31 11:51:17 +00:00
|
|
|
|
|
|
|
atom::AtomMainDelegate delegate;
|
2014-06-30 03:44:05 +00:00
|
|
|
content::ContentMainParams params(&delegate);
|
|
|
|
params.argc = argc;
|
|
|
|
params.argv = argv;
|
2015-03-17 12:55:53 +00:00
|
|
|
atom::AtomCommandLine::Init(argc, argv);
|
2014-06-30 03:44:05 +00:00
|
|
|
return content::ContentMain(params);
|
2013-12-31 11:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else // defined(OS_LINUX)
|
2013-07-01 14:21:31 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
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");
|
2015-01-16 23:54:38 +00:00
|
|
|
if (node_indicator != NULL && strcmp(node_indicator, "1") == 0) {
|
2015-03-13 00:03:16 +00:00
|
|
|
return AtomInitializeICUandStartNode(argc, const_cast<char**>(argv));
|
2015-01-16 23:54:38 +00:00
|
|
|
}
|
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-12-31 11:51:17 +00:00
|
|
|
#endif // defined(OS_MACOSX)
|