From e3efcdc25cadcb5a037c4ccc5172ea60e7f9e682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Tue, 26 Sep 2023 20:59:42 +0200 Subject: [PATCH] more deprecation --- src/linkahead/connection/connection.py | 9 +++++++++ src/linkahead/connection/interface.py | 16 ++++++++++++++++ src/linkahead/exceptions.py | 8 ++++++++ 3 files changed, 33 insertions(+) diff --git a/src/linkahead/connection/connection.py b/src/linkahead/connection/connection.py index 63f35a01..273c0c53 100644 --- a/src/linkahead/connection/connection.py +++ b/src/linkahead/connection/connection.py @@ -28,6 +28,7 @@ from __future__ import absolute_import, print_function, unicode_literals import logging import ssl import sys +from warnings import warn import warnings from builtins import str # pylint: disable=redefined-builtin from errno import EPIPE as BrokenPipe @@ -294,6 +295,14 @@ class _DefaultLinkAheadServerConnection(LinkAheadServerConnection): self._session.verify = verify +class _DefaultCaosDBServerConnection(_DefaultLinkAheadServerConnection): + def __init__(self, *args, **kwargs): + warn(("The name _DefaultCaosDBServerConnection is deprecated. Please use " + "_DefaultLinkAheadServerConnection."), + DeprecationWarning) + super().__init__(*args, **kwargs) + + def _make_conf(*conf): """_make_conf. diff --git a/src/linkahead/connection/interface.py b/src/linkahead/connection/interface.py index 49862369..95ebc7cf 100644 --- a/src/linkahead/connection/interface.py +++ b/src/linkahead/connection/interface.py @@ -23,6 +23,7 @@ # """This module defines the LinkAheadServerConnection interface.""" from abc import ABCMeta, abstractmethod, abstractproperty +from warnings import warn # meta class compatible with Python 2 *and* 3: ABC = ABCMeta('ABC', (object, ), {'__slots__': ()}) @@ -72,6 +73,13 @@ class LinkAheadHTTPResponse(ABC): """ +class CaosDBHTTPResponse(LinkAheadHTTPResponse): + def __init__(self, *args, **kwargs): + warn(("The name CaosDBHTTPResponse is deprecated. Please use LinkAheadHTTPResponse."), + DeprecationWarning) + super().__init__(*args, **kwargs) + + class LinkAheadServerConnection(ABC): """Abstract class which defines the interface for sending requests to the LinkAhead server.""" @@ -95,3 +103,11 @@ class LinkAheadServerConnection(ABC): ------- None """ + + +class CaosDBServerConnection(LinkAheadServerConnection): + def __init__(self, *args, **kwargs): + warn(("The name CaosDBServerConnection is deprecated. Please use " + "LinkAheadServerConnection."), + DeprecationWarning) + super().__init__(*args, **kwargs) diff --git a/src/linkahead/exceptions.py b/src/linkahead/exceptions.py index 9c9ca9a3..e6fb6354 100644 --- a/src/linkahead/exceptions.py +++ b/src/linkahead/exceptions.py @@ -108,6 +108,14 @@ class LinkAheadConnectionError(LinkAheadException): LinkAheadException.__init__(self, msg) +class CaosDBConnectionError(LinkAheadConnectionError): + def __init__(self, *args, **kwargs): + warn(("The name CaosDBConnectionError is deprecated. " + "Please use LinkAheadConnectionError."), + DeprecationWarning) + super().__init__(*args, **kwargs) + + class HTTPURITooLongError(HTTPClientError): """The URI of the last request was too long.""" -- GitLab