blob: b412f06c9c68f67d84916d4143aac43d84b209c3 [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_H_
#define DLCSERVICE_DLC_SERVICE_H_
#include <memory>
#include <string>
#include <base/cancelable_callback.h>
#include <brillo/daemons/dbus_daemon.h>
#include "dlcservice/dlc_service_dbus_adaptor.h"
namespace dlcservice {
// DlcService is a D-Bus service daemon.
class DlcService : public brillo::DBusServiceDaemon,
public dlcservice::DlcServiceDBusAdaptor::ShutdownDelegate {
public:
explicit DlcService(bool load_installed);
~DlcService() override = default;
// dlcservice::DlcServiceDBusAdaptor::ShutdownDelegate overrides:
void CancelShutdown() override;
void ScheduleShutdown() override;
private:
// brillo::Daemon overrides:
int OnInit() override;
void RegisterDBusObjectsAsync(
brillo::dbus_utils::AsyncEventSequencer* sequencer) override;
int OnEventLoopStarted() override;
std::unique_ptr<brillo::dbus_utils::DBusObject> dbus_object_;
std::unique_ptr<dlcservice::DlcServiceDBusAdaptor> dbus_adaptor_;
base::CancelableClosure shutdown_callback_;
// Whether to load installed DLC modules.
const bool load_installed_;
DISALLOW_COPY_AND_ASSIGN(DlcService);
};
} // namespace dlcservice
#endif // DLCSERVICE_DLC_SERVICE_H_