blob: 35856a85a37b883a1efcd2c7635da8b44a64be49 [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"
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070018#include "pw_rpc/internal/client_call.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070019#include "pw_rpc/internal/packet.h"
Wyatt Hepler82db4b12021-09-23 09:10:12 -070020#include "pw_status/try.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070021
22namespace pw::rpc {
23namespace {
24
Alexei Frolov4d2adde2020-08-04 10:19:24 -070025using internal::Packet;
26using internal::PacketType;
27
28} // namespace
29
30Status Client::ProcessPacket(ConstByteSpan data) {
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070031 PW_TRY_ASSIGN(Result<Packet> result,
32 Endpoint::ProcessPacket(data, Packet::kClient));
Wyatt Hepler82db4b12021-09-23 09:10:12 -070033 Packet& packet = *result;
Alexei Frolov4d2adde2020-08-04 10:19:24 -070034
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070035 // Find an existing call for this RPC, if any.
36 internal::ClientCall* call =
37 static_cast<internal::ClientCall*>(FindCall(packet));
38
Wyatt Hepler82db4b12021-09-23 09:10:12 -070039 internal::Channel* channel = GetInternalChannel(packet.channel_id());
40 if (channel == nullptr) {
Alexei Frolov062ed182020-09-28 16:23:06 -070041 PW_LOG_WARN("RPC client received a packet for an unregistered channel");
Wyatt Hepler82db4b12021-09-23 09:10:12 -070042 return Status::Unavailable();
Alexei Frolov062ed182020-09-28 16:23:06 -070043 }
44
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070045 if (call == nullptr || call->id() != packet.call_id()) {
Alexei Frolov86e05de2021-10-19 16:52:31 -070046 // The call for the packet does not exist. If the packet is a server stream
47 // message, notify the server so that it can kill the stream. Otherwise,
48 // silently drop the packet (as it would terminate the RPC anyway).
49 if (packet.type() == PacketType::SERVER_STREAM) {
50 PW_LOG_WARN("RPC client received stream message for an unknown call");
Wyatt Hepler3be460d2021-09-09 16:28:12 -070051 channel->Send(Packet::ClientError(packet, Status::FailedPrecondition()))
52 .IgnoreError();
53 }
Wyatt Hepler82db4b12021-09-23 09:10:12 -070054 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070055 }
56
57 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.
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070060 if (call->has_server_stream()) {
61 static_cast<internal::StreamResponseClientCall&>(*call).HandleCompleted(
Wyatt Hepler82db4b12021-09-23 09:10:12 -070062 packet.status());
63 } else {
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070064 static_cast<internal::UnaryResponseClientCall&>(*call).HandleCompleted(
Wyatt Hepler82db4b12021-09-23 09:10:12 -070065 packet.payload(), packet.status());
66 }
67 break;
Alexei Frolovd7276222020-10-01 12:41:59 -070068 case PacketType::SERVER_ERROR:
Wyatt Hepler1d000cc2021-10-20 11:05:06 -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 Hepler1d000cc2021-10-20 11:05:06 -070072 if (call->has_server_stream()) {
73 call->HandlePayload(packet.payload());
Wyatt Hepler82db4b12021-09-23 09:10:12 -070074 } else {
75 PW_LOG_DEBUG("Received SERVER_STREAM for RPC without a server stream");
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070076 call->HandleError(Status::InvalidArgument());
Wyatt Hepler82db4b12021-09-23 09:10:12 -070077 // 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 Hepler1d000cc2021-10-20 11:05:06 -070083 PW_LOG_WARN("pw_rpc client unable to handle packet of type %u",
Wyatt Hepler82db4b12021-09-23 09:10:12 -070084 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