Skip to content

confingy.tracking#

tracking #

Lazy #

Bases: Generic[T]

A proxy that delays instantiation until the object is actually used.

This class wraps a configuration for an object and only creates the actual instance when the instantiate() method is called.

This class is returned by the lazy function or when using the Lazy classmethod on a @track-decorated class.

It can also be used as a type hint:

def process(model: Lazy[Model]):
    # model must be a Lazy[Model]
    actual_model = model.instantiate()

All internal attributes of the Lazy object are prepended with '_confingy_' to avoid
name collisions with the wrapped class's constructor arguments (including underscore-prefixed ones).

Source code in src/confingy/tracking.py
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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
class Lazy(Generic[T]):
    """
    A proxy that delays instantiation until the object is actually used.

    This class wraps a configuration for an object and only creates the
    actual instance when the `instantiate()` method is called.

    This class is returned by the [lazy][confingy.tracking.lazy] function or when using the
    `Lazy` classmethod on a [@track][confingy.tracking.track]-decorated class.

    It can also be used as a type hint:
    ```python
    def process(model: Lazy[Model]):
        # model must be a Lazy[Model]
        actual_model = model.instantiate()

    All internal attributes of the Lazy object are prepended with '_confingy_' to avoid
    name collisions with the wrapped class's constructor arguments (including underscore-prefixed ones).
    ```
    """

    def __init__(
        self,
        cls: type,  # Untyped to allow T to be covariant
        config: dict[str, Any],
        skip_validation: bool = False,
        *,
        _was_instantiated: bool = False,
        _skip_post_config_hook: bool = False,
    ):
        self._confingy_cls = cls
        self._confingy_config = config
        self._confingy_was_instantiated = _was_instantiated

        # Handle lazy factory functions
        if hasattr(cls, "_original_cls"):
            self._confingy_actual_cls = cast(Any, cls)._original_cls
        else:
            self._confingy_actual_cls = cls

        if G_DISABLE_VALIDATION:
            skip_validation = True

        # Create validation model if validation is enabled
        self._confingy_validation_model: type[BaseModel] | None = None
        if not skip_validation:
            self._confingy_validation_model = _create_validation_model(
                self._confingy_actual_cls
            )
            self._validate_config()

        # Store metadata for serialization
        self._confingy_lazy_info = {
            "class": self._confingy_actual_cls.__name__,
            "module": get_module_name(self._confingy_actual_cls),
            "class_hash": hash_class(self._confingy_actual_cls),
        }

        # Initialize hook guard flag
        self._confingy_in_hook = False

        # Run post-config hook on initial creation (unless skipped)
        if not _skip_post_config_hook:
            self._run_post_config_hook()

    def _validate_config(self):
        """Validate the configuration against the class's __init__ signature."""
        if self._confingy_validation_model is None:
            return
        try:
            self._confingy_validation_model(**self._confingy_config)
        except PydanticValidationError as e:
            raise ValidationError(
                e, self._confingy_actual_cls.__name__, self._confingy_config
            ) from None

    def _run_post_config_hook(
        self, saved_config: dict[str, Any] | None = None, changed_key: str | None = None
    ) -> None:
        """Run the __post_config__ hook if defined on the class.

        The hook is called after config creation or update. It receives the Lazy
        instance and can modify it via attribute access. The hook should return
        the (possibly modified) Lazy instance.

        Args:
            saved_config: The config state before modification for rollback (only for updates)
            changed_key: The key that was changed (None if called from __init__)
        """
        if not hasattr(self._confingy_actual_cls, "__post_config__"):
            return

        if self._confingy_in_hook:
            return  # Prevent recursion

        self._confingy_in_hook = True
        try:
            result = self._confingy_actual_cls.__post_config__(self, changed_key)
            # If hook returns a different Lazy, use its config
            if result is not None and result is not self:
                self._confingy_config = result._confingy_config

            # Re-validate after hook completes to catch any invalid modifications
            # (e.g., direct _config manipulation or invalid values from returned Lazy)
            self._validate_config()
        except Exception:
            # Rollback entire config on hook failure (only if this was an update)
            if changed_key is not None and saved_config is not None:
                self._confingy_config = saved_config
            raise
        finally:
            self._confingy_in_hook = False

    def __getattr__(self, name: str) -> Any:
        """Access configuration parameters as attributes.

        This allows direct access to the constructor arguments stored in the Lazy config,
        enabling easy inspection and chained access for nested Lazy objects.

        Examples:
            ```python
            lazy = MyDataset.lazy(data=[1,2,3], processor=Pipeline.lazy(scalers=[...]))
            lazy.data           # Returns [1,2,3]
            lazy.processor      # Returns the Pipeline Lazy
            lazy.processor.scalers  # Chained access works!
            ```
        """
        # Check if the attribute exists in the validated config
        # NOTE: Use __dict__ to avoid recursion with __getattr__
        if (
            "_confingy_config" in self.__dict__
            and name in self.__dict__["_confingy_config"]
        ):
            return self._confingy_config[name]
        # Use __dict__.get() to avoid recursion during unpickling
        # (when __getattr__ is called before __init__ completes)
        actual_cls = self.__dict__.get("_confingy_actual_cls")
        config = self.__dict__.get("_confingy_config", {})
        cls_name = (
            getattr(actual_cls, "__name__", "Unknown") if actual_cls else "Unknown"
        )
        raise AttributeError(
            f"'{cls_name}' has no parameter '{name}'. "
            f"Available parameters: {list(config.keys())}"
        )

    def __setattr__(self, name: str, value: Any) -> None:
        """Set configuration parameters as attributes with validation.

        Internal attributes (starting with '_confingy_') are set normally.
        Other attributes update the configuration and trigger validation.

        Examples:
            ```python
            lazy = MyDataset.lazy(data=[1,2,3], processor=p)
            lazy.data = [4,5,6]      # Updates config, validates
            lazy.processor = new_p   # Updates config, validates
            ```
        """
        # Internal confingy attributes are set normally on the object
        if name.startswith("_confingy_"):
            object.__setattr__(self, name, value)
            return

        # Ensure we're initialized
        if "_confingy_config" not in self.__dict__:
            raise AttributeError(
                f"Cannot set '{name}' - Lazy object not fully initialized"
            )

        # Check if this is a valid parameter
        if name not in self._confingy_config:
            raise AttributeError(
                f"'{self._confingy_actual_cls.__name__}' has no parameter '{name}'. "
                f"Available parameters: {list(self._confingy_config.keys())}"
            )

        # Save entire config before modification for potential rollback
        saved_config = self._confingy_config.copy()
        old_value = self._confingy_config[name]
        self._confingy_config[name] = value

        # Validate if validation is enabled
        if self._confingy_validation_model is not None:
            try:
                self._confingy_validation_model(**self._confingy_config)
            except PydanticValidationError as e:
                # Rollback on validation failure
                self._confingy_config[name] = old_value
                raise ValidationError(
                    e, self._confingy_actual_cls.__name__, self._confingy_config
                ) from None

        # Run post-config hook after successful update
        self._run_post_config_hook(saved_config=saved_config, changed_key=name)

    def get_config(self) -> dict[str, Any]:
        """
        Get a copy of the configuration used to create this lazy instance.
        The returned dictionary contains the constructor arguments for the lazy instance.
        """
        return self._confingy_config.copy()

    def copy(self, **updates: Any) -> "Lazy[T]":
        """
        Create a new Lazy instance with updated configuration.

        This provides an immutable update pattern - the original Lazy is unchanged,
        and a new Lazy is returned with the specified updates applied.

        Args:
            **updates: Keyword arguments to update in the new Lazy's config.
                      These override the original config values.

        Returns:
            A new Lazy instance with the updated configuration.

        Examples:
            ```python
            lazy = MyDataset.lazy(data=[1,2,3], processor=p)

            # Create a new Lazy with updated data
            new_lazy = lazy.copy(data=[4,5,6])

            # Original is unchanged
            assert lazy.data == [1,2,3]
            assert new_lazy.data == [4,5,6]

            # Chain copies for multiple updates
            another = lazy.copy(data=[7,8,9]).copy(processor=new_p)
            ```
        """
        # Start with current config
        new_config = self._confingy_config.copy()

        # Apply updates
        for key, value in updates.items():
            if key not in new_config:
                raise AttributeError(
                    f"'{self._confingy_actual_cls.__name__}' has no parameter '{key}'. "
                    f"Available parameters: {list(new_config.keys())}"
                )
            new_config[key] = value

        # Create new Lazy with updated config, preserving _was_instantiated
        # Skip validation if this Lazy came from lens() (type hints won't match)
        skip_val = (
            self._confingy_was_instantiated or self._confingy_validation_model is None
        )
        # Skip the post-config hook if we're being called from within a hook
        # (to prevent infinite recursion when hook uses copy() to return modified instance)
        skip_hook = self._confingy_in_hook
        return Lazy(
            self._confingy_cls,
            new_config,
            skip_validation=skip_val,
            _was_instantiated=self._confingy_was_instantiated,
            _skip_post_config_hook=skip_hook,
        )

    def instantiate(self) -> T:
        """Create and return an instance of the wrapped class.

        Each call creates a new instance - this is a factory method.

        Returns:
            A new instance of the wrapped class, constructed with the stored config.
        """
        logger.debug(f"Instantiating {self._confingy_actual_cls.__name__}")
        return self._confingy_actual_cls(**self._confingy_config)

    def unlens(self) -> Any:
        """Reconstruct the object, preserving the original laziness structure.

        When a Lazy is created via `lens()` from a tracked instance, calling
        `unlens()` will instantiate it. When created from an existing Lazy,
        it remains a Lazy.

        This enables a round-trip: `lens(obj) -> modify -> unlens()` preserves
        whether each node was originally Lazy or instantiated.

        Returns:
            Either an instantiated object or a new Lazy, depending on how
            this Lazy was created.

        Examples:
            ```python
            # From tracked instance - unlens() instantiates
            obj = Outer(middle=Middle(inner=Inner(value=42)))
            l = lens(obj)
            l.middle.inner.value = 100
            new_obj = l.unlens()  # Returns Outer instance

            # From Lazy - unlens() returns Lazy
            lazy = Outer.lazy(middle=Middle.lazy(inner=Inner.lazy(value=42)))
            l = lens(lazy)
            l.middle.inner.value = 100
            new_lazy = l.unlens()  # Returns Lazy[Outer]
            ```
        """
        from confingy.serde import HandlerRegistry

        handlers = HandlerRegistry.get_default_handlers()

        def unlens_value(value: Any) -> Any:
            """Recursively unlens a value, using handlers for containers."""
            if is_lazy_instance(value):
                return value.unlens()

            # Use handlers for container types
            for handler in handlers:
                if handler.can_handle(value):
                    return handler.map_children(value, unlens_value)

            return value

        # Process all config values
        realized_config = {k: unlens_value(v) for k, v in self._confingy_config.items()}

        if self._confingy_was_instantiated:
            # This Lazy was created from a tracked instance - instantiate
            return self._confingy_actual_cls(**realized_config)
        else:
            # This was originally a Lazy - return new Lazy
            # Always skip the post-config hook since unlens() is a structural
            # transformation, not a semantic creation. Hooks already ran on
            # setattr when values were modified.
            return Lazy(
                self._confingy_cls, realized_config, _skip_post_config_hook=True
            )

    def __call__(self, *args: Any, **kwargs: Any) -> "Lazy[T]":
        """Make Lazy callable to support the lazy(Class)(...) pattern.

        When called with no arguments, returns self.
        When called with arguments, merges them into the config and returns a new Lazy.
        """
        if not args and not kwargs:
            return self

        # Merge provided args into config
        new_kwargs = _args_to_kwargs(
            self._confingy_cls, args, kwargs, include_defaults=False
        )
        merged_config = {**self._confingy_config, **new_kwargs}

        # Preserve _was_instantiated and skip_validation like copy() does
        skip_val = (
            self._confingy_was_instantiated or self._confingy_validation_model is None
        )
        return Lazy(
            self._confingy_cls,
            merged_config,
            skip_validation=skip_val,
            _was_instantiated=self._confingy_was_instantiated,
        )

    def __repr__(self) -> str:
        cls_name = getattr(
            self._confingy_actual_cls, "__name__", str(self._confingy_actual_cls)
        )
        config_preview = {k: v for k, v in list(self._confingy_config.items())[:3]}
        if len(self._confingy_config) > 3:
            config_preview["..."] = f"and {len(self._confingy_config) - 3} more"
        return f"Lazy<{cls_name}>(config={config_preview})"

    def __getstate__(self) -> dict:
        """Prepare state for pickling, excluding unpicklable validation model."""
        state = self.__dict__.copy()
        # Track whether validation was enabled before pickling
        state["_confingy_had_validation"] = (
            state["_confingy_validation_model"] is not None
        )
        # Remove the dynamically-created validation model - it can't be pickled
        state["_confingy_validation_model"] = None
        return state

    def __setstate__(self, state: dict) -> None:
        """Restore state after unpickling."""
        # Extract and remove the temporary flag
        had_validation = state.pop("_confingy_had_validation", True)
        self.__dict__.update(state)
        # Only rebuild validation model if it was originally enabled
        if had_validation:
            self._confingy_validation_model = _create_validation_model(
                self._confingy_actual_cls
            )
        else:
            self._confingy_validation_model = None

