-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c368a0b
commit 5fa83b7
Showing
9 changed files
with
1,339 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
grpc-spring-boot-starter-demo/src/main/java/org/lognet/springboot/grpc/demo/RandomUUID.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.lognet.springboot.grpc.demo; | ||
|
||
import java.util.UUID; | ||
|
||
public class RandomUUID { | ||
private final String id = UUID.randomUUID().toString(); | ||
|
||
public String getId() { | ||
return this.id; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...boot-starter-demo/src/main/java/org/lognet/springboot/grpc/demo/RequestScopedService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright (c) 2016-2021 Michael Zhang <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the | ||
* Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | ||
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
package org.lognet.springboot.grpc.demo; | ||
|
||
import io.grpc.examples.RequestScopedGrpc; | ||
import io.grpc.examples.RequestScopedOuterClass; | ||
import io.grpc.stub.StreamObserver; | ||
import org.lognet.springboot.grpc.GRpcService; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
|
||
import java.util.UUID; | ||
|
||
@GRpcService | ||
public class RequestScopedService extends RequestScopedGrpc.RequestScopedImplBase { | ||
@Autowired | ||
private RandomUUID testRequestScopeBean; | ||
|
||
@Override | ||
public StreamObserver<RequestScopedOuterClass.RequestScopedMessage> requestScoped(StreamObserver<RequestScopedOuterClass.RequestScopedMessage> observer) { | ||
return new StreamObserver<RequestScopedOuterClass.RequestScopedMessage>() { | ||
@Override | ||
public void onNext(RequestScopedOuterClass.RequestScopedMessage value) { | ||
observer.onNext(value.toBuilder().setStr(RequestScopedService.this.testRequestScopeBean.getId()).build()); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable t) { | ||
observer.onError(t); | ||
} | ||
|
||
@Override | ||
public void onCompleted() { | ||
observer.onCompleted(); | ||
} | ||
}; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
grpc-spring-boot-starter-demo/src/main/proto/request_scoped.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
syntax = "proto3"; | ||
|
||
option java_package = "io.grpc.examples"; | ||
|
||
service RequestScoped { | ||
rpc RequestScoped(stream RequestScopedMessage) returns (stream RequestScopedMessage) {} | ||
} | ||
|
||
message RequestScopedMessage { | ||
string str = 1; | ||
} |
259 changes: 259 additions & 0 deletions
259
grpc-spring-boot-starter-demo/src/main/protoGen/io/grpc/examples/RequestScopedGrpc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,259 @@ | ||
package io.grpc.examples; | ||
|
||
import static io.grpc.MethodDescriptor.generateFullMethodName; | ||
|
||
/** | ||
*/ | ||
@javax.annotation.Generated( | ||
value = "by gRPC proto compiler (version 1.36.0)", | ||
comments = "Source: request_scoped.proto") | ||
public final class RequestScopedGrpc { | ||
|
||
private RequestScopedGrpc() {} | ||
|
||
public static final String SERVICE_NAME = "RequestScoped"; | ||
|
||
// Static method descriptors that strictly reflect the proto. | ||
private static volatile io.grpc.MethodDescriptor<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage, | ||
io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> getRequestScopedMethod; | ||
|
||
@io.grpc.stub.annotations.RpcMethod( | ||
fullMethodName = SERVICE_NAME + '/' + "RequestScoped", | ||
requestType = io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage.class, | ||
responseType = io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage.class, | ||
methodType = io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING) | ||
public static io.grpc.MethodDescriptor<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage, | ||
io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> getRequestScopedMethod() { | ||
io.grpc.MethodDescriptor<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage, io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> getRequestScopedMethod; | ||
if ((getRequestScopedMethod = RequestScopedGrpc.getRequestScopedMethod) == null) { | ||
synchronized (RequestScopedGrpc.class) { | ||
if ((getRequestScopedMethod = RequestScopedGrpc.getRequestScopedMethod) == null) { | ||
RequestScopedGrpc.getRequestScopedMethod = getRequestScopedMethod = | ||
io.grpc.MethodDescriptor.<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage, io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage>newBuilder() | ||
.setType(io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING) | ||
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "RequestScoped")) | ||
.setSampledToLocalTracing(true) | ||
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( | ||
io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage.getDefaultInstance())) | ||
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( | ||
io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage.getDefaultInstance())) | ||
.setSchemaDescriptor(new RequestScopedMethodDescriptorSupplier("RequestScoped")) | ||
.build(); | ||
} | ||
} | ||
} | ||
return getRequestScopedMethod; | ||
} | ||
|
||
/** | ||
* Creates a new async stub that supports all call types for the service | ||
*/ | ||
public static RequestScopedStub newStub(io.grpc.Channel channel) { | ||
io.grpc.stub.AbstractStub.StubFactory<RequestScopedStub> factory = | ||
new io.grpc.stub.AbstractStub.StubFactory<RequestScopedStub>() { | ||
@java.lang.Override | ||
public RequestScopedStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
return new RequestScopedStub(channel, callOptions); | ||
} | ||
}; | ||
return RequestScopedStub.newStub(factory, channel); | ||
} | ||
|
||
/** | ||
* Creates a new blocking-style stub that supports unary and streaming output calls on the service | ||
*/ | ||
public static RequestScopedBlockingStub newBlockingStub( | ||
io.grpc.Channel channel) { | ||
io.grpc.stub.AbstractStub.StubFactory<RequestScopedBlockingStub> factory = | ||
new io.grpc.stub.AbstractStub.StubFactory<RequestScopedBlockingStub>() { | ||
@java.lang.Override | ||
public RequestScopedBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
return new RequestScopedBlockingStub(channel, callOptions); | ||
} | ||
}; | ||
return RequestScopedBlockingStub.newStub(factory, channel); | ||
} | ||
|
||
/** | ||
* Creates a new ListenableFuture-style stub that supports unary calls on the service | ||
*/ | ||
public static RequestScopedFutureStub newFutureStub( | ||
io.grpc.Channel channel) { | ||
io.grpc.stub.AbstractStub.StubFactory<RequestScopedFutureStub> factory = | ||
new io.grpc.stub.AbstractStub.StubFactory<RequestScopedFutureStub>() { | ||
@java.lang.Override | ||
public RequestScopedFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
return new RequestScopedFutureStub(channel, callOptions); | ||
} | ||
}; | ||
return RequestScopedFutureStub.newStub(factory, channel); | ||
} | ||
|
||
/** | ||
*/ | ||
public static abstract class RequestScopedImplBase implements io.grpc.BindableService { | ||
|
||
/** | ||
*/ | ||
public io.grpc.stub.StreamObserver<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> requestScoped( | ||
io.grpc.stub.StreamObserver<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> responseObserver) { | ||
return io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall(getRequestScopedMethod(), responseObserver); | ||
} | ||
|
||
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { | ||
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) | ||
.addMethod( | ||
getRequestScopedMethod(), | ||
io.grpc.stub.ServerCalls.asyncBidiStreamingCall( | ||
new MethodHandlers< | ||
io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage, | ||
io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage>( | ||
this, METHODID_REQUEST_SCOPED))) | ||
.build(); | ||
} | ||
} | ||
|
||
/** | ||
*/ | ||
public static final class RequestScopedStub extends io.grpc.stub.AbstractAsyncStub<RequestScopedStub> { | ||
private RequestScopedStub( | ||
io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
super(channel, callOptions); | ||
} | ||
|
||
@java.lang.Override | ||
protected RequestScopedStub build( | ||
io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
return new RequestScopedStub(channel, callOptions); | ||
} | ||
|
||
/** | ||
*/ | ||
public io.grpc.stub.StreamObserver<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> requestScoped( | ||
io.grpc.stub.StreamObserver<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage> responseObserver) { | ||
return io.grpc.stub.ClientCalls.asyncBidiStreamingCall( | ||
getChannel().newCall(getRequestScopedMethod(), getCallOptions()), responseObserver); | ||
} | ||
} | ||
|
||
/** | ||
*/ | ||
public static final class RequestScopedBlockingStub extends io.grpc.stub.AbstractBlockingStub<RequestScopedBlockingStub> { | ||
private RequestScopedBlockingStub( | ||
io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
super(channel, callOptions); | ||
} | ||
|
||
@java.lang.Override | ||
protected RequestScopedBlockingStub build( | ||
io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
return new RequestScopedBlockingStub(channel, callOptions); | ||
} | ||
} | ||
|
||
/** | ||
*/ | ||
public static final class RequestScopedFutureStub extends io.grpc.stub.AbstractFutureStub<RequestScopedFutureStub> { | ||
private RequestScopedFutureStub( | ||
io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
super(channel, callOptions); | ||
} | ||
|
||
@java.lang.Override | ||
protected RequestScopedFutureStub build( | ||
io.grpc.Channel channel, io.grpc.CallOptions callOptions) { | ||
return new RequestScopedFutureStub(channel, callOptions); | ||
} | ||
} | ||
|
||
private static final int METHODID_REQUEST_SCOPED = 0; | ||
|
||
private static final class MethodHandlers<Req, Resp> implements | ||
io.grpc.stub.ServerCalls.UnaryMethod<Req, Resp>, | ||
io.grpc.stub.ServerCalls.ServerStreamingMethod<Req, Resp>, | ||
io.grpc.stub.ServerCalls.ClientStreamingMethod<Req, Resp>, | ||
io.grpc.stub.ServerCalls.BidiStreamingMethod<Req, Resp> { | ||
private final RequestScopedImplBase serviceImpl; | ||
private final int methodId; | ||
|
||
MethodHandlers(RequestScopedImplBase 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<Resp> responseObserver) { | ||
switch (methodId) { | ||
default: | ||
throw new AssertionError(); | ||
} | ||
} | ||
|
||
@java.lang.Override | ||
@java.lang.SuppressWarnings("unchecked") | ||
public io.grpc.stub.StreamObserver<Req> invoke( | ||
io.grpc.stub.StreamObserver<Resp> responseObserver) { | ||
switch (methodId) { | ||
case METHODID_REQUEST_SCOPED: | ||
return (io.grpc.stub.StreamObserver<Req>) serviceImpl.requestScoped( | ||
(io.grpc.stub.StreamObserver<io.grpc.examples.RequestScopedOuterClass.RequestScopedMessage>) responseObserver); | ||
default: | ||
throw new AssertionError(); | ||
} | ||
} | ||
} | ||
|
||
private static abstract class RequestScopedBaseDescriptorSupplier | ||
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier { | ||
RequestScopedBaseDescriptorSupplier() {} | ||
|
||
@java.lang.Override | ||
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() { | ||
return io.grpc.examples.RequestScopedOuterClass.getDescriptor(); | ||
} | ||
|
||
@java.lang.Override | ||
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() { | ||
return getFileDescriptor().findServiceByName("RequestScoped"); | ||
} | ||
} | ||
|
||
private static final class RequestScopedFileDescriptorSupplier | ||
extends RequestScopedBaseDescriptorSupplier { | ||
RequestScopedFileDescriptorSupplier() {} | ||
} | ||
|
||
private static final class RequestScopedMethodDescriptorSupplier | ||
extends RequestScopedBaseDescriptorSupplier | ||
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier { | ||
private final String methodName; | ||
|
||
RequestScopedMethodDescriptorSupplier(String methodName) { | ||
this.methodName = methodName; | ||
} | ||
|
||
@java.lang.Override | ||
public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() { | ||
return getServiceDescriptor().findMethodByName(methodName); | ||
} | ||
} | ||
|
||
private static volatile io.grpc.ServiceDescriptor serviceDescriptor; | ||
|
||
public static io.grpc.ServiceDescriptor getServiceDescriptor() { | ||
io.grpc.ServiceDescriptor result = serviceDescriptor; | ||
if (result == null) { | ||
synchronized (RequestScopedGrpc.class) { | ||
result = serviceDescriptor; | ||
if (result == null) { | ||
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME) | ||
.setSchemaDescriptor(new RequestScopedFileDescriptorSupplier()) | ||
.addMethod(getRequestScopedMethod()) | ||
.build(); | ||
} | ||
} | ||
} | ||
return result; | ||
} | ||
} |
Oops, something went wrong.