| // 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 "pw_rpc/channel.h" |
| #include "pw_rpc/internal/service_registry.h" |
| |
| namespace pw::rpc { |
| namespace internal { |
| |
| class Method; |
| class Packet; |
| |
| } // namespace internal |
| |
| class Server { |
| public: |
| constexpr Server(span<Channel> channels) : channels_(channels) {} |
| |
| Server(const Server& other) = delete; |
| Server& operator=(const Server& other) = delete; |
| |
| // 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_.Register(service); |
| } |
| |
| void ProcessPacket(span<const std::byte> packet, ChannelOutput& interface); |
| |
| constexpr size_t channel_count() const { return channels_.size(); } |
| |
| private: |
| void InvokeMethod(const internal::Packet& request, |
| Channel& channel, |
| internal::Packet& response, |
| span<std::byte> buffer); |
| |
| void SendResponse(const Channel& output, |
| const internal::Packet& response, |
| span<std::byte> response_buffer) const; |
| |
| Channel* FindChannel(uint32_t id) const; |
| Channel* AssignChannel(uint32_t id, ChannelOutput& interface); |
| |
| span<Channel> channels_; |
| internal::ServiceRegistry services_; |
| }; |
| |
| } // namespace pw::rpc |