-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathInvoiceServer.java
More file actions
95 lines (79 loc) · 3.27 KB
/
InvoiceServer.java
File metadata and controls
95 lines (79 loc) · 3.27 KB
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
// Copyright 2020-2026 Buf Technologies, Inc.
//
// 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.
package invoice.v1;
import buf.build.example.protovalidate.ValidationInterceptor;
import build.buf.protovalidate.ValidatorFactory;
import io.grpc.*;
import io.grpc.protobuf.services.ProtoReflectionServiceV1;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import java.util.logging.Logger;
/**
* InvoiceServer provides a class that manages a gRPC server and a main() entry point for its
* startup.
*/
public class InvoiceServer {
/** logger is a Logger for use by this class. */
private static final Logger log = Logger.getLogger(InvoiceServer.class.getName());
/** gRPC server is an io.grpc.Server. */
private final Server gRPCServer;
/** port is the port on which the server should listen. */
private final int port;
/**
* Creates an InvoiceServer
*
* @param port - port to listen on
* @param serverCredentials - ServerCredentials implementation
*/
public InvoiceServer(int port, ServerCredentials serverCredentials, ServerServiceDefinition service) {
this.port = port;
gRPCServer = Grpc.newServerBuilderForPort(port, serverCredentials)
.addService(service)
.addService(ProtoReflectionServiceV1.newInstance())
.build();
}
protected void run() throws IOException {
gRPCServer.start();
log.info("Server started on port " + port);
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
try {
InvoiceServer.this.shutdown();
System.out.println("Server shut down");
} catch (Exception e) {
System.err.println("Error stopping server");
e.printStackTrace(System.err);
}
}));
}
protected void shutdown() throws InterruptedException {
if (!gRPCServer.isTerminated()) {
gRPCServer.shutdown().awaitTermination(1L, TimeUnit.MINUTES);
}
}
private void awaitTermination() throws InterruptedException {
if (!gRPCServer.isTerminated()) {
gRPCServer.awaitTermination();
}
}
public static void main(String[] args) throws IOException, InterruptedException {
final BindableService service = new InvoiceService();
final ValidationInterceptor interceptor =
new ValidationInterceptor(ValidatorFactory.newBuilder().build());
final ServerServiceDefinition serviceDefinition = ServerInterceptors.intercept(service, interceptor);
final InvoiceServer invoiceServer =
new InvoiceServer(50051, InsecureServerCredentials.create(), serviceDefinition);
invoiceServer.run();
invoiceServer.awaitTermination();
}
}