blob: 0325348729e3324cc657da2e7e7a1cb2cf853862 [file] [log] [blame]
// Copyright 2017 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_UI_SCENIC_LIB_DISPLAY_DISPLAY_CONTROLLER_WATCHER_H_
#define SRC_UI_SCENIC_LIB_DISPLAY_DISPLAY_CONTROLLER_WATCHER_H_
#include <lib/fit/function.h>
#include <memory>
#include "src/lib/fsl/io/device_watcher.h"
#include "src/lib/fxl/macros.h"
namespace scenic_impl {
namespace display {
// Waits for a display device to be available, and returns the display
// attributes through a callback.
class DisplayControllerWatcher {
public:
// Callback provides channels to the display controller device and FIDL
// interface.
using DisplayControllerReadyCallback =
fit::function<void(zx::channel device, zx::channel controller)>;
DisplayControllerWatcher();
~DisplayControllerWatcher();
// Waits for the display to become available then invokes the callback.
void WaitForDisplayController(DisplayControllerReadyCallback callback);
private:
void HandleDevice(DisplayControllerReadyCallback callback, int dir_fd, std::string filename);
std::unique_ptr<fsl::DeviceWatcher> device_watcher_;
FXL_DISALLOW_COPY_AND_ASSIGN(DisplayControllerWatcher);
};
} // namespace display
} // namespace scenic_impl
#endif // SRC_UI_SCENIC_LIB_DISPLAY_DISPLAY_CONTROLLER_WATCHER_H_