blob: 111be3be2237357e74d94c4cfb4359622c8eafb0 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/mac/bundle_locations.h"
#include "base/check.h"
#include "base/mac/foundation_util.h"
#include "base/strings/sys_string_conversions.h"
namespace base::mac {
// NSBundle isn't threadsafe, all functions in this file must be called on the
// main thread.
static NSBundle* g_override_framework_bundle = nil;
static NSBundle* g_override_outer_bundle = nil;
NSBundle* MainBundle() {
return NSBundle.mainBundle;
}
NSURL* MainBundleURL() {
return MainBundle().bundleURL;
}
FilePath MainBundlePath() {
return NSStringToFilePath(MainBundle().bundlePath);
}
NSBundle* OuterBundle() {
if (g_override_outer_bundle)
return g_override_outer_bundle;
return NSBundle.mainBundle;
}
NSURL* OuterBundleURL() {
return OuterBundle().bundleURL;
}
FilePath OuterBundlePath() {
return NSStringToFilePath(OuterBundle().bundlePath);
}
NSBundle* FrameworkBundle() {
if (g_override_framework_bundle)
return g_override_framework_bundle;
return NSBundle.mainBundle;
}
FilePath FrameworkBundlePath() {
return NSStringToFilePath(FrameworkBundle().bundlePath);
}
static void AssignOverrideBundle(NSBundle* new_bundle,
NSBundle** override_bundle) {
if (new_bundle != *override_bundle) {
[*override_bundle release];
*override_bundle = [new_bundle retain];
}
}
static void AssignOverridePath(const FilePath& file_path,
NSBundle** override_bundle) {
NSBundle* new_bundle = nil;
if (!file_path.empty()) {
new_bundle = [NSBundle bundleWithURL:base::mac::FilePathToNSURL(file_path)];
CHECK(new_bundle) << "Failed to load the bundle at " << file_path.value();
}
AssignOverrideBundle(new_bundle, override_bundle);
}
void SetOverrideOuterBundle(NSBundle* bundle) {
AssignOverrideBundle(bundle, &g_override_outer_bundle);
}
void SetOverrideFrameworkBundle(NSBundle* bundle) {
AssignOverrideBundle(bundle, &g_override_framework_bundle);
}
void SetOverrideOuterBundlePath(const FilePath& file_path) {
AssignOverridePath(file_path, &g_override_outer_bundle);
}
void SetOverrideFrameworkBundlePath(const FilePath& file_path) {
AssignOverridePath(file_path, &g_override_framework_bundle);
}
} // namespace base::mac