Driver
driver
CacheHandler
dataclass
Thin wrapper around an aiohttp-client-cache SQLite backend.
Only GET responses are ever cached (enforced by the backend's
allowed_methods config) so repeated reads skip the network,
while POST/PUT requests always hit the server.
Source code in cascade_cms/driver.py
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 | |
get_cache_key(method, url)
Returns a response in cach if it exists
Source code in cascade_cms/driver.py
40 41 42 43 44 45 46 | |
save_response(response, cache_key)
async
Check to see if response is cacheable
Source code in cascade_cms/driver.py
48 49 50 51 52 53 54 | |
RequestExecutor
dataclass
Represents a single HTTP request and how to parse its response.
Built by an OperationChain and executed concurrently, alongside the
rest of its batch, via CascadeCMSRestDriver.execute_requests().
Source code in cascade_cms/driver.py
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 | |
log_key
property
Stable key for naming this request's verbose-mode JSON files.
Prefers the identifier's UUID hex (IdentifierType); falls back to
a short hash of the URL when only a Path (no UUID) or no
identifier at all is available, so a {key}_request.json/
{key}_response.json pair still lines up for the same request.
fetch(session, sem, cache, logger=None)
async
Execute this request, using the cache for GETs when possible.
Checks the cache first; on a miss, performs the network request,
parses the response, and stores it in the cache if parsing marked
it cacheable. Concurrency across requests is bounded by sem.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session
|
ClientSession
|
Shared aiohttp session to issue the request on. |
required |
sem
|
Semaphore
|
Semaphore limiting concurrent in-flight requests. |
required |
cache
|
CacheHandler
|
Cache handler used to short-circuit repeated GETs. |
required |
logger
|
OperationLogger | None
|
Optional logger for recording request/response detail. |
None
|
Returns:
| Type | Description |
|---|---|
T
|
The parsed response content (an asset, list, error, etc.). |
Source code in cascade_cms/driver.py
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 | |
CascadeCMSRestDriver
URL builder and executor for Cascade CMS 8 REST API. Inherits URL-building from CascadeCMSURLBuilder and applies an optional parser function to each response.
Source code in cascade_cms/driver.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
__init__(apiKey, cascade_url, backendConfig, logger=None)
Set up the aiohttp session, event loop, and cache for this driver.
Creates a dedicated event loop that is reused for the lifetime of this driver instance (rather than one per call), so all requests and cache I/O run on the same loop.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
apiKey
|
str
|
Cascade CMS API bearer token. |
required |
cascade_url
|
str
|
Base URL of the Cascade CMS instance (without
the |
required |
backendConfig
|
dict[str, Any] | None
|
kwargs forwarded to |
required |
logger
|
OperationLogger | None
|
Optional logger for recording operations/errors. |
None
|
Source code in cascade_cms/driver.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | |
execute_requests(requests)
async
Run the given requests concurrently and return their results in order.
This is the single execution core: operation chains await it directly.
Concurrency is bounded by MAX_REQUESTS via a driver-wide semaphore,
so many chains running at once still cannot exceed that ceiling.
Unlike a plain gather, results line up one-for-one with requests
in submission order, and a request that raises returns the exception
object in its slot rather than being dropped — chains rely on that to
report which step failed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
requests
|
list[RequestExecutor]
|
The requests to execute. |
required |
Returns:
| Type | Description |
|---|---|
list[Any]
|
One entry per request, in the same order: the parsed response, a |
list[Any]
|
|
Source code in cascade_cms/driver.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | |
close()
Tear down the aiohttp session, cache DB, and event loop.
Source code in cascade_cms/driver.py
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
default_cache_backend()
Build the default cache backend: SQLite, GET-only, 200s only.
Constructed on demand rather than at module scope so that merely
importing cascade_cms does not create a ./cache/ directory in the
caller's working directory.
Source code in cascade_cms/driver.py
149 150 151 152 153 154 155 156 157 158 159 160 | |