__getattr__ #

__getattr__(name: str) -> Any

Access configuration parameters as attributes.

This allows direct access to the constructor arguments stored in the Lazy config, enabling easy inspection and chained access for nested Lazy objects.

Examples:

lazy = MyDataset.lazy(data=[1,2,3], processor=Pipeline.lazy(scalers=[...]))
lazy.data           # Returns [1,2,3]
lazy.processor      # Returns the Pipeline Lazy
lazy.processor.scalers  # Chained access works!
Source code in src/confingy/tracking.py
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
def __getattr__(self, name: str) -> Any:
    """Access configuration parameters as attributes.

    This allows direct access to the constructor arguments stored in the Lazy config,
    enabling easy inspection and chained access for nested Lazy objects.

    Examples:
        ```python
        lazy = MyDataset.lazy(data=[1,2,3], processor=Pipeline.lazy(scalers=[...]))
        lazy.data           # Returns [1,2,3]
        lazy.processor      # Returns the Pipeline Lazy
        lazy.processor.scalers  # Chained access works!
        ```
    """
    # Check if the attribute exists in the validated config
    # NOTE: Use __dict__ to avoid recursion with __getattr__
    if (
        "_confingy_config" in self.__dict__
        and name in self.__dict__["_confingy_config"]
    ):
        return self._confingy_config[name]
    # Use __dict__.get() to avoid recursion during unpickling
    # (when __getattr__ is called before __init__ completes)
    actual_cls = self.__dict__.get("_confingy_actual_cls")
    config = self.__dict__.get("_confingy_config", {})
    cls_name = (
        getattr(actual_cls, "__name__", "Unknown") if actual_cls else "Unknown"
    )
    raise AttributeError(
        f"'{cls_name}' has no parameter '{name}'. "
        f"Available parameters: {list(config.keys())}"
    )

