|
1 | | - |
2 | | -// Copyright 2015 gRPC authors. |
3 | | -// |
4 | | -// Licensed under the Apache License, Version 2.0 (the "License"); |
5 | | -// you may not use this file except in compliance with the License. |
6 | | -// You may obtain a copy of the License at |
7 | | -// |
8 | | -// http://www.apache.org/licenses/LICENSE-2.0 |
9 | | -// |
10 | | -// Unless required by applicable law or agreed to in writing, software |
11 | | -// distributed under the License is distributed on an "AS IS" BASIS, |
12 | | -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 | | -// See the License for the specific language governing permissions and |
14 | | -// limitations under the License. |
15 | | - |
16 | 1 | syntax = "proto3"; |
17 | 2 |
|
18 | | -option java_multiple_files = true; |
19 | | -option java_package = "io.grpc.examples.routeguide"; |
20 | | -option java_outer_classname = "RouteGuideProto"; |
21 | | -option objc_class_prefix = "RTG"; |
22 | | - |
23 | | -package routeguide; |
24 | | - |
25 | | -// Interface exported by the server. |
26 | | -service RouteGuide { |
27 | | - // A simple RPC. |
28 | | - // |
29 | | - // Obtains the feature at a given position. |
30 | | - // |
31 | | - // A feature with an empty name is returned if there's no feature at the given |
32 | | - // position. |
33 | | - rpc GetFeature(Point) returns (Feature) {} |
34 | | - |
35 | | - // A server-to-client streaming RPC. |
36 | | - // |
37 | | - // Obtains the Features available within the given Rectangle. Results are |
38 | | - // streamed rather than returned at once (e.g. in a response message with a |
39 | | - // repeated field), as the rectangle may cover a large area and contain a |
40 | | - // huge number of features. |
41 | | - rpc ListFeatures(Rectangle) returns (stream Feature) {} |
| 3 | +package helloworld; |
42 | 4 |
|
43 | | - // A client-to-server streaming RPC. |
44 | | - // |
45 | | - // Accepts a stream of Points on a route being traversed, returning a |
46 | | - // RouteSummary when traversal is completed. |
47 | | - rpc RecordRoute(stream Point) returns (RouteSummary) {} |
48 | | - |
49 | | - // A Bidirectional streaming RPC. |
50 | | - // |
51 | | - // Accepts a stream of RouteNotes sent while a route is being traversed, |
52 | | - // while receiving other RouteNotes (e.g. from other users). |
53 | | - rpc RouteChat(stream RouteNote) returns (stream RouteNote) {} |
| 5 | +// The greeting service definition. |
| 6 | +service Greeter { |
| 7 | + // Sends a greeting |
| 8 | + // rpc SayHello (HelloRequest) returns (HelloReply) {} |
| 9 | + rpc SayHello (HelloNestedRequest) returns (HelloNestedReply) {} |
| 10 | + rpc SayHelloCS (stream HelloRequest) returns (HelloReply) {} |
| 11 | + rpc SayHellos (HelloRequest) returns (stream HelloReply) {} |
| 12 | + rpc SayHelloBidi (stream HelloRequest) returns (stream HelloReply) {} |
54 | 13 | } |
55 | 14 |
|
56 | | -// Points are represented as latitude-longitude pairs in the E7 representation |
57 | | -// (degrees multiplied by 10**7 and rounded to the nearest integer). |
58 | | -// Latitudes should be in the range +/- 90 degrees and longitude should be in |
59 | | -// the range +/- 180 degrees (inclusive). |
60 | | -message Point { |
61 | | - int32 latitude = 1; |
62 | | - int32 longitude = 2; |
| 15 | +// The request message containing the user's name. |
| 16 | +message HelloRequest { |
| 17 | + string name = 1; |
63 | 18 | } |
64 | 19 |
|
65 | | -// A latitude-longitude rectangle, represented as two diagonally opposite |
66 | | -// points "lo" and "hi". |
67 | | -message Rectangle { |
68 | | - // One corner of the rectangle. |
69 | | - Point lo = 1; |
70 | | - |
71 | | - // The other corner of the rectangle. |
72 | | - Point hi = 2; |
| 20 | +// The response message containing the greetings |
| 21 | +message HelloReply { |
| 22 | + string message = 1; |
73 | 23 | } |
74 | 24 |
|
75 | | -// A feature names something at a given point. |
76 | | -// |
77 | | -// If a feature could not be named, the name is empty. |
78 | | -message Feature { |
79 | | - // The name of the feature. |
80 | | - string name = 1; |
81 | | - |
82 | | - // The point where the feature is detected. |
83 | | - Point location = 2; |
| 25 | +message HelloNestedRequest { |
| 26 | + HelloRequest firstPerson = 1; |
| 27 | + HelloRequest secondPerson = 2; |
84 | 28 | } |
85 | 29 |
|
86 | | -// A RouteNote is a message sent while at a given point. |
87 | | -message RouteNote { |
88 | | - // The location from which the message is sent. |
89 | | - Point location = 1; |
90 | | - |
91 | | - // The message to be sent. |
92 | | - string message = 2; |
| 30 | +message HelloNestedReply { |
| 31 | + repeated HelloReply serverMessage = 1; |
93 | 32 | } |
94 | | - |
95 | | -// A RouteSummary is received in response to a RecordRoute rpc. |
96 | | -// |
97 | | -// It contains the number of individual points received, the number of |
98 | | -// detected features, and the total distance covered as the cumulative sum of |
99 | | -// the distance between each point. |
100 | | -message RouteSummary { |
101 | | - // The number of points received. |
102 | | - int32 point_count = 1; |
103 | | - |
104 | | - // The number of known features passed while traversing the route. |
105 | | - int32 feature_count = 2; |
106 | | - |
107 | | - // The distance covered in metres. |
108 | | - int32 distance = 3; |
109 | | - |
110 | | - // The duration of the traversal in seconds. |
111 | | - int32 elapsed_time = 4; |
| 33 | +// The request message containing the user's name. |
| 34 | +message HelloHowOldRequest { |
| 35 | + int32 age = 1; |
| 36 | +} |
| 37 | +message HelloAge { |
| 38 | + int32 age = 1; |
112 | 39 | } |
113 | | - |
0 commit comments