aboutsummaryrefslogtreecommitdiffstats
path: root/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java
blob: d50f614337ea244f5ff676b4033a5176aaeca1d3 (plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright 2018 Huawei Technologies Co., Ltd.
 *
 * 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 org.open.infc.grpc.client;

import java.util.concurrent.TimeUnit;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.open.infc.grpc.Args;
import org.open.infc.grpc.Input;
import org.open.infc.grpc.OpenInterfaceGrpc;
import org.open.infc.grpc.Output;
import org.open.infc.grpc.Result;

import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import io.grpc.StatusRuntimeException;

public class OpenInterfaceGrpcClient {
      private static final Logger logger = LoggerFactory.getLogger(OpenInterfaceGrpcClient.class.getName());

      private final ManagedChannel channel;
      private final OpenInterfaceGrpc.OpenInterfaceBlockingStub blockingStub;

      //10 seconds
      private int timeout = 60000;

      public static class OpenInterfaceGrpcExecption extends Exception {
          private static final long serialVersionUID = -8755636432217894246L;

          private int errorCode = -1; //NOSONAR
          public OpenInterfaceGrpcExecption(int errorCode, String message) {
              super(message);
              this.errorCode = errorCode;
          }
      }

      public static class OpenInterfaceGrpcTimeoutExecption extends OpenInterfaceGrpcExecption {
          private static final int ERROR_CODE = 1;

          public OpenInterfaceGrpcTimeoutExecption(String message) {
              super(ERROR_CODE, message);
          }
      }

      public OpenInterfaceGrpcClient(String host, int port) {
        this(ManagedChannelBuilder.forAddress(host, port)
            // Channels are secure by default (via SSL/TLS). For the example we disable TLS to avoid
            // needing certificates.
            .usePlaintext(true)
            .build());
      }

      public OpenInterfaceGrpcClient(String host, int port, int timeout) {
          this(host, port);
          this.timeout = timeout;

      }
      OpenInterfaceGrpcClient(ManagedChannel channel) {
        this.channel = channel;
        blockingStub = OpenInterfaceGrpc.newBlockingStub(channel);
      }

      public void shutdown() throws InterruptedException {
        channel.shutdown().awaitTermination(5, TimeUnit.SECONDS);
      }

      public Output invoke(Input input) throws OpenInterfaceGrpcTimeoutExecption {
        logger.info("Input {}", input);

        Output result = Output.newBuilder().build();
        try {
            result = blockingStub.withDeadlineAfter(timeout, TimeUnit.MILLISECONDS).invoke(input);
        } catch (StatusRuntimeException e) {
          logger.warn("RPC failed: {}", e.getStatus());
          //Status{code=DEADLINE_EXCEEDED}
          throw new OpenInterfaceGrpcTimeoutExecption(e.getMessage());
        }
        logger.info("Output: {}", result);
        return result;
      }

      public Result remoteCli(Args args) throws OpenInterfaceGrpcTimeoutExecption {
        logger.info("{}", args);

        Result result = Result.newBuilder().setExitCode(1).build();
        try {
            result = blockingStub.withDeadlineAfter(timeout, TimeUnit.MILLISECONDS).remoteCli(args);
        } catch (StatusRuntimeException e) {
          logger.warn("RPC failed: {}", e.getStatus());
          //Status{code=DEADLINE_EXCEEDED}
          throw new OpenInterfaceGrpcTimeoutExecption(e.getMessage());
        }

        logger.info("Result: {}", result);
        return result;
      }
}