blob: 5c535ff24f25caaa4af1b529fc235f042340399b [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.
#include <lib/async-loop/default.h>
#include <lib/async/cpp/task.h>
#include <lib/syslog/cpp/macros.h>
#include <lib/trace/event.h>
#include <sstream>
#include "src/camera/bin/device/messages.h"
#include "src/camera/bin/device/stream_impl.h"
#include "src/lib/fsl/handles/object_info.h"
StreamImpl::Client::Client(StreamImpl& stream, uint64_t id,
fidl::InterfaceRequest<fuchsia::camera3::Stream> request)
: stream_(stream),
id_(id),
binding_(this, std::move(request)),
resolution_([](fuchsia::math::Size a, fuchsia::math::Size b) {
return (a.width == b.width) && (a.height == b.height);
}) {
FX_LOGS(DEBUG) << "Stream client " << id << " connected.";
binding_.set_error_handler(fit::bind_member(this, &StreamImpl::Client::OnClientDisconnected));
}
StreamImpl::Client::~Client() = default;
void StreamImpl::Client::SendFrame(fuchsia::camera3::FrameInfo frame) {
TRACE_DURATION("camera", "StreamImpl::Client::SendFrame");
// This Flow can be connected on the client end to allow tracing the flow of frames
// into the client.
TRACE_FLOW_BEGIN("camera", "camera3::Stream::GetNextFrame",
fsl::GetKoid(frame.release_fence.get()));
frame_callback_(std::move(frame));
frame_callback_ = nullptr;
}
void StreamImpl::Client::ReceiveBufferCollection(
fidl::InterfaceHandle<fuchsia::sysmem::BufferCollectionToken> token) {
TRACE_DURATION("camera", "StreamImpl::Client::ReceiveBufferCollection");
buffers_.Set(std::move(token));
}
void StreamImpl::Client::ReceiveResolution(fuchsia::math::Size coded_size) {
TRACE_DURATION("camera", "StreamImpl::Client::ReceiveResolution");
resolution_.Set(coded_size);
}
void StreamImpl::Client::ReceiveCropRegion(std::unique_ptr<fuchsia::math::RectF> region) {
TRACE_DURATION("camera", "StreamImpl::Client::ReceiveCropRegion");
// TODO(fxbug.dev/51176): Because unique_ptr is non-copyable, the hanging get helper assumes all
// values are never the same as previous values. In this case, however, back-to-back null regions
// or identical regions should not be sent twice.
crop_region_.Set(std::move(region));
}
bool& StreamImpl::Client::Participant() { return participant_; }
void StreamImpl::Client::OnClientDisconnected(zx_status_t status) {
FX_PLOGS(DEBUG, status) << "Stream client " << id_ << " disconnected.";
stream_.RemoveClient(id_);
}
void StreamImpl::Client::CloseConnection(zx_status_t status) {
binding_.Close(status);
stream_.RemoveClient(id_);
}
void StreamImpl::Client::GetProperties(GetPropertiesCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::GetProperties");
callback(Convert(stream_.properties_));
}
void StreamImpl::Client::GetProperties2(GetProperties2Callback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::GetProperties2");
callback(fidl::Clone(stream_.properties_));
}
void StreamImpl::Client::SetCropRegion(std::unique_ptr<fuchsia::math::RectF> region) {
TRACE_DURATION("camera", "StreamImpl::Client::SetCropRegion");
if (!stream_.properties_.supports_crop_region()) {
CloseConnection(ZX_ERR_NOT_SUPPORTED);
return;
}
if (region && (region->x < 0.0f || region->y < 0.0f || region->x + region->width > 1.0f ||
region->y + region->height > 1.0f)) {
FX_LOGS(INFO) << "Client requested invalid crop region {" << region->x << ", " << region->y
<< ", " << region->width << ", " << region->height << "}";
CloseConnection(ZX_ERR_INVALID_ARGS);
return;
}
stream_.SetCropRegion(id_, std::move(region));
}
void StreamImpl::Client::WatchCropRegion(WatchCropRegionCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::WatchCropRegion");
if (crop_region_.Get(std::move(callback))) {
CloseConnection(ZX_ERR_BAD_STATE);
}
}
void StreamImpl::Client::SetResolution(fuchsia::math::Size coded_size) {
TRACE_DURATION("camera", "StreamImpl::Client::SetResolution");
stream_.SetResolution(id_, coded_size);
}
void StreamImpl::Client::WatchResolution(WatchResolutionCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::WatchResolution");
if (resolution_.Get(std::move(callback))) {
CloseConnection(ZX_ERR_BAD_STATE);
}
}
void StreamImpl::Client::SetBufferCollection(
fidl::InterfaceHandle<fuchsia::sysmem::BufferCollectionToken> token) {
TRACE_DURATION("camera", "StreamImpl::Client::SetBufferCollection");
stream_.SetBufferCollection(id_, std::move(token));
}
void StreamImpl::Client::WatchBufferCollection(WatchBufferCollectionCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::WatchBufferCollection");
if (buffers_.Get(std::move(callback))) {
CloseConnection(ZX_ERR_BAD_STATE);
}
}
void StreamImpl::Client::WatchOrientation(WatchOrientationCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::WatchOrientation");
// Orientation is not currently reported by hardware. Assume UP (no transform).
callback(fuchsia::camera3::Orientation::UP);
}
void StreamImpl::Client::GetNextFrame(GetNextFrameCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::GetNextFrame");
if (frame_callback_) {
FX_LOGS(INFO) << "Client called GetNextFrame while a previous call was still pending.";
CloseConnection(ZX_ERR_BAD_STATE);
return;
}
frame_callback_ = std::move(callback);
stream_.AddFrameSink(id_);
}
void StreamImpl::Client::Rebind(fidl::InterfaceRequest<Stream> request) {
stream_.OnNewRequest(std::move(request));
}