kisa-utils 0.42.4__py3-none-any.whl → 0.42.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kisa_utils/queues/persistent.py +4 -7
- {kisa_utils-0.42.4.dist-info → kisa_utils-0.42.5.dist-info}/METADATA +1 -1
- {kisa_utils-0.42.4.dist-info → kisa_utils-0.42.5.dist-info}/RECORD +5 -5
- {kisa_utils-0.42.4.dist-info → kisa_utils-0.42.5.dist-info}/WHEEL +0 -0
- {kisa_utils-0.42.4.dist-info → kisa_utils-0.42.5.dist-info}/top_level.txt +0 -0
kisa_utils/queues/persistent.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from kisa_utils.db import Handle
|
|
2
|
-
from kisa_utils import db
|
|
3
2
|
from kisa_utils.queues.callables import queueCallsInThreads
|
|
4
3
|
from kisa_utils.response import Response, Error, Ok
|
|
5
4
|
from kisa_utils.dataStructures import KDict
|
|
@@ -8,8 +7,6 @@ from kisa_utils import dates
|
|
|
8
7
|
from kisa_utils.functionUtils import enforceRequirements
|
|
9
8
|
from kisa_utils.structures.utils import Value
|
|
10
9
|
|
|
11
|
-
db.RETURN_KISA_RESPONSES = True
|
|
12
|
-
|
|
13
10
|
class __PersistentQueueSingleton(type):
|
|
14
11
|
_instances = {}
|
|
15
12
|
|
|
@@ -115,7 +112,7 @@ class PersistentQueue(metaclass=__PersistentQueueSingleton):
|
|
|
115
112
|
load underlying queue database
|
|
116
113
|
'''
|
|
117
114
|
|
|
118
|
-
with Handle(self.dbPath, tables=self.__schema) as handle:
|
|
115
|
+
with Handle(self.dbPath, tables=self.__schema, returnKISAResponse=True) as handle:
|
|
119
116
|
if not (resp := handle.fetch('data', ['count(*)'],'',[])):
|
|
120
117
|
return resp
|
|
121
118
|
|
|
@@ -149,7 +146,7 @@ class PersistentQueue(metaclass=__PersistentQueueSingleton):
|
|
|
149
146
|
return Error(f'failed to get data-type of `{data}`')
|
|
150
147
|
|
|
151
148
|
|
|
152
|
-
with Handle(self.dbPath, readonly=False) as handle:
|
|
149
|
+
with Handle(self.dbPath, readonly=False, returnKISAResponse=True) as handle:
|
|
153
150
|
if not (resp := handle.insert('data', [
|
|
154
151
|
dates.currentTimestamp(),
|
|
155
152
|
dataType,
|
|
@@ -167,7 +164,7 @@ class PersistentQueue(metaclass=__PersistentQueueSingleton):
|
|
|
167
164
|
if not (resp := self.__resolveIndex(index)): return resp
|
|
168
165
|
index = resp.data
|
|
169
166
|
|
|
170
|
-
with Handle(self.dbPath) as handle:
|
|
167
|
+
with Handle(self.dbPath, returnKISAResponse=True) as handle:
|
|
171
168
|
if not (resp := handle.fetch('data', ['dataType', 'data'],'',[],limit=1, offset=index, parseJson=True)):
|
|
172
169
|
return resp
|
|
173
170
|
|
|
@@ -187,7 +184,7 @@ class PersistentQueue(metaclass=__PersistentQueueSingleton):
|
|
|
187
184
|
if not (resp := self.__resolveIndex(index)): return resp
|
|
188
185
|
index = resp.data
|
|
189
186
|
|
|
190
|
-
with Handle(self.dbPath, readonly=False) as handle:
|
|
187
|
+
with Handle(self.dbPath, readonly=False, returnKISAResponse=True) as handle:
|
|
191
188
|
if not (resp := handle.fetch('data', ['rowid','dataType', 'data'],'',[],limit=1, offset=index, parseJson=True)):
|
|
192
189
|
return resp
|
|
193
190
|
|
|
@@ -18,7 +18,7 @@ kisa_utils/token.py,sha256=Y2qglWYWpmHxoXBh-TH0r1as0uPV5LLqMNcunLvM4vM,7850
|
|
|
18
18
|
kisa_utils/permissions/__config__.py,sha256=i3ELkOydDnjKx2ozQTxLZdZ8DXSeUncnl2kRxANjFmM,613
|
|
19
19
|
kisa_utils/permissions/__init__.py,sha256=iAsGEf5Ktw3gPJ5ZKL8BnuqX8e_S4QgsCVgfaRYi4Qg,48068
|
|
20
20
|
kisa_utils/queues/__init__.py,sha256=VvhceyN5qeiMel1JFQwLRuVk48oBXaWvDtriCubDOms,48
|
|
21
|
-
kisa_utils/queues/persistent.py,sha256=
|
|
21
|
+
kisa_utils/queues/persistent.py,sha256=Gie6eUX44BLzC2udO4mbP-njA6BRbsovlMcDNQKFXJM,6706
|
|
22
22
|
kisa_utils/queues/callables/__init__.py,sha256=OJL3AQnaAS1Eek4H6WBH3WefA2wf-x03cwFmRSK8hoU,141
|
|
23
23
|
kisa_utils/queues/callables/enqueueFunctionCalls.py,sha256=VIliaMvw4MUdOqts0dXdZCYNxs-QrOVjIRAR3scGrRM,11786
|
|
24
24
|
kisa_utils/queues/callables/executorQueues.py,sha256=x6bAqxBSZRZ_kL8CK1lSN6JYAYFLxzM84LC1RmwaOLw,6626
|
|
@@ -27,7 +27,7 @@ kisa_utils/servers/flask.py,sha256=XZYY1pWnP1mSvaS5Uv8G3EFJV5BJBQtU2gDbO8suvLc,4
|
|
|
27
27
|
kisa_utils/structures/__init__.py,sha256=JBU1j3A42jQ62ALKnsS1Hav9YXcYwjDw1wQJtohXPbU,83
|
|
28
28
|
kisa_utils/structures/utils.py,sha256=665rXIapGwFqejizeJwy3DryeskCQOdgP25BCdLkGvk,2898
|
|
29
29
|
kisa_utils/structures/validator.py,sha256=JhD9jcfbjTwBr_7OfuNaJd_cYr7wR2emFhsCEo5MCHQ,4323
|
|
30
|
-
kisa_utils-0.42.
|
|
31
|
-
kisa_utils-0.42.
|
|
32
|
-
kisa_utils-0.42.
|
|
33
|
-
kisa_utils-0.42.
|
|
30
|
+
kisa_utils-0.42.5.dist-info/METADATA,sha256=IIKhQyNwq2RzoGPo4O8tm_zjYGOYlCgdh4qV94uSlLc,477
|
|
31
|
+
kisa_utils-0.42.5.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
32
|
+
kisa_utils-0.42.5.dist-info/top_level.txt,sha256=GFOLXZYqpBG9xtscGa2uGJAEiZ5NwsqHBH9NylnB29M,11
|
|
33
|
+
kisa_utils-0.42.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|