__setattr__ #

__setattr__(name: str, value: Any) -> None

Set configuration parameters as attributes with validation.

Internal attributes (starting with 'confingy') are set normally. Other attributes update the configuration and trigger validation.

Examples:

lazy = MyDataset.lazy(data=[1,2,3], processor=p)
lazy.data = [4,5,6]      # Updates config, validates
lazy.processor = new_p   # Updates config, validates
Source code in src/confingy/tracking.py
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
def __setattr__(self, name: str, value: Any) -> None:
    """Set configuration parameters as attributes with validation.

    Internal attributes (starting with '_confingy_') are set normally.
    Other attributes update the configuration and trigger validation.

    Examples:
        ```python
        lazy = MyDataset.lazy(data=[1,2,3], processor=p)
        lazy.data = [4,5,6]      # Updates config, validates
        lazy.processor = new_p   # Updates config, validates
        ```
    """
    # Internal confingy attributes are set normally on the object
    if name.startswith("_confingy_"):
        object.__setattr__(self, name, value)
        return

    # Ensure we're initialized
    if "_confingy_config" not in self.__dict__:
        raise AttributeError(
            f"Cannot set '{name}' - Lazy object not fully initialized"
        )

    # Check if this is a valid parameter
    if name not in self._confingy_config:
        raise AttributeError(
            f"'{self._confingy_actual_cls.__name__}' has no parameter '{name}'. "
            f"Available parameters: {list(self._confingy_config.keys())}"
        )

    # Save entire config before modification for potential rollback
    saved_config = self._confingy_config.copy()
    old_value = self._confingy_config[name]
    self._confingy_config[name] = value

    # Validate if validation is enabled
    if self._confingy_validation_model is not None:
        try:
            self._confingy_validation_model(**self._confingy_config)
        except PydanticValidationError as e:
            # Rollback on validation failure
            self._confingy_config[name] = old_value
            raise ValidationError(
                e, self._confingy_actual_cls.__name__, self._confingy_config
            ) from None

    # Run post-config hook after successful update
    self._run_post_config_hook(saved_config=saved_config, changed_key=name)

