signals.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. =======
  2. Signals
  3. =======
  4. A list of all the signals that Django sends. All built-in signals are sent
  5. using the :meth:`~django.dispatch.Signal.send` method.
  6. .. seealso::
  7. See the documentation on the :doc:`signal dispatcher </topics/signals>` for
  8. information regarding how to register for and receive signals.
  9. The :doc:`authentication framework </topics/auth/index>` sends :ref:`signals when
  10. a user is logged in / out <topics-auth-signals>`.
  11. Model signals
  12. =============
  13. .. module:: django.db.models.signals
  14. :synopsis: Signals sent by the model system.
  15. The :mod:`django.db.models.signals` module defines a set of signals sent by the
  16. model system.
  17. .. warning::
  18. Many of these signals are sent by various model methods like
  19. ``__init__()`` or :meth:`~django.db.models.Model.save` that you can
  20. override in your own code.
  21. If you override these methods on your model, you must call the parent class'
  22. methods for this signals to be sent.
  23. Note also that Django stores signal handlers as weak references by default,
  24. so if your handler is a local function, it may be garbage collected. To
  25. prevent this, pass ``weak=False`` when you call the signal's :meth:`~django.dispatch.Signal.connect`.
  26. .. note::
  27. Model signals ``sender`` model can be lazily referenced when connecting a
  28. receiver by specifying its full application label. For example, an
  29. ``Question`` model defined in the ``polls`` application could be referenced
  30. as ``'polls.Question'``. This sort of reference can be quite handy when
  31. dealing with circular import dependencies and swappable models.
  32. ``pre_init``
  33. ------------
  34. .. attribute:: django.db.models.signals.pre_init
  35. :module:
  36. .. ^^^^^^^ this :module: hack keeps Sphinx from prepending the module.
  37. Whenever you instantiate a Django model, this signal is sent at the beginning
  38. of the model's ``__init__()`` method.
  39. Arguments sent with this signal:
  40. ``sender``
  41. The model class that just had an instance created.
  42. ``args``
  43. A list of positional arguments passed to ``__init__()``.
  44. ``kwargs``
  45. A dictionary of keyword arguments passed to ``__init__()``.
  46. For example, the :doc:`tutorial </intro/tutorial02>` has this line::
  47. q = Question(question_text="What's new?", pub_date=timezone.now())
  48. The arguments sent to a :data:`pre_init` handler would be:
  49. ========== ===============================================================
  50. Argument Value
  51. ========== ===============================================================
  52. ``sender`` ``Question`` (the class itself)
  53. ``args`` ``[]`` (an empty list because there were no positional
  54. arguments passed to ``__init__()``)
  55. ``kwargs`` ``{'question_text': "What's new?",``
  56. ``'pub_date': datetime.datetime(2012, 2, 26, 13, 0, 0, 775217, tzinfo=<UTC>)}``
  57. ========== ===============================================================
  58. ``post_init``
  59. -------------
  60. .. data:: django.db.models.signals.post_init
  61. :module:
  62. Like pre_init, but this one is sent when the ``__init__()`` method finishes.
  63. Arguments sent with this signal:
  64. ``sender``
  65. As above: the model class that just had an instance created.
  66. ``instance``
  67. The actual instance of the model that's just been created.
  68. .. note::
  69. ``instance._state`` isn't set before sending the ``post_init`` signal,
  70. so ``_state`` attributes always have their default values. For example,
  71. ``_state.db`` is ``None`` and cannot be used to check an ``instance``
  72. database.
  73. .. warning::
  74. For performance reasons, you shouldn't perform queries in receivers of
  75. ``pre_init`` or ``post_init`` signals because they would be executed for
  76. each instance returned during queryset iteration.
  77. ``pre_save``
  78. ------------
  79. .. data:: django.db.models.signals.pre_save
  80. :module:
  81. This is sent at the beginning of a model's :meth:`~django.db.models.Model.save`
  82. method.
  83. Arguments sent with this signal:
  84. ``sender``
  85. The model class.
  86. ``instance``
  87. The actual instance being saved.
  88. ``raw``
  89. A boolean; ``True`` if the model is saved exactly as presented
  90. (i.e. when loading a fixture). One should not query/modify other
  91. records in the database as the database might not be in a
  92. consistent state yet.
  93. ``using``
  94. The database alias being used.
  95. ``update_fields``
  96. The set of fields to update as passed to :meth:`.Model.save`, or ``None``
  97. if ``update_fields`` wasn't passed to ``save()``.
  98. ``post_save``
  99. -------------
  100. .. data:: django.db.models.signals.post_save
  101. :module:
  102. Like :data:`pre_save`, but sent at the end of the
  103. :meth:`~django.db.models.Model.save` method.
  104. Arguments sent with this signal:
  105. ``sender``
  106. The model class.
  107. ``instance``
  108. The actual instance being saved.
  109. ``created``
  110. A boolean; ``True`` if a new record was created.
  111. ``raw``
  112. A boolean; ``True`` if the model is saved exactly as presented
  113. (i.e. when loading a fixture). One should not query/modify other
  114. records in the database as the database might not be in a
  115. consistent state yet.
  116. ``using``
  117. The database alias being used.
  118. ``update_fields``
  119. The set of fields to update as passed to :meth:`.Model.save`, or ``None``
  120. if ``update_fields`` wasn't passed to ``save()``.
  121. ``pre_delete``
  122. --------------
  123. .. data:: django.db.models.signals.pre_delete
  124. :module:
  125. Sent at the beginning of a model's :meth:`~django.db.models.Model.delete`
  126. method and a queryset's :meth:`~django.db.models.query.QuerySet.delete` method.
  127. Arguments sent with this signal:
  128. ``sender``
  129. The model class.
  130. ``instance``
  131. The actual instance being deleted.
  132. ``using``
  133. The database alias being used.
  134. ``post_delete``
  135. ---------------
  136. .. data:: django.db.models.signals.post_delete
  137. :module:
  138. Like :data:`pre_delete`, but sent at the end of a model's
  139. :meth:`~django.db.models.Model.delete` method and a queryset's
  140. :meth:`~django.db.models.query.QuerySet.delete` method.
  141. Arguments sent with this signal:
  142. ``sender``
  143. The model class.
  144. ``instance``
  145. The actual instance being deleted.
  146. Note that the object will no longer be in the database, so be very
  147. careful what you do with this instance.
  148. ``using``
  149. The database alias being used.
  150. ``m2m_changed``
  151. ---------------
  152. .. data:: django.db.models.signals.m2m_changed
  153. :module:
  154. Sent when a :class:`~django.db.models.ManyToManyField` is changed on a model
  155. instance. Strictly speaking, this is not a model signal since it is sent by the
  156. :class:`~django.db.models.ManyToManyField`, but since it complements the
  157. :data:`pre_save`/:data:`post_save` and :data:`pre_delete`/:data:`post_delete`
  158. when it comes to tracking changes to models, it is included here.
  159. Arguments sent with this signal:
  160. ``sender``
  161. The intermediate model class describing the
  162. :class:`~django.db.models.ManyToManyField`. This class is automatically
  163. created when a many-to-many field is defined; you can access it using the
  164. ``through`` attribute on the many-to-many field.
  165. ``instance``
  166. The instance whose many-to-many relation is updated. This can be an
  167. instance of the ``sender``, or of the class the
  168. :class:`~django.db.models.ManyToManyField` is related to.
  169. ``action``
  170. A string indicating the type of update that is done on the relation.
  171. This can be one of the following:
  172. ``"pre_add"``
  173. Sent *before* one or more objects are added to the relation.
  174. ``"post_add"``
  175. Sent *after* one or more objects are added to the relation.
  176. ``"pre_remove"``
  177. Sent *before* one or more objects are removed from the relation.
  178. ``"post_remove"``
  179. Sent *after* one or more objects are removed from the relation.
  180. ``"pre_clear"``
  181. Sent *before* the relation is cleared.
  182. ``"post_clear"``
  183. Sent *after* the relation is cleared.
  184. ``reverse``
  185. Indicates which side of the relation is updated (i.e., if it is the
  186. forward or reverse relation that is being modified).
  187. ``model``
  188. The class of the objects that are added to, removed from or cleared
  189. from the relation.
  190. ``pk_set``
  191. For the ``pre_add``, ``post_add``, ``pre_remove`` and ``post_remove``
  192. actions, this is a set of primary key values that have been added to
  193. or removed from the relation.
  194. For the ``pre_clear`` and ``post_clear`` actions, this is ``None``.
  195. ``using``
  196. The database alias being used.
  197. For example, if a ``Pizza`` can have multiple ``Topping`` objects, modeled
  198. like this::
  199. class Topping(models.Model):
  200. # ...
  201. pass
  202. class Pizza(models.Model):
  203. # ...
  204. toppings = models.ManyToManyField(Topping)
  205. If we connected a handler like this::
  206. from django.db.models.signals import m2m_changed
  207. def toppings_changed(sender, **kwargs):
  208. # Do something
  209. pass
  210. m2m_changed.connect(toppings_changed, sender=Pizza.toppings.through)
  211. and then did something like this::
  212. >>> p = Pizza.objects.create(...)
  213. >>> t = Topping.objects.create(...)
  214. >>> p.toppings.add(t)
  215. the arguments sent to a :data:`m2m_changed` handler (``toppings_changed`` in
  216. the example above) would be:
  217. ============== ============================================================
  218. Argument Value
  219. ============== ============================================================
  220. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  221. ``instance`` ``p`` (the ``Pizza`` instance being modified)
  222. ``action`` ``"pre_add"`` (followed by a separate signal with ``"post_add"``)
  223. ``reverse`` ``False`` (``Pizza`` contains the
  224. :class:`~django.db.models.ManyToManyField`, so this call
  225. modifies the forward relation)
  226. ``model`` ``Topping`` (the class of the objects added to the
  227. ``Pizza``)
  228. ``pk_set`` ``{t.id}`` (since only ``Topping t`` was added to the relation)
  229. ``using`` ``"default"`` (since the default router sends writes here)
  230. ============== ============================================================
  231. And if we would then do something like this::
  232. >>> t.pizza_set.remove(p)
  233. the arguments sent to a :data:`m2m_changed` handler would be:
  234. ============== ============================================================
  235. Argument Value
  236. ============== ============================================================
  237. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  238. ``instance`` ``t`` (the ``Topping`` instance being modified)
  239. ``action`` ``"pre_remove"`` (followed by a separate signal with ``"post_remove"``)
  240. ``reverse`` ``True`` (``Pizza`` contains the
  241. :class:`~django.db.models.ManyToManyField`, so this call
  242. modifies the reverse relation)
  243. ``model`` ``Pizza`` (the class of the objects removed from the
  244. ``Topping``)
  245. ``pk_set`` ``{p.id}`` (since only ``Pizza p`` was removed from the
  246. relation)
  247. ``using`` ``"default"`` (since the default router sends writes here)
  248. ============== ============================================================
  249. ``class_prepared``
  250. ------------------
  251. .. data:: django.db.models.signals.class_prepared
  252. :module:
  253. Sent whenever a model class has been "prepared" -- that is, once model has
  254. been defined and registered with Django's model system. Django uses this
  255. signal internally; it's not generally used in third-party applications.
  256. Since this signal is sent during the app registry population process, and
  257. :meth:`AppConfig.ready() <django.apps.AppConfig.ready>` runs after the app
  258. registry is fully populated, receivers cannot be connected in that method.
  259. One possibility is to connect them ``AppConfig.__init__()`` instead, taking
  260. care not to import models or trigger calls to the app registry.
  261. Arguments that are sent with this signal:
  262. ``sender``
  263. The model class which was just prepared.
  264. Management signals
  265. ==================
  266. Signals sent by :doc:`django-admin </ref/django-admin>`.
  267. ``pre_migrate``
  268. ---------------
  269. .. data:: django.db.models.signals.pre_migrate
  270. :module:
  271. Sent by the :djadmin:`migrate` command before it starts to install an
  272. application. It's not emitted for applications that lack a ``models`` module.
  273. Arguments sent with this signal:
  274. ``sender``
  275. An :class:`~django.apps.AppConfig` instance for the application about to
  276. be migrated/synced.
  277. ``app_config``
  278. Same as ``sender``.
  279. ``verbosity``
  280. Indicates how much information manage.py is printing on screen. See
  281. the :option:`--verbosity` flag for details.
  282. Functions which listen for :data:`pre_migrate` should adjust what they
  283. output to the screen based on the value of this argument.
  284. ``interactive``
  285. If ``interactive`` is ``True``, it's safe to prompt the user to input
  286. things on the command line. If ``interactive`` is ``False``, functions
  287. which listen for this signal should not try to prompt for anything.
  288. For example, the :mod:`django.contrib.auth` app only prompts to create a
  289. superuser when ``interactive`` is ``True``.
  290. ``using``
  291. The alias of database on which a command will operate.
  292. ``plan``
  293. The migration plan that is going to be used for the migration run. While
  294. the plan is not public API, this allows for the rare cases when it is
  295. necessary to know the plan. A plan is a list of two-tuples with the first
  296. item being the instance of a migration class and the second item showing
  297. if the migration was rolled back (``True``) or applied (``False``).
  298. ``apps``
  299. An instance of :data:`Apps <django.apps>` containing the state of the
  300. project before the migration run. It should be used instead of the global
  301. :attr:`apps <django.apps.apps>` registry to retrieve the models you
  302. want to perform operations on.
  303. ``post_migrate``
  304. ----------------
  305. .. data:: django.db.models.signals.post_migrate
  306. :module:
  307. Sent at the end of the :djadmin:`migrate` (even if no migrations are run) and
  308. :djadmin:`flush` commands. It's not emitted for applications that lack a
  309. ``models`` module.
  310. Handlers of this signal must not perform database schema alterations as doing
  311. so may cause the :djadmin:`flush` command to fail if it runs during the
  312. :djadmin:`migrate` command.
  313. Arguments sent with this signal:
  314. ``sender``
  315. An :class:`~django.apps.AppConfig` instance for the application that was
  316. just installed.
  317. ``app_config``
  318. Same as ``sender``.
  319. ``verbosity``
  320. Indicates how much information manage.py is printing on screen. See
  321. the :option:`--verbosity` flag for details.
  322. Functions which listen for :data:`post_migrate` should adjust what they
  323. output to the screen based on the value of this argument.
  324. ``interactive``
  325. If ``interactive`` is ``True``, it's safe to prompt the user to input
  326. things on the command line. If ``interactive`` is ``False``, functions
  327. which listen for this signal should not try to prompt for anything.
  328. For example, the :mod:`django.contrib.auth` app only prompts to create a
  329. superuser when ``interactive`` is ``True``.
  330. ``using``
  331. The database alias used for synchronization. Defaults to the ``default``
  332. database.
  333. ``plan``
  334. The migration plan that was used for the migration run. While the plan is
  335. not public API, this allows for the rare cases when it is necessary to
  336. know the plan. A plan is a list of two-tuples with the first item being
  337. the instance of a migration class and the second item showing if the
  338. migration was rolled back (``True``) or applied (``False``).
  339. ``apps``
  340. An instance of :data:`Apps <django.apps.apps>` containing the state of the
  341. project after the migration run. It should be used instead of the global
  342. :attr:`apps <django.apps.apps>` registry to retrieve the models you
  343. want to perform operations on.
  344. For example, you could register a callback in an
  345. :class:`~django.apps.AppConfig` like this::
  346. from django.apps import AppConfig
  347. from django.db.models.signals import post_migrate
  348. def my_callback(sender, **kwargs):
  349. # Your specific logic here
  350. pass
  351. class MyAppConfig(AppConfig):
  352. ...
  353. def ready(self):
  354. post_migrate.connect(my_callback, sender=self)
  355. .. note::
  356. If you provide an :class:`~django.apps.AppConfig` instance as the sender
  357. argument, please ensure that the signal is registered in
  358. :meth:`~django.apps.AppConfig.ready`. ``AppConfig``\s are recreated for
  359. tests that run with a modified set of :setting:`INSTALLED_APPS` (such as
  360. when settings are overridden) and such signals should be connected for each
  361. new ``AppConfig`` instance.
  362. Request/response signals
  363. ========================
  364. .. module:: django.core.signals
  365. :synopsis: Core signals sent by the request/response system.
  366. Signals sent by the core framework when processing a request.
  367. ``request_started``
  368. -------------------
  369. .. data:: django.core.signals.request_started
  370. :module:
  371. Sent when Django begins processing an HTTP request.
  372. Arguments sent with this signal:
  373. ``sender``
  374. The handler class -- e.g. ``django.core.handlers.wsgi.WsgiHandler`` -- that
  375. handled the request.
  376. ``environ``
  377. The ``environ`` dictionary provided to the request.
  378. ``request_finished``
  379. --------------------
  380. .. data:: django.core.signals.request_finished
  381. :module:
  382. Sent when Django finishes delivering an HTTP response to the client.
  383. Arguments sent with this signal:
  384. ``sender``
  385. The handler class, as above.
  386. ``got_request_exception``
  387. -------------------------
  388. .. data:: django.core.signals.got_request_exception
  389. :module:
  390. This signal is sent whenever Django encounters an exception while processing an incoming HTTP request.
  391. Arguments sent with this signal:
  392. ``sender``
  393. Unused (always ``None``).
  394. ``request``
  395. The :class:`~django.http.HttpRequest` object.
  396. Test signals
  397. ============
  398. .. module:: django.test.signals
  399. :synopsis: Signals sent during testing.
  400. Signals only sent when :ref:`running tests <running-tests>`.
  401. ``setting_changed``
  402. -------------------
  403. .. data:: django.test.signals.setting_changed
  404. :module:
  405. This signal is sent when the value of a setting is changed through the
  406. ``django.test.TestCase.settings()`` context manager or the
  407. :func:`django.test.override_settings` decorator/context manager.
  408. It's actually sent twice: when the new value is applied ("setup") and when the
  409. original value is restored ("teardown"). Use the ``enter`` argument to
  410. distinguish between the two.
  411. You can also import this signal from ``django.core.signals`` to avoid importing
  412. from ``django.test`` in non-test situations.
  413. Arguments sent with this signal:
  414. ``sender``
  415. The settings handler.
  416. ``setting``
  417. The name of the setting.
  418. ``value``
  419. The value of the setting after the change. For settings that initially
  420. don't exist, in the "teardown" phase, ``value`` is ``None``.
  421. ``enter``
  422. A boolean; ``True`` if the setting is applied, ``False`` if restored.
  423. ``template_rendered``
  424. ---------------------
  425. .. data:: django.test.signals.template_rendered
  426. :module:
  427. Sent when the test system renders a template. This signal is not emitted during
  428. normal operation of a Django server -- it is only available during testing.
  429. Arguments sent with this signal:
  430. ``sender``
  431. The :class:`~django.template.Template` object which was rendered.
  432. ``template``
  433. Same as sender
  434. ``context``
  435. The :class:`~django.template.Context` with which the template was
  436. rendered.
  437. Database Wrappers
  438. =================
  439. .. module:: django.db.backends
  440. :synopsis: Core signals sent by the database wrapper.
  441. Signals sent by the database wrapper when a database connection is
  442. initiated.
  443. ``connection_created``
  444. ----------------------
  445. .. data:: django.db.backends.signals.connection_created
  446. :module:
  447. Sent when the database wrapper makes the initial connection to the
  448. database. This is particularly useful if you'd like to send any post
  449. connection commands to the SQL backend.
  450. Arguments sent with this signal:
  451. ``sender``
  452. The database wrapper class -- i.e.
  453. ``django.db.backends.postgresql.DatabaseWrapper`` or
  454. ``django.db.backends.mysql.DatabaseWrapper``, etc.
  455. ``connection``
  456. The database connection that was opened. This can be used in a
  457. multiple-database configuration to differentiate connection signals
  458. from different databases.