blob: b519f558288c937399f5bc6e75c1a3ffaffcfbae [file] [log] [blame]
Jan Tattermusch7897ae92017-06-07 22:57:36 +02001// Copyright 2015 gRPC authors.
Tim Emiola23307f22015-02-18 04:12:18 -08002//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
Tim Emiola23307f22015-02-18 04:12:18 -08006//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02007// http://www.apache.org/licenses/LICENSE-2.0
Tim Emiola23307f22015-02-18 04:12:18 -08008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
Tim Emiola23307f22015-02-18 04:12:18 -080014
15syntax = "proto3";
16
Eric Anderson8d3ae462016-02-03 10:07:44 -080017option java_multiple_files = true;
18option java_package = "io.grpc.examples.routeguide";
19option java_outer_classname = "RouteGuideProto";
Jorge Canizalese3534c32015-06-02 02:02:28 -070020option objc_class_prefix = "RTG";
Tim Emiola23307f22015-02-18 04:12:18 -080021
yang-g9a720212015-08-31 13:14:13 -070022package routeguide;
Tim Emiola23307f22015-02-18 04:12:18 -080023
Tim Emiolac1ee3822015-02-18 14:15:05 -080024// Interface exported by the server.
25service RouteGuide {
26 // A simple RPC.
27 //
28 // Obtains the feature at a given position.
Daniel Wangb224d6a2015-02-25 16:03:09 -080029 //
30 // A feature with an empty name is returned if there's no feature at the given
31 // position.
Tim Emiolac1ee3822015-02-18 14:15:05 -080032 rpc GetFeature(Point) returns (Feature) {}
33
34 // A server-to-client streaming RPC.
35 //
36 // Obtains the Features available within the given Rectangle. Results are
37 // streamed rather than returned at once (e.g. in a response message with a
38 // repeated field), as the rectangle may cover a large area and contain a
39 // huge number of features.
40 rpc ListFeatures(Rectangle) returns (stream Feature) {}
41
42 // A client-to-server streaming RPC.
43 //
44 // Accepts a stream of Points on a route being traversed, returning a
45 // RouteSummary when traversal is completed.
46 rpc RecordRoute(stream Point) returns (RouteSummary) {}
47
48 // A Bidirectional streaming RPC.
49 //
50 // Accepts a stream of RouteNotes sent while a route is being traversed,
51 // while receiving other RouteNotes (e.g. from other users).
52 rpc RouteChat(stream RouteNote) returns (stream RouteNote) {}
53}
54
Tim Emiola23307f22015-02-18 04:12:18 -080055// Points are represented as latitude-longitude pairs in the E7 representation
56// (degrees multiplied by 10**7 and rounded to the nearest integer).
57// Latitudes should be in the range +/- 90 degrees and longitude should be in
58// the range +/- 180 degrees (inclusive).
59message Point {
Tim Emiolac1ee3822015-02-18 14:15:05 -080060 int32 latitude = 1;
61 int32 longitude = 2;
Tim Emiola23307f22015-02-18 04:12:18 -080062}
63
64// A latitude-longitude rectangle, represented as two diagonally opposite
65// points "lo" and "hi".
66message Rectangle {
67 // One corner of the rectangle.
Tim Emiolac1ee3822015-02-18 14:15:05 -080068 Point lo = 1;
Tim Emiola23307f22015-02-18 04:12:18 -080069
70 // The other corner of the rectangle.
Tim Emiolac1ee3822015-02-18 14:15:05 -080071 Point hi = 2;
Tim Emiola23307f22015-02-18 04:12:18 -080072}
73
74// A feature names something at a given point.
75//
Tim Emiola9ab2c8b2015-02-18 08:08:15 -080076// If a feature could not be named, the name is empty.
Tim Emiola23307f22015-02-18 04:12:18 -080077message Feature {
78 // The name of the feature.
Tim Emiolac1ee3822015-02-18 14:15:05 -080079 string name = 1;
Tim Emiola23307f22015-02-18 04:12:18 -080080
81 // The point where the feature is detected.
Tim Emiolac1ee3822015-02-18 14:15:05 -080082 Point location = 2;
Tim Emiola23307f22015-02-18 04:12:18 -080083}
84
85// A RouteNote is a message sent while at a given point.
86message RouteNote {
Tim Emiola9ab2c8b2015-02-18 08:08:15 -080087 // The location from which the message is sent.
Tim Emiolac1ee3822015-02-18 14:15:05 -080088 Point location = 1;
Tim Emiola23307f22015-02-18 04:12:18 -080089
Tim Emiola9ab2c8b2015-02-18 08:08:15 -080090 // The message to be sent.
Tim Emiolac1ee3822015-02-18 14:15:05 -080091 string message = 2;
Tim Emiola23307f22015-02-18 04:12:18 -080092}
93
Tim Emiola9ab2c8b2015-02-18 08:08:15 -080094// A RouteSummary is received in response to a RecordRoute rpc.
Tim Emiola23307f22015-02-18 04:12:18 -080095//
Tim Emiola9ab2c8b2015-02-18 08:08:15 -080096// It contains the number of individual points received, the number of
97// detected features, and the total distance covered as the cumulative sum of
98// the distance between each point.
Tim Emiola23307f22015-02-18 04:12:18 -080099message RouteSummary {
100 // The number of points received.
Tim Emiolac1ee3822015-02-18 14:15:05 -0800101 int32 point_count = 1;
Tim Emiola23307f22015-02-18 04:12:18 -0800102
103 // The number of known features passed while traversing the route.
Tim Emiolac1ee3822015-02-18 14:15:05 -0800104 int32 feature_count = 2;
Tim Emiola23307f22015-02-18 04:12:18 -0800105
106 // The distance covered in metres.
Tim Emiolac1ee3822015-02-18 14:15:05 -0800107 int32 distance = 3;
Tim Emiola23307f22015-02-18 04:12:18 -0800108
109 // The duration of the traversal in seconds.
Tim Emiolac1ee3822015-02-18 14:15:05 -0800110 int32 elapsed_time = 4;
Tim Emiola23307f22015-02-18 04:12:18 -0800111}