get_config #

get_config() -> dict[str, Any]

Get a copy of the configuration used to create this lazy instance. The returned dictionary contains the constructor arguments for the lazy instance.

Source code in src/confingy/tracking.py
379
380
381
382
383
384
def get_config(self) -> dict[str, Any]:
    """
    Get a copy of the configuration used to create this lazy instance.
    The returned dictionary contains the constructor arguments for the lazy instance.
    """
    return self._confingy_config.copy()

copy #

copy(**updates: Any) -> Lazy[T]

Create a new Lazy instance with updated configuration.

This provides an immutable update pattern - the original Lazy is unchanged, and a new Lazy is returned with the specified updates applied.

Parameters:

Name Type Description Default
**updates Any

Keyword arguments to update in the new Lazy's config. These override the original config values.

{}

Returns:

Type Description
Lazy[T]

A new Lazy instance with the updated configuration.

Examples:

lazy = MyDataset.lazy(data=[1,2,3], processor=p)

# Create a new Lazy with updated data
new_lazy = lazy.copy(data=[4,5,6])

# Original is unchanged
assert lazy.data == [1,2,3]
assert new_lazy.data == [4,5,6]

# Chain copies for multiple updates
another = lazy.copy(data=[7,8,9]).copy(processor=new_p)
Source code in src/confingy/tracking.py
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
def copy(self, **updates: Any) -> "Lazy[T]":
    """
    Create a new Lazy instance with updated configuration.

    This provides an immutable update pattern - the original Lazy is unchanged,
    and a new Lazy is returned with the specified updates applied.

    Args:
        **updates: Keyword arguments to update in the new Lazy's config.
                  These override the original config values.

    Returns:
        A new Lazy instance with the updated configuration.

    Examples:
        ```python
        lazy = MyDataset.lazy(data=[1,2,3], processor=p)

        # Create a new Lazy with updated data
        new_lazy = lazy.copy(data=[4,5,6])

        # Original is unchanged
        assert lazy.data == [1,2,3]
        assert new_lazy.data == [4,5,6]

        # Chain copies for multiple updates
        another = lazy.copy(data=[7,8,9]).copy(processor=new_p)
        ```
    """
    # Start with current config
    new_config = self._confingy_config.copy()

    # Apply updates
    for key, value in updates.items():
        if key not in new_config:
            raise AttributeError(
                f"'{self._confingy_actual_cls.__name__}' has no parameter '{key}'. "
                f"Available parameters: {list(new_config.keys())}"
            )
        new_config[key] = value

    # Create new Lazy with updated config, preserving _was_instantiated
    # Skip validation if this Lazy came from lens() (type hints won't match)
    skip_val = (
        self._confingy_was_instantiated or self._confingy_validation_model is None
    )
    # Skip the post-config hook if we're being called from within a hook
    # (to prevent infinite recursion when hook uses copy() to return modified instance)
    skip_hook = self._confingy_in_hook
    return Lazy(
        self._confingy_cls,
        new_config,
        skip_validation=skip_val,
        _was_instantiated=self._confingy_was_instantiated,
        _skip_post_config_hook=skip_hook,
    )

instantiate #

instantiate() -> T

Create and return an instance of the wrapped class.

Each call creates a new instance - this is a factory method.

Returns:

Type Description
T

A new instance of the wrapped class, constructed with the stored config.

Source code in src/confingy/tracking.py
443
444
445
446
447
448
449
450
451
452
def instantiate(self) -> T:
    """Create and return an instance of the wrapped class.

    Each call creates a new instance - this is a factory method.

    Returns:
        A new instance of the wrapped class, constructed with the stored config.
    """
    logger.debug(f"Instantiating {self._confingy_actual_cls.__name__}")
    return self._confingy_actual_cls(**self._confingy_config)

unlens #

unlens() -> Any

Reconstruct the object, preserving the original laziness structure.

When a Lazy is created via lens() from a tracked instance, calling unlens() will instantiate it. When created from an existing Lazy, it remains a Lazy.

This enables a round-trip: lens(obj) -> modify -> unlens() preserves whether each node was originally Lazy or instantiated.

Returns:

Type Description
Any

Either an instantiated object or a new Lazy, depending on how

Any

this Lazy was created.

Examples:

# From tracked instance - unlens() instantiates
obj = Outer(middle=Middle(inner=Inner(value=42)))
l = lens(obj)
l.middle.inner.value = 100
new_obj = l.unlens()  # Returns Outer instance

# From Lazy - unlens() returns Lazy
lazy = Outer.lazy(middle=Middle.lazy(inner=Inner.lazy(value=42)))
l = lens(lazy)
l.middle.inner.value = 100
new_lazy = l.unlens()  # Returns Lazy[Outer]
Source code in src/confingy/tracking.py
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
def unlens(self) -> Any:
    """Reconstruct the object, preserving the original laziness structure.

    When a Lazy is created via `lens()` from a tracked instance, calling
    `unlens()` will instantiate it. When created from an existing Lazy,
    it remains a Lazy.

    This enables a round-trip: `lens(obj) -> modify -> unlens()` preserves
    whether each node was originally Lazy or instantiated.

    Returns:
        Either an instantiated object or a new Lazy, depending on how
        this Lazy was created.

    Examples:
        ```python
        # From tracked instance - unlens() instantiates
        obj = Outer(middle=Middle(inner=Inner(value=42)))
        l = lens(obj)
        l.middle.inner.value = 100
        new_obj = l.unlens()  # Returns Outer instance

        # From Lazy - unlens() returns Lazy
        lazy = Outer.lazy(middle=Middle.lazy(inner=Inner.lazy(value=42)))
        l = lens(lazy)
        l.middle.inner.value = 100
        new_lazy = l.unlens()  # Returns Lazy[Outer]
        ```
    """
    from confingy.serde import HandlerRegistry

    handlers = HandlerRegistry.get_default_handlers()

    def unlens_value(value: Any) -> Any:
        """Recursively unlens a value, using handlers for containers."""
        if is_lazy_instance(value):
            return value.unlens()

        # Use handlers for container types
        for handler in handlers:
            if handler.can_handle(value):
                return handler.map_children(value, unlens_value)

        return value

    # Process all config values
    realized_config = {k: unlens_value(v) for k, v in self._confingy_config.items()}

    if self._confingy_was_instantiated:
        # This Lazy was created from a tracked instance - instantiate
        return self._confingy_actual_cls(**realized_config)
    else:
        # This was originally a Lazy - return new Lazy
        # Always skip the post-config hook since unlens() is a structural
        # transformation, not a semantic creation. Hooks already ran on
        # setattr when values were modified.
        return Lazy(
            self._confingy_cls, realized_config, _skip_post_config_hook=True
        )

__call__ #

__call__(*args: Any, **kwargs: Any) -> Lazy[T]

Make Lazy callable to support the lazy(Class)(...) pattern.

When called with no arguments, returns self. When called with arguments, merges them into the config and returns a new Lazy.

Source code in src/confingy/tracking.py
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
def __call__(self, *args: Any, **kwargs: Any) -> "Lazy[T]":
    """Make Lazy callable to support the lazy(Class)(...) pattern.

    When called with no arguments, returns self.
    When called with arguments, merges them into the config and returns a new Lazy.
    """
    if not args and not kwargs:
        return self

    # Merge provided args into config
    new_kwargs = _args_to_kwargs(
        self._confingy_cls, args, kwargs, include_defaults=False
    )
    merged_config = {**self._confingy_config, **new_kwargs}

    # Preserve _was_instantiated and skip_validation like copy() does
    skip_val = (
        self._confingy_was_instantiated or self._confingy_validation_model is None
    )
    return Lazy(
        self._confingy_cls,
        merged_config,
        skip_validation=skip_val,
        _was_instantiated=self._confingy_was_instantiated,
    )

__getstate__ #

__getstate__() -> dict

Prepare state for pickling, excluding unpicklable validation model.

Source code in src/confingy/tracking.py
549
550
551
552
553
554
555
556
557
558
def __getstate__(self) -> dict:
    """Prepare state for pickling, excluding unpicklable validation model."""
    state = self.__dict__.copy()
    # Track whether validation was enabled before pickling
    state["_confingy_had_validation"] = (
        state["_confingy_validation_model"] is not None
    )
    # Remove the dynamically-created validation model - it can't be pickled
    state["_confingy_validation_model"] = None
    return state

__setstate__ #

