Mutation Tracking

    A typical example of a “mutable” structure is a Python dictionary. Following the example introduced in , we begin with a custom type that marshals Python dictionaries into JSON strings before being persisted:

    The usage of is only for the purposes of example. The sqlalchemy.ext.mutable extension can be used with any type whose target Python type may be mutable, including , ARRAY, etc.

    When using the extension, the value itself tracks all parents which reference it. Below, we illustrate a simple version of the MutableDict dictionary object, which applies the mixin to a plain Python dictionary:

    1. from sqlalchemy.ext.mutable import Mutable
    2. class MutableDict(Mutable, dict):
    3. @classmethod
    4. def coerce(cls, key, value):
    5. "Convert plain dictionaries to MutableDict."
    6. if not isinstance(value, MutableDict):
    7. if isinstance(value, dict):
    8. return MutableDict(value)
    9. # this call will raise ValueError
    10. return Mutable.coerce(key, value)
    11. else:
    12. return value
    13. def __setitem__(self, key, value):
    14. "Detect dictionary set events and emit change events."
    15. dict.__setitem__(self, key, value)
    16. self.changed()
    17. def __delitem__(self, key):
    18. "Detect dictionary del events and emit change events."
    19. dict.__delitem__(self, key)
    20. self.changed()

    The above dictionary class takes the approach of subclassing the Python built-in dict to produce a dict subclass which routes all mutation events through __setitem__. There are variants on this approach, such as subclassing UserDict.UserDict or collections.MutableMapping; the part that’s important to this example is that the Mutable.changed() method is called whenever an in-place change to the datastructure takes place.

    We also redefine the method which will be used to convert any values that are not instances of MutableDict, such as the plain dictionaries returned by the json module, into the appropriate type. Defining this method is optional; we could just as well created our JSONEncodedDict such that it always returns an instance of MutableDict, and additionally ensured that all calling code uses MutableDict explicitly. When Mutable.coerce() is not overridden, any values applied to a parent object which are not instances of the mutable type will raise a ValueError.

    Our new MutableDict type offers a class method which we can use within column metadata to associate with types. This method grabs the given type object or class and associates a listener that will detect all future mappings of this type, applying event listening instrumentation to the mapped attribute. Such as, with classical table metadata:

    1. from sqlalchemy import Table, Column, Integer
    2. my_data = Table('my_data', metadata,
    3. Column('id', Integer, primary_key=True),
    4. Column('data', MutableDict.as_mutable(JSONEncodedDict))
    5. )

    Above, Mutable.as_mutable() returns an instance of JSONEncodedDict (if the type object was not an instance already), which will intercept any attributes which are mapped against this type. Below we establish a simple mapping against the my_data table:

    1. from sqlalchemy.orm import DeclarativeBase
    2. from sqlalchemy.orm import Mapped
    3. from sqlalchemy.orm import mapped_column
    4. class Base(DeclarativeBase):
    5. pass
    6. class MyDataClass(Base):
    7. __tablename__ = 'my_data'
    8. id: Mapped[int] = mapped_column(primary_key=True)
    9. data: Mapped[dict[str, str]] = mapped_column(MutableDict.as_mutable(JSONEncodedDict))

    The MyDataClass.data member will now be notified of in place changes to its value.

    Any in-place changes to the MyDataClass.data member will flag the attribute as “dirty” on the parent object:

    1. >>> from sqlalchemy.orm import Session
    2. >>> sess = Session(some_engine)
    3. >>> m1 = MyDataClass(data={'value1':'foo'})
    4. >>> sess.add(m1)
    5. >>> sess.commit()
    6. >>> m1.data['value1'] = 'bar'
    7. >>> assert m1 in sess.dirty
    8. True

    The MutableDict can be associated with all future instances of JSONEncodedDict in one step, using . This is similar to Mutable.as_mutable() except it will intercept all occurrences of MutableDict in all mappings unconditionally, without the need to declare it individually:

    The key to the sqlalchemy.ext.mutable extension relies upon the placement of a weakref.WeakKeyDictionary upon the value object, which stores a mapping of parent mapped objects keyed to the attribute name under which they are associated with this value. WeakKeyDictionary objects are not picklable, due to the fact that they contain weakrefs and function callbacks. In our case, this is a good thing, since if this dictionary were picklable, it could lead to an excessively large pickle size for our value objects that are pickled by themselves outside of the context of the parent. The developer responsibility here is only to provide a __getstate__ method that excludes the collection from the pickle stream:

    1. class MyMutableType(Mutable):
    2. d = self.__dict__.copy()
    3. d.pop('_parents', None)
    4. return d

    With our dictionary example, we need to return the contents of the dict itself (and also restore them on __setstate__):

    1. class MutableDict(Mutable, dict):
    2. # ....
    3. def __getstate__(self):
    4. return dict(self)
    5. def __setstate__(self, state):
    6. self.update(state)

    In the case that our mutable value object is pickled as it is attached to one or more parent objects that are also part of the pickle, the Mutable mixin will re-establish the collection on each value object as the owning parents themselves are unpickled.

    The event handler may be used to receive an event when a mutable scalar emits a change event. This event handler is called when the flag_modified() function is called from within the mutable extension:

    1. from sqlalchemy.orm import DeclarativeBase
    2. from sqlalchemy.orm import Mapped
    3. from sqlalchemy.orm import mapped_column
    4. from sqlalchemy import event
    5. class Base(DeclarativeBase):
    6. pass
    7. class MyDataClass(Base):
    8. __tablename__ = 'my_data'
    9. id: Mapped[int] = mapped_column(primary_key=True)
    10. data: Mapped[dict[str, str]] = mapped_column(MutableDict.as_mutable(JSONEncodedDict))
    11. @event.listens_for(MyDataClass.data, "modified")
    12. def modified_json(instance, initiator):
    13. print("json value modified:", instance.data)

    Composites are a special ORM feature which allow a single scalar attribute to be assigned an object value which represents information “composed” from one or more columns from the underlying mapped table. The usual example is that of a geometric “point”, and is introduced in Composite Column Types.

    As is the case with , the user-defined composite class subclasses MutableComposite as a mixin, and detects and delivers change events to its parents via the method. In the case of a composite class, the detection is usually via the usage of the special Python method __setattr__(). In the example below, we expand upon the Point class introduced in Composite Column Types to include in its bases and to route attribute set events via __setattr__ to the MutableComposite.changed() method:

    1. import dataclasses
    2. from sqlalchemy.ext.mutable import MutableComposite
    3. @dataclasses.dataclass
    4. class Point(MutableComposite):
    5. x: int
    6. y: int
    7. def __setattr__(self, key, value):
    8. "Intercept set events"
    9. # set the attribute
    10. object.__setattr__(self, key, value)
    11. # alert all parents to the change
    12. self.changed()

    The class makes use of class mapping events to automatically establish listeners for any usage of composite() that specifies our Point type. Below, when Point is mapped to the Vertex class, listeners are established which will route change events from Point objects to each of the Vertex.start and Vertex.end attributes:

    Any in-place changes to the Vertex.start or Vertex.end members will flag the attribute as “dirty” on the parent object:

    1. >>> sess = Session(engine)
    2. >>> v1 = Vertex(start=Point(3, 4), end=Point(12, 15))
    3. >>> sess.add(v1)
    4. sql>>> sess.flush()
    5. BEGIN (implicit)
    6. INSERT INTO vertices (x1, y1, x2, y2) VALUES (?, ?, ?, ?)
    7. [...] (3, 4, 12, 15)
    8. >>> v1.end.x = 8
    9. >>> assert v1 in sess.dirty
    10. True
    11. sql>>> sess.commit()
    12. UPDATE vertices SET x2=? WHERE vertices.id = ?
    13. [...] (8, 1)
    14. COMMIT

    The MutableBase.coerce() method is also supported on composite types. In the case of , the MutableBase.coerce() method is only called for attribute set operations, not load operations. Overriding the method is essentially equivalent to using a validates() validation routine for all attributes which make use of the custom composite type:

    1. @dataclasses.dataclass
    2. class Point(MutableComposite):
    3. # other Point methods
    4. # ...
    5. def coerce(cls, key, value):
    6. if isinstance(value, tuple):
    7. value = Point(*value)
    8. elif not isinstance(value, Point):
    9. raise ValueError("tuple or Point expected")
    10. return value

    As is the case with Mutable, the helper class uses a weakref.WeakKeyDictionary available via the MutableBase._parents() attribute which isn’t picklable. If we need to pickle instances of Point or its owning class Vertex, we at least need to define a __getstate__ that doesn’t include the _parents dictionary. Below we define both a __getstate__ and a __setstate__ that package up the minimal form of our Point class:

    1. @dataclasses.dataclass
    2. class Point(MutableComposite):
    3. # ...
    4. def __getstate__(self):
    5. return self.x, self.y
    6. def __setstate__(self, state):
    7. self.x, self.y = state

    As with , the MutableComposite augments the pickling process of the parent’s object-relational state so that the collection is restored to all Point objects.

    class sqlalchemy.ext.mutable.MutableBase

    Members

    , coerce()

    Common base class to and MutableComposite.

    • attribute _parents

      Dictionary of parent object’s InstanceState->attribute name on the parent.

      This attribute is a so-called “memoized” property. It initializes itself with a new weakref.WeakKeyDictionary the first time it is accessed, returning the same object upon subsequent access.

      Changed in version 1.4: the is now used as the key in the weak dictionary rather than the instance itself.

    • classmethod sqlalchemy.ext.mutable.MutableBase.coerce(key: str, value: Any) → Optional[Any]

      Given a value, coerce it into the target type.

      Can be overridden by custom subclasses to coerce incoming data into a particular type.

      By default, raises ValueError.

      This method is called in different scenarios depending on if the parent class is of type or of type MutableComposite. In the case of the former, it is called for both attribute-set operations as well as during ORM loading operations. For the latter, it is only called during attribute-set operations; the mechanics of the construct handle coercion during load operations.

      • Parameters:

        • key – string name of the ORM-mapped attribute being set.

        • value – the incoming value.

        Returns:

        the method should return the coerced value, or raise ValueError if the coercion cannot be completed.

    class sqlalchemy.ext.mutable.Mutable

    Mixin that defines transparent propagation of change events to a parent object.

    See the example in Establishing Mutability on Scalar Column Values for usage information.

    Members

    , _listen_on_attribute(), , as_mutable(), , associate_with_attribute(), , coerce()

    Class signature

    class (sqlalchemy.ext.mutable.MutableBase)

    • classmethod _get_listen_keys(attribute: QueryableAttribute[Any]) → Set[str]

      inherited from the sqlalchemy.ext.mutable.MutableBase._get_listen_keys method of

      Given a descriptor attribute, return a set() of the attribute keys which indicate a change in the state of this attribute.

      This is normally just set([attribute.key]), but can be overridden to provide for additional keys. E.g. a MutableComposite augments this set with the attribute keys associated with the columns that comprise the composite value.

      This collection is consulted in the case of intercepting the and InstanceEvents.refresh_flush() events, which pass along a list of attribute names that have been refreshed; the list is compared against this set to determine if action needs to be taken.

      New in version 1.0.5.

    • classmethod _listen_on_attribute(attribute: QueryableAttribute[Any], coerce: bool, parent_cls: _ExternalEntityType[Any]) → None

      inherited from the sqlalchemy.ext.mutable.MutableBase._listen_on_attribute method of

      Establish this type as a mutation listener for the given mapped descriptor.

    • inherited from the sqlalchemy.ext.mutable.MutableBase._parents attribute of MutableBase

      Dictionary of parent object’s ->attribute name on the parent.

      This attribute is a so-called “memoized” property. It initializes itself with a new weakref.WeakKeyDictionary the first time it is accessed, returning the same object upon subsequent access.

      Changed in version 1.4: the InstanceState is now used as the key in the weak dictionary rather than the instance itself.

    • classmethod as_mutable(sqltype: TypeEngine) →

      Associate a SQL type with this mutable Python type.

      This establishes listeners that will detect ORM mappings against the given type, adding mutation event trackers to those mappings.

      The type is returned, unconditionally as an instance, so that as_mutable() can be used inline:

      1. Table('mytable', metadata,
      2. Column('id', Integer, primary_key=True),
      3. Column('data', MyMutableType.as_mutable(PickleType))
      4. )

      Note that the returned type is always an instance, even if a class is given, and that only columns which are declared specifically with that type instance receive additional instrumentation.

      To associate a particular mutable type with all occurrences of a particular type, use the classmethod of the particular Mutable subclass to establish a global association.

      Warning

      The listeners established by this method are global to all mappers, and are not garbage collected. Only use for types that are permanent to an application, not with ad-hoc types else this will cause unbounded growth in memory usage.

    • classmethod sqlalchemy.ext.mutable.Mutable.associate_with(sqltype: type) → None

      Associate this wrapper with all future mapped columns of the given type.

      This is a convenience method that calls associate_with_attribute automatically.

      Warning

      The listeners established by this method are global to all mappers, and are not garbage collected. Only use for types that are permanent to an application, not with ad-hoc types else this will cause unbounded growth in memory usage.

    • classmethod sqlalchemy.ext.mutable.Mutable.associate_with_attribute(attribute: [_O]) → None

      Establish this type as a mutation listener for the given mapped descriptor.

    • method sqlalchemy.ext.mutable.Mutable.changed() → None

      Subclasses should call this method whenever change events occur.

    • classmethod coerce(key: str, value: Any) → Optional[Any]

      inherited from the MutableBase.coerce() method of

      Given a value, coerce it into the target type.

      Can be overridden by custom subclasses to coerce incoming data into a particular type.

      By default, raises ValueError.

      This method is called in different scenarios depending on if the parent class is of type Mutable or of type . In the case of the former, it is called for both attribute-set operations as well as during ORM loading operations. For the latter, it is only called during attribute-set operations; the mechanics of the composite() construct handle coercion during load operations.

      • Parameters:

        • key – string name of the ORM-mapped attribute being set.

        • value – the incoming value.

        Returns:

        the method should return the coerced value, or raise ValueError if the coercion cannot be completed.

    class sqlalchemy.ext.mutable.MutableComposite

    Mixin that defines transparent propagation of change events on a SQLAlchemy “composite” object to its owning parent or parents.

    See the example in for usage information.

    Members

    changed()

    Class signature

    class (sqlalchemy.ext.mutable.MutableBase)

    • method changed() → None

      Subclasses should call this method whenever change events occur.

    class sqlalchemy.ext.mutable.MutableDict

    A dictionary type that implements Mutable.

    The object implements a dictionary that will emit change events to the underlying mapping when the contents of the dictionary are altered, including when values are added or removed.

    Note that MutableDict does not apply mutable tracking to the values themselves inside the dictionary. Therefore it is not a sufficient solution for the use case of tracking deep changes to a recursive dictionary structure, such as a JSON structure. To support this use case, build a subclass of that provides appropriate coercion to the values placed in the dictionary so that they too are “mutable”, and emit events up to their parent structure.

    See also

    MutableList

    Members

    clear(), , pop(), , setdefault(),

    Class signature

    class sqlalchemy.ext.mutable.MutableDict (, builtins.dict, typing.Generic)

    • method sqlalchemy.ext.mutable.MutableDict.clear() → None. Remove all items from D.

    • classmethod coerce(key: str, value: Any) → sqlalchemy.ext.mutable.MutableDict[sqlalchemy.ext.mutable._KT, sqlalchemy.ext.mutable._VT] | None

      Convert plain dictionary to instance of this class.

    • method pop(k[, d]) → v, remove specified key and return the corresponding value.

      If the key is not found, return the default if given; otherwise, raise a KeyError.

    • method sqlalchemy.ext.mutable.MutableDict.popitem() → Tuple[_KT, _VT]

      Remove and return a (key, value) pair as a 2-tuple.

      Pairs are returned in LIFO (last-in, first-out) order. Raises KeyError if the dict is empty.

    • method setdefault(key: _KT, value: Optional[_VT] = None) → Optional[_VT]

      Insert key with a value of default if key is not in the dictionary.

      Return the value for key if key is in the dictionary, else default.

    • method sqlalchemy.ext.mutable.MutableDict.update([E, ]**F) → None. Update D from dict/iterable E and F.

      If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

    class sqlalchemy.ext.mutable.MutableList

    A list type that implements .

    Note that MutableList does not apply mutable tracking to the values themselves inside the list. Therefore it is not a sufficient solution for the use case of tracking deep changes to a recursive mutable structure, such as a JSON structure. To support this use case, build a subclass of that provides appropriate coercion to the values placed in the dictionary so that they too are “mutable”, and emit events up to their parent structure.

    New in version 1.1.

    See also

    MutableDict

    Members

    append(), , coerce(), , insert(), , is_scalar(), , remove(), , sort()

    Class signature

    class (sqlalchemy.ext.mutable.Mutable, builtins.list, typing.Generic)

    • method append(x: _T) → None

      Append object to the end of the list.

    • method sqlalchemy.ext.mutable.MutableList.clear() → None

      Remove all items from list.

    • classmethod coerce(key: str, value: Union[MutableList[_T], _T]) → Optional[[_T]]

      Convert plain list to instance of this class.

    • method sqlalchemy.ext.mutable.MutableList.extend(x: Iterable[_T]) → None

      Extend list by appending elements from the iterable.

    • method insert(i: SupportsIndex, x: _T) → None

      Insert object before index.

    • method sqlalchemy.ext.mutable.MutableList.is_iterable(value: Union[_T, Iterable[_T]]) → TypeGuard[Iterable[_T]]

    • method is_scalar(value: Union[_T, Iterable[_T]]) → TypeGuard[_T]

    • method sqlalchemy.ext.mutable.MutableList.pop(*arg: SupportsIndex) → _T

      Remove and return item at index (default last).

      Raises IndexError if list is empty or index is out of range.

    • method remove(i: _T) → None

      Remove first occurrence of value.

      Raises ValueError if the value is not present.

    • method sqlalchemy.ext.mutable.MutableList.reverse() → None

      Reverse IN PLACE.

    • method sort(**kw: Any) → None

      Sort the list in ascending order and return None.

      The sort is in-place (i.e. the list itself is modified) and stable (i.e. the order of two equal elements is maintained).

      If a key function is given, apply it once to each list item and sort them, ascending or descending, according to their function values.

      The reverse flag can be set to sort in descending order.

    class sqlalchemy.ext.mutable.MutableSet

    A set type that implements Mutable.

    The object implements a set that will emit change events to the underlying mapping when the contents of the set are altered, including when values are added or removed.

    Note that MutableSet does not apply mutable tracking to the values themselves inside the set. Therefore it is not a sufficient solution for the use case of tracking deep changes to a recursive mutable structure. To support this use case, build a subclass of that provides appropriate coercion to the values placed in the dictionary so that they too are “mutable”, and emit events up to their parent structure.

    New in version 1.1.

    See also

    MutableDict

    Members

    add(), , coerce(), , discard(), , pop(), , symmetric_difference_update(),

    Class signature

    class sqlalchemy.ext.mutable.MutableSet (, builtins.set, typing.Generic)

    • method sqlalchemy.ext.mutable.MutableSet.add(elem: _T) → None

      Add an element to a set.

      This has no effect if the element is already present.

    • method clear() → None

      Remove all elements from this set.

    • classmethod sqlalchemy.ext.mutable.MutableSet.coerce(index: str, value: Any) → Optional[[_T]]

      Convert plain set to instance of this class.

    • method sqlalchemy.ext.mutable.MutableSet.difference_update(*arg: Iterable[Any]) → None

      Remove all elements of another set from this set.

    • method discard(elem: _T) → None

      Remove an element from a set if it is a member.

      If the element is not a member, do nothing.

    • method sqlalchemy.ext.mutable.MutableSet.intersection_update(*arg: Iterable[Any]) → None

      Update a set with the intersection of itself and another.

    • method pop(*arg: Any) → _T

      Remove and return an arbitrary set element. Raises KeyError if the set is empty.

    • method sqlalchemy.ext.mutable.MutableSet.remove(elem: _T) → None

      Remove an element from a set; it must be a member.

      If the element is not a member, raise a KeyError.

    • method symmetric_difference_update(*arg: Iterable[_T]) → None

      Update a set with the symmetric difference of itself and another.