blob: 7c30ab3cc3124df1f8ca85dfcc760f7ccd7611a7 [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
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070021#include <mutex>
22
Alexei Frolov4d2adde2020-08-04 10:19:24 -070023#include "pw_log/log.h"
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070024#include "pw_rpc/internal/client_call.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070025#include "pw_rpc/internal/packet.h"
Wyatt Hepler82db4b12021-09-23 09:10:12 -070026#include "pw_status/try.h"
Alexei Frolov4d2adde2020-08-04 10:19:24 -070027
28namespace pw::rpc {
29namespace {
30
Alexei Frolov4d2adde2020-08-04 10:19:24 -070031using internal::Packet;
32using internal::PacketType;
33
34} // namespace
35
36Status Client::ProcessPacket(ConstByteSpan data) {
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070037 PW_TRY_ASSIGN(Result<Packet> result,
38 Endpoint::ProcessPacket(data, Packet::kClient));
Wyatt Hepler82db4b12021-09-23 09:10:12 -070039 Packet& packet = *result;
Alexei Frolov4d2adde2020-08-04 10:19:24 -070040
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070041 // Find an existing call for this RPC, if any.
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070042 internal::rpc_lock().lock();
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070043 internal::ClientCall* call =
44 static_cast<internal::ClientCall*>(FindCall(packet));
45
Wyatt Hepler82db4b12021-09-23 09:10:12 -070046 internal::Channel* channel = GetInternalChannel(packet.channel_id());
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070047
Wyatt Hepler82db4b12021-09-23 09:10:12 -070048 if (channel == nullptr) {
Alexei Frolov062ed182020-09-28 16:23:06 -070049 PW_LOG_WARN("RPC client received a packet for an unregistered channel");
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070050 internal::rpc_lock().unlock();
Wyatt Hepler82db4b12021-09-23 09:10:12 -070051 return Status::Unavailable();
Alexei Frolov062ed182020-09-28 16:23:06 -070052 }
53
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070054 if (call == nullptr || call->id() != packet.call_id()) {
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070055 internal::rpc_lock().unlock();
Alexei Frolov86e05de2021-10-19 16:52:31 -070056 // The call for the packet does not exist. If the packet is a server stream
57 // message, notify the server so that it can kill the stream. Otherwise,
58 // silently drop the packet (as it would terminate the RPC anyway).
59 if (packet.type() == PacketType::SERVER_STREAM) {
60 PW_LOG_WARN("RPC client received stream message for an unknown call");
Wyatt Hepler3be460d2021-09-09 16:28:12 -070061 channel->Send(Packet::ClientError(packet, Status::FailedPrecondition()))
62 .IgnoreError();
63 }
Wyatt Hepler82db4b12021-09-23 09:10:12 -070064 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070065 }
66
67 switch (packet.type()) {
68 case PacketType::RESPONSE:
Wyatt Hepler82db4b12021-09-23 09:10:12 -070069 // RPCs without a server stream include a payload with the final packet.
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070070 if (call->has_server_stream()) {
71 static_cast<internal::StreamResponseClientCall&>(*call).HandleCompleted(
Wyatt Hepler82db4b12021-09-23 09:10:12 -070072 packet.status());
73 } else {
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070074 static_cast<internal::UnaryResponseClientCall&>(*call).HandleCompleted(
Wyatt Hepler82db4b12021-09-23 09:10:12 -070075 packet.payload(), packet.status());
76 }
77 break;
Alexei Frolovd7276222020-10-01 12:41:59 -070078 case PacketType::SERVER_ERROR:
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070079 call->HandleError(packet.status());
Alexei Frolov4d2adde2020-08-04 10:19:24 -070080 break;
Wyatt Hepler5ba80642021-06-18 12:56:17 -070081 case PacketType::SERVER_STREAM:
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070082 if (call->has_server_stream()) {
83 call->HandlePayload(packet.payload());
Wyatt Hepler82db4b12021-09-23 09:10:12 -070084 } else {
85 PW_LOG_DEBUG("Received SERVER_STREAM for RPC without a server stream");
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070086 call->HandleError(Status::InvalidArgument());
Wyatt Hepler82db4b12021-09-23 09:10:12 -070087 // Report the error to the server so it can abort the RPC.
88 channel->Send(Packet::ClientError(packet, Status::InvalidArgument()))
89 .IgnoreError(); // Errors are logged in Channel::Send.
90 }
Alexei Frolov4d2adde2020-08-04 10:19:24 -070091 break;
Alexei Frolov4d2adde2020-08-04 10:19:24 -070092 default:
Wyatt Heplerc8bdc7d2021-10-20 09:29:01 -070093 internal::rpc_lock().unlock();
Wyatt Hepler1d000cc2021-10-20 11:05:06 -070094 PW_LOG_WARN("pw_rpc client unable to handle packet of type %u",
Wyatt Hepler82db4b12021-09-23 09:10:12 -070095 static_cast<unsigned>(packet.type()));
Alexei Frolov4d2adde2020-08-04 10:19:24 -070096 }
97
Wyatt Hepler82db4b12021-09-23 09:10:12 -070098 return OkStatus(); // OK since the packet was handled
Alexei Frolov4d2adde2020-08-04 10:19:24 -070099}
100
101} // namespace pw::rpc