I want to implement a class that will wrap — not subclass — the python dict object, so that when a change is detected in a backing store I can re-create the delegated dict object. I intend to check for changes in the backing store each time the dict is accessed for a read.
Supposing I was to create an object to act like this; what methods would I need to implement?
You can subclass the ABC (abstract base class)
collections.Mapping(orcollections.MutableMappingif you also want to allow code using your instances to alter the simulated/wrapped dictionary, e.g. by indexed assignment,pop, etc).If you do so, then, as the docs I pointed to imply somewhat indirectly, the methods you need to implement are
(for a
Mapping) — you should also implementbecause by delegating to the dict you’re wrapping it can be done much faster than the iterating approach the ABC would have to apply otherwise.
If you need to supply a
MutableMappingthen you also need to implement 2 more methods: