blob: ebcc93ea0fc7d363fb4e0214ae6727bdf1e5340c [file] [log] [blame]
Alexei Frolov5d6d3922020-05-08 13:57:02 -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.
14syntax = "proto3";
15
16package pw.rpc.internal;
17
Wyatt Heplerba43a3c2020-08-13 12:45:25 -070018option java_package = "dev.pigweed.pw.rpc.internal";
19
Wyatt Hepleraf835682020-06-17 11:42:53 -070020enum PacketType {
Wyatt Hepler0f262352020-07-29 09:51:27 -070021 // To simplify identifying the origin of a packet, client-to-server packets
22 // use even numbers and server-to-client packets use odd numbers.
Wyatt Hepleraf835682020-06-17 11:42:53 -070023
Wyatt Hepler0f262352020-07-29 09:51:27 -070024 // Client-to-server packets
Wyatt Hepler712d3672020-07-13 15:52:11 -070025
Wyatt Hepler5ba80642021-06-18 12:56:17 -070026 // The client invokes an RPC. Always the first packet.
Wyatt Hepler0f262352020-07-29 09:51:27 -070027 REQUEST = 0;
Wyatt Hepler712d3672020-07-13 15:52:11 -070028
Wyatt Hepler5ba80642021-06-18 12:56:17 -070029 // A message in a client stream. Always sent after a REQUEST and before a
30 // CLIENT_STREAM_END.
Wyatt Heplera9211162021-06-12 15:40:11 -070031 CLIENT_STREAM = 2;
Wyatt Hepler0f262352020-07-29 09:51:27 -070032
33 // The client received a packet for an RPC it did not request.
34 CLIENT_ERROR = 4;
35
Wyatt Heplera9211162021-06-12 15:40:11 -070036 // The client requests cancellation of an ongoing RPC.
37 CANCEL = 6;
38
39 // A client stream has completed.
40 CLIENT_STREAM_END = 8;
Wyatt Hepler0f262352020-07-29 09:51:27 -070041
42 // Server-to-client packets
43
Wyatt Hepler5ba80642021-06-18 12:56:17 -070044 // The RPC has finished.
Wyatt Hepler0f262352020-07-29 09:51:27 -070045 RESPONSE = 1;
46
Wyatt Hepler5ba80642021-06-18 12:56:17 -070047 // Deprecated, do not use. Formerly was used as the last packet in a server
48 // stream.
49 DEPRECATED_SERVER_STREAM_END = 3;
Wyatt Hepler0f262352020-07-29 09:51:27 -070050
51 // The server was unable to process a request.
52 SERVER_ERROR = 5;
Wyatt Hepler5ba80642021-06-18 12:56:17 -070053
54 // A message in a server stream.
55 SERVER_STREAM = 7;
Wyatt Hepleraf835682020-06-17 11:42:53 -070056}
Alexei Frolov5d6d3922020-05-08 13:57:02 -070057
58message RpcPacket {
Wyatt Heplerba43a3c2020-08-13 12:45:25 -070059 // The type of packet. Determines which other fields are used.
Alexei Frolov5d6d3922020-05-08 13:57:02 -070060 PacketType type = 1;
61
Wyatt Heplerba43a3c2020-08-13 12:45:25 -070062 // Channel through which the packet is sent.
Alexei Frolov5d6d3922020-05-08 13:57:02 -070063 uint32 channel_id = 2;
64
Wyatt Hepler712d3672020-07-13 15:52:11 -070065 // Hash of the fully-qualified name of the service with which this packet is
Alexei Frolov5d6d3922020-05-08 13:57:02 -070066 // associated. For RPC packets, this is the service that processes the packet.
Wyatt Hepler712d3672020-07-13 15:52:11 -070067 fixed32 service_id = 3;
Alexei Frolov5d6d3922020-05-08 13:57:02 -070068
Wyatt Hepler712d3672020-07-13 15:52:11 -070069 // Hash of the name of the method which should process this packet.
70 fixed32 method_id = 4;
Alexei Frolov5d6d3922020-05-08 13:57:02 -070071
Wyatt Hepler712d3672020-07-13 15:52:11 -070072 // The packet's payload, which is an encoded protobuf.
Alexei Frolov5d6d3922020-05-08 13:57:02 -070073 bytes payload = 5;
Alexei Frolov00890942020-05-19 10:45:08 -070074
Wyatt Hepler712d3672020-07-13 15:52:11 -070075 // Status code for the RPC response or error.
Alexei Frolov00890942020-05-19 10:45:08 -070076 uint32 status = 6;
Wyatt Hepleraf835682020-06-17 11:42:53 -070077}