signals.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. =======
  2. Signals
  3. =======
  4. A list of all the signals that Django sends.
  5. .. seealso::
  6. See the documentation on the :doc:`signal dispatcher </topics/signals>` for
  7. information regarding how to register for and receive signals.
  8. The :doc:`comment framework </ref/contrib/comments/index>` sends a :doc:`set
  9. of comment-related signals </ref/contrib/comments/signals>`.
  10. The :ref:`authentication framework <topics-auth>` sends :ref:`signals when
  11. a user is logged in / out <topics-auth-signals>`.
  12. Model signals
  13. =============
  14. .. module:: django.db.models.signals
  15. :synopsis: Signals sent by the model system.
  16. The :mod:`django.db.models.signals` module defines a set of signals sent by the
  17. module system.
  18. .. warning::
  19. Many of these signals are sent by various model methods like
  20. :meth:`~django.db.models.Model.__init__` or
  21. :meth:`~django.db.models.Model.save` that you can overwrite in your own
  22. code.
  23. If you override these methods on your model, you must call the parent class'
  24. methods for this signals to be sent.
  25. Note also that Django stores signal handlers as weak references by default,
  26. so if your handler is a local function, it may be garbage collected. To
  27. prevent this, pass ``weak=False`` when you call the signal's :meth:`~django.dispatch.Signal.connect`.
  28. pre_init
  29. --------
  30. .. attribute:: django.db.models.signals.pre_init
  31. :module:
  32. .. ^^^^^^^ this :module: hack keeps Sphinx from prepending the module.
  33. Whenever you instantiate a Django model,, this signal is sent at the beginning
  34. of the model's :meth:`~django.db.models.Model.__init__` method.
  35. Arguments sent with this signal:
  36. ``sender``
  37. The model class that just had an instance created.
  38. ``args``
  39. A list of positional arguments passed to
  40. :meth:`~django.db.models.Model.__init__`:
  41. ``kwargs``
  42. A dictionary of keyword arguments passed to
  43. :meth:`~django.db.models.Model.__init__`:.
  44. For example, the :doc:`tutorial </intro/tutorial01>` has this line:
  45. .. code-block:: python
  46. p = Poll(question="What's up?", pub_date=datetime.now())
  47. The arguments sent to a :data:`pre_init` handler would be:
  48. ========== ===============================================================
  49. Argument Value
  50. ========== ===============================================================
  51. ``sender`` ``Poll`` (the class itself)
  52. ``args`` ``[]`` (an empty list because there were no positional
  53. arguments passed to ``__init__``.)
  54. ``kwargs`` ``{'question': "What's up?", 'pub_date': datetime.now()}``
  55. ========== ===============================================================
  56. post_init
  57. ---------
  58. .. data:: django.db.models.signals.post_init
  59. :module:
  60. Like pre_init, but this one is sent when the :meth:`~django.db.models.Model.__init__`: method finishes.
  61. Arguments sent with this signal:
  62. ``sender``
  63. As above: the model class that just had an instance created.
  64. ``instance``
  65. The actual instance of the model that's just been created.
  66. pre_save
  67. --------
  68. .. data:: django.db.models.signals.pre_save
  69. :module:
  70. This is sent at the beginning of a model's :meth:`~django.db.models.Model.save`
  71. method.
  72. Arguments sent with this signal:
  73. ``sender``
  74. The model class.
  75. ``instance``
  76. The actual instance being saved.
  77. ``using``
  78. The database alias being used.
  79. post_save
  80. ---------
  81. .. data:: django.db.models.signals.post_save
  82. :module:
  83. Like :data:`pre_save`, but sent at the end of the
  84. :meth:`~django.db.models.Model.save` method.
  85. Arguments sent with this signal:
  86. ``sender``
  87. The model class.
  88. ``instance``
  89. The actual instance being saved.
  90. ``created``
  91. A boolean; ``True`` if a new record was created.
  92. ``using``
  93. The database alias being used.
  94. pre_delete
  95. ----------
  96. .. data:: django.db.models.signals.pre_delete
  97. :module:
  98. Sent at the beginning of a model's :meth:`~django.db.models.Model.delete`
  99. method.
  100. Arguments sent with this signal:
  101. ``sender``
  102. The model class.
  103. ``instance``
  104. The actual instance being deleted.
  105. ``using``
  106. The database alias being used.
  107. post_delete
  108. -----------
  109. .. data:: django.db.models.signals.post_delete
  110. :module:
  111. Like :data:`pre_delete`, but sent at the end of the
  112. :meth:`~django.db.models.Model.delete` method.
  113. Arguments sent with this signal:
  114. ``sender``
  115. The model class.
  116. ``instance``
  117. The actual instance being deleted.
  118. Note that the object will no longer be in the database, so be very
  119. careful what you do with this instance.
  120. ``using``
  121. The database alias being used.
  122. m2m_changed
  123. -----------
  124. .. data:: django.db.models.signals.m2m_changed
  125. :module:
  126. .. versionadded:: 1.2
  127. Sent when a :class:`ManyToManyField` is changed on a model instance.
  128. Strictly speaking, this is not a model signal since it is sent by the
  129. :class:`ManyToManyField`, but since it complements the
  130. :data:`pre_save`/:data:`post_save` and :data:`pre_delete`/:data:`post_delete`
  131. when it comes to tracking changes to models, it is included here.
  132. Arguments sent with this signal:
  133. ``sender``
  134. The intermediate model class describing the :class:`ManyToManyField`.
  135. This class is automatically created when a many-to-many field is
  136. defined; you can access it using the ``through`` attribute on the
  137. many-to-many field.
  138. ``instance``
  139. The instance whose many-to-many relation is updated. This can be an
  140. instance of the ``sender``, or of the class the :class:`ManyToManyField`
  141. is related to.
  142. ``action``
  143. A string indicating the type of update that is done on the relation.
  144. This can be one of the following:
  145. ``"pre_add"``
  146. Sent *before* one or more objects are added to the relation
  147. ``"post_add"``
  148. Sent *after* one or more objects are added to the relation
  149. ``"pre_remove"``
  150. Sent *after* one or more objects are removed from the relation
  151. ``"post_remove"``
  152. Sent *after* one or more objects are removed from the relation
  153. ``"pre_clear"``
  154. Sent *before* the relation is cleared
  155. ``"post_clear"``
  156. Sent *after* the relation is cleared
  157. ``reverse``
  158. Indicates which side of the relation is updated (i.e., if it is the
  159. forward or reverse relation that is being modified).
  160. ``model``
  161. The class of the objects that are added to, removed from or cleared
  162. from the relation.
  163. ``pk_set``
  164. For the ``pre_add``, ``post_add``, ``pre_remove`` and ``post_remove``
  165. actions, this is a list of primary key values that have been added to
  166. or removed from the relation.
  167. For the ``pre_clear`` and ``post_clear`` actions, this is ``None``.
  168. ``using``
  169. The database alias being used.
  170. For example, if a ``Pizza`` can have multiple ``Topping`` objects, modeled
  171. like this:
  172. .. code-block:: python
  173. class Topping(models.Model):
  174. # ...
  175. class Pizza(models.Model):
  176. # ...
  177. toppings = models.ManyToManyField(Topping)
  178. If we would do something like this:
  179. .. code-block:: python
  180. >>> p = Pizza.object.create(...)
  181. >>> t = Topping.objects.create(...)
  182. >>> p.toppings.add(t)
  183. the arguments sent to a :data:`m2m_changed` handler would be:
  184. ============== ============================================================
  185. Argument Value
  186. ============== ============================================================
  187. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  188. ``instance`` ``p`` (the ``Pizza`` instance being modified)
  189. ``action`` ``"pre_add"`` (followed by a separate signal with ``"post_add"``)
  190. ``reverse`` ``False`` (``Pizza`` contains the :class:`ManyToManyField`,
  191. so this call modifies the forward relation)
  192. ``model`` ``Topping`` (the class of the objects added to the
  193. ``Pizza``)
  194. ``pk_set`` ``[t.id]`` (since only ``Topping t`` was added to the relation)
  195. ``using`` ``"default"`` (since the default router sends writes here)
  196. ============== ============================================================
  197. And if we would then do something like this:
  198. .. code-block:: python
  199. >>> t.pizza_set.remove(p)
  200. the arguments sent to a :data:`m2m_changed` handler would be:
  201. ============== ============================================================
  202. Argument Value
  203. ============== ============================================================
  204. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  205. ``instance`` ``t`` (the ``Topping`` instance being modified)
  206. ``action`` ``"pre_remove"`` (followed by a separate signal with ``"post_remove"``)
  207. ``reverse`` ``True`` (``Pizza`` contains the :class:`ManyToManyField`,
  208. so this call modifies the reverse relation)
  209. ``model`` ``Pizza`` (the class of the objects removed from the
  210. ``Topping``)
  211. ``pk_set`` ``[p.id]`` (since only ``Pizza p`` was removed from the
  212. relation)
  213. ``using`` ``"default"`` (since the default router sends writes here)
  214. ============== ============================================================
  215. class_prepared
  216. --------------
  217. .. data:: django.db.models.signals.class_prepared
  218. :module:
  219. Sent whenever a model class has been "prepared" -- that is, once model has
  220. been defined and registered with Django's model system. Django uses this
  221. signal internally; it's not generally used in third-party applications.
  222. Arguments that are sent with this signal:
  223. ``sender``
  224. The model class which was just prepared.
  225. Management signals
  226. ==================
  227. Signals sent by :doc:`django-admin </ref/django-admin>`.
  228. post_syncdb
  229. -----------
  230. .. data:: django.db.models.signals.post_syncdb
  231. :module:
  232. Sent by :djadmin:`syncdb` after it installs an application.
  233. Any handlers that listen to this signal need to be written in a particular
  234. place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If
  235. handlers are registered anywhere else they may not be loaded by
  236. :djadmin:`syncdb`.
  237. Arguments sent with this signal:
  238. ``sender``
  239. The ``models`` module that was just installed. That is, if
  240. :djadmin:`syncdb` just installed an app called ``"foo.bar.myapp"``,
  241. ``sender`` will be the ``foo.bar.myapp.models`` module.
  242. ``app``
  243. Same as ``sender``.
  244. ``created_models``
  245. A list of the model classes from any app which :djadmin:`syncdb` has
  246. created so far.
  247. ``verbosity``
  248. Indicates how much information manage.py is printing on screen. See
  249. the :djadminopt:`--verbosity` flag for details.
  250. Functions which listen for :data:`post_syncdb` should adjust what they
  251. output to the screen based on the value of this argument.
  252. ``interactive``
  253. If ``interactive`` is ``True``, it's safe to prompt the user to input
  254. things on the command line. If ``interactive`` is ``False``, functions
  255. which listen for this signal should not try to prompt for anything.
  256. For example, the :mod:`django.contrib.auth` app only prompts to create a
  257. superuser when ``interactive`` is ``True``.
  258. For example, yourapp/signals/__init__.py could be written like::
  259. from django.db.models.signals import post_syncdb
  260. import yourapp.models
  261. def my_callback(sender, **kwargs):
  262. # Your specific logic here
  263. pass
  264. post_syncdb.connect(my_callback, sender=yourapp.models)
  265. Request/response signals
  266. ========================
  267. .. module:: django.core.signals
  268. :synopsis: Core signals sent by the request/response system.
  269. Signals sent by the core framework when processing a request.
  270. request_started
  271. ---------------
  272. .. data:: django.core.signals.request_started
  273. :module:
  274. Sent when Django begins processing an HTTP request.
  275. Arguments sent with this signal:
  276. ``sender``
  277. The handler class -- e.g.
  278. :class:`django.core.handlers.wsgi.WsgiHandler` -- that handled
  279. the request.
  280. request_finished
  281. ----------------
  282. .. data:: django.core.signals.request_finished
  283. :module:
  284. Sent when Django finishes processing an HTTP request.
  285. Arguments sent with this signal:
  286. ``sender``
  287. The handler class, as above.
  288. got_request_exception
  289. ---------------------
  290. .. data:: django.core.signals.got_request_exception
  291. :module:
  292. This signal is sent whenever Django encounters an exception while processing an incoming HTTP request.
  293. Arguments sent with this signal:
  294. ``sender``
  295. The handler class, as above.
  296. ``request``
  297. The :class:`~django.http.HttpRequest` object.
  298. Test signals
  299. ============
  300. .. module:: django.test.signals
  301. :synopsis: Signals sent during testing.
  302. Signals only sent when :doc:`running tests </topics/testing>`.
  303. template_rendered
  304. -----------------
  305. .. data:: django.test.signals.template_rendered
  306. :module:
  307. Sent when the test system renders a template. This signal is not emitted during
  308. normal operation of a Django server -- it is only available during testing.
  309. Arguments sent with this signal:
  310. sender
  311. The :class:`~django.template.Template` object which was rendered.
  312. template
  313. Same as sender
  314. context
  315. The :class:`~django.template.Context` with which the template was
  316. rendered.
  317. Database Wrappers
  318. =================
  319. .. module:: django.db.backends
  320. :synopsis: Core signals sent by the database wrapper.
  321. Signals sent by the database wrapper when a database connection is
  322. initiated.
  323. connection_created
  324. ------------------
  325. .. data:: django.db.backends.signals.connection_created
  326. :module:
  327. .. versionchanged:: 1.2
  328. The connection argument was added
  329. Sent when the database wrapper makes the initial connection to the
  330. database. This is particularly useful if you'd like to send any post
  331. connection commands to the SQL backend.
  332. Arguments sent with this signal:
  333. sender
  334. The database wrapper class -- i.e.
  335. :class:`django.db.backends.postgresql_psycopg2.DatabaseWrapper` or
  336. :class:`django.db.backends.mysql.DatabaseWrapper`, etc.
  337. connection
  338. The database connection that was opened. This can be used in a
  339. multiple-database configuration to differentiate connection signals
  340. from different databases.