__setstate__(state: dict) -> None

Restore state after unpickling.

Source code in src/confingy/tracking.py
560
561
562
563
564
565
566
567
568
569
570
571
def __setstate__(self, state: dict) -> None:
    """Restore state after unpickling."""
    # Extract and remove the temporary flag
    had_validation = state.pop("_confingy_had_validation", True)
    self.__dict__.update(state)
    # Only rebuild validation model if it was originally enabled
    if had_validation:
        self._confingy_validation_model = _create_validation_model(
            self._confingy_actual_cls
        )
    else:
        self._confingy_validation_model = None

disable_validation #

disable_validation()

Context manager to disable validation for tracked and lazy objects.

Examples:

class NonTrackedObject:
    def __init__(self, value):
        self.value = value

class TrackedObject:
    def __init__(self, obj: NonTrackedObject):
        self.obj = obj

# Raises validation error
track(TrackedObject)(obj=NonTrackedObject(value=10))

with disable_validation():
    # No validation error
    track(TrackedObject)(obj=NonTrackedObject(value=10))
Source code in src/confingy/tracking.py
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
@contextmanager
def disable_validation():
    """
    Context manager to disable validation for tracked and lazy objects.

    Examples:
        ```python
        class NonTrackedObject:
            def __init__(self, value):
                self.value = value

        class TrackedObject:
            def __init__(self, obj: NonTrackedObject):
                self.obj = obj

        # Raises validation error
        track(TrackedObject)(obj=NonTrackedObject(value=10))

        with disable_validation():
            # No validation error
            track(TrackedObject)(obj=NonTrackedObject(value=10))
        ```
    """
    global G_DISABLE_VALIDATION
    previous = G_DISABLE_VALIDATION
    G_DISABLE_VALIDATION = True
    try:
        yield
    finally:
        G_DISABLE_VALIDATION = previous

is_class #

is_class(obj: Any) -> TypeGuard[type[Any]]

Check if an object is a class.

Source code in src/confingy/tracking.py
72
73
74
def is_class(obj: Any) -> TypeGuard[type[Any]]:
    """Check if an object is a class."""
    return isinstance(obj, type)

lazy #

lazy(cls: Callable[P, T]) -> Callable[P, Lazy[T]]
lazy(
    cls: Callable[P, T], *args: args, **kwargs: kwargs
) -> Lazy[T]
lazy(cls: Any, *args: Any, **kwargs: Any) -> Any

Create a lazy instance of a @track-decorated class.

This function provides explicit lazy instantiation. Classes should be decorated with @track, and then lazy is used when you want deferred instantiation.

Examples:

@track
class ExpensiveModel:
    def __init__(self, size: int):
        self.weights = np.random.randn(size, size)

# Normal instantiation (immediate)
model = ExpensiveModel(size=1000)

# Lazy instantiation (deferred) - two ways:
lazy_model = lazy(ExpensiveModel)(size=1000)  # Returns Lazy[ExpensiveModel]
# Or more directly:
lazy_model = lazy(ExpensiveModel, size=1000)  # Returns Lazy[ExpensiveModel]

# Access when needed
result = lazy_model.instantiate().forward(data)
Source code in src/confingy/tracking.py
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
def lazy(cls: Any, *args: Any, **kwargs: Any) -> Any:
    """
    Create a lazy instance of a [@track][confingy.tracking.track]-decorated class.

    This function provides explicit lazy instantiation. Classes should be
    decorated with [@track][confingy.tracking.track], and then [lazy][confingy.tracking.lazy]
    is used when you want deferred instantiation.

    Examples:
        ```python
        @track
        class ExpensiveModel:
            def __init__(self, size: int):
                self.weights = np.random.randn(size, size)

        # Normal instantiation (immediate)
        model = ExpensiveModel(size=1000)

        # Lazy instantiation (deferred) - two ways:
        lazy_model = lazy(ExpensiveModel)(size=1000)  # Returns Lazy[ExpensiveModel]
        # Or more directly:
        lazy_model = lazy(ExpensiveModel, size=1000)  # Returns Lazy[ExpensiveModel]

        # Access when needed
        result = lazy_model.instantiate().forward(data)
        ```
    """
    if not is_class(cls):
        raise TypeError(f"lazy() requires a class, got {type(cls)}")

    if args or kwargs:
        # Direct instantiation: lazy(Class, arg1, arg2, ...)
        init_kwargs = _args_to_kwargs(cls, args, kwargs)
        return Lazy(cls, init_kwargs)
    else:
        # Factory pattern: lazy(Class) returns a function
        def lazy_factory(*factory_args: Any, **factory_kwargs: Any) -> Lazy[T]:
            init_kwargs = _args_to_kwargs(cls, factory_args, factory_kwargs)
            return Lazy(cls, init_kwargs)

        return lazy_factory

lens #

lens(obj: Any) -> Lazy[Any]

Convert a tracked or Lazy instance to a Lazy for nested parameter updates.

This function provides a unified interface for modifying nested configurations. After making changes, call unlens() to reconstruct the object with the original laziness structure preserved.

Parameters:

Name Type Description Default
obj Any

Either a tracked instance (has _tracked_info) or a Lazy instance.

required

Returns:

Type Description
Lazy[Any]

