blob: 2f97c7d3472851be043b20ee7f500c5e9d029124 [file] [log] [blame]
// Copyright 2018 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 LIB_GUEST_SCENIC_WAYLAND_DISPATCHER_H_
#define LIB_GUEST_SCENIC_WAYLAND_DISPATCHER_H_
#include <fuchsia/guest/cpp/fidl.h>
#include <fuchsia/wayland/cpp/fidl.h>
#include <lib/component/cpp/startup_context.h>
#include <lib/fidl/cpp/binding.h>
#include <lib/zx/channel.h>
namespace guest {
// Provides a |WaylandDispatcher| that will create scenic views for each
// wayland shell surface.
//
// This class is not thread-safe.
class ScenicWaylandDispatcher : public fuchsia::guest::WaylandDispatcher {
public:
using ViewListener = fit::function<void(
fidl::InterfaceHandle<fuchsia::ui::app::ViewProvider>)>;
ScenicWaylandDispatcher(component::StartupContext* context,
ViewListener listener = nullptr)
: context_(context), listener_(std::move(listener)){};
// |fuchsia::guest::WaylandDispatcher|
void OnNewConnection(zx::channel channel);
fidl::InterfaceHandle<fuchsia::guest::WaylandDispatcher> NewBinding() {
return bindings_.NewBinding();
}
private:
void OnNewView(fidl::InterfaceHandle<fuchsia::ui::app::ViewProvider> view);
void Reset(zx_status_t status);
fuchsia::guest::WaylandDispatcher* GetOrStartBridge();
component::StartupContext* context_;
ViewListener listener_;
fidl::Binding<fuchsia::guest::WaylandDispatcher> bindings_{this};
fuchsia::sys::ComponentControllerPtr bridge_;
fuchsia::guest::WaylandDispatcherPtr dispatcher_;
fuchsia::wayland::ViewProducerPtr view_producer_;
};
}; // namespace guest
#endif // LIB_GUEST_SCENIC_WAYLAND_DISPATCHER_H_