2
2
import os
3
3
import pickle
4
4
import sqlite3
5
+ from pathlib import Path
5
6
import asyncstdlib as a
6
7
7
8
USE_CACHE = True if os .getenv ("NO_CACHE" ) != "1" else False
14
15
)
15
16
16
17
18
+ def _ensure_dir ():
19
+ path = Path (CACHE_LOCATION ).parent
20
+ if not path .exists ():
21
+ path .mkdir (parents = True , exist_ok = True )
22
+
23
+
17
24
def _get_table_name (func ):
18
25
"""Convert "ClassName.method_name" to "ClassName_method_name"""
19
26
return func .__qualname__ .replace ("." , "_" )
@@ -74,22 +81,32 @@ def _insert_into_cache(c, conn, table_name, key, result, chain):
74
81
pass
75
82
76
83
77
- def sql_lru_cache (maxsize = None ):
78
- def decorator (func ):
84
+ def _shared_inner_fn_logic (func , self , args , kwargs ):
85
+ chain = self .url
86
+ if not (local_chain := _check_if_local (chain )) or not USE_CACHE :
87
+ _ensure_dir ()
79
88
conn = sqlite3 .connect (CACHE_LOCATION )
80
89
c = conn .cursor ()
81
90
table_name = _get_table_name (func )
82
91
_create_table (c , conn , table_name )
92
+ key = pickle .dumps ((args , kwargs ))
93
+ result = _retrieve_from_cache (c , table_name , key , chain )
94
+ else :
95
+ result = None
96
+ c = None
97
+ conn = None
98
+ table_name = None
99
+ key = None
100
+ return c , conn , table_name , key , result , chain , local_chain
101
+
83
102
103
+ def sql_lru_cache (maxsize = None ):
104
+ def decorator (func ):
84
105
@functools .lru_cache (maxsize = maxsize )
85
106
def inner (self , * args , ** kwargs ):
86
- c = conn .cursor ()
87
- key = pickle .dumps ((args , kwargs ))
88
- chain = self .url
89
- if not (local_chain := _check_if_local (chain )) or not USE_CACHE :
90
- result = _retrieve_from_cache (c , table_name , key , chain )
91
- if result is not None :
92
- return result
107
+ c , conn , table_name , key , result , chain , local_chain = (
108
+ _shared_inner_fn_logic (func , self , args , kwargs )
109
+ )
93
110
94
111
# If not in DB, call func and store in DB
95
112
result = func (self , * args , ** kwargs )
@@ -106,21 +123,11 @@ def inner(self, *args, **kwargs):
106
123
107
124
def async_sql_lru_cache (maxsize = None ):
108
125
def decorator (func ):
109
- conn = sqlite3 .connect (CACHE_LOCATION )
110
- c = conn .cursor ()
111
- table_name = _get_table_name (func )
112
- _create_table (c , conn , table_name )
113
-
114
126
@a .lru_cache (maxsize = maxsize )
115
127
async def inner (self , * args , ** kwargs ):
116
- c = conn .cursor ()
117
- key = pickle .dumps ((args , kwargs ))
118
- chain = self .url
119
-
120
- if not (local_chain := _check_if_local (chain )) or not USE_CACHE :
121
- result = _retrieve_from_cache (c , table_name , key , chain )
122
- if result is not None :
123
- return result
128
+ c , conn , table_name , key , result , chain , local_chain = (
129
+ _shared_inner_fn_logic (func , self , args , kwargs )
130
+ )
124
131
125
132
# If not in DB, call func and store in DB
126
133
result = await func (self , * args , ** kwargs )
0 commit comments