A Lazy instance that can be modified via attribute access.

Examples:

@track
class Outer:
    def __init__(self, middle: Middle):
        self.middle = middle

@track
class Middle:
    def __init__(self, inner: Inner):
        self.inner = inner

@track
class Inner:
    def __init__(self, value: int):
        self.value = value

# Create a tracked instance
obj = Outer(middle=Middle(inner=Inner(value=42)))

# Use lens to modify nested values
l = lens(obj)
l.middle.inner.value = 100

# Reconstruct with original structure (all instantiated)
new_obj = l.unlens()
assert new_obj.middle.inner.value == 100

# Works with Lazy instances too
lazy_obj = Outer.lazy(middle=Middle.lazy(inner=Inner.lazy(value=42)))
l = lens(lazy_obj)
l.middle.inner.value = 100
new_lazy = l.unlens()  # Returns Lazy since original was Lazy
Source code in src/confingy/tracking.py
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
def lens(obj: Any) -> Lazy[Any]:
    """
    Convert a tracked or Lazy instance to a Lazy for nested parameter updates.

    This function provides a unified interface for modifying nested configurations.
    After making changes, call `unlens()` to reconstruct the object with the
    original laziness structure preserved.

    Args:
        obj: Either a tracked instance (has `_tracked_info`) or a Lazy instance.

    Returns:
        A Lazy instance that can be modified via attribute access.

    Examples:
        ```python
        @track
        class Outer:
            def __init__(self, middle: Middle):
                self.middle = middle

        @track
        class Middle:
            def __init__(self, inner: Inner):
                self.inner = inner

        @track
        class Inner:
            def __init__(self, value: int):
                self.value = value

        # Create a tracked instance
        obj = Outer(middle=Middle(inner=Inner(value=42)))

        # Use lens to modify nested values
        l = lens(obj)
        l.middle.inner.value = 100

        # Reconstruct with original structure (all instantiated)
        new_obj = l.unlens()
        assert new_obj.middle.inner.value == 100

        # Works with Lazy instances too
        lazy_obj = Outer.lazy(middle=Middle.lazy(inner=Inner.lazy(value=42)))
        l = lens(lazy_obj)
        l.middle.inner.value = 100
        new_lazy = l.unlens()  # Returns Lazy since original was Lazy
        ```
    """
    from confingy.serde import HandlerRegistry

    handlers = HandlerRegistry.get_default_handlers()

    def lens_value(value: Any) -> Any:
        """Recursively convert tracked instances to Lazy."""
        if is_tracked_instance(value):
            return lens(value)
        if is_lazy_instance(value):
            # Recurse into Lazy config in case it contains tracked instances
            return lens(value)

        # Use handlers for container types
        for handler in handlers:
            if handler.can_handle(value):
                return handler.map_children(value, lens_value)

        return value

    if is_lazy_instance(obj):
        # Recurse into config to convert any nested tracked instances
        new_config = {k: lens_value(v) for k, v in obj._confingy_config.items()}

        # Only create new Lazy if config actually changed
        if any(new_config[k] is not obj._confingy_config[k] for k in new_config):
            return Lazy(
                obj._confingy_cls,
                new_config,
                skip_validation=True,  # Config comes from valid source
                _was_instantiated=getattr(obj, "_confingy_was_instantiated", False),
                _skip_post_config_hook=True,  # lens() is just wrapping, don't run hooks
            )
        return obj

    if is_tracked_instance(obj):
        # Convert tracked instance to Lazy with _was_instantiated=True
        # Skip validation since the tracked instance was already valid
        config = {k: lens_value(v) for k, v in obj._tracked_info["init_args"].items()}
        return Lazy(
            type(obj),
            config,
            skip_validation=True,
            _was_instantiated=True,
            _skip_post_config_hook=True,  # lens() is just wrapping, don't run hooks
        )

    raise TypeError(
        f"lens() requires a Lazy or tracked instance, got {type(obj).__name__}"
    )

track #

track(
    cls_or_instance: None = None, *, _validate: bool = True
) -> Callable[[C], C]
track(cls_or_instance: C, *, _validate: bool = True) -> C
track(
    cls_or_instance: Optional[Any] = None,
    *args: Any,
    _validate: bool = True,
    **kwargs: Any,
) -> Any

Track constructor arguments for serialization.

Can be used as a decorator or function to enable argument tracking for later serialization.

Parameters:

Name Type Description Default
_validate bool

Whether to validate constructor arguments with pydantic (default: True) can be overridden by the context manager disable_validation

True
Example
from confingy import track, save_config

@track
class Dataset:
    def __init__(self, path: str, size: int):
        self.path = path
        self.size = size

# Arguments are tracked and can be serialized
dataset = Dataset(path="/data", size=1000)
save_config(dataset, "config.json")

# Skip validation
@track(_validate=False)
class FastDataset:
    def __init__(self, path: str):
        self.path = path

You can also turn a tracked class into a lazy one:

