82 lines
2.6 KiB
C++
82 lines
2.6 KiB
C++
// Copyright 2020 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.
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
|
|
#include "pw_assert/check.h"
|
|
#include "pw_hdlc/rpc_channel.h"
|
|
#include "pw_hdlc/rpc_packets.h"
|
|
#include "pw_log/log.h"
|
|
#include "pw_rpc_system_server/rpc_server.h"
|
|
#include "pw_stream/socket_stream.h"
|
|
|
|
namespace pw::rpc::system_server {
|
|
namespace {
|
|
|
|
constexpr size_t kMaxTransmissionUnit = 512;
|
|
uint16_t socket_port = 33000;
|
|
|
|
stream::SocketStream socket_stream;
|
|
|
|
hdlc::RpcChannelOutput hdlc_channel_output(socket_stream,
|
|
hdlc::kDefaultRpcAddress,
|
|
"HDLC channel");
|
|
Channel channels[] = {rpc::Channel::Create<1>(&hdlc_channel_output)};
|
|
rpc::Server server(channels);
|
|
|
|
} // namespace
|
|
|
|
void set_socket_port(uint16_t new_socket_port) {
|
|
socket_port = new_socket_port;
|
|
}
|
|
|
|
void Init() {
|
|
log_basic::SetOutput([](std::string_view log) {
|
|
std::fprintf(stderr, "%.*s\n", static_cast<int>(log.size()), log.data());
|
|
hdlc::WriteUIFrame(1, std::as_bytes(std::span(log)), socket_stream)
|
|
.IgnoreError(); // TODO(pwbug/387): Handle Status properly
|
|
});
|
|
|
|
PW_LOG_INFO("Starting pw_rpc server on port %d", socket_port);
|
|
PW_CHECK_OK(socket_stream.Serve(socket_port));
|
|
}
|
|
|
|
rpc::Server& Server() { return server; }
|
|
|
|
Status Start() {
|
|
// Declare a buffer for decoding incoming HDLC frames.
|
|
std::array<std::byte, kMaxTransmissionUnit> input_buffer;
|
|
hdlc::Decoder decoder(input_buffer);
|
|
|
|
while (true) {
|
|
std::array<std::byte, kMaxTransmissionUnit> data;
|
|
auto ret_val = socket_stream.Read(data);
|
|
if (ret_val.ok()) {
|
|
for (std::byte byte : ret_val.value()) {
|
|
if (auto result = decoder.Process(byte); result.ok()) {
|
|
hdlc::Frame& frame = result.value();
|
|
if (frame.address() == hdlc::kDefaultRpcAddress) {
|
|
server.ProcessPacket(frame.data(), hdlc_channel_output)
|
|
.IgnoreError(); // TODO(pwbug/387): Handle Status properly
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace pw::rpc::system_server
|