blob: 33e74699c5db573bba44ec1db4e955995ca021fa [file] [log] [blame]
// Copyright 2018 The Chromium OS 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 DLCSERVICE_DLC_SERVICE_DBUS_ADAPTOR_H_
#define DLCSERVICE_DLC_SERVICE_DBUS_ADAPTOR_H_
#include <memory>
#include <set>
#include <string>
#include <vector>
#include <base/files/file_path.h>
#include <base/memory/weak_ptr.h>
#include <dlcservice/proto_bindings/dlcservice.pb.h>
#include <imageloader/dbus-proxies.h>
#include <update_engine/proto_bindings/update_engine.pb.h>
#include <update_engine/dbus-proxies.h>
#include "dlcservice/dbus_adaptors/org.chromium.DlcServiceInterface.h"
namespace dlcservice {
class BootSlot;
// DlcServiceDBusAdaptor is a D-Bus adaptor that manages life-cycles of DLCs
// (Downloadable Content) and provides an API for the rest of the system to
// install/uninstall DLCs.
class DlcServiceDBusAdaptor
: public org::chromium::DlcServiceInterfaceInterface,
public org::chromium::DlcServiceInterfaceAdaptor {
public:
DlcServiceDBusAdaptor(
std::unique_ptr<org::chromium::ImageLoaderInterfaceProxyInterface>
image_loader_proxy,
std::unique_ptr<org::chromium::UpdateEngineInterfaceProxyInterface>
update_engine_proxy,
std::unique_ptr<BootSlot> boot_slot,
const base::FilePath& manifest_dir,
const base::FilePath& content_dir);
~DlcServiceDBusAdaptor();
// Loads installed DLC module images.
void LoadDlcModuleImages();
// org::chromium::DlServiceInterfaceInterface overrides:
bool Install(brillo::ErrorPtr* err,
const std::string& id_in,
const std::string& omaha_url_in) override;
bool Uninstall(brillo::ErrorPtr* err, const std::string& id_in) override;
bool GetInstalled(brillo::ErrorPtr* err,
DlcModuleList* dlc_module_list_out) override;
private:
// Scans a specific DLC |id| to discover all its packages. Currently, we only
// support one package per DLC. If at some point in the future we decided to
// support multiple packages, then appropriate changes to this function is
// granted.
std::string ScanDlcModulePackage(const std::string& id);
// Checks if Update Engine is in a state among |status_list|.
bool CheckForUpdateEngineStatus(const std::vector<std::string>& status_list);
// Send |OnInstalled| D-Bus signal.
void SendOnInstalledSignal(const InstallResult& install_result);
// Called on receiving update_engine's |StatusUpdate| signal.
void OnStatusUpdateSignal(int64_t last_checked_time,
double progress,
const std::string& current_operation,
const std::string& new_version,
int64_t new_size);
// Called on being connected to update_engine's |StatusUpdate| signal.
void OnStatusUpdateSignalConnected(const std::string& interface_name,
const std::string& signal_name,
bool success);
std::unique_ptr<org::chromium::ImageLoaderInterfaceProxyInterface>
image_loader_proxy_;
std::unique_ptr<org::chromium::UpdateEngineInterfaceProxyInterface>
update_engine_proxy_;
std::unique_ptr<BootSlot> boot_slot_;
base::FilePath manifest_dir_;
base::FilePath content_dir_;
// ID of the DLC module being installed. Empty means no DLC module is being
// installed.
std::string dlc_id_being_installed_;
std::string current_boot_slot_name_;
// List of currently existing DLC modules. Use a set in order to handle
// repeats implicitly.
std::set<std::string> installed_dlc_modules_;
// List of allowed DLC modules based on manifest. Use a set in order to handle
// repeats implicitly.
std::set<std::string> supported_dlc_modules_;
base::WeakPtrFactory<DlcServiceDBusAdaptor> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(DlcServiceDBusAdaptor);
};
} // namespace dlcservice
#endif // DLCSERVICE_DLC_SERVICE_DBUS_ADAPTOR_H_