Source loader¶
loader ¶
Load configured AutoCorrect2 hotstring sources through a persistent cache.
LOGGER
module-attribute
¶
Module logger used for source-loading diagnostics.
load_existing_hotstrings ¶
load_existing_hotstrings(
project_dir: Path,
*,
required_source_paths: Sequence[
Path
] = REQUIRED_HOTSTRING_SOURCE_RELATIVE_PATHS,
optional_source_paths: Sequence[
Path
] = OPTIONAL_HOTSTRING_SOURCE_RELATIVE_PATHS,
cache_path: Path | None = DEFAULT_SOURCE_CACHE_PATH,
) -> list[ExistingHotstring]
Load all configured active static AutoCorrect2 hotstrings.
Required sources must exist. Optional sources, including the project-owned generated include file, are scanned only when present. When caching is enabled, SHA-256 is the authoritative content identity. File size and modification time are retained as useful metadata and positive change signals, but matching metadata never suppresses hash verification.
Cache failures are treated as optimization failures rather than source-load failures. The function falls back to parsing authoritative AutoCorrect2 source files when persisted cache data cannot be used.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_dir
|
Path
|
AutoCorrect2 project directory. |
required |
required_source_paths
|
Sequence[Path]
|
Relative source paths that must exist. |
REQUIRED_HOTSTRING_SOURCE_RELATIVE_PATHS
|
optional_source_paths
|
Sequence[Path]
|
Relative source paths scanned when present. |
OPTIONAL_HOTSTRING_SOURCE_RELATIVE_PATHS
|
cache_path
|
Path | None
|
Persistent JSON cache path, or |
DEFAULT_SOURCE_CACHE_PATH
|
Returns:
| Type | Description |
|---|---|
list[ExistingHotstring]
|
Existing hotstrings in source-file and declaration order. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If a path argument has an invalid type. |
FileNotFoundError
|
If a required source does not exist. |
UnicodeDecodeError
|
If a changed source is not valid UTF-8 text. |
ValueError
|
If a parsed hotstring declaration is invalid. |
OSError
|
If an authoritative source cannot be inspected or read. |
Source code in hotstring\autocorrect2\source_loading\loader.py
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 | |
_load_source_hotstrings ¶
_load_source_hotstrings(
file_path: Path,
*,
source: Path,
cache: SourceCache | None,
) -> tuple[list[ExistingHotstring], bool]
Load one source using cache reuse when its content hash matches.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
Path
|
Authoritative source file to inspect. |
required |
source
|
Path
|
Relative source identifier stored on extracted hotstrings. |
required |
cache
|
SourceCache | None
|
Loaded persistent cache, or |
required |
Returns:
| Type | Description |
|---|---|
list[ExistingHotstring]
|
Pair containing loaded hotstrings and whether the in-memory cache was |
bool
|
modified. |
Raises:
| Type | Description |
|---|---|
UnicodeDecodeError
|
If source bytes requiring parsing are not valid UTF-8 text. |
ValueError
|
If a parsed hotstring declaration is invalid. |
OSError
|
If the source cannot be inspected or read. |
Source code in hotstring\autocorrect2\source_loading\loader.py
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 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 | |
_parse_and_refresh_source ¶
_parse_and_refresh_source(
file_path: Path,
*,
source: Path,
source_key: str,
source_stat: stat_result,
cache: SourceCache,
content: bytes | None = None,
content_hash: str | None = None,
) -> tuple[list[ExistingHotstring], bool]
Parse one authoritative source and replace its cache entry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
Path
|
Source file used when bytes have not already been read. |
required |
source
|
Path
|
Relative source identifier stored on extracted hotstrings. |
required |
source_key
|
str
|
Stable cache key for the source. |
required |
source_stat
|
stat_result
|
Filesystem metadata captured before parsing. |
required |
cache
|
SourceCache
|
In-memory source cache to update. |
required |
content
|
bytes | None
|
Already-read source bytes when available. |
None
|
content_hash
|
str | None
|
Already-computed source digest when available. |
None
|
Returns:
| Type | Description |
|---|---|
list[ExistingHotstring]
|
Pair containing parsed hotstrings and |
bool
|
was refreshed. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If the supplied filesystem metadata is invalid. |
UnicodeDecodeError
|
If source bytes are not valid UTF-8 text. |
ValueError
|
If a parsed hotstring declaration is invalid. |
OSError
|
If source bytes must be read and the read fails. |
Source code in hotstring\autocorrect2\source_loading\loader.py
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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | |
_parse_source_content ¶
_parse_source_content(
content: bytes, *, source: Path
) -> list[ExistingHotstring]
Decode source bytes and delegate static declaration parsing.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
|
bytes
|
Exact source-file bytes. |
required |
source
|
Path
|
Relative source identifier stored on extracted hotstrings. |
required |
Returns:
| Type | Description |
|---|---|
list[ExistingHotstring]
|
Parsed existing hotstrings in declaration order. |
Raises:
| Type | Description |
|---|---|
UnicodeDecodeError
|
If the source is not valid UTF-8 text. |
ValueError
|
If an extracted hotstring declaration is invalid. |
Source code in hotstring\autocorrect2\source_loading\loader.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | |