mirror of https://github.com/conqp/rcon
10 changed files with 60 additions and 108 deletions
@ -1,16 +1,7 @@ |
|||||
"""RCON client library.""" |
"""RCON client library.""" |
||||
|
|
||||
from rcon.console import rconcmd |
from rcon.console import rconcmd |
||||
from rcon.exceptions import InvalidConfig |
|
||||
from rcon.exceptions import RequestIdMismatch |
|
||||
from rcon.exceptions import WrongPassword |
|
||||
from rcon.proto import Client |
from rcon.proto import Client |
||||
|
|
||||
|
|
||||
__all__ = [ |
__all__ = ['Client', 'rconcmd'] |
||||
'InvalidConfig', |
|
||||
'RequestIdMismatch', |
|
||||
'WrongPassword', |
|
||||
'Client', |
|
||||
'rconcmd' |
|
||||
] |
|
||||
|
@ -1,32 +1,35 @@ |
|||||
"""Common errors handler.""" |
"""Common errors handler.""" |
||||
|
|
||||
from logging import Logger |
from logging import Logger |
||||
|
from socket import timeout |
||||
from sys import exit # pylint: disable=W0622 |
from sys import exit # pylint: disable=W0622 |
||||
from typing import Iterable, Tuple |
|
||||
|
|
||||
|
|
||||
__all__ = ['ErrorHandler'] |
__all__ = ['ErrorHandler'] |
||||
|
|
||||
|
|
||||
ErrorMap = Iterable[Tuple[Exception, str, int]] |
|
||||
|
|
||||
|
|
||||
class ErrorHandler: |
class ErrorHandler: |
||||
"""Handles common errors and exits.""" |
"""Handles common errors and exits.""" |
||||
|
|
||||
__slots__ = ('errors', 'logger') |
__slots__ = ('logger',) |
||||
|
|
||||
def __init__(self, errors: ErrorMap, logger: Logger): |
def __init__(self, logger: Logger): |
||||
"""Sets the logger.""" |
"""Sets the logger.""" |
||||
self.errors = errors |
|
||||
self.logger = logger |
self.logger = logger |
||||
|
|
||||
def __enter__(self): |
def __enter__(self): |
||||
return self |
return self |
||||
|
|
||||
def __exit__(self, typ, value, _): |
def __exit__(self, _, value, __): |
||||
"""Checks for connection errors and exits respectively.""" |
"""Checks for connection errors and exits respectively.""" |
||||
for exception, message, returncode in self.errors: |
if isinstance(value, ConnectionRefusedError): |
||||
if typ is exception or isinstance(value, exception): |
self.logger.error('Connection refused.') |
||||
self.logger.error(message) |
exit(3) |
||||
exit(returncode) |
|
||||
|
if isinstance(value, (TimeoutError, timeout)): |
||||
|
self.logger.error('Connection timed out.') |
||||
|
exit(4) |
||||
|
|
||||
|
if isinstance(value, RuntimeError): |
||||
|
self.logger.error(str(value)) |
||||
|
exit(5) |
||||
|
@ -1,22 +0,0 @@ |
|||||
"""RCON exceptions.""" |
|
||||
|
|
||||
|
|
||||
__all__ = ['InvalidConfig', 'RequestIdMismatch', 'WrongPassword'] |
|
||||
|
|
||||
|
|
||||
class InvalidConfig(ValueError): |
|
||||
"""Indicates invalid credentials.""" |
|
||||
|
|
||||
|
|
||||
class RequestIdMismatch(Exception): |
|
||||
"""Indicates that the sent and received request IDs do not match.""" |
|
||||
|
|
||||
def __init__(self, sent: int, received: int): |
|
||||
"""Sets the sent and received request IDs.""" |
|
||||
super().__init__(sent, received) |
|
||||
self.sent = sent |
|
||||
self.received = received |
|
||||
|
|
||||
|
|
||||
class WrongPassword(Exception): |
|
||||
"""Indicates a wrong RCON password.""" |
|
Loading…
Reference in new issue