summaryrefslogtreecommitdiff
path: root/libcef/common/util_mac.mm
diff options
context:
space:
mode:
Diffstat (limited to 'libcef/common/util_mac.mm')
-rw-r--r--libcef/common/util_mac.mm161
1 files changed, 161 insertions, 0 deletions
diff --git a/libcef/common/util_mac.mm b/libcef/common/util_mac.mm
new file mode 100644
index 00000000..762f6355
--- /dev/null
+++ b/libcef/common/util_mac.mm
@@ -0,0 +1,161 @@
+// Copyright 2017 The Chromium Embedded Framework Authors. Portions copyright
+// 2011 The Chromium Authors. All rights reserved. Use of this source code is
+// governed by a BSD-style license that can be found in the LICENSE file.
+
+#include "libcef/common/util_mac.h"
+
+#include "libcef/common/cef_switches.h"
+
+#include "base/base_paths.h"
+#include "base/command_line.h"
+#include "base/logging.h"
+#include "base/mac/bundle_locations.h"
+#include "base/mac/foundation_util.h"
+#include "base/path_service.h"
+#include "base/strings/sys_string_conversions.h"
+#include "content/public/common/content_paths.h"
+#include "content/public/common/content_switches.h"
+
+namespace util_mac {
+
+namespace {
+
+// Returns the path to the Frameworks directory inside the top-level app bundle.
+base::FilePath GetFrameworksPath() {
+ base::FilePath bundle_path = GetMainBundlePath();
+ if (bundle_path.empty()) {
+ return base::FilePath();
+ }
+
+ return bundle_path.Append(FILE_PATH_LITERAL("Contents"))
+ .Append(FILE_PATH_LITERAL("Frameworks"));
+}
+
+void OverrideFrameworkBundlePath() {
+ base::FilePath framework_path = GetFrameworkDirectory();
+ DCHECK(!framework_path.empty());
+
+ base::mac::SetOverrideFrameworkBundlePath(framework_path);
+}
+
+void OverrideOuterBundlePath() {
+ base::FilePath bundle_path = GetMainBundlePath();
+ DCHECK(!bundle_path.empty());
+
+ base::mac::SetOverrideOuterBundlePath(bundle_path);
+}
+
+void OverrideBaseBundleID() {
+ std::string bundle_id = GetMainBundleID();
+ DCHECK(!bundle_id.empty());
+
+ base::mac::SetBaseBundleID(bundle_id.c_str());
+}
+
+void OverrideChildProcessPath() {
+ base::FilePath child_process_path =
+ base::CommandLine::ForCurrentProcess()->GetSwitchValuePath(
+ switches::kBrowserSubprocessPath);
+
+ if (child_process_path.empty()) {
+ child_process_path = util_mac::GetChildProcessPath();
+ DCHECK(!child_process_path.empty());
+ }
+
+ // Used by ChildProcessHost::GetChildPath and PlatformCrashpadInitialization.
+ base::PathService::Override(content::CHILD_PROCESS_EXE, child_process_path);
+}
+
+} // namespace
+
+bool GetLocalLibraryDirectory(base::FilePath* result) {
+ return base::mac::GetLocalDirectory(NSLibraryDirectory, result);
+}
+
+base::FilePath::StringType GetFrameworkName() {
+ return FILE_PATH_LITERAL("Chromium Embedded Framework");
+}
+
+base::FilePath GetFrameworkDirectory() {
+ base::FilePath frameworks_path =
+ base::CommandLine::ForCurrentProcess()->GetSwitchValuePath(
+ switches::kFrameworkDirPath);
+ if (!frameworks_path.empty()) {
+ return frameworks_path;
+ }
+
+ frameworks_path = GetFrameworksPath();
+ if (frameworks_path.empty()) {
+ return base::FilePath();
+ }
+
+ return frameworks_path.Append(GetFrameworkName())
+ .AddExtension(FILE_PATH_LITERAL(".framework"));
+}
+
+base::FilePath GetFrameworkResourcesDirectory() {
+ base::FilePath frameworks_path = GetFrameworkDirectory();
+ if (frameworks_path.empty()) {
+ return base::FilePath();
+ }
+
+ return frameworks_path.Append(FILE_PATH_LITERAL("Resources"));
+}
+
+base::FilePath GetMainProcessPath() {
+ base::FilePath path;
+ base::PathService::Get(base::FILE_EXE, &path);
+ DCHECK(!path.empty());
+ return path;
+}
+
+base::FilePath GetMainBundlePath() {
+ base::FilePath main_bundle_path =
+ base::CommandLine::ForCurrentProcess()->GetSwitchValuePath(
+ switches::kMainBundlePath);
+ if (!main_bundle_path.empty()) {
+ return main_bundle_path;
+ }
+
+ return base::mac::GetAppBundlePath(GetMainProcessPath());
+}
+
+std::string GetMainBundleID() {
+ NSBundle* bundle = base::mac::OuterBundle();
+ return base::SysNSStringToUTF8([bundle bundleIdentifier]);
+}
+
+base::FilePath GetMainResourcesDirectory() {
+ base::FilePath bundle_path = GetMainBundlePath();
+ if (bundle_path.empty()) {
+ return base::FilePath();
+ }
+
+ return bundle_path.Append(FILE_PATH_LITERAL("Contents"))
+ .Append(FILE_PATH_LITERAL("Resources"));
+}
+
+base::FilePath GetChildProcessPath() {
+ base::FilePath frameworks_path = GetFrameworksPath();
+ if (frameworks_path.empty()) {
+ return base::FilePath();
+ }
+
+ std::string exe_name = GetMainProcessPath().BaseName().value();
+ return frameworks_path.Append(FILE_PATH_LITERAL(exe_name + " Helper.app"))
+ .Append(FILE_PATH_LITERAL("Contents"))
+ .Append(FILE_PATH_LITERAL("MacOS"))
+ .Append(FILE_PATH_LITERAL(exe_name + " Helper"));
+}
+
+void PreSandboxStartup() {
+ OverrideChildProcessPath();
+}
+
+void BasicStartupComplete() {
+ OverrideFrameworkBundlePath();
+ OverrideOuterBundlePath();
+ OverrideBaseBundleID();
+}
+
+} // namespace util_mac