blob: 21a950d0a41094d570339ad8b6bf4ace36a4330d [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
Ewout van Bekkum7f5b3052021-11-11 17:35:23 -080015// clang-format off
16#include "pw_rpc/internal/log_config.h" // PW_LOG_* macros must be first.
17
Alexei Frolov4d2adde2020-08-04 10:19:24 -070018#include "pw_rpc/client.h"
Ewout van Bekkum7f5b3052021-11-11 17:35:23 -080019// clang-format on
Alexei Frolov4d2adde2020-08-04 10:19:24 -070020
21#include "pw_log/log.h"
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070022#include "pw_rpc/internal/client_call.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070023#include "pw_rpc/internal/packet.h"
Wyatt Hepler82db4b12021-09-23 09:10:12 -070024#include "pw_status/try.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070025
26namespace pw::rpc {
27namespace {
28
Alexei Frolov4d2adde2020-08-04 10:19:24 -070029using internal::Packet;
30using internal::PacketType;
31
32} // namespace
33
34Status Client::ProcessPacket(ConstByteSpan data) {
Dennis Kormaleve7303062022-04-01 15:48:39 +000035 PW_TRY_ASSIGN(Packet packet, Endpoint::ProcessPacket(data, Packet::kClient));
Alexei Frolov4d2adde2020-08-04 10:19:24 -070036
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070037 // Find an existing call for this RPC, if any.
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070038 internal::rpc_lock().lock();
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070039 internal::ClientCall* call =
40 static_cast<internal::ClientCall*>(FindCall(packet));
41
Wyatt Hepler82db4b12021-09-23 09:10:12 -070042 internal::Channel* channel = GetInternalChannel(packet.channel_id());
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070043
Wyatt Hepler82db4b12021-09-23 09:10:12 -070044 if (channel == nullptr) {
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070045 internal::rpc_lock().unlock();
Wyatt Heplerb1c47992022-01-06 11:05:50 -080046 PW_LOG_WARN("RPC client received a packet for an unregistered channel");
Wyatt Hepler82db4b12021-09-23 09:10:12 -070047 return Status::Unavailable();
Alexei Frolov062ed182020-09-28 16:23:06 -070048 }
49
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070050 if (call == nullptr || call->id() != packet.call_id()) {
Alexei Frolov86e05de2021-10-19 16:52:31 -070051 // The call for the packet does not exist. If the packet is a server stream
52 // message, notify the server so that it can kill the stream. Otherwise,
53 // silently drop the packet (as it would terminate the RPC anyway).
54 if (packet.type() == PacketType::SERVER_STREAM) {
Wyatt Hepler3be460d2021-09-09 16:28:12 -070055 channel->Send(Packet::ClientError(packet, Status::FailedPrecondition()))
56 .IgnoreError();
Wyatt Heplerb1c47992022-01-06 11:05:50 -080057 PW_LOG_WARN("RPC client received stream message for an unknown call");
Wyatt Hepler3be460d2021-09-09 16:28:12 -070058 }
Wyatt Hepleraf16dbb2022-01-27 20:15:15 -080059 internal::rpc_lock().unlock();
Wyatt Hepler82db4b12021-09-23 09:10:12 -070060 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070061 }
62
63 switch (packet.type()) {
64 case PacketType::RESPONSE:
Wyatt Hepler82db4b12021-09-23 09:10:12 -070065 // RPCs without a server stream include a payload with the final packet.
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070066 if (call->has_server_stream()) {
67 static_cast<internal::StreamResponseClientCall&>(*call).HandleCompleted(
Wyatt Hepler82db4b12021-09-23 09:10:12 -070068 packet.status());
69 } else {
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070070 static_cast<internal::UnaryResponseClientCall&>(*call).HandleCompleted(
Wyatt Hepler82db4b12021-09-23 09:10:12 -070071 packet.payload(), packet.status());
72 }
73 break;
Alexei Frolovd7276222020-10-01 12:41:59 -070074 case PacketType::SERVER_ERROR:
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070075 call->HandleError(packet.status());
Alexei Frolov4d2adde2020-08-04 10:19:24 -070076 break;
Wyatt Hepler5ba80642021-06-18 12:56:17 -070077 case PacketType::SERVER_STREAM:
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070078 if (call->has_server_stream()) {
79 call->HandlePayload(packet.payload());
Wyatt Hepler82db4b12021-09-23 09:10:12 -070080 } else {
Wyatt Hepler82db4b12021-09-23 09:10:12 -070081 // Report the error to the server so it can abort the RPC.
82 channel->Send(Packet::ClientError(packet, Status::InvalidArgument()))
83 .IgnoreError(); // Errors are logged in Channel::Send.
Wyatt Hepleraf16dbb2022-01-27 20:15:15 -080084 call->HandleError(Status::InvalidArgument());
85 PW_LOG_DEBUG("Received SERVER_STREAM for RPC without a server stream");
Wyatt Hepler82db4b12021-09-23 09:10:12 -070086 }
Alexei Frolov4d2adde2020-08-04 10:19:24 -070087 break;
Alexei Frolov4d2adde2020-08-04 10:19:24 -070088 default:
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070089 internal::rpc_lock().unlock();
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070090 PW_LOG_WARN("pw_rpc client unable to handle packet of type %u",
Wyatt Hepler82db4b12021-09-23 09:10:12 -070091 static_cast<unsigned>(packet.type()));
Alexei Frolov4d2adde2020-08-04 10:19:24 -070092 }
93
Wyatt Hepler82db4b12021-09-23 09:10:12 -070094 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070095}
96
97} // namespace pw::rpc