electron/brightray/browser/browser_context.cc

239 lines
7.2 KiB
C++
Raw Normal View History

2013-03-13 19:12:05 +00:00
// Copyright (c) 2012 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-CHROMIUM file.
#include "browser/browser_context.h"
2013-03-13 19:12:05 +00:00
#include "browser/media/media_device_id_salt.h"
2015-01-19 00:59:57 +00:00
#include "browser/brightray_paths.h"
#include "browser/browser_client.h"
#include "browser/inspectable_web_contents_impl.h"
#include "browser/network_delegate.h"
2015-05-22 06:50:41 +00:00
#include "browser/permission_manager.h"
2015-10-12 13:09:39 +00:00
#include "browser/special_storage_policy.h"
2017-01-30 11:55:46 +00:00
#include "browser/zoom_level_delegate.h"
#include "common/application_info.h"
2013-03-13 19:12:05 +00:00
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "components/prefs/json_pref_store.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "components/prefs/pref_service_factory.h"
#include "base/strings/string_util.h"
2013-03-13 19:12:05 +00:00
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/resource_context.h"
#include "content/public/browser/storage_partition.h"
#include "net/base/escape.h"
2013-03-13 19:12:05 +00:00
2014-08-13 07:09:26 +00:00
using content::BrowserThread;
2013-03-13 19:12:05 +00:00
namespace brightray {
namespace {
// Convert string to lower case and escape it.
std::string MakePartitionName(const std::string& input) {
2015-12-07 11:55:01 +00:00
return net::EscapePath(base::ToLowerASCII(input));
}
} // namespace
2013-03-13 19:12:05 +00:00
class BrowserContext::ResourceContext : public content::ResourceContext {
public:
2013-03-13 19:12:05 +00:00
ResourceContext() : getter_(nullptr) {}
void set_url_request_context_getter(URLRequestContextGetter* getter) {
getter_ = getter;
}
private:
2015-06-05 04:07:27 +00:00
net::HostResolver* GetHostResolver() override {
2013-03-13 19:12:05 +00:00
return getter_->host_resolver();
}
2015-06-05 04:07:27 +00:00
net::URLRequestContext* GetRequestContext() override {
2013-03-13 19:12:05 +00:00
return getter_->GetURLRequestContext();
}
std::string GetMediaDeviceIDSalt() override {
auto media_device_id_salt_ = getter_->GetMediaDeviceIDSalt();
if (media_device_id_salt_)
return media_device_id_salt_->GetSalt();
return content::ResourceContext::GetMediaDeviceIDSalt();
}
2013-03-13 19:12:05 +00:00
URLRequestContextGetter* getter_;
};
2015-09-05 14:34:42 +00:00
// static
BrowserContext::BrowserContextMap BrowserContext::browser_context_map_;
// static
scoped_refptr<BrowserContext> BrowserContext::Get(
2015-09-05 14:34:42 +00:00
const std::string& partition, bool in_memory) {
PartitionKey key(partition, in_memory);
if (browser_context_map_[key].get())
return make_scoped_refptr(browser_context_map_[key].get());
return nullptr;
2015-09-05 14:34:42 +00:00
}
BrowserContext::BrowserContext(const std::string& partition, bool in_memory)
: in_memory_(in_memory),
2015-09-05 14:34:42 +00:00
resource_context_(new ResourceContext),
2015-10-12 13:09:39 +00:00
storage_policy_(new SpecialStoragePolicy),
2015-09-05 14:34:42 +00:00
weak_factory_(this) {
2015-01-19 00:59:57 +00:00
if (!PathService::Get(DIR_USER_DATA, &path_)) {
2015-01-19 01:19:25 +00:00
PathService::Get(DIR_APP_DATA, &path_);
2015-01-19 00:59:57 +00:00
path_ = path_.Append(base::FilePath::FromUTF8Unsafe(GetApplicationName()));
PathService::Override(DIR_USER_DATA, path_);
}
if (!in_memory_ && !partition.empty())
path_ = path_.Append(FILE_PATH_LITERAL("Partitions"))
.Append(base::FilePath::FromUTF8Unsafe(MakePartitionName(partition)));
2016-05-23 03:36:34 +00:00
content::BrowserContext::Initialize(this, path_);
browser_context_map_[PartitionKey(partition, in_memory)] = GetWeakPtr();
}
2016-07-04 06:29:43 +00:00
BrowserContext::~BrowserContext() {
2017-02-10 17:27:50 +00:00
NotifyWillBeDestroyed(this);
ShutdownStoragePartitions();
2016-07-04 06:29:43 +00:00
BrowserThread::DeleteSoon(BrowserThread::IO,
FROM_HERE,
resource_context_.release());
}
void BrowserContext::InitPrefs() {
auto prefs_path = GetPath().Append(FILE_PATH_LITERAL("Preferences"));
PrefServiceFactory prefs_factory;
prefs_factory.SetUserPrefsFile(prefs_path,
JsonPrefStore::GetTaskRunnerForFile(
prefs_path, BrowserThread::GetBlockingPool()).get());
auto registry = make_scoped_refptr(new PrefRegistrySimple);
RegisterInternalPrefs(registry.get());
RegisterPrefs(registry.get());
prefs_ = prefs_factory.Create(registry.get());
2013-03-13 19:12:05 +00:00
}
void BrowserContext::RegisterInternalPrefs(PrefRegistrySimple* registry) {
InspectableWebContentsImpl::RegisterPrefs(registry);
MediaDeviceIDSalt::RegisterPrefs(registry);
2017-01-30 11:55:46 +00:00
ZoomLevelDelegate::RegisterPrefs(registry);
}
2016-07-04 06:29:43 +00:00
URLRequestContextGetter* BrowserContext::GetRequestContext() {
return static_cast<URLRequestContextGetter*>(
GetDefaultStoragePartition(this)->GetURLRequestContext());
}
net::URLRequestContextGetter* BrowserContext::CreateRequestContext(
content::ProtocolHandlerMap* protocol_handlers,
2014-08-31 10:43:01 +00:00
content::URLRequestInterceptorScopedVector protocol_interceptors) {
DCHECK(!url_request_getter_.get());
url_request_getter_ = new URLRequestContextGetter(
this,
network_controller_handle(),
static_cast<NetLog*>(BrowserClient::Get()->GetNetLog()),
2013-03-13 19:12:05 +00:00
GetPath(),
in_memory_,
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE),
protocol_handlers,
2016-03-08 11:59:29 +00:00
std::move(protocol_interceptors));
2013-03-13 19:12:05 +00:00
resource_context_->set_url_request_context_getter(url_request_getter_.get());
return url_request_getter_.get();
}
net::NetworkDelegate* BrowserContext::CreateNetworkDelegate() {
return new NetworkDelegate;
}
MediaDeviceIDSalt* BrowserContext::GetMediaDeviceIDSalt() {
if (IsOffTheRecord())
return nullptr;
if (!media_device_id_salt_.get())
media_device_id_salt_.reset(new MediaDeviceIDSalt(prefs_.get()));
return media_device_id_salt_.get();
}
base::FilePath BrowserContext::GetPath() const {
return path_;
2013-03-13 19:12:05 +00:00
}
std::unique_ptr<content::ZoomLevelDelegate> BrowserContext::CreateZoomLevelDelegate(
2015-03-09 02:56:45 +00:00
const base::FilePath& partition_path) {
2017-01-30 11:55:46 +00:00
if (!IsOffTheRecord()) {
return base::MakeUnique<ZoomLevelDelegate>(prefs(), partition_path);
}
return std::unique_ptr<content::ZoomLevelDelegate>();
2015-03-09 02:56:45 +00:00
}
2013-03-13 19:12:05 +00:00
bool BrowserContext::IsOffTheRecord() const {
return in_memory_;
2013-03-13 19:12:05 +00:00
}
content::ResourceContext* BrowserContext::GetResourceContext() {
return resource_context_.get();
}
content::DownloadManagerDelegate* BrowserContext::GetDownloadManagerDelegate() {
return nullptr;
2013-03-13 19:12:05 +00:00
}
2014-08-31 10:43:01 +00:00
content::BrowserPluginGuestManager* BrowserContext::GetGuestManager() {
return nullptr;
2013-03-13 19:12:05 +00:00
}
2014-12-05 22:31:02 +00:00
storage::SpecialStoragePolicy* BrowserContext::GetSpecialStoragePolicy() {
2015-10-12 13:09:39 +00:00
return storage_policy_.get();
2013-03-13 19:12:05 +00:00
}
2014-08-31 10:43:01 +00:00
content::PushMessagingService* BrowserContext::GetPushMessagingService() {
return nullptr;
2014-07-27 10:44:39 +00:00
}
2014-10-11 08:38:27 +00:00
content::SSLHostStateDelegate* BrowserContext::GetSSLHostStateDelegate() {
return nullptr;
}
2015-05-22 06:50:41 +00:00
content::PermissionManager* BrowserContext::GetPermissionManager() {
if (!permission_manager_.get())
permission_manager_.reset(new PermissionManager);
return permission_manager_.get();
}
2016-03-08 14:28:28 +00:00
content::BackgroundSyncController* BrowserContext::GetBackgroundSyncController() {
return nullptr;
}
net::URLRequestContextGetter*
BrowserContext::CreateRequestContextForStoragePartition(
const base::FilePath& partition_path,
bool in_memory,
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector request_interceptors) {
return nullptr;
}
2016-07-04 06:06:05 +00:00
net::URLRequestContextGetter*
BrowserContext::CreateMediaRequestContext() {
return url_request_getter_.get();
}
net::URLRequestContextGetter*
BrowserContext::CreateMediaRequestContextForStoragePartition(
const base::FilePath& partition_path,
bool in_memory) {
return nullptr;
}
} // namespace brightray