blob: 9cd5695190ded3b445050ae5cf110431effd9dd9 [file] [log] [blame]
// 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.
#pragma once
#include <cstddef>
#include <span>
#include "pw_containers/intrusive_list.h"
#include "pw_rpc/channel.h"
#include "pw_rpc/internal/base_server_writer.h"
#include "pw_rpc/internal/channel.h"
#include "pw_rpc/internal/service.h"
namespace pw::rpc {
class Server {
public:
constexpr Server(std::span<Channel> channels)
: channels_(static_cast<internal::Channel*>(channels.data()),
channels.size()) {}
~Server();
// Registers a service with the server. This should not be called directly
// with an internal::Service; instead, use a generated class which inherits
// from it.
void RegisterService(internal::Service& service) {
services_.push_front(service);
}
void ProcessPacket(std::span<const std::byte> packet,
ChannelOutput& interface);
constexpr size_t channel_count() const { return channels_.size(); }
protected:
IntrusiveList<internal::BaseServerWriter>& writers() { return writers_; }
private:
void HandleRpcPacket(const internal::Packet& request,
internal::Channel& channel);
void HandleCancelPacket(const internal::Packet& request);
void InvokeMethod(const internal::Packet& request,
Channel& channel,
internal::Packet& response,
std::span<std::byte> buffer);
internal::Channel* FindChannel(uint32_t id) const;
internal::Channel* AssignChannel(uint32_t id, ChannelOutput& interface);
std::span<internal::Channel> channels_;
IntrusiveList<internal::Service> services_;
IntrusiveList<internal::BaseServerWriter> writers_;
};
} // namespace pw::rpc