Coverage for src/configuraptor/core.py: 100%

217 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-12-04 18:06 +0100

1""" 

2Contains most of the loading logic. 

3""" 

4 

5import dataclasses as dc 

6import io 

7import os 

8import typing 

9import warnings 

10from pathlib import Path 

11from typing import Any, Type 

12 

13import requests 

14 

15from . import loaders 

16from .abs import AnyType, C, T, T_data, Type_C 

17from .alias import Alias, has_alias 

18from .binary_config import BinaryConfig 

19from .errors import ( 

20 ConfigErrorCouldNotConvert, 

21 ConfigErrorInvalidType, 

22 ConfigErrorMissingKey, 

23) 

24from .helpers import ( 

25 all_annotations, 

26 camel_to_snake, 

27 check_type, 

28 dataclass_field, 

29 find_pyproject_toml, 

30 is_custom_class, 

31 is_optional, 

32 is_parameterized, 

33) 

34from .postpone import Postponed 

35from .type_converters import CONVERTERS 

36 

37 

38def _data_for_nested_key(key: str, raw: dict[str, typing.Any]) -> dict[str, typing.Any]: 

39 """ 

40 If a key contains a dot, traverse the raw dict until the right key was found. 

41 

42 Example: 

43 key = some.nested.key 

44 raw = {"some": {"nested": {"key": {"with": "data"}}}} 

45 -> {"with": "data"} 

46 """ 

47 parts = key.split(".") 

48 while parts: 

49 key = parts.pop(0) 

50 if key not in raw: 

51 return {} 

52 

53 raw = raw[key] 

54 

55 return raw 

56 

57 

58def _guess_key(clsname: str) -> str: 

59 """ 

60 If no key is manually defined for `load_into`, \ 

61 the class' name is converted to snake_case to use as the default key. 

62 """ 

63 return camel_to_snake(clsname) 

64 

65 

66def _from_mock_url(url: str) -> str: 

67 """ 

68 Pytest only: when starting a url with mock:// it is expected to just be json afterwards. 

69 """ 

70 return url.removeprefix("mock://") 

71 

72 

73def guess_filetype_for_url(url: str, response: requests.Response = None) -> str: 

74 """ 

75 Based on the url (which may have an extension) and the requests response \ 

76 (which may have a content-type), try to guess the right filetype (-> loader, e.g. json or yaml). 

77 

78 Falls back to JSON if none can be found. 

79 """ 

80 url = url.split("?")[0] 

81 if url_extension := os.path.splitext(url)[1].lower(): 

82 return url_extension.strip(".") 

83 

84 if response and (content_type_header := response.headers.get("content-type", "").split(";")[0].strip()): 

85 content_type = content_type_header.split("/")[-1] 

86 if content_type != "plain": 

87 return content_type 

88 

89 # If both methods fail, default to JSON 

90 return "json" 

91 

92 

93def from_url(url: str, _dummy: bool = False) -> tuple[io.BytesIO, str]: 

94 """ 

95 Load data as bytes into a file-like object and return the file type. 

96 

97 This can be used by __load_data: 

98 > loader = loaders.get(filetype) 

99 > # dev/null exists but always returns b'' 

100 > data = loader(contents, Path("/dev/null")) 

101 """ 

102 if url.startswith("mock://"): 

103 data = _from_mock_url(url) 

104 resp = None 

105 elif _dummy: 

106 resp = None 

107 data = "{}" 

108 else: 

109 resp = requests.get(url, timeout=10) 

110 data = resp.text 

111 

112 filetype = guess_filetype_for_url(url, resp) 

113 return io.BytesIO(data.encode()), filetype 

114 

115 

116def _load_data( 

117 data: T_data, 

118 key: str = None, 

119 classname: str = None, 

120 lower_keys: bool = False, 

121 allow_types: tuple[type, ...] = (dict,), 

122) -> dict[str, typing.Any]: 

123 """ 

124 Tries to load the right data from a filename/path or dict, based on a manual key or a classname. 

125 

126 E.g. class Tool will be mapped to key tool. 

127 It also deals with nested keys (tool.extra -> {"tool": {"extra": ...}} 

128 """ 

129 if isinstance(data, bytes): 

130 # instantly return, don't modify 

131 # bytes as inputs -> bytes as output 

132 # but since `T_data` is re-used, that's kind of hard to type for mypy. 

133 return data # type: ignore 

134 

135 if isinstance(data, list): 

136 if not data: 

137 raise ValueError("Empty list passed!") 

138 

139 final_data: dict[str, typing.Any] = {} 

140 for source in data: 

141 final_data |= load_data(source, key=key, classname=classname, lower_keys=True, allow_types=allow_types) 

142 

143 return final_data 

144 

145 if isinstance(data, str): 

146 if data.startswith(("http://", "https://", "mock://")): 

147 contents, filetype = from_url(data) 

148 

149 loader = loaders.get(filetype) 

150 # dev/null exists but always returns b'' 

151 data = loader(contents, Path("/dev/null")) 

152 else: 

153 data = Path(data) 

154 

155 if isinstance(data, Path): 

156 with data.open("rb") as f: 

157 loader = loaders.get(data.suffix or data.name) 

158 data = loader(f, data.resolve()) 

159 

160 if not data: 

161 return {} 

162 

163 if key is None: 

164 # try to guess key by grabbing the first one or using the class name 

165 if len(data) == 1: 

166 key = next(iter(data.keys())) 

167 elif classname is not None: 

168 key = _guess_key(classname) 

169 

170 if key: 

171 data = _data_for_nested_key(key, data) 

172 

173 if not data: 

174 raise ValueError("No data found!") 

175 

176 if not isinstance(data, allow_types): 

177 raise ValueError(f"Data should be one of {allow_types} but it is {type(data)}!") 

178 

179 if lower_keys and isinstance(data, dict): 

180 data = {k.lower(): v for k, v in data.items()} 

181 

182 return typing.cast(dict[str, typing.Any], data) 

183 

184 

185def load_data( 

186 data: T_data, 

187 key: str = None, 

188 classname: str = None, 

189 lower_keys: bool = False, 

190 allow_types: tuple[type, ...] = (dict,), 

191) -> dict[str, typing.Any]: 

192 """ 

193 Wrapper around __load_data that retries with key="" if anything goes wrong. 

194 """ 

195 if data is None: 

196 # try to load pyproject.toml 

197 data = find_pyproject_toml() 

198 

199 try: 

200 return _load_data(data, key, classname, lower_keys=lower_keys, allow_types=allow_types) 

201 except Exception as e: 

202 # sourcery skip: remove-unnecessary-else, simplify-empty-collection-comparison, swap-if-else-branches 

203 # @sourcery: `key != ""` is NOT the same as `not key` 

204 if key != "": 

205 return _load_data(data, "", classname, lower_keys=lower_keys, allow_types=allow_types) 

206 else: # pragma: no cover 

207 warnings.warn(f"Data could not be loaded: {e}", source=e) 

208 # key already was "", just return data! 

209 # (will probably not happen but fallback) 

210 return {} 

211 

212 

213F = typing.TypeVar("F") 

214 

215 

216def convert_between(from_value: F, from_type: Type[F], to_type: Type[T]) -> T: 

217 """ 

218 Convert a value between types. 

219 """ 

220 if converter := CONVERTERS.get((from_type, to_type)): 

221 return typing.cast(T, converter(from_value)) 

222 

223 # default: just convert type: 

224 return to_type(from_value) # type: ignore 

225 

226 

227def check_and_convert_type(value: Any, _type: Type[T], convert_types: bool, key: str = "variable") -> T: 

228 """ 

229 Checks if the given value matches the specified type. If it does, the value is returned as is. 

230 

231 Args: 

232 value (Any): The value to be checked and potentially converted. 

233 _type (Type[T]): The expected type for the value. 

234 convert_types (bool): If True, allows type conversion if the types do not match. 

235 key (str, optional): The name or key associated with the variable (used in error messages). 

236 Defaults to "variable". 

237 

238 Returns: 

239 T: The value, potentially converted to the expected type. 

240 

241 Raises: 

242 ConfigErrorInvalidType: If the type does not match, and type conversion is not allowed. 

243 ConfigErrorCouldNotConvert: If type conversion fails. 

244 """ 

245 if check_type(value, _type): 

246 # type matches 

247 return value 

248 

249 if isinstance(value, Alias): 

250 if is_optional(_type): 

251 return typing.cast(T, None) 

252 else: 

253 # unresolved alias, error should've already been thrown for parent but lets do it again: 

254 raise ConfigErrorInvalidType(value.to, value=value, expected_type=_type) 

255 

256 if not convert_types: 

257 # type does not match and should not be converted 

258 raise ConfigErrorInvalidType(key, value=value, expected_type=_type) 

259 

260 # else: type does not match, try to convert it 

261 try: 

262 return convert_between(value, type(value), _type) 

263 except (TypeError, ValueError) as e: 

264 raise ConfigErrorCouldNotConvert(type(value), _type, value) from e 

265 

266 

267def ensure_types( 

268 data: dict[str, T], annotations: dict[str, type[T]], convert_types: bool = False 

269) -> dict[str, T | None]: 

270 """ 

271 Make sure all values in 'data' are in line with the ones stored in 'annotations'. 

272 

273 If an annotated key in missing from data, it will be filled with None for convenience. 

274 

275 TODO: python 3.11 exception groups to throw multiple errors at once! 

276 """ 

277 # custom object to use instead of None, since typing.Optional can be None! 

278 # cast to T to make mypy happy 

279 notfound = typing.cast(T, object()) 

280 

281 final: dict[str, T | None] = {} 

282 for key, _type in annotations.items(): 

283 compare = data.get(key, notfound) 

284 if compare is notfound: # pragma: nocover 

285 warnings.warn( 

286 "This should not happen since " "`load_recursive` already fills `data` " "based on `annotations`" 

287 ) 

288 # skip! 

289 continue 

290 

291 if isinstance(compare, Postponed): 

292 # don't do anything with this item! 

293 continue 

294 

295 if isinstance(compare, Alias): 

296 related_data = data.get(compare.to, notfound) 

297 if related_data is not notfound: 

298 if isinstance(related_data, Postponed): 

299 # also continue alias for postponed items 

300 continue 

301 

302 # original key set, update alias 

303 compare = related_data 

304 

305 compare = check_and_convert_type(compare, _type, convert_types, key) 

306 

307 final[key] = compare 

308 

309 return final 

310 

311 

312def convert_config(items: dict[str, T]) -> dict[str, T]: 

313 """ 

314 Converts the config dict (from toml) or 'overwrites' dict in two ways. 

315 

316 1. removes any items where the value is None, since in that case the default should be used; 

317 2. replaces '-' and '.' in keys with '_' so it can be mapped to the Config properties. 

318 """ 

319 return {k.replace("-", "_").replace(".", "_"): v for k, v in items.items() if v is not None} 

320 

321 

322def load_recursive( 

323 cls: AnyType, data: dict[str, T], annotations: dict[str, AnyType], convert_types: bool = False 

324) -> dict[str, T]: 

325 """ 

326 For all annotations (recursively gathered from parents with `all_annotations`), \ 

327 try to resolve the tree of annotations. 

328 

329 Uses `load_into_recurse`, not itself directly. 

330 

331 Example: 

332 class First: 

333 key: str 

334 

335 class Second: 

336 other: First 

337 

338 # step 1 

339 cls = Second 

340 data = {"second": {"other": {"key": "anything"}}} 

341 annotations: {"other": First} 

342 

343 # step 1.5 

344 data = {"other": {"key": "anything"} 

345 annotations: {"other": First} 

346 

347 # step 2 

348 cls = First 

349 data = {"key": "anything"} 

350 annotations: {"key": str} 

351 

352 

353 TODO: python 3.11 exception groups to throw multiple errors at once! 

354 """ 

355 updated = {} 

356 

357 for _key, _type in annotations.items(): 

358 if _key in data: 

359 value: typing.Any = data[_key] # value can change so define it as any instead of T 

360 if is_parameterized(_type): 

361 origin = typing.get_origin(_type) 

362 arguments = typing.get_args(_type) 

363 if origin is list and arguments and is_custom_class(arguments[0]): 

364 subtype = arguments[0] 

365 value = [_load_into_recurse(subtype, subvalue, convert_types=convert_types) for subvalue in value] 

366 

367 elif origin is dict and arguments and is_custom_class(arguments[1]): 

368 # e.g. dict[str, Point] 

369 subkeytype, subvaluetype = arguments 

370 # subkey(type) is not a custom class, so don't try to convert it: 

371 value = { 

372 subkey: _load_into_recurse(subvaluetype, subvalue, convert_types=convert_types) 

373 for subkey, subvalue in value.items() 

374 } 

375 # elif origin is dict: 

376 # keep data the same 

377 elif origin is typing.Union and arguments: 

378 for arg in arguments: 

379 if is_custom_class(arg): 

380 value = _load_into_recurse(arg, value, convert_types=convert_types) 

