blob: 296263cc4413d84855858b52e9fd4a2d58606619 [file] [log] [blame]
// Copyright 2020 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.
#ifndef CHROME_BROWSER_CHROMEOS_CROSAPI_BROWSER_LOADER_H_
#define CHROME_BROWSER_CHROMEOS_CROSAPI_BROWSER_LOADER_H_
#include "base/callback.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/component_updater/cros_component_manager.h"
#include "components/component_updater/component_updater_service.h"
namespace crosapi {
// Manages download of the lacros-chrome binary. After the initial component is
// downloaded and mounted, observes the component updater for future updates.
// If it detects a new update, triggers a user-visible notification.
// This class is a part of ash-chrome.
class BrowserLoader
: public component_updater::ComponentUpdateService::Observer {
public:
// Delete for testing.
class Delegate {
public:
virtual void SetLacrosUpdateAvailable() = 0;
virtual ~Delegate() = default;
};
// Contructor for production.
explicit BrowserLoader(
scoped_refptr<component_updater::CrOSComponentManager> manager);
// Constructor for testing.
BrowserLoader(std::unique_ptr<Delegate> delegate,
scoped_refptr<component_updater::CrOSComponentManager> manager);
BrowserLoader(const BrowserLoader&) = delete;
BrowserLoader& operator=(const BrowserLoader&) = delete;
~BrowserLoader() override;
// Starts to load lacros-chrome binary.
// |callback| is called on completion with the path to the lacros-chrome on
// success, or an empty filepath on failure.
using LoadCompletionCallback =
base::OnceCallback<void(const base::FilePath&)>;
void Load(LoadCompletionCallback callback);
// Starts to unload lacros-chrome binary.
// Note that this triggers to remove the user directory for lacros-chrome.
void Unload();
// component_updater::ComponentUpdateService::Observer:
void OnEvent(Events event, const std::string& id) override;
private:
// Called on the completion of loading.
void OnLoadComplete(LoadCompletionCallback callback,
component_updater::CrOSComponentManager::Error error,
const base::FilePath& path);
// Unloading hops threads. This is called after we check whether Lacros was
// installed and maybe clean up the user directory.
void OnCheckInstalled(bool was_installed);
// Unloads the component. Called after system salt is available.
void UnloadAfterCleanUp(const std::string& ignored_salt);
// Allows stubbing out some methods for testing.
std::unique_ptr<Delegate> delegate_;
scoped_refptr<component_updater::CrOSComponentManager> component_manager_;
// May be null in tests.
component_updater::ComponentUpdateService* const component_update_service_;
base::WeakPtrFactory<BrowserLoader> weak_factory_{this};
};
} // namespace crosapi
#endif // CHROME_BROWSER_CHROMEOS_CROSAPI_BROWSER_LOADER_H_