blob: c1958be96c68a3bffcaf3b7200ded3d529996eda [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/size_util.h"
#include "src/camera/bin/device/stream_impl.h"
#include "src/lib/fsl/handles/object_info.h"
namespace camera {
StreamImpl::Client::Client(StreamImpl& stream, uint64_t id,
fidl::InterfaceRequest<fuchsia::camera3::Stream> request)
: stream_(stream), id_(id), binding_(this, std::move(request)), resolution_(SizeEqual) {
log_prefix_ = "stream " + stream_.description_ +
" client (koid = " + std::to_string(GetRelatedKoid(binding_)) + "): ";
FX_LOGS(INFO) << log_prefix_ << "new stream client, id = " << id_;
binding_.set_error_handler(fit::bind_member(this, &StreamImpl::Client::OnClientDisconnected));
}
StreamImpl::Client::~Client() = default;
void StreamImpl::Client::AddFrame(fuchsia::camera3::FrameInfo2 frame) {
TRACE_DURATION("camera", "StreamImpl::Client::AddFrame");
frames_.push(std::move(frame));
if (!frame_logging_state_.available) {
FX_LOGS(INFO) << log_prefix_ << "frame available";
frame_logging_state_.available = true;
}
MaybeSendFrame();
}
void StreamImpl::Client::MaybeSendFrame() {
TRACE_DURATION("camera", "StreamImpl::Client::MaybeSendFrame");
if (frames_.empty() || !frame_callback_) {
return;
}
auto& frame = frames_.front();
// 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()));
// Note: this message is logged immediately prior to invoking the frame callback to ensure that no
// client logs emitted as a result will have earlier timestamps than this message.
if (!frame_logging_state_.sent) {
FX_LOGS(INFO) << log_prefix_ << "sent frame";
frame_logging_state_.sent = true;
}
frame_callback_(std::move(frame));
frames_.pop();
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(https://fxbug.dev/42128338): 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::ClearFrames() {
while (!frames_.empty()) {
frames_.pop();
}
}
void StreamImpl::Client::OnClientDisconnected(zx_status_t status) {
FX_PLOGS(INFO, status) << log_prefix_ << "closed connection";
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");
FX_LOGS(INFO) << log_prefix_ << "called GetProperties()";
callback(Convert(stream_.properties_));
}
void StreamImpl::Client::GetProperties2(GetProperties2Callback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::GetProperties2");
FX_LOGS(INFO) << log_prefix_ << "called 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) << stream_.description_ << ": " << id_
<< ": 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");
FX_LOGS(INFO) << log_prefix_ << "called SetBufferCollection(koid = " << GetRelatedKoid(token)
<< ")";
stream_.SetBufferCollection(id_, std::move(token));
}
void StreamImpl::Client::WatchBufferCollection(WatchBufferCollectionCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::WatchBufferCollection");
FX_LOGS(INFO) << log_prefix_ << "called WatchBufferCollection()";
if (buffers_.Get(std::move(callback))) {
CloseConnection(ZX_ERR_BAD_STATE);
}
}
void StreamImpl::Client::WatchOrientation(WatchOrientationCallback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::WatchOrientation");
// Directly invoke the callback on initial request.
if (!orientation_callback_invoked_) {
// Orientation is not currently reported by hardware. Assume UP (no transform).
callback(fuchsia::camera3::Orientation::UP);
orientation_callback_invoked_ = true;
return;
}
// It is invalid to have multiple Watch requests in flight.
if (orientation_callback_) {
CloseConnection(ZX_ERR_BAD_STATE);
return;
}
// A watch call subsequent to the first will never be invoked, but the object must still be
// persisted. Destruction of captured FIDL objects prior to invocation would be interpreted as a
// server error.
orientation_callback_ = std::move(callback);
}
void StreamImpl::Client::GetNextFrame(GetNextFrameCallback callback) {
GetNextFrame2([callback = std::move(callback)](fuchsia::camera3::FrameInfo2 frame) {
callback({.buffer_index = frame.buffer_index(),
.frame_counter = frame.frame_counter(),
.timestamp = frame.timestamp(),
.release_fence = std::move(*frame.mutable_release_fence())});
});
}
void StreamImpl::Client::GetNextFrame2(GetNextFrame2Callback callback) {
TRACE_DURATION("camera", "StreamImpl::Client::GetNextFrame2");
if (!frame_logging_state_.requested) {
FX_LOGS(INFO) << log_prefix_ << "called GetNextFrame2()";
frame_logging_state_.requested = true;
}
if (frame_callback_) {
FX_LOGS(INFO) << stream_.description_ << ": " << id_
<< ": Client called GetNextFrame while a previous call was still pending.";
CloseConnection(ZX_ERR_BAD_STATE);
return;
}
frame_callback_ = std::move(callback);
MaybeSendFrame();
}
void StreamImpl::Client::Rebind(fidl::InterfaceRequest<Stream> request) {
FX_LOGS(INFO) << log_prefix_ << "called Rebind(koid = " << GetRelatedKoid(request) << ")";
stream_.OnNewRequest(std::move(request));
}
} // namespace camera