NebulaGraph Java Client  release-3.8
All Classes Functions Variables
NebulaSession.java
1 /* Copyright (c) 2022 vesoft inc. All rights reserved.
2  *
3  * This source code is licensed under Apache 2.0 License.
4  */
5 
6 package com.vesoft.nebula.client.graph;
7 
8 import com.vesoft.nebula.Value;
9 import com.vesoft.nebula.client.graph.data.ResultSet;
10 import com.vesoft.nebula.client.graph.exception.IOErrorException;
11 import com.vesoft.nebula.client.graph.net.Session;
12 import com.vesoft.nebula.client.graph.net.SessionState;
13 import com.vesoft.nebula.client.graph.net.SyncConnection;
14 import java.io.Serializable;
15 import java.util.Collections;
16 import java.util.HashMap;
17 import java.util.Map;
18 import java.util.concurrent.atomic.AtomicBoolean;
19 import java.util.concurrent.atomic.AtomicReference;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22 
23 public class NebulaSession implements Serializable {
24 
25  private static final long serialVersionUID = -88438249377120255L;
26 
27  private final Logger log = LoggerFactory.getLogger(this.getClass());
28 
29  private final long sessionID;
30  private final int timezoneOffset;
31  private SyncConnection connection;
32  private final AtomicReference<SessionState> state = new AtomicReference<>();
33 
34  private final AtomicBoolean isReleased = new AtomicBoolean(false);
35 
36  public NebulaSession(SyncConnection connection, long sessionID, int timezoneOffset,
37  SessionState state) {
38  this.connection = connection;
39  this.sessionID = sessionID;
40  this.timezoneOffset = timezoneOffset;
41  this.state.set(state);
42  }
43 
44  public long getSessionID() {
45  return sessionID;
46  }
47 
48  public Boolean isIdle() {
49  return state.get() == SessionState.IDLE;
50  }
51 
52  public Boolean isUsed() {
53  return state.get() == SessionState.USED;
54  }
55 
56  public boolean isUsedAndSetIdle() {
57  return state.compareAndSet(SessionState.USED, SessionState.IDLE);
58  }
59 
60  public boolean isIdleAndSetUsed() {
61  return state.compareAndSet(SessionState.IDLE, SessionState.USED);
62  }
63 
64  public ResultSet execute(String stmt) throws IOErrorException {
65  return new ResultSet(connection.execute(sessionID, stmt), timezoneOffset);
66  }
67 
68  public ResultSet executeWithParameter(String stmt, Map<String, Object> parameterMap)
69  throws IOErrorException {
70  Map<byte[], Value> map = new HashMap<>();
71  parameterMap.forEach((key, value) -> map.put(key.getBytes(), Session.value2Nvalue(value)));
72  return new ResultSet(connection.executeWithParameter(sessionID, stmt, map), timezoneOffset);
73  }
74 
75  public ResultSet executeWithTimeout(String stmt, long timeoutMs) throws IOErrorException {
76  return executeWithParameterTimeout(stmt,
77  (Map<String, Object>) Collections.EMPTY_MAP,
78  timeoutMs);
79  }
80 
81  public ResultSet executeWithParameterTimeout(String stmt,
82  Map<String, Object> parameterMap,
83  long timeoutMs) throws IOErrorException {
84  Map<byte[], Value> map = new HashMap<>();
85  parameterMap.forEach((key, value) -> map.put(key.getBytes(), Session.value2Nvalue(value)));
86  return new ResultSet(connection.executeWithParameterTimeout(sessionID,
87  stmt,
88  map,
89  timeoutMs),
90  timezoneOffset);
91 
92  }
93 
94  public String executeJsonWithParameter(String stmt, Map<String, Object> parameterMap)
95  throws IOErrorException {
96  Map<byte[], Value> map = new HashMap<>();
97  parameterMap.forEach((key, value) -> map.put(key.getBytes(), Session.value2Nvalue(value)));
98  return connection.executeJsonWithParameter(sessionID, stmt, map);
99  }
100 
101  public void release() {
102  if (isReleased.get()) {
103  return;
104  }
105  if (isReleased.compareAndSet(false, true)) {
106  try {
107  connection.signout(sessionID);
108  connection.close();
109  } catch (Exception e) {
110  // not print the warn to avoid confuse for session and connect,
111  // when connection is broken, release will failed, just make connection as null.
112  // log.warn("release session failed, " + e.getMessage());
113  }
114  connection = null;
115  }
116  }
117 }
The Session is an object that operates with nebula-graph.
Definition: Session.java:53
static Value value2Nvalue(Object value)
convert java value type to nebula thrift value type
Definition: Session.java:496