2020-04-22 08:07:41 -04:00
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""Contains *incomplete* type hints for txredisapi.
|
|
|
|
"""
|
2021-01-26 08:57:31 -05:00
|
|
|
from typing import Any, List, Optional, Type, Union
|
2020-04-22 08:07:41 -04:00
|
|
|
|
2021-03-11 13:35:09 -05:00
|
|
|
from twisted.internet import protocol
|
2021-12-14 12:35:28 -05:00
|
|
|
from twisted.internet.defer import Deferred
|
2022-04-25 08:32:35 -04:00
|
|
|
from twisted.internet.interfaces import IAddress
|
|
|
|
from twisted.python.failure import Failure
|
2021-03-11 13:35:09 -05:00
|
|
|
|
2021-03-15 11:14:39 -04:00
|
|
|
class RedisProtocol(protocol.Protocol):
|
2022-03-08 07:26:05 -05:00
|
|
|
def publish(self, channel: str, message: bytes) -> "Deferred[None]": ...
|
2021-12-14 12:35:28 -05:00
|
|
|
def ping(self) -> "Deferred[None]": ...
|
|
|
|
def set(
|
2021-01-26 08:57:31 -05:00
|
|
|
self,
|
|
|
|
key: str,
|
|
|
|
value: Any,
|
|
|
|
expire: Optional[int] = None,
|
|
|
|
pexpire: Optional[int] = None,
|
|
|
|
only_if_not_exists: bool = False,
|
|
|
|
only_if_exists: bool = False,
|
2021-12-14 12:35:28 -05:00
|
|
|
) -> "Deferred[None]": ...
|
|
|
|
def get(self, key: str) -> "Deferred[Any]": ...
|
2020-04-22 08:07:41 -04:00
|
|
|
|
2021-01-26 05:54:54 -05:00
|
|
|
class SubscriberProtocol(RedisProtocol):
|
2022-04-25 08:32:35 -04:00
|
|
|
def __init__(self, *args: object, **kwargs: object): ...
|
2020-05-04 09:04:09 -04:00
|
|
|
password: Optional[str]
|
2022-04-25 08:32:35 -04:00
|
|
|
def subscribe(self, channels: Union[str, List[str]]) -> "Deferred[None]": ...
|
|
|
|
def connectionMade(self) -> None: ...
|
|
|
|
# type-ignore: twisted.internet.protocol.Protocol provides a default argument for
|
|
|
|
# `reason`. txredisapi's LineReceiver Protocol doesn't. But that's fine: it's what's
|
|
|
|
# actually specified in twisted.internet.interfaces.IProtocol.
|
|
|
|
def connectionLost(self, reason: Failure) -> None: ... # type: ignore[override]
|
2020-04-22 08:07:41 -04:00
|
|
|
|
|
|
|
def lazyConnection(
|
|
|
|
host: str = ...,
|
|
|
|
port: int = ...,
|
|
|
|
dbid: Optional[int] = ...,
|
|
|
|
reconnect: bool = ...,
|
|
|
|
charset: str = ...,
|
|
|
|
password: Optional[str] = ...,
|
|
|
|
connectTimeout: Optional[int] = ...,
|
|
|
|
replyTimeout: Optional[int] = ...,
|
|
|
|
convertNumbers: bool = ...,
|
|
|
|
) -> RedisProtocol: ...
|
|
|
|
|
2022-03-08 07:26:05 -05:00
|
|
|
# ConnectionHandler doesn't actually inherit from RedisProtocol, but it proxies
|
|
|
|
# most methods to it via ConnectionHandler.__getattr__.
|
|
|
|
class ConnectionHandler(RedisProtocol):
|
|
|
|
def disconnect(self) -> "Deferred[None]": ...
|
2020-10-02 04:57:12 -04:00
|
|
|
|
2021-03-11 13:35:09 -05:00
|
|
|
class RedisFactory(protocol.ReconnectingClientFactory):
|
2020-10-02 04:57:12 -04:00
|
|
|
continueTrying: bool
|
2022-03-08 07:26:05 -05:00
|
|
|
handler: ConnectionHandler
|
2021-01-26 05:54:54 -05:00
|
|
|
pool: List[RedisProtocol]
|
|
|
|
replyTimeout: Optional[int]
|
2020-10-02 04:57:12 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
uuid: str,
|
|
|
|
dbid: Optional[int],
|
|
|
|
poolsize: int,
|
|
|
|
isLazy: bool = False,
|
|
|
|
handler: Type = ConnectionHandler,
|
|
|
|
charset: str = "utf-8",
|
|
|
|
password: Optional[str] = None,
|
|
|
|
replyTimeout: Optional[int] = None,
|
|
|
|
convertNumbers: Optional[int] = True,
|
|
|
|
): ...
|
2022-04-25 08:32:35 -04:00
|
|
|
def buildProtocol(self, addr: IAddress) -> RedisProtocol: ...
|
2021-01-26 05:54:54 -05:00
|
|
|
|
|
|
|
class SubscriberFactory(RedisFactory):
|
2021-09-10 12:03:18 -04:00
|
|
|
def __init__(self) -> None: ...
|