signals.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  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`` and ``post_add`` actions, this is a set of primary key
  192. values that will be, or have been, added to the relation. This may be a
  193. subset of the values submitted to be added, since inserts must filter
  194. existing values in order to avoid a database ``IntegrityError``.
  195. For the ``pre_remove`` and ``post_remove`` actions, this is a set of
  196. primary key values that was submitted to be removed from the relation. This
  197. is not dependent on whether the values actually will be, or have been,
  198. removed. In particular, non-existent values may be submitted, and will
  199. appear in ``pk_set``, even though they have no effect on the database.
  200. For the ``pre_clear`` and ``post_clear`` actions, this is ``None``.
  201. ``using``
  202. The database alias being used.
  203. For example, if a ``Pizza`` can have multiple ``Topping`` objects, modeled
  204. like this::
  205. class Topping(models.Model):
  206. # ...
  207. pass
  208. class Pizza(models.Model):
  209. # ...
  210. toppings = models.ManyToManyField(Topping)
  211. If we connected a handler like this::
  212. from django.db.models.signals import m2m_changed
  213. def toppings_changed(sender, **kwargs):
  214. # Do something
  215. pass
  216. m2m_changed.connect(toppings_changed, sender=Pizza.toppings.through)
  217. and then did something like this::
  218. >>> p = Pizza.objects.create(...)
  219. >>> t = Topping.objects.create(...)
  220. >>> p.toppings.add(t)
  221. the arguments sent to a :data:`m2m_changed` handler (``toppings_changed`` in
  222. the example above) would be:
  223. ============== ============================================================
  224. Argument Value
  225. ============== ============================================================
  226. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  227. ``instance`` ``p`` (the ``Pizza`` instance being modified)
  228. ``action`` ``"pre_add"`` (followed by a separate signal with ``"post_add"``)
  229. ``reverse`` ``False`` (``Pizza`` contains the
  230. :class:`~django.db.models.ManyToManyField`, so this call
  231. modifies the forward relation)
  232. ``model`` ``Topping`` (the class of the objects added to the
  233. ``Pizza``)
  234. ``pk_set`` ``{t.id}`` (since only ``Topping t`` was added to the relation)
  235. ``using`` ``"default"`` (since the default router sends writes here)
  236. ============== ============================================================
  237. And if we would then do something like this::
  238. >>> t.pizza_set.remove(p)
  239. the arguments sent to a :data:`m2m_changed` handler would be:
  240. ============== ============================================================
  241. Argument Value
  242. ============== ============================================================
  243. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  244. ``instance`` ``t`` (the ``Topping`` instance being modified)
  245. ``action`` ``"pre_remove"`` (followed by a separate signal with ``"post_remove"``)
  246. ``reverse`` ``True`` (``Pizza`` contains the
  247. :class:`~django.db.models.ManyToManyField`, so this call
  248. modifies the reverse relation)
  249. ``model`` ``Pizza`` (the class of the objects removed from the
  250. ``Topping``)
  251. ``pk_set`` ``{p.id}`` (since only ``Pizza p`` was removed from the
  252. relation)
  253. ``using`` ``"default"`` (since the default router sends writes here)
  254. ============== ============================================================
  255. ``class_prepared``
  256. ------------------
  257. .. data:: django.db.models.signals.class_prepared
  258. :module:
  259. Sent whenever a model class has been "prepared" -- that is, once model has
  260. been defined and registered with Django's model system. Django uses this
  261. signal internally; it's not generally used in third-party applications.
  262. Since this signal is sent during the app registry population process, and
  263. :meth:`AppConfig.ready() <django.apps.AppConfig.ready>` runs after the app
  264. registry is fully populated, receivers cannot be connected in that method.
  265. One possibility is to connect them ``AppConfig.__init__()`` instead, taking
  266. care not to import models or trigger calls to the app registry.
  267. Arguments that are sent with this signal:
  268. ``sender``
  269. The model class which was just prepared.
  270. Management signals
  271. ==================
  272. Signals sent by :doc:`django-admin </ref/django-admin>`.
  273. ``pre_migrate``
  274. ---------------
  275. .. data:: django.db.models.signals.pre_migrate
  276. :module:
  277. Sent by the :djadmin:`migrate` command before it starts to install an
  278. application. It's not emitted for applications that lack a ``models`` module.
  279. Arguments sent with this signal:
  280. ``sender``
  281. An :class:`~django.apps.AppConfig` instance for the application about to
  282. be migrated/synced.
  283. ``app_config``
  284. Same as ``sender``.
  285. ``verbosity``
  286. Indicates how much information manage.py is printing on screen. See
  287. the :option:`--verbosity` flag for details.
  288. Functions which listen for :data:`pre_migrate` should adjust what they
  289. output to the screen based on the value of this argument.
  290. ``interactive``
  291. If ``interactive`` is ``True``, it's safe to prompt the user to input
  292. things on the command line. If ``interactive`` is ``False``, functions
  293. which listen for this signal should not try to prompt for anything.
  294. For example, the :mod:`django.contrib.auth` app only prompts to create a
  295. superuser when ``interactive`` is ``True``.
  296. ``using``
  297. The alias of database on which a command will operate.
  298. ``plan``
  299. The migration plan that is going to be used for the migration run. While
  300. the plan is not public API, this allows for the rare cases when it is
  301. necessary to know the plan. A plan is a list of two-tuples with the first
  302. item being the instance of a migration class and the second item showing
  303. if the migration was rolled back (``True``) or applied (``False``).
  304. ``apps``
  305. An instance of :data:`Apps <django.apps>` containing the state of the
  306. project before the migration run. It should be used instead of the global
  307. :attr:`apps <django.apps.apps>` registry to retrieve the models you
  308. want to perform operations on.
  309. ``post_migrate``
  310. ----------------
  311. .. data:: django.db.models.signals.post_migrate
  312. :module:
  313. Sent at the end of the :djadmin:`migrate` (even if no migrations are run) and
  314. :djadmin:`flush` commands. It's not emitted for applications that lack a
  315. ``models`` module.
  316. Handlers of this signal must not perform database schema alterations as doing
  317. so may cause the :djadmin:`flush` command to fail if it runs during the
  318. :djadmin:`migrate` command.
  319. Arguments sent with this signal:
  320. ``sender``
  321. An :class:`~django.apps.AppConfig` instance for the application that was
  322. just installed.
  323. ``app_config``
  324. Same as ``sender``.
  325. ``verbosity``
  326. Indicates how much information manage.py is printing on screen. See
  327. the :option:`--verbosity` flag for details.
  328. Functions which listen for :data:`post_migrate` should adjust what they
  329. output to the screen based on the value of this argument.
  330. ``interactive``
  331. If ``interactive`` is ``True``, it's safe to prompt the user to input
  332. things on the command line. If ``interactive`` is ``False``, functions
  333. which listen for this signal should not try to prompt for anything.
  334. For example, the :mod:`django.contrib.auth` app only prompts to create a
  335. superuser when ``interactive`` is ``True``.
  336. ``using``
  337. The database alias used for synchronization. Defaults to the ``default``
  338. database.
  339. ``plan``
  340. The migration plan that was used for the migration run. While the plan is
  341. not public API, this allows for the rare cases when it is necessary to
  342. know the plan. A plan is a list of two-tuples with the first item being
  343. the instance of a migration class and the second item showing if the
  344. migration was rolled back (``True``) or applied (``False``).
  345. ``apps``
  346. An instance of :data:`Apps <django.apps.apps>` containing the state of the
  347. project after the migration run. It should be used instead of the global
  348. :attr:`apps <django.apps.apps>` registry to retrieve the models you
  349. want to perform operations on.
  350. For example, you could register a callback in an
  351. :class:`~django.apps.AppConfig` like this::
  352. from django.apps import AppConfig
  353. from django.db.models.signals import post_migrate
  354. def my_callback(sender, **kwargs):
  355. # Your specific logic here
  356. pass
  357. class MyAppConfig(AppConfig):
  358. ...
  359. def ready(self):
  360. post_migrate.connect(my_callback, sender=self)
  361. .. note::
  362. If you provide an :class:`~django.apps.AppConfig` instance as the sender
  363. argument, please ensure that the signal is registered in
  364. :meth:`~django.apps.AppConfig.ready`. ``AppConfig``\s are recreated for
  365. tests that run with a modified set of :setting:`INSTALLED_APPS` (such as
  366. when settings are overridden) and such signals should be connected for each
  367. new ``AppConfig`` instance.
  368. Request/response signals
  369. ========================
  370. .. module:: django.core.signals
  371. :synopsis: Core signals sent by the request/response system.
  372. Signals sent by the core framework when processing a request.
  373. ``request_started``
  374. -------------------
  375. .. data:: django.core.signals.request_started
  376. :module:
  377. Sent when Django begins processing an HTTP request.
  378. Arguments sent with this signal:
  379. ``sender``
  380. The handler class -- e.g. ``django.core.handlers.wsgi.WsgiHandler`` -- that
  381. handled the request.
  382. ``environ``
  383. The ``environ`` dictionary provided to the request.
  384. ``request_finished``
  385. --------------------
  386. .. data:: django.core.signals.request_finished
  387. :module:
  388. Sent when Django finishes delivering an HTTP response to the client.
  389. Arguments sent with this signal:
  390. ``sender``
  391. The handler class, as above.
  392. ``got_request_exception``
  393. -------------------------
  394. .. data:: django.core.signals.got_request_exception
  395. :module:
  396. This signal is sent whenever Django encounters an exception while processing an incoming HTTP request.
  397. Arguments sent with this signal:
  398. ``sender``
  399. Unused (always ``None``).
  400. ``request``
  401. The :class:`~django.http.HttpRequest` object.
  402. Test signals
  403. ============
  404. .. module:: django.test.signals
  405. :synopsis: Signals sent during testing.
  406. Signals only sent when :ref:`running tests <running-tests>`.
  407. ``setting_changed``
  408. -------------------
  409. .. data:: django.test.signals.setting_changed
  410. :module:
  411. This signal is sent when the value of a setting is changed through the
  412. ``django.test.TestCase.settings()`` context manager or the
  413. :func:`django.test.override_settings` decorator/context manager.
  414. It's actually sent twice: when the new value is applied ("setup") and when the
  415. original value is restored ("teardown"). Use the ``enter`` argument to
  416. distinguish between the two.
  417. You can also import this signal from ``django.core.signals`` to avoid importing
  418. from ``django.test`` in non-test situations.
  419. Arguments sent with this signal:
  420. ``sender``
  421. The settings handler.
  422. ``setting``
  423. The name of the setting.
  424. ``value``
  425. The value of the setting after the change. For settings that initially
  426. don't exist, in the "teardown" phase, ``value`` is ``None``.
  427. ``enter``
  428. A boolean; ``True`` if the setting is applied, ``False`` if restored.
  429. ``template_rendered``
  430. ---------------------
  431. .. data:: django.test.signals.template_rendered
  432. :module:
  433. Sent when the test system renders a template. This signal is not emitted during
  434. normal operation of a Django server -- it is only available during testing.
  435. Arguments sent with this signal:
  436. ``sender``
  437. The :class:`~django.template.Template` object which was rendered.
  438. ``template``
  439. Same as sender
  440. ``context``
  441. The :class:`~django.template.Context` with which the template was
  442. rendered.
  443. Database Wrappers
  444. =================
  445. .. module:: django.db.backends
  446. :synopsis: Core signals sent by the database wrapper.
  447. Signals sent by the database wrapper when a database connection is
  448. initiated.
  449. ``connection_created``
  450. ----------------------
  451. .. data:: django.db.backends.signals.connection_created
  452. :module:
  453. Sent when the database wrapper makes the initial connection to the
  454. database. This is particularly useful if you'd like to send any post
  455. connection commands to the SQL backend.
  456. Arguments sent with this signal:
  457. ``sender``
  458. The database wrapper class -- i.e.
  459. ``django.db.backends.postgresql.DatabaseWrapper`` or
  460. ``django.db.backends.mysql.DatabaseWrapper``, etc.
  461. ``connection``
  462. The database connection that was opened. This can be used in a
  463. multiple-database configuration to differentiate connection signals
  464. from different databases.