blob: eb5c6d8a8afbbb3b9ee30670785d680651354ba6 [file] [log] [blame]
Alexei Frolov4d2adde2020-08-04 10:19:24 -07001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15#include "pw_rpc/client.h"
16
17#include "pw_log/log.h"
18#include "pw_rpc/internal/packet.h"
Wyatt Hepler82db4b12021-09-23 09:10:12 -070019#include "pw_status/try.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070020
21namespace pw::rpc {
22namespace {
23
Alexei Frolov4d2adde2020-08-04 10:19:24 -070024using internal::Packet;
25using internal::PacketType;
26
27} // namespace
28
29Status Client::ProcessPacket(ConstByteSpan data) {
Wyatt Hepler82db4b12021-09-23 09:10:12 -070030 internal::Call* base;
31 Result<Packet> result = Endpoint::ProcessPacket(data, Packet::kClient, base);
Alexei Frolov4d2adde2020-08-04 10:19:24 -070032
Wyatt Hepler82db4b12021-09-23 09:10:12 -070033 PW_TRY(result.status());
Alexei Frolov3f2d0082020-10-04 22:30:39 -070034
Wyatt Hepler82db4b12021-09-23 09:10:12 -070035 Packet& packet = *result;
Alexei Frolov4d2adde2020-08-04 10:19:24 -070036
Wyatt Hepler82db4b12021-09-23 09:10:12 -070037 internal::Channel* channel = GetInternalChannel(packet.channel_id());
38 if (channel == nullptr) {
Alexei Frolov062ed182020-09-28 16:23:06 -070039 PW_LOG_WARN("RPC client received a packet for an unregistered channel");
Wyatt Hepler82db4b12021-09-23 09:10:12 -070040 return Status::Unavailable();
Alexei Frolov062ed182020-09-28 16:23:06 -070041 }
42
Alexei Frolov86e05de2021-10-19 16:52:31 -070043 if (base == nullptr || base->id() != packet.call_id()) {
44 // The call for the packet does not exist. If the packet is a server stream
45 // message, notify the server so that it can kill the stream. Otherwise,
46 // silently drop the packet (as it would terminate the RPC anyway).
47 if (packet.type() == PacketType::SERVER_STREAM) {
48 PW_LOG_WARN("RPC client received stream message for an unknown call");
Wyatt Hepler3be460d2021-09-09 16:28:12 -070049 channel->Send(Packet::ClientError(packet, Status::FailedPrecondition()))
50 .IgnoreError();
51 }
Wyatt Hepler82db4b12021-09-23 09:10:12 -070052 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070053 }
54
Wyatt Hepler82db4b12021-09-23 09:10:12 -070055 internal::ClientCall& call = *static_cast<internal::ClientCall*>(base);
56
Alexei Frolov4d2adde2020-08-04 10:19:24 -070057 switch (packet.type()) {
58 case PacketType::RESPONSE:
Wyatt Hepler82db4b12021-09-23 09:10:12 -070059 // RPCs without a server stream include a payload with the final packet.
60 if (call.has_server_stream()) {
61 static_cast<internal::StreamResponseClientCall&>(call).HandleCompleted(
62 packet.status());
63 } else {
64 static_cast<internal::UnaryResponseClientCall&>(call).HandleCompleted(
65 packet.payload(), packet.status());
66 }
67 break;
Alexei Frolovd7276222020-10-01 12:41:59 -070068 case PacketType::SERVER_ERROR:
Wyatt Hepler82db4b12021-09-23 09:10:12 -070069 call.HandleError(packet.status());
Alexei Frolov4d2adde2020-08-04 10:19:24 -070070 break;
Wyatt Hepler5ba80642021-06-18 12:56:17 -070071 case PacketType::SERVER_STREAM:
Wyatt Hepler82db4b12021-09-23 09:10:12 -070072 if (call.has_server_stream()) {
73 call.HandlePayload(packet.payload());
74 } else {
75 PW_LOG_DEBUG("Received SERVER_STREAM for RPC without a server stream");
76 call.HandleError(Status::InvalidArgument());
77 // Report the error to the server so it can abort the RPC.
78 channel->Send(Packet::ClientError(packet, Status::InvalidArgument()))
79 .IgnoreError(); // Errors are logged in Channel::Send.
80 }
Alexei Frolov4d2adde2020-08-04 10:19:24 -070081 break;
Alexei Frolov4d2adde2020-08-04 10:19:24 -070082 default:
Wyatt Hepler82db4b12021-09-23 09:10:12 -070083 PW_LOG_WARN("pw_rpc server unable to handle packet of type %u",
84 static_cast<unsigned>(packet.type()));
Alexei Frolov4d2adde2020-08-04 10:19:24 -070085 }
86
Wyatt Hepler82db4b12021-09-23 09:10:12 -070087 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070088}
89
90} // namespace pw::rpc