-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedisLib.py
More file actions
185 lines (152 loc) · 2.98 KB
/
RedisLib.py
File metadata and controls
185 lines (152 loc) · 2.98 KB
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
"""
Author: masakokh
Version: 1.0.1
Note: redis
"""
#
import redis
#
from typing import Any
class RedisLib:
"""
"""
def __init__(self):
"""
"""
# private
self.__channel: str = ''
self.__pool = None
self.__pubsub = None
self.__redis = None
# public
self.enableError: bool = False
self.enableFail: bool = False
self.enableInfo: bool = False
self.enableTrack: bool = False
self.enableSuccess: bool = False
self.enableWarn: bool = False
def channelDelete(self, channel: str) -> None:
"""
:param channel:
:return:
"""
try:
#
self.__pubsub.unsubscribe(channel)
except Exception as e:
print('RedisLib.channelDelete Exception', str(e))
def channelSet(self, channel: str) -> None:
"""
:param channel:
:return:
"""
try:
# verify data
if channel:
# set current channel
self.__channel = channel
# subscribe new channel
self.__pubsub.subscribe(self.__channel)
except Exception as e:
print('RedisLib.channelSet Exception', str(e))
def config(self, host: str, port: int, db: int = 0, password: str = None) -> None:
"""
:param host:
:param port:
:param db:
:param password:
:return:
"""
#
try:
if password:
# pool
self.__pool = redis.ConnectionPool(
host = host
, port = port
, db = db
, decode_responses = True
, charset = 'utf-8'
, password = password
)
#
self.__redis = redis.Redis(
connection_pool = self.__pool
)
#
self.__pubsub = self.__redis.pubsub()
else:
#
self.__redis = redis.ConnectionPool(
host = host
, port = port
, db = db
, decode_responses = True
, charset = 'utf-8'
)
#
self.__redis = redis.Redis(
connection_pool = self.__pool
)
#
self.__pubsub = self.__redis.pubsub()
except Exception as e:
print('RedisLib.config Exception', str(e))
def itemDelete(self, key: str) -> None:
"""
:param key:
:return:
"""
try:
self.__redis.delete(key)
except Exception as e:
print(str(e))
def itemSet(self, key: str, value: Any) -> None:
"""
:return:
"""
try:
self.__redis.set(
key
, value
)
except Exception as e:
print('RedisLib.itemSet Exception', str(e))
def messageGet(self, channel: str= None) -> Any:
"""
:param channel:
:return:
"""
try:
#
if channel:
pass
#
self.__pubsub.get_message()
except Exception as e:
print('RedisLib.messageGet Exception', str(e))
def messagePush(self, title: str, body: str, channel: str = None) -> None:
"""
:param title:
:param body:
:param channel:
:return:
"""
try:
#
message = f'{title}:::{body}'
#
if channel:
#
self.__redis.publish(
channel
, message
)
elif self.__channel:
#
self.__redis.publish(
self.__channel
, message
)
except Exception as e:
print('RedisLib.messagePush Exception', str(e))