381 

382 # todo: other parameterized/unions/typing.Optional 

383 

384 elif is_custom_class(_type): 

385 # type must be C (custom class) at this point 

386 value = _load_into_recurse( 

387 # make mypy and pycharm happy by telling it _type is of type C... 

388 # actually just passing _type as first arg! 

389 typing.cast(Type_C[typing.Any], _type), 

390 value, 

391 convert_types=convert_types, 

392 ) 

393 elif value := has_alias(cls, _key, data): 

394 # value updated by alias 

395 ... 

396 elif _key in cls.__dict__: 

397 # property has default, use that instead. 

398 value = cls.__dict__[_key] 

399 elif is_optional(_type): 

400 # type is optional and not found in __dict__ -> default is None 

401 value = None 

402 elif dc.is_dataclass(cls) and (field := dataclass_field(cls, _key)) and field.default_factory is not dc.MISSING: 

403 # could have a default factory 

404 # todo: do something with field.default? 

405 value = field.default_factory() 

406 else: 

407 raise ConfigErrorMissingKey(_key, cls, _type) 

408 

409 updated[_key] = value 

410 

411 return updated 

412 

413 

414def check_and_convert_data( 

415 cls: typing.Type[C], 

416 data: dict[str, typing.Any], 

417 _except: typing.Iterable[str], 

418 strict: bool = True, 

419 convert_types: bool = False, 

420) -> dict[str, typing.Any]: 

421 """ 

422 Based on class annotations, this prepares the data for `load_into_recurse`. 

423 

424 1. convert config-keys to python compatible config_keys 

425 2. loads custom class type annotations with the same logic (see also `load_recursive`) 

426 3. ensures the annotated types match the actual types after loading the config file. 

427 """ 

428 annotations = all_annotations(cls, _except=_except) 

429 

430 to_load = convert_config(data) 

431 to_load = load_recursive(cls, to_load, annotations, convert_types=convert_types) 

432 

433 if strict: 

434 to_load = ensure_types(to_load, annotations, convert_types=convert_types) 

435 

436 return to_load 

437 

438 

439T_init_list = list[typing.Any] 

440T_init_dict = dict[str, typing.Any] 

441T_init = tuple[T_init_list, T_init_dict] | T_init_list | T_init_dict | None 

442 

443 

444@typing.no_type_check # (mypy doesn't understand 'match' fully yet) 

445def _split_init(init: T_init) -> tuple[T_init_list, T_init_dict]: 

446 """ 

447 Accept a tuple, a dict or a list of (arg, kwarg), {kwargs: ...}, [args] respectively and turn them all into a tuple. 

448 """ 

449 if not init: 

450 return [], {} 

451 

452 args: T_init_list = [] 

453 kwargs: T_init_dict = {} 

454 match init: 

455 case (args, kwargs): 

456 return args, kwargs 

457 case [*args]: 

458 return args, {} 

459 case {**kwargs}: 

460 return [], kwargs 

461 case _: 

462 raise ValueError("Init must be either a tuple of list and dict, a list or a dict.") 

463 

464 

465def _load_into_recurse( 

466 cls: typing.Type[C], 

467 data: dict[str, typing.Any] | bytes, 

468 init: T_init = None, 

469 strict: bool = True, 

470 convert_types: bool = False, 

471) -> C: 

472 """ 

473 Loads an instance of `cls` filled with `data`. 

474 

475 Uses `load_recursive` to load any fillable annotated properties (see that method for an example). 

476 `init` can be used to optionally pass extra __init__ arguments. \ 

477 NOTE: This will overwrite a config key with the same name! 

478 """ 

479 init_args, init_kwargs = _split_init(init) 

480 

481 if isinstance(data, bytes) or issubclass(cls, BinaryConfig): 

482 if not isinstance(data, (bytes, dict)): # pragma: no cover 

483 raise NotImplementedError("BinaryConfig can only deal with `bytes` or a dict of bytes as input.") 

484 elif not issubclass(cls, BinaryConfig): # pragma: no cover 

485 raise NotImplementedError("Only BinaryConfig can be used with `bytes` (or a dict of bytes) as input.") 

486 

487 inst = typing.cast(C, cls._parse_into(data)) 

488 elif dc.is_dataclass(cls): 

489 to_load = check_and_convert_data(cls, data, init_kwargs.keys(), strict=strict, convert_types=convert_types) 

