blob: ac187d2f09354ec3701fbf8d1ad88a0b49f5ccb5 [file] [log] [blame]
// Copyright 2023 The Pigweed Authors
//
// 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.
#pragma once
#include <array>
#include <atomic>
#include <cstddef>
#include "pw_metric/metric.h"
#include "pw_rpc_transport/egress_ingress.h"
#include "pw_status/status.h"
#include "pw_stream/stream.h"
#include "pw_thread/thread.h"
namespace pw::rpc {
template <size_t kReadSize>
class StreamRpcDispatcher : public pw::thread::ThreadCore {
public:
StreamRpcDispatcher(pw::stream::Reader& reader,
pw::rpc::RpcIngressHandler& ingress_handler)
: reader_(reader), ingress_handler_(ingress_handler) {}
~StreamRpcDispatcher() override { Stop(); }
const metric::Group& metrics() const { return metrics_; }
uint32_t num_read_errors() const { return read_errors_.value(); }
uint32_t num_egress_errors() const { return egress_errors_.value(); }
// Once stopped, will no longer process data.
void Stop() {
if (stopped_) {
return;
}
stopped_ = true;
}
protected:
// From pw::thread::ThreadCore.
void Run() final {
while (!stopped_) {
auto read = reader_.Read(read_buffer_);
if (!read.ok()) {
read_errors_.Increment();
continue;
}
if (const auto status = ingress_handler_.ProcessIncomingData(*read);
!status.ok()) {
egress_errors_.Increment();
continue;
}
}
}
private:
std::array<std::byte, kReadSize> read_buffer_ = {};
pw::stream::Reader& reader_;
pw::rpc::RpcIngressHandler& ingress_handler_;
std::atomic<bool> stopped_ = false;
PW_METRIC_GROUP(metrics_, "pw_rpc_stream_rpc_dispatcher");
PW_METRIC(metrics_, read_errors_, "read_errors", 0u);
PW_METRIC(metrics_, egress_errors_, "egress_errors", 0u);
};
} // namespace pw::rpc