blob: f3d1327d4756299a1f3126584cec50dbdc2e833a [file] [log] [blame]
// Copyright 2021 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 "content/shell/browser/shell_paths.h"
#include "base/environment.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
#if defined(OS_WIN)
#include "base/base_paths_win.h"
#elif defined(OS_LINUX) || defined(OS_CHROMEOS)
#include "base/nix/xdg_util.h"
#elif defined(OS_MAC)
#include "base/base_paths_mac.h"
#elif defined(OS_FUCHSIA)
#include "base/base_paths_fuchsia.h"
#endif
namespace content {
namespace {
bool GetDefaultUserDataDirectory(base::FilePath* result) {
#if defined(OS_WIN)
CHECK(base::PathService::Get(base::DIR_LOCAL_APP_DATA, result));
*result = result->Append(std::wstring(L"content_shell"));
#elif defined(OS_LINUX) || defined(OS_CHROMEOS)
std::unique_ptr<base::Environment> env(base::Environment::Create());
base::FilePath config_dir(base::nix::GetXDGDirectory(
env.get(), base::nix::kXdgConfigHomeEnvVar, base::nix::kDotConfigDir));
*result = config_dir.Append("content_shell");
#elif defined(OS_MAC)
CHECK(base::PathService::Get(base::DIR_APP_DATA, result));
*result = result->Append("Chromium Content Shell");
#elif defined(OS_ANDROID)
CHECK(base::PathService::Get(base::DIR_ANDROID_APP_DATA, result));
*result = result->Append(FILE_PATH_LITERAL("content_shell"));
#elif defined(OS_FUCHSIA)
CHECK(base::PathService::Get(base::DIR_APP_DATA, result));
*result = result->Append(FILE_PATH_LITERAL("content_shell"));
#else
NOTIMPLEMENTED();
return false;
#endif
return true;
}
} // namespace
class ShellPathProvider {
public:
static void CreateDir(const base::FilePath& path) {
base::ScopedAllowBlocking allow_io;
if (!base::PathExists(path))
base::CreateDirectory(path);
}
};
bool ShellPathProvider(int key, base::FilePath* result) {
base::FilePath cur;
switch (key) {
case SHELL_DIR_USER_DATA: {
bool rv = GetDefaultUserDataDirectory(result);
if (rv)
ShellPathProvider::CreateDir(*result);
return rv;
}
default:
return false;
}
}
void RegisterShellPathProvider() {
base::PathService::RegisterProvider(ShellPathProvider, SHELL_PATH_START,
SHELL_PATH_END);
}
} // namespace content