490 if init: 

491 raise ValueError("Init is not allowed for dataclasses!") 

492 

493 # ensure mypy inst is an instance of the cls type (and not a fictuous `DataclassInstance`) 

494 inst = typing.cast(C, cls(**to_load)) 

495 else: 

496 inst = cls(*init_args, **init_kwargs) 

497 to_load = check_and_convert_data(cls, data, inst.__dict__.keys(), strict=strict, convert_types=convert_types) 

498 inst.__dict__.update(**to_load) 

499 

500 return inst 

501 

502 

503def _load_into_instance( 

504 inst: C, 

505 cls: typing.Type[C], 

506 data: dict[str, typing.Any], 

507 init: T_init = None, 

508 strict: bool = True, 

509 convert_types: bool = False, 

510) -> C: 

511 """ 

512 Similar to `load_into_recurse` but uses an existing instance of a class (so after __init__) \ 

513 and thus does not support init. 

514 

515 """ 

516 if init is not None: 

517 raise ValueError("Can not init an existing instance!") 

518 

519 existing_data = inst.__dict__ 

520 

521 to_load = check_and_convert_data( 

522 cls, data, _except=existing_data.keys(), strict=strict, convert_types=convert_types 

523 ) 

524 

525 inst.__dict__.update(**to_load) 

526 

527 return inst 

528 

529 

530def load_into_class( 

531 cls: typing.Type[C], 

532 data: T_data, 

533 /, 

534 key: str = None, 

535 init: T_init = None, 

536 strict: bool = True, 

537 lower_keys: bool = False, 

538 convert_types: bool = False, 

539) -> C: 

540 """ 

541 Shortcut for _load_data + load_into_recurse. 

542 """ 

543 allow_types = (dict, bytes) if issubclass(cls, BinaryConfig) else (dict,) 

544 to_load = load_data(data, key, cls.__name__, lower_keys=lower_keys, allow_types=allow_types) 

545 return _load_into_recurse(cls, to_load, init=init, strict=strict, convert_types=convert_types) 

546 

547 

548def load_into_instance( 

549 inst: C, 

550 data: T_data, 

551 /, 

552 key: str = None, 

553 init: T_init = None, 

554 strict: bool = True, 

555 lower_keys: bool = False, 

556 convert_types: bool = False, 

557) -> C: 

558 """ 

559 Shortcut for _load_data + load_into_existing. 

560 """ 

561 cls = inst.__class__ 

562 allow_types = (dict, bytes) if issubclass(cls, BinaryConfig) else (dict,) 

563 to_load = load_data(data, key, cls.__name__, lower_keys=lower_keys, allow_types=allow_types) 

564 return _load_into_instance(inst, cls, to_load, init=init, strict=strict, convert_types=convert_types) 

565 

566 

567def load_into( 

568 cls: typing.Type[C], 

569 data: T_data = None, 

570 /, 

571 key: str = None, 

572 init: T_init = None, 

573 strict: bool = True, 

574 lower_keys: bool = False, 

575 convert_types: bool = False, 

576) -> C: 

577 """ 

578 Load your config into a class (instance). 

579 

580 Supports both a class or an instance as first argument, but that's hard to explain to mypy, so officially only 

581 classes are supported, and if you want to `load_into` an instance, you should use `load_into_instance`. 

582 

583 Args: 

584 cls: either a class or an existing instance of that class. 

585 data: can be a dictionary or a path to a file to load (as pathlib.Path or str) 

586 key: optional (nested) dictionary key to load data from (e.g. 'tool.su6.specific') 

587 init: optional data to pass to your cls' __init__ method (only if cls is not an instance already) 

588 strict: enable type checks or allow anything? 

589 lower_keys: should the config keys be lowercased? (for .env) 

590 convert_types: should the types be converted to the annotated type if not yet matching? (for .env) 

591 

592 """ 

593 if not isinstance(cls, type): 

594 # would not be supported according to mypy, but you can still load_into(instance) 

595 return load_into_instance( 

596 cls, data, key=key, init=init, strict=strict, lower_keys=lower_keys, convert_types=convert_types 

597 ) 

598 

599 # make mypy and pycharm happy by telling it cls is of type C and not just 'type' 

600 # _cls = typing.cast(typing.Type[C], cls) 

601 return load_into_class( 

602 cls, data, key=key, init=init, strict=strict, lower_keys=lower_keys, convert_types=convert_types 

603 )