- Notifications
You must be signed in to change notification settings - Fork 663
/
Copy pathroute_guide.proto
111 lines (93 loc) · 3.41 KB
/
route_guide.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright 2015 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax="proto3";
optionjava_multiple_files=true;
optionjava_package="io.grpc.examples.routeguide";
optionjava_outer_classname="RouteGuideProto";
optionobjc_class_prefix="RTG";
packagerouteguide;
// Interface exported by the server.
serviceRouteGuide {
// A simple RPC.
//
// Obtains the feature at a given position.
//
// A feature with an empty name is returned if there's no feature at the given
// position.
rpcGetFeature(Point) returns (Feature) {}
// A server-to-client streaming RPC.
//
// Obtains the Features available within the given Rectangle. Results are
// streamed rather than returned at once (e.g. in a response message with a
// repeated field), as the rectangle may cover a large area and contain a
// huge number of features.
rpcListFeatures(Rectangle) returns (streamFeature) {}
// A client-to-server streaming RPC.
//
// Accepts a stream of Points on a route being traversed, returning a
// RouteSummary when traversal is completed.
rpcRecordRoute(streamPoint) returns (RouteSummary) {}
// A Bidirectional streaming RPC.
//
// Accepts a stream of RouteNotes sent while a route is being traversed,
// while receiving other RouteNotes (e.g. from other users).
rpcRouteChat(streamRouteNote) returns (streamRouteNote) {}
}
// Points are represented as latitude-longitude pairs in the E7 representation
// (degrees multiplied by 10**7 and rounded to the nearest integer).
// Latitudes should be in the range +/- 90 degrees and longitude should be in
// the range +/- 180 degrees (inclusive).
messagePoint {
int32latitude=1;
int32longitude=2;
}
// A latitude-longitude rectangle, represented as two diagonally opposite
// points "lo" and "hi".
messageRectangle {
// One corner of the rectangle.
Pointlo=1;
// The other corner of the rectangle.
Pointhi=2;
}
// A feature names something at a given point.
//
// If a feature could not be named, the name is empty.
messageFeature {
// The name of the feature.
stringname=1;
// The point where the feature is detected.
Pointlocation=2;
}
// A RouteNote is a message sent while at a given point.
messageRouteNote {
// The location from which the message is sent.
Pointlocation=1;
// The message to be sent.
stringmessage=2;
}
// A RouteSummary is received in response to a RecordRoute rpc.
//
// It contains the number of individual points received, the number of
// detected features, and the total distance covered as the cumulative sum of
// the distance between each point.
messageRouteSummary {
// The number of points received.
int32point_count=1;
// The number of known features passed while traversing the route.
int32feature_count=2;
// The distance covered in metres.
int32distance=3;
// The duration of the traversal in seconds.
int32elapsed_time=4;
}