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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright 2022 Raritan Inc. All rights reserved.
#
# This is an auto-generated file.
#
# Section generated by IdlC from "SessionManager.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
import raritan.rpc.session
# structure
class Session(Structure):
idlType = "session.Session:2.0.0"
elements = ["sessionId", "username", "remoteIp", "clientType", "creationTime", "timeout", "idle", "userIdle"]
def __init__(self, sessionId, username, remoteIp, clientType, creationTime, timeout, idle, userIdle):
typecheck.is_int(sessionId, AssertionError)
typecheck.is_string(username, AssertionError)
typecheck.is_string(remoteIp, AssertionError)
typecheck.is_string(clientType, AssertionError)
typecheck.is_time(creationTime, AssertionError)
typecheck.is_int(timeout, AssertionError)
typecheck.is_int(idle, AssertionError)
typecheck.is_int(userIdle, AssertionError)
self.sessionId = sessionId
self.username = username
self.remoteIp = remoteIp
self.clientType = clientType
self.creationTime = creationTime
self.timeout = timeout
self.idle = idle
self.userIdle = userIdle
@classmethod
def decode(cls, json, agent):
obj = cls(
sessionId = json['sessionId'],
username = json['username'],
remoteIp = json['remoteIp'],
clientType = json['clientType'],
creationTime = raritan.rpc.Time.decode(json['creationTime']),
timeout = json['timeout'],
idle = json['idle'],
userIdle = json['userIdle'],
)
return obj
def encode(self):
json = {}
json['sessionId'] = self.sessionId
json['username'] = self.username
json['remoteIp'] = self.remoteIp
json['clientType'] = self.clientType
json['creationTime'] = raritan.rpc.Time.encode(self.creationTime)
json['timeout'] = self.timeout
json['idle'] = self.idle
json['userIdle'] = self.userIdle
return json
# structure
class HistoryEntry(Structure):
idlType = "session.HistoryEntry:1.0.0"
elements = ["creationTime", "remoteIp", "clientType"]
def __init__(self, creationTime, remoteIp, clientType):
typecheck.is_time(creationTime, AssertionError)
typecheck.is_string(remoteIp, AssertionError)
typecheck.is_string(clientType, AssertionError)
self.creationTime = creationTime
self.remoteIp = remoteIp
self.clientType = clientType
@classmethod
def decode(cls, json, agent):
obj = cls(
creationTime = raritan.rpc.Time.decode(json['creationTime']),
remoteIp = json['remoteIp'],
clientType = json['clientType'],
)
return obj
def encode(self):
json = {}
json['creationTime'] = raritan.rpc.Time.encode(self.creationTime)
json['remoteIp'] = self.remoteIp
json['clientType'] = self.clientType
return json
# interface
class SessionManager(Interface):
idlType = "session.SessionManager:2.0.0"
ERR_ACTIVE_SESSION_EXCLUSIVE_FOR_USER = 1
# enumeration
class CloseReason(Enumeration):
idlType = "session.SessionManager_2_0_0.CloseReason:1.0.0"
values = ["CLOSE_REASON_LOGOUT", "CLOSE_REASON_TIMEOUT", "CLOSE_REASON_BROWSER_CLOSED", "CLOSE_REASON_FORCED_DISCONNECT"]
CloseReason.CLOSE_REASON_LOGOUT = CloseReason(0)
CloseReason.CLOSE_REASON_TIMEOUT = CloseReason(1)
CloseReason.CLOSE_REASON_BROWSER_CLOSED = CloseReason(2)
CloseReason.CLOSE_REASON_FORCED_DISCONNECT = CloseReason(3)
class _newSession(Interface.Method):
name = 'newSession'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = rsp['_ret_']
session = raritan.rpc.session.Session.decode(rsp['session'], agent)
token = rsp['token']
typecheck.is_int(_ret_, DecodeException)
typecheck.is_struct(session, raritan.rpc.session.Session, DecodeException)
typecheck.is_string(token, DecodeException)
return (_ret_, session, token)
class _getCurrentSession(Interface.Method):
name = 'getCurrentSession'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.session.Session.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.session.Session, DecodeException)
return _ret_
class _getSessions(Interface.Method):
name = 'getSessions'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = [raritan.rpc.session.Session.decode(x0, agent) for x0 in rsp['_ret_']]
for x0 in _ret_:
typecheck.is_struct(x0, raritan.rpc.session.Session, DecodeException)
return _ret_
class _closeSession(Interface.Method):
name = 'closeSession'
@staticmethod
def encode(sessionId, reason):
typecheck.is_int(sessionId, AssertionError)
typecheck.is_enum(reason, raritan.rpc.session.SessionManager.CloseReason, AssertionError)
args = {}
args['sessionId'] = sessionId
args['reason'] = raritan.rpc.session.SessionManager.CloseReason.encode(reason)
return args
@staticmethod
def decode(rsp, agent):
return None
class _closeCurrentSession(Interface.Method):
name = 'closeCurrentSession'
@staticmethod
def encode(reason):
typecheck.is_enum(reason, raritan.rpc.session.SessionManager.CloseReason, AssertionError)
args = {}
args['reason'] = raritan.rpc.session.SessionManager.CloseReason.encode(reason)
return args
@staticmethod
def decode(rsp, agent):
return None
class _touchCurrentSession(Interface.Method):
name = 'touchCurrentSession'
@staticmethod
def encode(userActivity):
typecheck.is_bool(userActivity, AssertionError)
args = {}
args['userActivity'] = userActivity
return args
@staticmethod
def decode(rsp, agent):
return None
class _getSessionHistory(Interface.Method):
name = 'getSessionHistory'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = [raritan.rpc.session.HistoryEntry.decode(x0, agent) for x0 in rsp['_ret_']]
for x0 in _ret_:
typecheck.is_struct(x0, raritan.rpc.session.HistoryEntry, DecodeException)
return _ret_
def __init__(self, target, agent):
super(SessionManager, self).__init__(target, agent)
self.newSession = SessionManager._newSession(self)
self.getCurrentSession = SessionManager._getCurrentSession(self)
self.getSessions = SessionManager._getSessions(self)
self.closeSession = SessionManager._closeSession(self)
self.closeCurrentSession = SessionManager._closeCurrentSession(self)
self.touchCurrentSession = SessionManager._touchCurrentSession(self)
self.getSessionHistory = SessionManager._getSessionHistory(self)
|