mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
99 lines
3.0 KiB
C++
99 lines
3.0 KiB
C++
// Copyright 2024 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "internal/platform/blocking_queue_stream.h"
|
|
|
|
#include <algorithm>
|
|
#include <cstdint>
|
|
#include <utility>
|
|
|
|
#include "internal/platform/byte_array.h"
|
|
#include "internal/platform/exception.h"
|
|
#include "internal/platform/feature_flags.h"
|
|
#include "internal/platform/logging.h"
|
|
|
|
namespace nearby {
|
|
|
|
BlockingQueueStream::BlockingQueueStream() {
|
|
LOG(INFO) << "Create a BlockingQueueStream with size "
|
|
<< FeatureFlags::GetInstance()
|
|
.GetFlags()
|
|
.blocking_queue_stream_queue_capacity;
|
|
}
|
|
|
|
ExceptionOr<ByteArray> BlockingQueueStream::Read(std::int64_t size) {
|
|
if (!is_multiplex_enabled_) {
|
|
LOG(INFO) << "Multiplex is not enabled, drop the read.";
|
|
return ExceptionOr<ByteArray>(Exception::kExecution);
|
|
}
|
|
|
|
if (is_closed_) {
|
|
LOG(INFO) << "Failed to read BlockingQueueStream because it was closed.";
|
|
return ExceptionOr<ByteArray>(Exception::kIo);
|
|
}
|
|
|
|
ByteArray bytes = queue_head_.Empty() ? blocking_queue_.Take() : queue_head_;
|
|
if (bytes == queue_end_) {
|
|
LOG(INFO) << "BlockingQueueStream is Interrupted.";
|
|
return ExceptionOr<ByteArray>(Exception::kIo);
|
|
}
|
|
|
|
int copy_len = std::min<int>(size, bytes.size());
|
|
ByteArray buffer;
|
|
buffer.SetData(bytes.data(), copy_len);
|
|
if (copy_len < bytes.size()) {
|
|
queue_head_ = ByteArray(bytes.data() + copy_len, bytes.size() - copy_len);
|
|
} else {
|
|
queue_head_ = ByteArray();
|
|
}
|
|
return ExceptionOr<ByteArray>(std::move(buffer));
|
|
}
|
|
|
|
void BlockingQueueStream::Write(const ByteArray& bytes) {
|
|
if (!is_multiplex_enabled_) {
|
|
LOG(INFO) << "Multiplex is not enabled, drop the write.";
|
|
return;
|
|
}
|
|
if (is_closed_) {
|
|
LOG(INFO) << "Failed to write BlockingQueueStream because it was closed.";
|
|
return;
|
|
}
|
|
is_writing_ = true;
|
|
blocking_queue_.Put(bytes);
|
|
is_writing_ = false;
|
|
VLOG(1) << "BlockingQueueStream wrote " << bytes.size() << " bytes";
|
|
}
|
|
|
|
Exception BlockingQueueStream::Close() {
|
|
if (!is_multiplex_enabled_) {
|
|
LOG(INFO) << "Multiplex is not enabled, drop the write.";
|
|
return {Exception::kExecution};
|
|
}
|
|
if (is_closed_) {
|
|
LOG(INFO) << "InputBlockingQueueStream has already been closed.";
|
|
return {Exception::kSuccess};
|
|
}
|
|
if (is_writing_) {
|
|
LOG(INFO)
|
|
<< "BlockingQueueStream is waiting for writing, read first to unblock";
|
|
blocking_queue_.TryTake();
|
|
}
|
|
blocking_queue_.TryPut(queue_end_);
|
|
is_closed_ = true;
|
|
LOG(INFO) << "InputBlockingQueueStream is closed.";
|
|
return {Exception::kSuccess};
|
|
}
|
|
|
|
} // namespace nearby
|