Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`weakref` --- Weak references |
| 2 | ================================== |
| 3 | |
| 4 | .. module:: weakref |
| 5 | :synopsis: Support for weak references and weak dictionaries. |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 6 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | .. moduleauthor:: Fred L. Drake, Jr. <fdrake@acm.org> |
| 8 | .. moduleauthor:: Neil Schemenauer <nas@arctrix.com> |
| 9 | .. moduleauthor:: Martin von Löwis <martin@loewis.home.cs.tu-berlin.de> |
| 10 | .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> |
| 11 | |
Raymond Hettinger | 469271d | 2011-01-27 20:38:46 +0000 | [diff] [blame] | 12 | **Source code:** :source:`Lib/weakref.py` |
| 13 | |
| 14 | -------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 15 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | The :mod:`weakref` module allows the Python programmer to create :dfn:`weak |
| 17 | references` to objects. |
| 18 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 19 | .. When making changes to the examples in this file, be sure to update |
| 20 | Lib/test/test_weakref.py::libreftest too! |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 21 | |
| 22 | In the following, the term :dfn:`referent` means the object which is referred to |
| 23 | by a weak reference. |
| 24 | |
| 25 | A weak reference to an object is not enough to keep the object alive: when the |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 26 | only remaining references to a referent are weak references, |
| 27 | :term:`garbage collection` is free to destroy the referent and reuse its memory |
Antoine Pitrou | 9439f04 | 2012-08-21 00:07:07 +0200 | [diff] [blame] | 28 | for something else. However, until the object is actually destroyed the weak |
| 29 | reference may return the object even if there are no strong references to it. |
| 30 | |
| 31 | A primary use for weak references is to implement caches or |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 32 | mappings holding large objects, where it's desired that a large object not be |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 33 | kept alive solely because it appears in a cache or mapping. |
| 34 | |
| 35 | For example, if you have a number of large binary image objects, you may wish to |
| 36 | associate a name with each. If you used a Python dictionary to map names to |
| 37 | images, or images to names, the image objects would remain alive just because |
| 38 | they appeared as values or keys in the dictionaries. The |
| 39 | :class:`WeakKeyDictionary` and :class:`WeakValueDictionary` classes supplied by |
| 40 | the :mod:`weakref` module are an alternative, using weak references to construct |
| 41 | mappings that don't keep objects alive solely because they appear in the mapping |
| 42 | objects. If, for example, an image object is a value in a |
| 43 | :class:`WeakValueDictionary`, then when the last remaining references to that |
| 44 | image object are the weak references held by weak mappings, garbage collection |
| 45 | can reclaim the object, and its corresponding entries in weak mappings are |
| 46 | simply deleted. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 47 | |
| 48 | :class:`WeakKeyDictionary` and :class:`WeakValueDictionary` use weak references |
| 49 | in their implementation, setting up callback functions on the weak references |
| 50 | that notify the weak dictionaries when a key or value has been reclaimed by |
Georg Brandl | 3b8cb17 | 2007-10-23 06:26:46 +0000 | [diff] [blame] | 51 | garbage collection. :class:`WeakSet` implements the :class:`set` interface, |
| 52 | but keeps weak references to its elements, just like a |
| 53 | :class:`WeakKeyDictionary` does. |
| 54 | |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 55 | :class:`finalize` provides a straight forward way to register a |
| 56 | cleanup function to be called when an object is garbage collected. |
| 57 | This is simpler to use than setting up a callback function on a raw |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 58 | weak reference, since the module automatically ensures that the finalizer |
| 59 | remains alive until the object is collected. |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 60 | |
| 61 | Most programs should find that using one of these weak container types |
| 62 | or :class:`finalize` is all they need -- it's not usually necessary to |
| 63 | create your own weak references directly. The low-level machinery is |
| 64 | exposed by the :mod:`weakref` module for the benefit of advanced uses. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 65 | |
| 66 | Not all objects can be weakly referenced; those objects which can include class |
Georg Brandl | 2e0b755 | 2007-11-27 12:43:08 +0000 | [diff] [blame] | 67 | instances, functions written in Python (but not in C), instance methods, sets, |
Géry Ogam | f475729 | 2019-06-15 13:33:23 +0200 | [diff] [blame] | 68 | frozensets, some :term:`file objects <file object>`, :term:`generators <generator>`, |
| 69 | type objects, sockets, arrays, deques, regular expression pattern objects, and code |
Antoine Pitrou | 11cb961 | 2010-09-15 11:11:28 +0000 | [diff] [blame] | 70 | objects. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 71 | |
Benjamin Peterson | bec4d57 | 2009-10-10 01:16:07 +0000 | [diff] [blame] | 72 | .. versionchanged:: 3.2 |
Collin Winter | 4222e9c | 2010-03-18 22:46:40 +0000 | [diff] [blame] | 73 | Added support for thread.lock, threading.Lock, and code objects. |
Benjamin Peterson | bec4d57 | 2009-10-10 01:16:07 +0000 | [diff] [blame] | 74 | |
Georg Brandl | 22b3431 | 2009-07-26 14:54:51 +0000 | [diff] [blame] | 75 | Several built-in types such as :class:`list` and :class:`dict` do not directly |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 | support weak references but can add support through subclassing:: |
| 77 | |
| 78 | class Dict(dict): |
| 79 | pass |
| 80 | |
Christian Heimes | c3f30c4 | 2008-02-22 16:37:40 +0000 | [diff] [blame] | 81 | obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 82 | |
Géry Ogam | f475729 | 2019-06-15 13:33:23 +0200 | [diff] [blame] | 83 | .. impl-detail:: |
| 84 | |
| 85 | Other built-in types such as :class:`tuple` and :class:`int` do not support weak |
| 86 | references even when subclassed. |
Georg Brandl | ff8c1e5 | 2009-10-21 07:17:48 +0000 | [diff] [blame] | 87 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 88 | Extension types can easily be made to support weak references; see |
| 89 | :ref:`weakref-support`. |
| 90 | |
| 91 | |
| 92 | .. class:: ref(object[, callback]) |
| 93 | |
| 94 | Return a weak reference to *object*. The original object can be retrieved by |
| 95 | calling the reference object if the referent is still alive; if the referent is |
| 96 | no longer alive, calling the reference object will cause :const:`None` to be |
| 97 | returned. If *callback* is provided and not :const:`None`, and the returned |
| 98 | weakref object is still alive, the callback will be called when the object is |
| 99 | about to be finalized; the weak reference object will be passed as the only |
| 100 | parameter to the callback; the referent will no longer be available. |
| 101 | |
| 102 | It is allowable for many weak references to be constructed for the same object. |
| 103 | Callbacks registered for each weak reference will be called from the most |
| 104 | recently registered callback to the oldest registered callback. |
| 105 | |
| 106 | Exceptions raised by the callback will be noted on the standard error output, |
| 107 | but cannot be propagated; they are handled in exactly the same way as exceptions |
| 108 | raised from an object's :meth:`__del__` method. |
| 109 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 110 | Weak references are :term:`hashable` if the *object* is hashable. They will |
| 111 | maintain their hash value even after the *object* was deleted. If |
| 112 | :func:`hash` is called the first time only after the *object* was deleted, |
| 113 | the call will raise :exc:`TypeError`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 114 | |
| 115 | Weak references support tests for equality, but not ordering. If the referents |
| 116 | are still alive, two references have the same equality relationship as their |
| 117 | referents (regardless of the *callback*). If either referent has been deleted, |
| 118 | the references are equal only if the reference objects are the same object. |
| 119 | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 120 | This is a subclassable type rather than a factory function. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 121 | |
Mark Dickinson | 556e94b | 2013-04-13 15:45:44 +0100 | [diff] [blame] | 122 | .. attribute:: __callback__ |
| 123 | |
| 124 | This read-only attribute returns the callback currently associated to the |
| 125 | weakref. If there is no callback or if the referent of the weakref is |
| 126 | no longer alive then this attribute will have value ``None``. |
| 127 | |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 128 | .. versionchanged:: 3.4 |
Mark Dickinson | 9b6fdf8 | 2013-04-13 16:09:18 +0100 | [diff] [blame] | 129 | Added the :attr:`__callback__` attribute. |
Mark Dickinson | 556e94b | 2013-04-13 15:45:44 +0100 | [diff] [blame] | 130 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 131 | |
| 132 | .. function:: proxy(object[, callback]) |
| 133 | |
| 134 | Return a proxy to *object* which uses a weak reference. This supports use of |
| 135 | the proxy in most contexts instead of requiring the explicit dereferencing used |
| 136 | with weak reference objects. The returned object will have a type of either |
| 137 | ``ProxyType`` or ``CallableProxyType``, depending on whether *object* is |
Guido van Rossum | 2cc30da | 2007-11-02 23:46:40 +0000 | [diff] [blame] | 138 | callable. Proxy objects are not :term:`hashable` regardless of the referent; this |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 139 | avoids a number of problems related to their fundamentally mutable nature, and |
| 140 | prevent their use as dictionary keys. *callback* is the same as the parameter |
| 141 | of the same name to the :func:`ref` function. |
| 142 | |
Mark Dickinson | 7abb6c0 | 2019-04-26 15:56:15 +0900 | [diff] [blame] | 143 | .. versionchanged:: 3.8 |
| 144 | Extended the operator support on proxy objects to include the matrix |
| 145 | multiplication operators ``@`` and ``@=``. |
| 146 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 147 | |
| 148 | .. function:: getweakrefcount(object) |
| 149 | |
| 150 | Return the number of weak references and proxies which refer to *object*. |
| 151 | |
| 152 | |
| 153 | .. function:: getweakrefs(object) |
| 154 | |
| 155 | Return a list of all weak reference and proxy objects which refer to *object*. |
| 156 | |
| 157 | |
| 158 | .. class:: WeakKeyDictionary([dict]) |
| 159 | |
| 160 | Mapping class that references keys weakly. Entries in the dictionary will be |
| 161 | discarded when there is no longer a strong reference to the key. This can be |
| 162 | used to associate additional data with an object owned by other parts of an |
| 163 | application without adding attributes to those objects. This can be especially |
| 164 | useful with objects that override attribute accesses. |
| 165 | |
| 166 | .. note:: |
| 167 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 168 | Caution: Because a :class:`WeakKeyDictionary` is built on top of a Python |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 169 | dictionary, it must not change size when iterating over it. This can be |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 170 | difficult to ensure for a :class:`WeakKeyDictionary` because actions |
| 171 | performed by the program during iteration may cause items in the |
| 172 | dictionary to vanish "by magic" (as a side effect of garbage collection). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 173 | |
Mariatta | 3110a37 | 2017-02-12 08:17:50 -0800 | [diff] [blame] | 174 | :class:`WeakKeyDictionary` objects have an additional method that |
| 175 | exposes the internal references directly. The references are not guaranteed to |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 176 | be "live" at the time they are used, so the result of calling the references |
| 177 | needs to be checked before being used. This can be used to avoid creating |
| 178 | references that will cause the garbage collector to keep the keys around longer |
| 179 | than needed. |
| 180 | |
| 181 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 182 | .. method:: WeakKeyDictionary.keyrefs() |
| 183 | |
Antoine Pitrou | c1baa60 | 2010-01-08 17:54:23 +0000 | [diff] [blame] | 184 | Return an iterable of the weak references to the keys. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 185 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 186 | |
| 187 | .. class:: WeakValueDictionary([dict]) |
| 188 | |
| 189 | Mapping class that references values weakly. Entries in the dictionary will be |
| 190 | discarded when no strong reference to the value exists any more. |
| 191 | |
| 192 | .. note:: |
| 193 | |
| 194 | Caution: Because a :class:`WeakValueDictionary` is built on top of a Python |
| 195 | dictionary, it must not change size when iterating over it. This can be |
| 196 | difficult to ensure for a :class:`WeakValueDictionary` because actions performed |
| 197 | by the program during iteration may cause items in the dictionary to vanish "by |
| 198 | magic" (as a side effect of garbage collection). |
| 199 | |
Mariatta | 3110a37 | 2017-02-12 08:17:50 -0800 | [diff] [blame] | 200 | :class:`WeakValueDictionary` objects have an additional method that has the |
| 201 | same issues as the :meth:`keyrefs` method of :class:`WeakKeyDictionary` |
| 202 | objects. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 203 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 204 | |
| 205 | .. method:: WeakValueDictionary.valuerefs() |
| 206 | |
Antoine Pitrou | c1baa60 | 2010-01-08 17:54:23 +0000 | [diff] [blame] | 207 | Return an iterable of the weak references to the values. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 208 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 209 | |
Georg Brandl | 3b8cb17 | 2007-10-23 06:26:46 +0000 | [diff] [blame] | 210 | .. class:: WeakSet([elements]) |
| 211 | |
| 212 | Set class that keeps weak references to its elements. An element will be |
| 213 | discarded when no strong reference to it exists any more. |
| 214 | |
| 215 | |
Antoine Pitrou | c3afba1 | 2012-11-17 18:57:38 +0100 | [diff] [blame] | 216 | .. class:: WeakMethod(method) |
| 217 | |
| 218 | A custom :class:`ref` subclass which simulates a weak reference to a bound |
| 219 | method (i.e., a method defined on a class and looked up on an instance). |
| 220 | Since a bound method is ephemeral, a standard weak reference cannot keep |
| 221 | hold of it. :class:`WeakMethod` has special code to recreate the bound |
| 222 | method until either the object or the original function dies:: |
| 223 | |
| 224 | >>> class C: |
| 225 | ... def method(self): |
| 226 | ... print("method called!") |
| 227 | ... |
| 228 | >>> c = C() |
| 229 | >>> r = weakref.ref(c.method) |
| 230 | >>> r() |
| 231 | >>> r = weakref.WeakMethod(c.method) |
| 232 | >>> r() |
| 233 | <bound method C.method of <__main__.C object at 0x7fc859830220>> |
| 234 | >>> r()() |
| 235 | method called! |
| 236 | >>> del c |
| 237 | >>> gc.collect() |
| 238 | 0 |
| 239 | >>> r() |
| 240 | >>> |
| 241 | |
| 242 | .. versionadded:: 3.4 |
| 243 | |
Serhiy Storchaka | 142566c | 2019-06-05 18:22:31 +0300 | [diff] [blame] | 244 | .. class:: finalize(obj, func, /, *args, **kwargs) |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 245 | |
| 246 | Return a callable finalizer object which will be called when *obj* |
R David Murray | a101bdb | 2014-01-06 16:32:05 -0500 | [diff] [blame] | 247 | is garbage collected. Unlike an ordinary weak reference, a finalizer |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 248 | will always survive until the reference object is collected, greatly |
| 249 | simplifying lifecycle management. |
| 250 | |
| 251 | A finalizer is considered *alive* until it is called (either explicitly |
| 252 | or at garbage collection), and after that it is *dead*. Calling a live |
| 253 | finalizer returns the result of evaluating ``func(*arg, **kwargs)``, |
| 254 | whereas calling a dead finalizer returns :const:`None`. |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 255 | |
| 256 | Exceptions raised by finalizer callbacks during garbage collection |
| 257 | will be shown on the standard error output, but cannot be |
| 258 | propagated. They are handled in the same way as exceptions raised |
| 259 | from an object's :meth:`__del__` method or a weak reference's |
| 260 | callback. |
| 261 | |
| 262 | When the program exits, each remaining live finalizer is called |
| 263 | unless its :attr:`atexit` attribute has been set to false. They |
| 264 | are called in reverse order of creation. |
| 265 | |
| 266 | A finalizer will never invoke its callback during the later part of |
Antoine Pitrou | 5db1bb8 | 2014-12-07 01:28:27 +0100 | [diff] [blame] | 267 | the :term:`interpreter shutdown` when module globals are liable to have |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 268 | been replaced by :const:`None`. |
| 269 | |
| 270 | .. method:: __call__() |
| 271 | |
| 272 | If *self* is alive then mark it as dead and return the result of |
| 273 | calling ``func(*args, **kwargs)``. If *self* is dead then return |
| 274 | :const:`None`. |
| 275 | |
| 276 | .. method:: detach() |
| 277 | |
| 278 | If *self* is alive then mark it as dead and return the tuple |
| 279 | ``(obj, func, args, kwargs)``. If *self* is dead then return |
| 280 | :const:`None`. |
| 281 | |
| 282 | .. method:: peek() |
| 283 | |
| 284 | If *self* is alive then return the tuple ``(obj, func, args, |
| 285 | kwargs)``. If *self* is dead then return :const:`None`. |
| 286 | |
| 287 | .. attribute:: alive |
| 288 | |
| 289 | Property which is true if the finalizer is alive, false otherwise. |
| 290 | |
| 291 | .. attribute:: atexit |
| 292 | |
| 293 | A writable boolean property which by default is true. When the |
| 294 | program exits, it calls all remaining live finalizers for which |
| 295 | :attr:`.atexit` is true. They are called in reverse order of |
| 296 | creation. |
| 297 | |
| 298 | .. note:: |
| 299 | |
| 300 | It is important to ensure that *func*, *args* and *kwargs* do |
| 301 | not own any references to *obj*, either directly or indirectly, |
| 302 | since otherwise *obj* will never be garbage collected. In |
| 303 | particular, *func* should not be a bound method of *obj*. |
| 304 | |
| 305 | .. versionadded:: 3.4 |
| 306 | |
Antoine Pitrou | c3afba1 | 2012-11-17 18:57:38 +0100 | [diff] [blame] | 307 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 308 | .. data:: ReferenceType |
| 309 | |
| 310 | The type object for weak references objects. |
| 311 | |
| 312 | |
| 313 | .. data:: ProxyType |
| 314 | |
| 315 | The type object for proxies of objects which are not callable. |
| 316 | |
| 317 | |
| 318 | .. data:: CallableProxyType |
| 319 | |
| 320 | The type object for proxies of callable objects. |
| 321 | |
| 322 | |
| 323 | .. data:: ProxyTypes |
| 324 | |
| 325 | Sequence containing all the type objects for proxies. This can make it simpler |
| 326 | to test if an object is a proxy without being dependent on naming both proxy |
| 327 | types. |
| 328 | |
| 329 | |
| 330 | .. exception:: ReferenceError |
| 331 | |
| 332 | Exception raised when a proxy object is used but the underlying object has been |
| 333 | collected. This is the same as the standard :exc:`ReferenceError` exception. |
| 334 | |
| 335 | |
| 336 | .. seealso:: |
| 337 | |
Serhiy Storchaka | e4ba872 | 2016-03-31 15:30:54 +0300 | [diff] [blame] | 338 | :pep:`205` - Weak References |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 339 | The proposal and rationale for this feature, including links to earlier |
| 340 | implementations and information about similar features in other languages. |
| 341 | |
| 342 | |
| 343 | .. _weakref-objects: |
| 344 | |
| 345 | Weak Reference Objects |
| 346 | ---------------------- |
| 347 | |
Mark Dickinson | 556e94b | 2013-04-13 15:45:44 +0100 | [diff] [blame] | 348 | Weak reference objects have no methods and no attributes besides |
| 349 | :attr:`ref.__callback__`. A weak reference object allows the referent to be |
| 350 | obtained, if it still exists, by calling it: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 351 | |
| 352 | >>> import weakref |
| 353 | >>> class Object: |
| 354 | ... pass |
| 355 | ... |
| 356 | >>> o = Object() |
| 357 | >>> r = weakref.ref(o) |
| 358 | >>> o2 = r() |
| 359 | >>> o is o2 |
| 360 | True |
| 361 | |
| 362 | If the referent no longer exists, calling the reference object returns |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 363 | :const:`None`: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 364 | |
| 365 | >>> del o, o2 |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 366 | >>> print(r()) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 367 | None |
| 368 | |
| 369 | Testing that a weak reference object is still live should be done using the |
| 370 | expression ``ref() is not None``. Normally, application code that needs to use |
| 371 | a reference object should follow this pattern:: |
| 372 | |
| 373 | # r is a weak reference object |
| 374 | o = r() |
| 375 | if o is None: |
| 376 | # referent has been garbage collected |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 377 | print("Object has been deallocated; can't frobnicate.") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 378 | else: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 379 | print("Object is still live!") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 380 | o.do_something_useful() |
| 381 | |
| 382 | Using a separate test for "liveness" creates race conditions in threaded |
| 383 | applications; another thread can cause a weak reference to become invalidated |
| 384 | before the weak reference is called; the idiom shown above is safe in threaded |
| 385 | applications as well as single-threaded applications. |
| 386 | |
| 387 | Specialized versions of :class:`ref` objects can be created through subclassing. |
| 388 | This is used in the implementation of the :class:`WeakValueDictionary` to reduce |
| 389 | the memory overhead for each entry in the mapping. This may be most useful to |
| 390 | associate additional information with a reference, but could also be used to |
| 391 | insert additional processing on calls to retrieve the referent. |
| 392 | |
| 393 | This example shows how a subclass of :class:`ref` can be used to store |
| 394 | additional information about an object and affect the value that's returned when |
| 395 | the referent is accessed:: |
| 396 | |
| 397 | import weakref |
| 398 | |
| 399 | class ExtendedRef(weakref.ref): |
Serhiy Storchaka | 2085bd0 | 2019-06-01 11:00:15 +0300 | [diff] [blame] | 400 | def __init__(self, ob, callback=None, /, **annotations): |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 401 | super(ExtendedRef, self).__init__(ob, callback) |
| 402 | self.__counter = 0 |
Barry Warsaw | ecaab83 | 2008-09-04 01:42:51 +0000 | [diff] [blame] | 403 | for k, v in annotations.items(): |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 404 | setattr(self, k, v) |
| 405 | |
| 406 | def __call__(self): |
| 407 | """Return a pair containing the referent and the number of |
| 408 | times the reference has been called. |
| 409 | """ |
| 410 | ob = super(ExtendedRef, self).__call__() |
| 411 | if ob is not None: |
| 412 | self.__counter += 1 |
| 413 | ob = (ob, self.__counter) |
| 414 | return ob |
| 415 | |
| 416 | |
| 417 | .. _weakref-example: |
| 418 | |
| 419 | Example |
| 420 | ------- |
| 421 | |
Martin Panter | 0f0eac4 | 2016-09-07 11:04:41 +0000 | [diff] [blame] | 422 | This simple example shows how an application can use object IDs to retrieve |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 423 | objects that it has seen before. The IDs of the objects can then be used in |
| 424 | other data structures without forcing the objects to remain alive, but the |
| 425 | objects can still be retrieved by ID if they do. |
| 426 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 427 | .. Example contributed by Tim Peters. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 428 | |
| 429 | :: |
| 430 | |
| 431 | import weakref |
| 432 | |
| 433 | _id2obj_dict = weakref.WeakValueDictionary() |
| 434 | |
| 435 | def remember(obj): |
| 436 | oid = id(obj) |
| 437 | _id2obj_dict[oid] = obj |
| 438 | return oid |
| 439 | |
| 440 | def id2obj(oid): |
| 441 | return _id2obj_dict[oid] |
| 442 | |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 443 | |
| 444 | .. _finalize-examples: |
| 445 | |
| 446 | Finalizer Objects |
| 447 | ----------------- |
| 448 | |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 449 | The main benefit of using :class:`finalize` is that it makes it simple |
| 450 | to register a callback without needing to preserve the returned finalizer |
| 451 | object. For instance |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 452 | |
| 453 | >>> import weakref |
| 454 | >>> class Object: |
| 455 | ... pass |
| 456 | ... |
| 457 | >>> kenny = Object() |
| 458 | >>> weakref.finalize(kenny, print, "You killed Kenny!") #doctest:+ELLIPSIS |
| 459 | <finalize object at ...; for 'Object' at ...> |
| 460 | >>> del kenny |
| 461 | You killed Kenny! |
| 462 | |
| 463 | The finalizer can be called directly as well. However the finalizer |
| 464 | will invoke the callback at most once. |
| 465 | |
| 466 | >>> def callback(x, y, z): |
| 467 | ... print("CALLBACK") |
| 468 | ... return x + y + z |
| 469 | ... |
| 470 | >>> obj = Object() |
| 471 | >>> f = weakref.finalize(obj, callback, 1, 2, z=3) |
| 472 | >>> assert f.alive |
| 473 | >>> assert f() == 6 |
| 474 | CALLBACK |
| 475 | >>> assert not f.alive |
| 476 | >>> f() # callback not called because finalizer dead |
| 477 | >>> del obj # callback not called because finalizer dead |
| 478 | |
| 479 | You can unregister a finalizer using its :meth:`~finalize.detach` |
| 480 | method. This kills the finalizer and returns the arguments passed to |
| 481 | the constructor when it was created. |
| 482 | |
| 483 | >>> obj = Object() |
| 484 | >>> f = weakref.finalize(obj, callback, 1, 2, z=3) |
| 485 | >>> f.detach() #doctest:+ELLIPSIS |
Marco Buttu | 7b2491a | 2017-04-13 16:17:59 +0200 | [diff] [blame] | 486 | (<...Object object ...>, <function callback ...>, (1, 2), {'z': 3}) |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 487 | >>> newobj, func, args, kwargs = _ |
| 488 | >>> assert not f.alive |
| 489 | >>> assert newobj is obj |
| 490 | >>> assert func(*args, **kwargs) == 6 |
| 491 | CALLBACK |
| 492 | |
| 493 | Unless you set the :attr:`~finalize.atexit` attribute to |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 494 | :const:`False`, a finalizer will be called when the program exits if it |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 495 | is still alive. For instance |
| 496 | |
Inada Naoki | b3c92c6 | 2019-04-11 19:05:32 +0900 | [diff] [blame] | 497 | .. doctest:: |
| 498 | :options: +SKIP |
| 499 | |
| 500 | >>> obj = Object() |
| 501 | >>> weakref.finalize(obj, print, "obj dead or exiting") |
| 502 | <finalize object at ...; for 'Object' at ...> |
| 503 | >>> exit() |
| 504 | obj dead or exiting |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 505 | |
| 506 | |
| 507 | Comparing finalizers with :meth:`__del__` methods |
| 508 | ------------------------------------------------- |
| 509 | |
| 510 | Suppose we want to create a class whose instances represent temporary |
| 511 | directories. The directories should be deleted with their contents |
| 512 | when the first of the following events occurs: |
| 513 | |
| 514 | * the object is garbage collected, |
| 515 | * the object's :meth:`remove` method is called, or |
| 516 | * the program exits. |
| 517 | |
| 518 | We might try to implement the class using a :meth:`__del__` method as |
| 519 | follows:: |
| 520 | |
| 521 | class TempDir: |
| 522 | def __init__(self): |
| 523 | self.name = tempfile.mkdtemp() |
| 524 | |
| 525 | def remove(self): |
| 526 | if self.name is not None: |
| 527 | shutil.rmtree(self.name) |
| 528 | self.name = None |
| 529 | |
| 530 | @property |
| 531 | def removed(self): |
| 532 | return self.name is None |
| 533 | |
| 534 | def __del__(self): |
| 535 | self.remove() |
| 536 | |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 537 | Starting with Python 3.4, :meth:`__del__` methods no longer prevent |
| 538 | reference cycles from being garbage collected, and module globals are |
Antoine Pitrou | 5db1bb8 | 2014-12-07 01:28:27 +0100 | [diff] [blame] | 539 | no longer forced to :const:`None` during :term:`interpreter shutdown`. |
| 540 | So this code should work without any issues on CPython. |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 541 | |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 542 | However, handling of :meth:`__del__` methods is notoriously implementation |
Nick Coghlan | 4c7fe6a | 2013-09-22 21:32:12 +1000 | [diff] [blame] | 543 | specific, since it depends on internal details of the interpreter's garbage |
| 544 | collector implementation. |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 545 | |
| 546 | A more robust alternative can be to define a finalizer which only references |
| 547 | the specific functions and objects that it needs, rather than having access |
| 548 | to the full state of the object:: |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 549 | |
| 550 | class TempDir: |
| 551 | def __init__(self): |
| 552 | self.name = tempfile.mkdtemp() |
| 553 | self._finalizer = weakref.finalize(self, shutil.rmtree, self.name) |
| 554 | |
| 555 | def remove(self): |
| 556 | self._finalizer() |
| 557 | |
| 558 | @property |
| 559 | def removed(self): |
| 560 | return not self._finalizer.alive |
| 561 | |
Nick Coghlan | be57ab8 | 2013-09-22 21:26:30 +1000 | [diff] [blame] | 562 | Defined like this, our finalizer only receives a reference to the details |
| 563 | it needs to clean up the directory appropriately. If the object never gets |
| 564 | garbage collected the finalizer will still be called at exit. |
| 565 | |
| 566 | The other advantage of weakref based finalizers is that they can be used to |
| 567 | register finalizers for classes where the definition is controlled by a |
| 568 | third party, such as running code when a module is unloaded:: |
| 569 | |
| 570 | import weakref, sys |
| 571 | def unloading_module(): |
| 572 | # implicit reference to the module globals from the function body |
| 573 | weakref.finalize(sys.modules[__name__], unloading_module) |
| 574 | |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 575 | |
| 576 | .. note:: |
| 577 | |
Donald Stufft | 8b852f1 | 2014-05-20 12:58:38 -0400 | [diff] [blame] | 578 | If you create a finalizer object in a daemonic thread just as the program |
| 579 | exits then there is the possibility that the finalizer |
Richard Oudkerk | 7a3dae05 | 2013-05-05 23:05:00 +0100 | [diff] [blame] | 580 | does not get called at exit. However, in a daemonic thread |
| 581 | :func:`atexit.register`, ``try: ... finally: ...`` and ``with: ...`` |
| 582 | do not guarantee that cleanup occurs either. |