blob: 0cd15b321fe8d85bc43c71a2a27fec8e9f2929ca [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FACED_FACE_AUTH_DAEMON_H_
#define FACED_FACE_AUTH_DAEMON_H_
#include <memory>
#include <string>
#include <brillo/daemons/dbus_daemon.h>
#include "faced/dbus_adaptor.h"
#include "faced/face_auth_service.h"
namespace faced {
class FaceAuthDaemon : public brillo::DBusServiceDaemon {
public:
FaceAuthDaemon();
~FaceAuthDaemon() override = default;
// Disallow copy and move.
FaceAuthDaemon(const FaceAuthDaemon&) = delete;
FaceAuthDaemon& operator=(const FaceAuthDaemon&) = delete;
protected:
// brillo::DBusServiceDaemon:
int OnInit() override;
private:
void RegisterDBusObjectsAsync(
brillo::dbus_utils::AsyncEventSequencer* sequencer) override;
std::unique_ptr<DBusAdaptor> adaptor_;
std::unique_ptr<FaceAuthServiceInterface> face_auth_service_;
};
} // namespace faced
#endif // FACED_FACE_AUTH_DAEMON_H_