blob: 7f4e1cb2275175d9041ad9c2fb86574039d3a38a [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 SRC_SYS_APPMGR_LIFECYCLE_H_
#define SRC_SYS_APPMGR_LIFECYCLE_H_
#include <fuchsia/process/lifecycle/llcpp/fidl.h>
#include <lib/async-loop/default.h>
#include <lib/fidl/llcpp/server.h>
#include <lib/zx/channel.h>
namespace component {
class Appmgr;
class LifecycleServer final : public llcpp::fuchsia::process::lifecycle::Lifecycle::Interface {
public:
LifecycleServer(Appmgr* appmgr, fit::function<void(zx_status_t)> stop_callback)
: appmgr_(appmgr) {
stop_callback_ = std::move(stop_callback);
}
zx_status_t Create(async_dispatcher_t* dispatcher, zx::channel chan);
void Close(zx_status_t status);
static zx_status_t Create(async_dispatcher_t* dispatcher, Appmgr* appmgr, zx::channel channel);
void Stop(StopCompleter::Sync& completer) override;
private:
Appmgr* appmgr_;
fit::function<void(zx_status_t)> stop_callback_;
std::optional<fidl::ServerBindingRef<llcpp::fuchsia::process::lifecycle::Lifecycle>> lifecycle_;
};
} // namespace component
#endif // SRC_SYS_APPMGR_LIFECYCLE_H_