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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright 2022 Raritan Inc. All rights reserved.
#
# This is an auto-generated file.
#
# Section generated by IdlC from "Log.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
import raritan.rpc.logging
# structure
class LogInfo(Structure):
idlType = "logging.LogInfo:1.0.0"
elements = ["creationTime", "idFirst", "idNext"]
def __init__(self, creationTime, idFirst, idNext):
typecheck.is_long(creationTime, AssertionError)
typecheck.is_int(idFirst, AssertionError)
typecheck.is_int(idNext, AssertionError)
self.creationTime = creationTime
self.idFirst = idFirst
self.idNext = idNext
@classmethod
def decode(cls, json, agent):
obj = cls(
creationTime = int(json['creationTime']),
idFirst = json['idFirst'],
idNext = json['idNext'],
)
return obj
def encode(self):
json = {}
json['creationTime'] = self.creationTime
json['idFirst'] = self.idFirst
json['idNext'] = self.idNext
return json
# structure
class LogEntry(Structure):
idlType = "logging.LogEntry:1.0.0"
elements = ["id", "timestamp", "eventClass", "message"]
def __init__(self, id, timestamp, eventClass, message):
typecheck.is_int(id, AssertionError)
typecheck.is_time(timestamp, AssertionError)
typecheck.is_string(eventClass, AssertionError)
typecheck.is_string(message, AssertionError)
self.id = id
self.timestamp = timestamp
self.eventClass = eventClass
self.message = message
@classmethod
def decode(cls, json, agent):
obj = cls(
id = json['id'],
timestamp = raritan.rpc.Time.decode(json['timestamp']),
eventClass = json['eventClass'],
message = json['message'],
)
return obj
def encode(self):
json = {}
json['id'] = self.id
json['timestamp'] = raritan.rpc.Time.encode(self.timestamp)
json['eventClass'] = self.eventClass
json['message'] = self.message
return json
# structure
class LogChunk(Structure):
idlType = "logging.LogChunk:1.0.0"
elements = ["logCreationTime", "idFirst", "allEntryCnt", "selEntries"]
def __init__(self, logCreationTime, idFirst, allEntryCnt, selEntries):
typecheck.is_long(logCreationTime, AssertionError)
typecheck.is_int(idFirst, AssertionError)
typecheck.is_int(allEntryCnt, AssertionError)
for x0 in selEntries:
typecheck.is_struct(x0, raritan.rpc.logging.LogEntry, AssertionError)
self.logCreationTime = logCreationTime
self.idFirst = idFirst
self.allEntryCnt = allEntryCnt
self.selEntries = selEntries
@classmethod
def decode(cls, json, agent):
obj = cls(
logCreationTime = int(json['logCreationTime']),
idFirst = json['idFirst'],
allEntryCnt = json['allEntryCnt'],
selEntries = [raritan.rpc.logging.LogEntry.decode(x0, agent) for x0 in json['selEntries']],
)
return obj
def encode(self):
json = {}
json['logCreationTime'] = self.logCreationTime
json['idFirst'] = self.idFirst
json['allEntryCnt'] = self.allEntryCnt
json['selEntries'] = [raritan.rpc.logging.LogEntry.encode(x0) for x0 in self.selEntries]
return json
# enumeration
class RangeDirection(Enumeration):
idlType = "logging.RangeDirection:1.0.0"
values = ["FORWARD", "BACKWARD"]
RangeDirection.FORWARD = RangeDirection(0)
RangeDirection.BACKWARD = RangeDirection(1)
#
# Section generated by IdlC from "DebugLog.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
import raritan.rpc.logging
# interface
class DebugLog(Interface):
idlType = "logging.DebugLog:2.0.0"
class _clear(Interface.Method):
name = 'clear'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
return None
class _getInfo(Interface.Method):
name = 'getInfo'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.logging.LogInfo.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.logging.LogInfo, DecodeException)
return _ret_
class _getChunk(Interface.Method):
name = 'getChunk'
@staticmethod
def encode(refId, count, direction):
typecheck.is_int(refId, AssertionError)
typecheck.is_int(count, AssertionError)
typecheck.is_enum(direction, raritan.rpc.logging.RangeDirection, AssertionError)
args = {}
args['refId'] = refId
args['count'] = count
args['direction'] = raritan.rpc.logging.RangeDirection.encode(direction)
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.logging.LogChunk.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.logging.LogChunk, DecodeException)
return _ret_
def __init__(self, target, agent):
super(DebugLog, self).__init__(target, agent)
self.clear = DebugLog._clear(self)
self.getInfo = DebugLog._getInfo(self)
self.getChunk = DebugLog._getChunk(self)
#
# Section generated by IdlC from "EventLog.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
import raritan.rpc.event
import raritan.rpc.logging
# value object
class EventLogClearedEvent(raritan.rpc.event.UserEvent):
idlType = "logging.EventLogClearedEvent:1.0.0"
def __init__(self, actUserName, actIpAddr, source):
super(raritan.rpc.logging.EventLogClearedEvent, self).__init__(actUserName, actIpAddr, source)
def encode(self):
json = super(raritan.rpc.logging.EventLogClearedEvent, self).encode()
return json
@classmethod
def decode(cls, json, agent):
obj = cls(
# for event.UserEvent
actUserName = json['actUserName'],
actIpAddr = json['actIpAddr'],
# for idl.Event
source = Interface.decode(json['source'], agent),
)
return obj
def listElements(self):
elements = []
elements = elements + super(raritan.rpc.logging.EventLogClearedEvent, self).listElements()
return elements
# interface
class EventLog(Interface):
idlType = "logging.EventLog:2.0.0"
class _clear(Interface.Method):
name = 'clear'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
return None
class _getInfo(Interface.Method):
name = 'getInfo'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.logging.LogInfo.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.logging.LogInfo, DecodeException)
return _ret_
class _getChunk(Interface.Method):
name = 'getChunk'
@staticmethod
def encode(refId, count, direction, categories):
typecheck.is_int(refId, AssertionError)
typecheck.is_int(count, AssertionError)
typecheck.is_enum(direction, raritan.rpc.logging.RangeDirection, AssertionError)
for x0 in categories:
typecheck.is_string(x0, AssertionError)
args = {}
args['refId'] = refId
args['count'] = count
args['direction'] = raritan.rpc.logging.RangeDirection.encode(direction)
args['categories'] = [x0 for x0 in categories]
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.logging.LogChunk.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.logging.LogChunk, DecodeException)
return _ret_
def __init__(self, target, agent):
super(EventLog, self).__init__(target, agent)
self.clear = EventLog._clear(self)
self.getInfo = EventLog._getInfo(self)
self.getChunk = EventLog._getChunk(self)
#
# Section generated by IdlC from "WlanLog.idl"
#
import raritan.rpc
from raritan.rpc import Interface, Structure, ValueObject, Enumeration, typecheck, DecodeException
import raritan.rpc.logging
# interface
class WlanLog(Interface):
idlType = "logging.WlanLog:1.0.0"
class _clear(Interface.Method):
name = 'clear'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
return None
class _getInfo(Interface.Method):
name = 'getInfo'
@staticmethod
def encode():
args = {}
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.logging.LogInfo.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.logging.LogInfo, DecodeException)
return _ret_
class _getChunk(Interface.Method):
name = 'getChunk'
@staticmethod
def encode(refId, count, direction):
typecheck.is_int(refId, AssertionError)
typecheck.is_int(count, AssertionError)
typecheck.is_enum(direction, raritan.rpc.logging.RangeDirection, AssertionError)
args = {}
args['refId'] = refId
args['count'] = count
args['direction'] = raritan.rpc.logging.RangeDirection.encode(direction)
return args
@staticmethod
def decode(rsp, agent):
_ret_ = raritan.rpc.logging.LogChunk.decode(rsp['_ret_'], agent)
typecheck.is_struct(_ret_, raritan.rpc.logging.LogChunk, DecodeException)
return _ret_
def __init__(self, target, agent):
super(WlanLog, self).__init__(target, agent)
self.clear = WlanLog._clear(self)
self.getInfo = WlanLog._getInfo(self)
self.getChunk = WlanLog._getChunk(self)
|