lazy_dataset = Dataset.lazy(path="/data", size=1000)
Source code in src/confingy/tracking.py
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
def track(
    cls_or_instance: Optional[Any] = None,
    *args: Any,
    _validate: bool = True,
    **kwargs: Any,
) -> Any:
    """
    Track constructor arguments for serialization.

    Can be used as a decorator or function to enable argument tracking
    for later serialization.

    Args:
        _validate: Whether to validate constructor arguments with pydantic (default: True)
            can be overridden by the context manager [disable_validation][confingy.tracking.disable_validation]

    Example:
        ```python
        from confingy import track, save_config

        @track
        class Dataset:
            def __init__(self, path: str, size: int):
                self.path = path
                self.size = size

        # Arguments are tracked and can be serialized
        dataset = Dataset(path="/data", size=1000)
        save_config(dataset, "config.json")

        # Skip validation
        @track(_validate=False)
        class FastDataset:
            def __init__(self, path: str):
                self.path = path
        ```

        You can also turn a tracked class into a lazy one:

        ```python
        lazy_dataset = Dataset.lazy(path="/data", size=1000)
        ```
    """
    # Case 1: Called as @track() or @track(_validate=False) with parentheses - return decorator

    if G_DISABLE_VALIDATION:
        _validate = False

    if cls_or_instance is None:
        return functools.partial(track, _validate=_validate)

    # Case 2: Called with arguments - instantiate class with tracking
    if args or kwargs:
        return _track_with_args(cls_or_instance, args, kwargs, _validate=_validate)

    # Case 3: Called as @track decorator or track(instance)
    if is_class(cls_or_instance):
        return _track_class_decorator(cls_or_instance, _validate=_validate)
    else:
        return _track_existing_instance(cls_or_instance)

update #

update(parent_obj: Any) -> Callable[..., Any]

Create an updated version of a tracked or lazy object with new constructor arguments.

This function supports "inheritance" for confingy objects by allowing you to create a new instance with updated parameters while preserving the original object's type and validation behavior.

Parameters:

Name Type Description Default
parent_obj Any

Either a tracked instance (has _tracked_info) or a lazy instance (Lazy[T])

required

Returns:

Type Description
Callable[..., Any]

A function that accepts new constructor arguments and returns:

Callable[..., Any]
  • For tracked instances: A new tracked instance of the same type
Callable[..., Any]
  • For lazy instances: A new lazy instance with updated configuration

Examples:

# With tracked instances
@track
class Foo:
    def __init__(self, bar: str, baz: int = 10):
        self.bar = bar
        self.baz = baz

parent_foo = track(Foo)(bar="hello")
child_foo = update(parent_foo)(bar="world")  # bar="world", baz=10

# With lazy instances
parent_lazy = lazy(Foo)(bar="hello")
child_lazy = update(parent_lazy)(bar="world")  # Returns Lazy[Foo]
Source code in src/confingy/tracking.py
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
def update(parent_obj: Any) -> Callable[..., Any]:
    """
    Create an updated version of a tracked or lazy object with new constructor arguments.

    This function supports "inheritance" for confingy objects by allowing you to create
    a new instance with updated parameters while preserving the original object's type
    and validation behavior.

    Args:
        parent_obj: Either a tracked instance (has `_tracked_info`) or a lazy instance (`Lazy[T]`)

    Returns:
        A function that accepts new constructor arguments and returns:
        - For tracked instances: A new tracked instance of the same type
        - For lazy instances: A new lazy instance with updated configuration

    Examples:
        ```python
        # With tracked instances
        @track
        class Foo:
            def __init__(self, bar: str, baz: int = 10):
                self.bar = bar
                self.baz = baz

        parent_foo = track(Foo)(bar="hello")
        child_foo = update(parent_foo)(bar="world")  # bar="world", baz=10

        # With lazy instances
        parent_lazy = lazy(Foo)(bar="hello")
        child_lazy = update(parent_lazy)(bar="world")  # Returns Lazy[Foo]
        ```
    """

    def updater(*args: Any, **kwargs: Any) -> Any:
        # Handle Lazy instances
        if is_lazy_instance(parent_obj):
            # Get the original configuration
            original_config = parent_obj.get_config()

            # Merge with new arguments (new args take precedence)
            updated_config = original_config.copy()

            # Handle positional arguments by converting to kwargs
            if args:
                new_kwargs = _args_to_kwargs(
                    parent_obj._confingy_actual_cls, args, kwargs
                )
            else:
                new_kwargs = kwargs

            updated_config.update(new_kwargs)

            # Create a new Lazy instance with updated config
            return Lazy(parent_obj._confingy_cls, updated_config)

        # Handle tracked instances
        elif hasattr(parent_obj, "_tracked_info"):
            # Get the class directly from the object
            cls = parent_obj.__class__

            # Get original init args from tracked info
            original_args = parent_obj._tracked_info["init_args"]

            # Merge with new arguments (new args take precedence)
            updated_args = original_args.copy()

            # Handle positional arguments by converting to kwargs
            if args:
                new_kwargs = _args_to_kwargs(cls, args, kwargs)
            else:
                new_kwargs = kwargs

            updated_args.update(new_kwargs)

            # Create new tracked instance
            return _create_tracked_instance(cls, (), updated_args, _validate=True)

        else:
            raise TypeError(
                f"update() requires either a tracked instance (with _tracked_info) "
                f"or a Lazy instance, got {type(parent_obj)}"
            )

    return updater