6 package com.vesoft.nebula.client.graph.net;
8 import com.facebook.thrift.TException;
9 import com.facebook.thrift.protocol.TBinaryProtocol;
10 import com.facebook.thrift.protocol.THeaderProtocol;
11 import com.facebook.thrift.protocol.TProtocol;
12 import com.facebook.thrift.transport.THeaderTransport;
13 import com.facebook.thrift.transport.THttp2Client;
14 import com.facebook.thrift.transport.TSocket;
15 import com.facebook.thrift.transport.TTransport;
16 import com.facebook.thrift.transport.TTransportException;
17 import com.facebook.thrift.utils.StandardCharsets;
18 import com.google.common.base.Charsets;
19 import com.vesoft.nebula.ErrorCode;
20 import com.vesoft.nebula.Value;
21 import com.vesoft.nebula.client.graph.data.CASignedSSLParam;
22 import com.vesoft.nebula.client.graph.data.HostAddress;
23 import com.vesoft.nebula.client.graph.data.SSLParam;
24 import com.vesoft.nebula.client.graph.data.SelfSignedSSLParam;
25 import com.vesoft.nebula.client.graph.exception.AuthFailedException;
26 import com.vesoft.nebula.client.graph.exception.ClientServerIncompatibleException;
27 import com.vesoft.nebula.client.graph.exception.IOErrorException;
28 import com.vesoft.nebula.graph.AuthResponse;
29 import com.vesoft.nebula.graph.ExecutionResponse;
30 import com.vesoft.nebula.graph.GraphService;
31 import com.vesoft.nebula.graph.VerifyClientVersionReq;
32 import com.vesoft.nebula.graph.VerifyClientVersionResp;
33 import com.vesoft.nebula.util.SslUtil;
34 import java.io.IOException;
35 import java.util.Collections;
36 import java.util.HashMap;
38 import javax.net.ssl.SSLSocketFactory;
39 import javax.net.ssl.TrustManager;
40 import org.slf4j.Logger;
41 import org.slf4j.LoggerFactory;
46 private static final Logger LOGGER = LoggerFactory.getLogger(
SyncConnection.class);
48 protected TTransport transport =
null;
49 protected TProtocol protocol =
null;
50 private GraphService.Client client =
null;
51 private int timeout = 0;
53 private boolean enabledSsl =
false;
54 private SSLSocketFactory sslSocketFactory =
null;
55 private boolean useHttp2 =
false;
57 private Map<String, String> headers =
new HashMap<>();
62 this.open(address, timeout, sslParam,
false, headers);
67 Map<String, String> headers)
70 this.serverAddr = address;
71 this.timeout = timeout <= 0 ? Integer.MAX_VALUE : timeout;
72 this.enabledSsl =
true;
73 this.sslParam = sslParam;
74 this.useHttp2 = isUseHttp2;
75 this.headers = headers;
76 if (sslSocketFactory ==
null) {
77 if (sslParam ==
null) {
78 sslSocketFactory = SslUtil.getSSLSocketFactoryWithoutVerify();
88 getProtocolWithTlsHttp2();
93 client =
new GraphService.Client(protocol);
95 VerifyClientVersionResp resp =
96 client.verifyClientVersion(
new VerifyClientVersionReq());
97 if (resp.error_code != ErrorCode.SUCCEEDED) {
98 client.getInputProtocol().getTransport().close();
102 }
catch (TException | IOException e) {
111 this.open(address, timeout,
false, headers);
116 boolean isUseHttp2, Map<String, String> headers)
119 this.serverAddr = address;
120 this.timeout = timeout <= 0 ? Integer.MAX_VALUE : timeout;
121 this.useHttp2 = isUseHttp2;
122 this.headers = headers;
124 getProtocolForHttp2();
128 client =
new GraphService.Client(protocol);
130 VerifyClientVersionResp resp =
131 client.verifyClientVersion(
new VerifyClientVersionReq());
132 if (resp.error_code != ErrorCode.SUCCEEDED) {
133 client.getInputProtocol().getTransport().close();
137 }
catch (TException e) {
146 private void getProtocolWithTlsHttp2() {
147 String url =
"https://" + serverAddr.getHost() +
":" + serverAddr.getPort();
148 TrustManager trustManager;
149 if (SslUtil.getTrustManagers() ==
null || SslUtil.getTrustManagers().length == 0) {
152 trustManager = SslUtil.getTrustManagers()[0];
154 this.transport =
new THttp2Client(url, sslSocketFactory, trustManager)
155 .setConnectTimeout(timeout)
156 .setReadTimeout(timeout)
157 .setCustomHeaders(headers);
160 this.protocol =
new TBinaryProtocol(transport);
166 private void getProtocolForTls()
throws IOException {
167 this.transport =
new THeaderTransport(
new TSocket(
168 sslSocketFactory.createSocket(serverAddr.getHost(),
169 serverAddr.getPort()),
this.timeout,
this.timeout));
170 this.protocol =
new THeaderProtocol((THeaderTransport) transport);
176 private void getProtocolForHttp2() {
177 String url =
"http://" + serverAddr.getHost() +
":" + serverAddr.getPort();
178 this.transport =
new THttp2Client(url)
179 .setConnectTimeout(timeout)
180 .setReadTimeout(timeout)
181 .setCustomHeaders(headers);
183 this.protocol =
new TBinaryProtocol(transport);
189 private void getProtocol() {
190 this.transport =
new THeaderTransport(
new TSocket(
191 serverAddr.getHost(), serverAddr.getPort(),
this.timeout,
this.timeout));
193 this.protocol =
new THeaderProtocol((THeaderTransport) transport);
211 open(serverAddr, timeout, sslParam, useHttp2, headers);
213 open(serverAddr, timeout, useHttp2, headers);
217 public AuthResult authenticate(String user, String password)
220 AuthResponse resp = client.authenticate(user.getBytes(Charsets.UTF_8),
221 password.getBytes(Charsets.UTF_8));
222 if (resp.error_code != ErrorCode.SUCCEEDED) {
223 if (resp.error_msg !=
null) {
227 "The error_msg is null, "
228 +
"maybe the service not set or the response is disorder.");
231 return new AuthResult(resp.getSession_id(), resp.getTime_zone_offset_seconds());
232 }
catch (TException e) {
233 if (e instanceof TTransportException) {
234 TTransportException te = (TTransportException) e;
235 if (te.getType() == TTransportException.END_OF_FILE) {
237 }
else if (te.getType() == TTransportException.TIMED_OUT
238 || te.getMessage().contains(
"Read timed out")) {
241 }
else if (te.getType() == TTransportException.NOT_OPEN) {
249 public ExecutionResponse execute(
long sessionID, String stmt)
251 return executeWithParameter(sessionID,
253 (Map<
byte[], com.vesoft.nebula.Value>) Collections.EMPTY_MAP);
256 public ExecutionResponse executeWithParameter(
long sessionID, String stmt,
257 Map<
byte[], com.vesoft.nebula.Value> parameterMap)
260 return client.executeWithParameter(
262 stmt.getBytes(Charsets.UTF_8),
264 }
catch (TException e) {
265 if (e instanceof TTransportException) {
266 TTransportException te = (TTransportException) e;
267 if (te.getType() == TTransportException.END_OF_FILE) {
269 }
else if (te.getType() == TTransportException.NOT_OPEN) {
271 }
else if (te.getType() == TTransportException.TIMED_OUT
272 || te.getMessage().contains(
"Read timed out")) {
276 LOGGER.error(ex.getMessage());
285 public ExecutionResponse executeWithParameterTimeout(
long sessionID,
287 Map<
byte[], Value> parameterMap,
290 return client.executeWithTimeout(sessionID,
291 stmt.getBytes(Charsets.UTF_8),
294 }
catch (TException e) {
295 if (e instanceof TTransportException) {
296 TTransportException te = (TTransportException) e;
297 if (te.getType() == TTransportException.END_OF_FILE) {
299 }
else if (te.getType() == TTransportException.NOT_OPEN) {
301 }
else if (te.getType() == TTransportException.TIMED_OUT
302 || te.getMessage().contains(
"Read timed out")) {
306 LOGGER.error(ex.getMessage());
315 public String executeJson(
long sessionID, String stmt)
317 return executeJsonWithParameter(sessionID, stmt,
318 (Map<
byte[], Value>) Collections.EMPTY_MAP);
321 public String executeJsonWithParameter(
long sessionID, String stmt,
322 Map<
byte[], Value> parameterMap)
326 client.executeJsonWithParameter(
328 stmt.getBytes(Charsets.UTF_8),
330 return new String(result, StandardCharsets.UTF_8);
331 }
catch (TException e) {
332 if (e instanceof TTransportException) {
333 TTransportException te = (TTransportException) e;
334 if (te.getType() == TTransportException.END_OF_FILE) {
336 }
else if (te.getType() == TTransportException.NOT_OPEN) {
338 }
else if (te.getType() == TTransportException.TIMED_OUT
339 || te.getMessage().contains(
"Read timed out")) {
343 LOGGER.error(ex.getMessage());
352 public void signout(
long sessionId) {
353 client.signout(sessionId);
357 public boolean ping() {
359 execute(0,
"YIELD 1;");
367 public boolean ping(
long sessionID) {
369 execute(sessionID,
"YIELD 1;");
377 public void close() {
378 if (transport !=
null && transport.isOpen()) {