package io.grpc.testing.integration.nano; import static io.grpc.stub.ClientCalls.asyncUnaryCall; import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; import static io.grpc.stub.ClientCalls.blockingUnaryCall; import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; import static io.grpc.stub.ClientCalls.futureUnaryCall; import static io.grpc.MethodDescriptor.generateFullMethodName; import static io.grpc.stub.ServerCalls.asyncUnaryCall; import static io.grpc.stub.ServerCalls.asyncServerStreamingCall; import static io.grpc.stub.ServerCalls.asyncClientStreamingCall; import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall; import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall; import java.io.IOException; /** *
 * Test service that supports all call types.
 * 
*/ @javax.annotation.Generated( value = "by gRPC proto compiler (version 1.1.0-SNAPSHOT)", comments = "Source: test.proto") public class TestServiceGrpc { private TestServiceGrpc() {} public static final String SERVICE_NAME = "grpc.testing.TestService"; // Static method descriptors that strictly reflect the proto. private static final int ARG_IN_METHOD_UNARY_CALL = 0; private static final int ARG_OUT_METHOD_UNARY_CALL = 1; @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_UNARY_CALL = io.grpc.MethodDescriptor.create( io.grpc.MethodDescriptor.MethodType.UNARY, generateFullMethodName( "grpc.testing.TestService", "UnaryCall"), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_IN_METHOD_UNARY_CALL)), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_OUT_METHOD_UNARY_CALL)) ); private static final int ARG_IN_METHOD_STREAMING_OUTPUT_CALL = 2; private static final int ARG_OUT_METHOD_STREAMING_OUTPUT_CALL = 3; @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_STREAMING_OUTPUT_CALL = io.grpc.MethodDescriptor.create( io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING, generateFullMethodName( "grpc.testing.TestService", "StreamingOutputCall"), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_IN_METHOD_STREAMING_OUTPUT_CALL)), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_OUT_METHOD_STREAMING_OUTPUT_CALL)) ); private static final int ARG_IN_METHOD_STREAMING_INPUT_CALL = 4; private static final int ARG_OUT_METHOD_STREAMING_INPUT_CALL = 5; @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_STREAMING_INPUT_CALL = io.grpc.MethodDescriptor.create( io.grpc.MethodDescriptor.MethodType.CLIENT_STREAMING, generateFullMethodName( "grpc.testing.TestService", "StreamingInputCall"), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_IN_METHOD_STREAMING_INPUT_CALL)), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_OUT_METHOD_STREAMING_INPUT_CALL)) ); private static final int ARG_IN_METHOD_FULL_BIDI_CALL = 6; private static final int ARG_OUT_METHOD_FULL_BIDI_CALL = 7; @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_FULL_BIDI_CALL = io.grpc.MethodDescriptor.create( io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING, generateFullMethodName( "grpc.testing.TestService", "FullBidiCall"), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_IN_METHOD_FULL_BIDI_CALL)), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_OUT_METHOD_FULL_BIDI_CALL)) ); private static final int ARG_IN_METHOD_HALF_BIDI_CALL = 8; private static final int ARG_OUT_METHOD_HALF_BIDI_CALL = 9; @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_HALF_BIDI_CALL = io.grpc.MethodDescriptor.create( io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING, generateFullMethodName( "grpc.testing.TestService", "HalfBidiCall"), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_IN_METHOD_HALF_BIDI_CALL)), io.grpc.protobuf.nano.NanoUtils.marshaller( new NanoFactory(ARG_OUT_METHOD_HALF_BIDI_CALL)) ); private static final class NanoFactory implements io.grpc.protobuf.nano.MessageNanoFactory { private final int id; NanoFactory(int id) { this.id = id; } @java.lang.Override public T newInstance() { Object o; switch (id) { case ARG_IN_METHOD_UNARY_CALL: o = new io.grpc.testing.integration.nano.Test.SimpleRequest(); break; case ARG_OUT_METHOD_UNARY_CALL: o = new io.grpc.testing.integration.nano.Test.SimpleResponse(); break; case ARG_IN_METHOD_STREAMING_OUTPUT_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest(); break; case ARG_OUT_METHOD_STREAMING_OUTPUT_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingOutputCallResponse(); break; case ARG_IN_METHOD_STREAMING_INPUT_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingInputCallRequest(); break; case ARG_OUT_METHOD_STREAMING_INPUT_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingInputCallResponse(); break; case ARG_IN_METHOD_FULL_BIDI_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest(); break; case ARG_OUT_METHOD_FULL_BIDI_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingOutputCallResponse(); break; case ARG_IN_METHOD_HALF_BIDI_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest(); break; case ARG_OUT_METHOD_HALF_BIDI_CALL: o = new io.grpc.testing.integration.nano.Test.StreamingOutputCallResponse(); break; default: throw new AssertionError(); } @java.lang.SuppressWarnings("unchecked") T t = (T) o; return t; } } /** * Creates a new async stub that supports all call types for the service */ public static TestServiceStub newStub(io.grpc.Channel channel) { return new TestServiceStub(channel); } /** * Creates a new blocking-style stub that supports unary and streaming output calls on the service */ public static TestServiceBlockingStub newBlockingStub( io.grpc.Channel channel) { return new TestServiceBlockingStub(channel); } /** * Creates a new ListenableFuture-style stub that supports unary and streaming output calls on the service */ public static TestServiceFutureStub newFutureStub( io.grpc.Channel channel) { return new TestServiceFutureStub(channel); } /** *
   * Test service that supports all call types.
   * 
*/ public static abstract class TestServiceImplBase implements io.grpc.BindableService { /** *
     * One request followed by one response.
     * The server returns the client payload as-is.
     * 
*/ public void unaryCall(io.grpc.testing.integration.nano.Test.SimpleRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnimplementedUnaryCall(METHOD_UNARY_CALL, responseObserver); } /** *
     * One request followed by a sequence of responses (streamed download).
     * The server returns the payload with client desired type and sizes.
     * 
*/ public void streamingOutputCall(io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnimplementedUnaryCall(METHOD_STREAMING_OUTPUT_CALL, responseObserver); } /** *
     * A sequence of requests followed by one response (streamed upload).
     * The server returns the aggregated size of client payload as the result.
     * 
*/ public io.grpc.stub.StreamObserver streamingInputCall( io.grpc.stub.StreamObserver responseObserver) { return asyncUnimplementedStreamingCall(METHOD_STREAMING_INPUT_CALL, responseObserver); } /** *
     * A sequence of requests with each request served by the server immediately.
     * As one request could lead to multiple responses, this interface
     * demonstrates the idea of full bidirectionality.
     * 
*/ public io.grpc.stub.StreamObserver fullBidiCall( io.grpc.stub.StreamObserver responseObserver) { return asyncUnimplementedStreamingCall(METHOD_FULL_BIDI_CALL, responseObserver); } /** *
     * A sequence of requests followed by a sequence of responses.
     * The server buffers all the client requests and then serves them in order. A
     * stream of responses are returned to the client when the server starts with
     * first request.
     * 
*/ public io.grpc.stub.StreamObserver halfBidiCall( io.grpc.stub.StreamObserver responseObserver) { return asyncUnimplementedStreamingCall(METHOD_HALF_BIDI_CALL, responseObserver); } @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) .addMethod( METHOD_UNARY_CALL, asyncUnaryCall( new MethodHandlers< io.grpc.testing.integration.nano.Test.SimpleRequest, io.grpc.testing.integration.nano.Test.SimpleResponse>( this, METHODID_UNARY_CALL))) .addMethod( METHOD_STREAMING_OUTPUT_CALL, asyncServerStreamingCall( new MethodHandlers< io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest, io.grpc.testing.integration.nano.Test.StreamingOutputCallResponse>( this, METHODID_STREAMING_OUTPUT_CALL))) .addMethod( METHOD_STREAMING_INPUT_CALL, asyncClientStreamingCall( new MethodHandlers< io.grpc.testing.integration.nano.Test.StreamingInputCallRequest, io.grpc.testing.integration.nano.Test.StreamingInputCallResponse>( this, METHODID_STREAMING_INPUT_CALL))) .addMethod( METHOD_FULL_BIDI_CALL, asyncBidiStreamingCall( new MethodHandlers< io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest, io.grpc.testing.integration.nano.Test.StreamingOutputCallResponse>( this, METHODID_FULL_BIDI_CALL))) .addMethod( METHOD_HALF_BIDI_CALL, asyncBidiStreamingCall( new MethodHandlers< io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest, io.grpc.testing.integration.nano.Test.StreamingOutputCallResponse>( this, METHODID_HALF_BIDI_CALL))) .build(); } } /** *
   * Test service that supports all call types.
   * 
*/ public static final class TestServiceStub extends io.grpc.stub.AbstractStub { private TestServiceStub(io.grpc.Channel channel) { super(channel); } private TestServiceStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected TestServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new TestServiceStub(channel, callOptions); } /** *
     * One request followed by one response.
     * The server returns the client payload as-is.
     * 
*/ public void unaryCall(io.grpc.testing.integration.nano.Test.SimpleRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnaryCall( getChannel().newCall(METHOD_UNARY_CALL, getCallOptions()), request, responseObserver); } /** *
     * One request followed by a sequence of responses (streamed download).
     * The server returns the payload with client desired type and sizes.
     * 
*/ public void streamingOutputCall(io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncServerStreamingCall( getChannel().newCall(METHOD_STREAMING_OUTPUT_CALL, getCallOptions()), request, responseObserver); } /** *
     * A sequence of requests followed by one response (streamed upload).
     * The server returns the aggregated size of client payload as the result.
     * 
*/ public io.grpc.stub.StreamObserver streamingInputCall( io.grpc.stub.StreamObserver responseObserver) { return asyncClientStreamingCall( getChannel().newCall(METHOD_STREAMING_INPUT_CALL, getCallOptions()), responseObserver); } /** *
     * A sequence of requests with each request served by the server immediately.
     * As one request could lead to multiple responses, this interface
     * demonstrates the idea of full bidirectionality.
     * 
*/ public io.grpc.stub.StreamObserver fullBidiCall( io.grpc.stub.StreamObserver responseObserver) { return asyncBidiStreamingCall( getChannel().newCall(METHOD_FULL_BIDI_CALL, getCallOptions()), responseObserver); } /** *
     * A sequence of requests followed by a sequence of responses.
     * The server buffers all the client requests and then serves them in order. A
     * stream of responses are returned to the client when the server starts with
     * first request.
     * 
*/ public io.grpc.stub.StreamObserver halfBidiCall( io.grpc.stub.StreamObserver responseObserver) { return asyncBidiStreamingCall( getChannel().newCall(METHOD_HALF_BIDI_CALL, getCallOptions()), responseObserver); } } /** *
   * Test service that supports all call types.
   * 
*/ public static final class TestServiceBlockingStub extends io.grpc.stub.AbstractStub { private TestServiceBlockingStub(io.grpc.Channel channel) { super(channel); } private TestServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected TestServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new TestServiceBlockingStub(channel, callOptions); } /** *
     * One request followed by one response.
     * The server returns the client payload as-is.
     * 
*/ public io.grpc.testing.integration.nano.Test.SimpleResponse unaryCall(io.grpc.testing.integration.nano.Test.SimpleRequest request) { return blockingUnaryCall( getChannel(), METHOD_UNARY_CALL, getCallOptions(), request); } /** *
     * One request followed by a sequence of responses (streamed download).
     * The server returns the payload with client desired type and sizes.
     * 
*/ public java.util.Iterator streamingOutputCall( io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest request) { return blockingServerStreamingCall( getChannel(), METHOD_STREAMING_OUTPUT_CALL, getCallOptions(), request); } } /** *
   * Test service that supports all call types.
   * 
*/ public static final class TestServiceFutureStub extends io.grpc.stub.AbstractStub { private TestServiceFutureStub(io.grpc.Channel channel) { super(channel); } private TestServiceFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected TestServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new TestServiceFutureStub(channel, callOptions); } /** *
     * One request followed by one response.
     * The server returns the client payload as-is.
     * 
*/ public com.google.common.util.concurrent.ListenableFuture unaryCall( io.grpc.testing.integration.nano.Test.SimpleRequest request) { return futureUnaryCall( getChannel().newCall(METHOD_UNARY_CALL, getCallOptions()), request); } } private static final int METHODID_UNARY_CALL = 0; private static final int METHODID_STREAMING_OUTPUT_CALL = 1; private static final int METHODID_STREAMING_INPUT_CALL = 2; private static final int METHODID_FULL_BIDI_CALL = 3; private static final int METHODID_HALF_BIDI_CALL = 4; private static class MethodHandlers implements io.grpc.stub.ServerCalls.UnaryMethod, io.grpc.stub.ServerCalls.ServerStreamingMethod, io.grpc.stub.ServerCalls.ClientStreamingMethod, io.grpc.stub.ServerCalls.BidiStreamingMethod { private final TestServiceImplBase serviceImpl; private final int methodId; public MethodHandlers(TestServiceImplBase serviceImpl, int methodId) { this.serviceImpl = serviceImpl; this.methodId = methodId; } @java.lang.Override @java.lang.SuppressWarnings("unchecked") public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) { switch (methodId) { case METHODID_UNARY_CALL: serviceImpl.unaryCall((io.grpc.testing.integration.nano.Test.SimpleRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; case METHODID_STREAMING_OUTPUT_CALL: serviceImpl.streamingOutputCall((io.grpc.testing.integration.nano.Test.StreamingOutputCallRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; default: throw new AssertionError(); } } @java.lang.Override @java.lang.SuppressWarnings("unchecked") public io.grpc.stub.StreamObserver invoke( io.grpc.stub.StreamObserver responseObserver) { switch (methodId) { case METHODID_STREAMING_INPUT_CALL: return (io.grpc.stub.StreamObserver) serviceImpl.streamingInputCall( (io.grpc.stub.StreamObserver) responseObserver); case METHODID_FULL_BIDI_CALL: return (io.grpc.stub.StreamObserver) serviceImpl.fullBidiCall( (io.grpc.stub.StreamObserver) responseObserver); case METHODID_HALF_BIDI_CALL: return (io.grpc.stub.StreamObserver) serviceImpl.halfBidiCall( (io.grpc.stub.StreamObserver) responseObserver); default: throw new AssertionError(); } } } private static volatile io.grpc.ServiceDescriptor serviceDescriptor; public static io.grpc.ServiceDescriptor getServiceDescriptor() { io.grpc.ServiceDescriptor result = serviceDescriptor; if (result == null) { synchronized (TestServiceGrpc.class) { result = serviceDescriptor; if (result == null) { serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME) .addMethod(METHOD_UNARY_CALL) .addMethod(METHOD_STREAMING_OUTPUT_CALL) .addMethod(METHOD_STREAMING_INPUT_CALL) .addMethod(METHOD_FULL_BIDI_CALL) .addMethod(METHOD_HALF_BIDI_CALL) .build(); } } } return result; } }