Skip to content
This repository was archived by the owner on Jan 26, 2021. It is now read-only.

Commit 1aa5a41

Browse files
Update gRPC client stub generation. (#90)
Client stubs should extend Client and use $createCall to create ClientCall objects. The super-class will handle merging the per-client call options with the per-RPC options. And make it easier to refactor call generation code.
1 parent 3889290 commit 1aa5a41

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.7.6 - 2017-08-22
2+
3+
* Updated gRPC client stub generation to produce code matching latest changes to
4+
dart-lang/dart-grpc.
5+
16
## 0.7.5 - 2017-08-04
27

38
* Use real generic syntax instead of comment-based.

lib/grpc_generator.dart

+5-5
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ class GrpcServiceGenerator {
111111
}
112112

113113
void _generateClient(IndentingWriter out) {
114-
out.addBlock('class $_clientClassname {', '}', () {
115-
out.println('final ClientChannel _channel;');
116-
out.println();
114+
out.addBlock('class $_clientClassname extends Client {', '}', () {
117115
for (final method in _methods) {
118116
method.generateClientMethodDescriptor(out);
119117
}
120118
out.println();
121-
out.println('$_clientClassname(this._channel);');
119+
out.println(
120+
'$_clientClassname(ClientChannel channel, {CallOptions options})');
121+
out.println(' : super(channel, options: options);');
122122
for (final method in _methods) {
123123
method.generateClientStub(out);
124124
}
@@ -222,7 +222,7 @@ class _GrpcMethod {
222222
'$_clientReturnType $_dartName($_argumentType request, {CallOptions options}) {',
223223
'}', () {
224224
out.println(
225-
'final call = new ClientCall(_channel, _\$$_dartName, options: options);');
225+
'final call = \$createCall(_\$$_dartName, options: options);');
226226
if (_clientStreaming) {
227227
out.println('request.pipe(call.request);');
228228
} else {

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: protoc_plugin
2-
version: 0.7.5
2+
version: 0.7.6
33
author: Dart Team <[email protected]>
44
description: Protoc compiler plugin to generate Dart code
55
homepage: https://github.com/dart-lang/dart-protoc-plugin

test/file_generator_test.dart

+7-8
Original file line numberDiff line numberDiff line change
@@ -523,9 +523,7 @@ import 'package:grpc/grpc.dart';
523523
import 'test.pb.dart';
524524
export 'test.pb.dart';
525525
526-
class TestClient {
527-
final ClientChannel _channel;
528-
526+
class TestClient extends Client {
529527
static final _$unary = new ClientMethod<Input, Output>(
530528
'/Test/Unary',
531529
(Input value) => value.writeToBuffer(),
@@ -543,10 +541,11 @@ class TestClient {
543541
(Input value) => value.writeToBuffer(),
544542
(List<int> value) => new Output.fromBuffer(value));
545543
546-
TestClient(this._channel);
544+
TestClient(ClientChannel channel, {CallOptions options})
545+
: super(channel, options: options);
547546
548547
ResponseFuture<Output> unary(Input request, {CallOptions options}) {
549-
final call = new ClientCall(_channel, _$unary, options: options);
548+
final call = $createCall(_$unary, options: options);
550549
call.request
551550
..add(request)
552551
..close();
@@ -555,13 +554,13 @@ class TestClient {
555554
556555
ResponseFuture<Output> clientStreaming(Stream<Input> request,
557556
{CallOptions options}) {
558-
final call = new ClientCall(_channel, _$clientStreaming, options: options);
557+
final call = $createCall(_$clientStreaming, options: options);
559558
request.pipe(call.request);
560559
return new ResponseFuture(call);
561560
}
562561
563562
ResponseStream<Output> serverStreaming(Input request, {CallOptions options}) {
564-
final call = new ClientCall(_channel, _$serverStreaming, options: options);
563+
final call = $createCall(_$serverStreaming, options: options);
565564
call.request
566565
..add(request)
567566
..close();
@@ -570,7 +569,7 @@ class TestClient {
570569
571570
ResponseStream<Output> bidirectional(Stream<Input> request,
572571
{CallOptions options}) {
573-
final call = new ClientCall(_channel, _$bidirectional, options: options);
572+
final call = $createCall(_$bidirectional, options: options);
574573
request.pipe(call.request);
575574
return new ResponseStream(call);
576575
}

0 commit comments

Comments
 (0)