custom-model-fields.txt 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. .. _howto-custom-model-fields:
  2. ===========================
  3. Writing custom model fields
  4. ===========================
  5. .. versionadded:: 1.0
  6. Introduction
  7. ============
  8. The :ref:`model reference <topics-db-models>` documentation explains how to use
  9. Django's standard field classes -- :class:`~django.db.models.CharField`,
  10. :class:`~django.db.models.DateField`, etc. For many purposes, those classes are
  11. all you'll need. Sometimes, though, the Django version won't meet your precise
  12. requirements, or you'll want to use a field that is entirely different from
  13. those shipped with Django.
  14. Django's built-in field types don't cover every possible database column type --
  15. only the common types, such as ``VARCHAR`` and ``INTEGER``. For more obscure
  16. column types, such as geographic polygons or even user-created types such as
  17. `PostgreSQL custom types`_, you can define your own Django ``Field`` subclasses.
  18. .. _PostgreSQL custom types: http://www.postgresql.org/docs/8.2/interactive/sql-createtype.html
  19. Alternatively, you may have a complex Python object that can somehow be
  20. serialized to fit into a standard database column type. This is another case
  21. where a ``Field`` subclass will help you use your object with your models.
  22. Our example object
  23. ------------------
  24. Creating custom fields requires a bit of attention to detail. To make things
  25. easier to follow, we'll use a consistent example throughout this document:
  26. wrapping a Python object representing the deal of cards in a hand of Bridge_.
  27. Don't worry, you don't have know how to play Bridge to follow this example.
  28. You only need to know that 52 cards are dealt out equally to four players, who
  29. are traditionally called *north*, *east*, *south* and *west*. Our class looks
  30. something like this::
  31. class Hand(object):
  32. def __init__(self, north, east, south, west):
  33. # Input parameters are lists of cards ('Ah', '9s', etc)
  34. self.north = north
  35. self.east = east
  36. self.south = south
  37. self.west = west
  38. # ... (other possibly useful methods omitted) ...
  39. .. _Bridge: http://en.wikipedia.org/wiki/Contract_bridge
  40. This is just an ordinary Python class, with nothing Django-specific about it.
  41. We'd like to be able to do things like this in our models (we assume the
  42. ``hand`` attribute on the model is an instance of ``Hand``)::
  43. example = MyModel.objects.get(pk=1)
  44. print example.hand.north
  45. new_hand = Hand(north, east, south, west)
  46. example.hand = new_hand
  47. example.save()
  48. We assign to and retrieve from the ``hand`` attribute in our model just like
  49. any other Python class. The trick is to tell Django how to handle saving and
  50. loading such an object.
  51. In order to use the ``Hand`` class in our models, we **do not** have to change
  52. this class at all. This is ideal, because it means you can easily write
  53. model support for existing classes where you cannot change the source code.
  54. .. note::
  55. You might only be wanting to take advantage of custom database column
  56. types and deal with the data as standard Python types in your models;
  57. strings, or floats, for example. This case is similar to our ``Hand``
  58. example and we'll note any differences as we go along.
  59. Background theory
  60. =================
  61. Database storage
  62. ----------------
  63. The simplest way to think of a model field is that it provides a way to take a
  64. normal Python object -- string, boolean, ``datetime``, or something more
  65. complex like ``Hand`` -- and convert it to and from a format that is useful
  66. when dealing with the database (and serialization, but, as we'll see later,
  67. that falls out fairly naturally once you have the database side under control).
  68. Fields in a model must somehow be converted to fit into an existing database
  69. column type. Different databases provide different sets of valid column types,
  70. but the rule is still the same: those are the only types you have to work
  71. with. Anything you want to store in the database must fit into one of
  72. those types.
  73. Normally, you're either writing a Django field to match a particular database
  74. column type, or there's a fairly straightforward way to convert your data to,
  75. say, a string.
  76. For our ``Hand`` example, we could convert the card data to a string of 104
  77. characters by concatenating all the cards together in a pre-determined order --
  78. say, all the *north* cards first, then the *east*, *south* and *west* cards. So
  79. ``Hand`` objects can be saved to text or character columns in the database.
  80. What does a field class do?
  81. ---------------------------
  82. All of Django's fields (and when we say *fields* in this document, we always
  83. mean model fields and not :ref:`form fields <ref-forms-fields>`) are subclasses
  84. of :class:`django.db.models.Field`. Most of the information that Django records
  85. about a field is common to all fields -- name, help text, uniqueness and so
  86. forth. Storing all that information is handled by ``Field``. We'll get into the
  87. precise details of what ``Field`` can do later on; for now, suffice it to say
  88. that everything descends from ``Field`` and then customizes key pieces of the
  89. class behavior.
  90. It's important to realize that a Django field class is not what is stored in
  91. your model attributes. The model attributes contain normal Python objects. The
  92. field classes you define in a model are actually stored in the ``Meta`` class
  93. when the model class is created (the precise details of how this is done are
  94. unimportant here). This is because the field classes aren't necessary when
  95. you're just creating and modifying attributes. Instead, they provide the
  96. machinery for converting between the attribute value and what is stored in the
  97. database or sent to the :ref:`serializer <topics-serialization>`.
  98. Keep this in mind when creating your own custom fields. The Django ``Field``
  99. subclass you write provides the machinery for converting between your Python
  100. instances and the database/serializer values in various ways (there are
  101. differences between storing a value and using a value for lookups, for
  102. example). If this sounds a bit tricky, don't worry -- it will become clearer in
  103. the examples below. Just remember that you will often end up creating two
  104. classes when you want a custom field:
  105. * The first class is the Python object that your users will manipulate.
  106. They will assign it to the model attribute, they will read from it for
  107. displaying purposes, things like that. This is the ``Hand`` class in our
  108. example.
  109. * The second class is the ``Field`` subclass. This is the class that knows
  110. how to convert your first class back and forth between its permanent
  111. storage form and the Python form.
  112. Writing a field subclass
  113. ========================
  114. When planning your :class:`~django.db.models.Field` subclass, first give some
  115. thought to which existing :class:`~django.db.models.Field` class your new field
  116. is most similar to. Can you subclass an existing Django field and save yourself
  117. some work? If not, you should subclass the :class:`~django.db.models.Field`
  118. class, from which everything is descended.
  119. Initializing your new field is a matter of separating out any arguments that are
  120. specific to your case from the common arguments and passing the latter to the
  121. :meth:`~django.db.models.Field.__init__` method of
  122. :class:`~django.db.models.Field` (or your parent class).
  123. In our example, we'll call our field ``HandField``. (It's a good idea to call
  124. your :class:`~django.db.models.Field` subclass ``<Something>Field``, so it's
  125. easily identifiable as a :class:`~django.db.models.Field` subclass.) It doesn't
  126. behave like any existing field, so we'll subclass directly from
  127. :class:`~django.db.models.Field`::
  128. from django.db import models
  129. class HandField(models.Field):
  130. def __init__(self, *args, **kwargs):
  131. kwargs['max_length'] = 104
  132. super(HandField, self).__init__(*args, **kwargs)
  133. Our ``HandField`` accepts most of the standard field options (see the list
  134. below), but we ensure it has a fixed length, since it only needs to hold 52
  135. card values plus their suits; 104 characters in total.
  136. .. note::
  137. Many of Django's model fields accept options that they don't do anything
  138. with. For example, you can pass both
  139. :attr:`~django.db.models.Field.editable` and
  140. :attr:`~django.db.models.Field.auto_now` to a
  141. :class:`django.db.models.DateField` and it will simply ignore the
  142. :attr:`~django.db.models.Field.editable` parameter
  143. (:attr:`~django.db.models.Field.auto_now` being set implies
  144. ``editable=False``). No error is raised in this case.
  145. This behavior simplifies the field classes, because they don't need to
  146. check for options that aren't necessary. They just pass all the options to
  147. the parent class and then don't use them later on. It's up to you whether
  148. you want your fields to be more strict about the options they select, or
  149. to use the simpler, more permissive behavior of the current fields.
  150. The :meth:`~django.db.models.Field.__init__` method takes the following
  151. parameters:
  152. * :attr:`~django.db.models.Field.verbose_name`
  153. * :attr:`~django.db.models.Field.name`
  154. * :attr:`~django.db.models.Field.primary_key`
  155. * :attr:`~django.db.models.Field.max_length`
  156. * :attr:`~django.db.models.Field.unique`
  157. * :attr:`~django.db.models.Field.blank`
  158. * :attr:`~django.db.models.Field.null`
  159. * :attr:`~django.db.models.Field.db_index`
  160. * :attr:`~django.db.models.Field.core`
  161. * :attr:`~django.db.models.Field.rel`: Used for related fields (like
  162. :class:`ForeignKey`). For advanced use only.
  163. * :attr:`~django.db.models.Field.default`
  164. * :attr:`~django.db.models.Field.editable`
  165. * :attr:`~django.db.models.Field.serialize`: If ``False``, the field will
  166. not be serialized when the model is passed to Django's :ref:`serializers
  167. <topics-serialization>`. Defaults to ``True``.
  168. * :attr:`~django.db.models.Field.prepopulate_from`
  169. * :attr:`~django.db.models.Field.unique_for_date`
  170. * :attr:`~django.db.models.Field.unique_for_month`
  171. * :attr:`~django.db.models.Field.unique_for_year`
  172. * :attr:`~django.db.models.Field.choices`
  173. * :attr:`~django.db.models.Field.help_text`
  174. * :attr:`~django.db.models.Field.db_column`
  175. * :attr:`~django.db.models.Field.db_tablespace`: Currently only used with
  176. the Oracle backend and only for index creation. You can usually ignore
  177. this option.
  178. All of the options without an explanation in the above list have the same
  179. meaning they do for normal Django fields. See the :ref:`field documentation
  180. <ref-models-fields>` for examples and details.
  181. The ``SubfieldBase`` metaclass
  182. ------------------------------
  183. As we indicated in the introduction_, field subclasses are often needed for
  184. two reasons: either to take advantage of a custom database column type, or to
  185. handle complex Python types. Obviously, a combination of the two is also
  186. possible. If you're only working with custom database column types and your
  187. model fields appear in Python as standard Python types direct from the
  188. database backend, you don't need to worry about this section.
  189. If you're handling custom Python types, such as our ``Hand`` class, we need to
  190. make sure that when Django initializes an instance of our model and assigns a
  191. database value to our custom field attribute, we convert that value into the
  192. appropriate Python object. The details of how this happens internally are a
  193. little complex, but the code you need to write in your ``Field`` class is
  194. simple: make sure your field subclass uses a special metaclass:
  195. .. class:: django.db.models.SubfieldBase
  196. For example::
  197. class HandField(models.Field):
  198. __metaclass__ = models.SubfieldBase
  199. def __init__(self, *args, **kwargs):
  200. # ...
  201. This ensures that the :meth:`to_python` method, documented below, will always be
  202. called when the attribute is initialized.
  203. Useful methods
  204. --------------
  205. Once you've created your :class:`~django.db.models.Field` subclass and set up
  206. the ``__metaclass__``, you might consider overriding a few standard methods,
  207. depending on your field's behavior. The list of methods below is in
  208. approximately decreasing order of importance, so start from the top.
  209. Custom database types
  210. ~~~~~~~~~~~~~~~~~~~~~
  211. .. method:: db_type(self)
  212. Returns the database column data type for the :class:`~django.db.models.Field`,
  213. taking into account the current :setting:`DATABASE_ENGINE` setting.
  214. Say you've created a PostgreSQL custom type called ``mytype``. You can use this
  215. field with Django by subclassing ``Field`` and implementing the :meth:`db_type`
  216. method, like so::
  217. from django.db import models
  218. class MytypeField(models.Field):
  219. def db_type(self):
  220. return 'mytype'
  221. Once you have ``MytypeField``, you can use it in any model, just like any other
  222. ``Field`` type::
  223. class Person(models.Model):
  224. name = models.CharField(max_length=80)
  225. gender = models.CharField(max_length=1)
  226. something_else = MytypeField()
  227. If you aim to build a database-agnostic application, you should account for
  228. differences in database column types. For example, the date/time column type
  229. in PostgreSQL is called ``timestamp``, while the same column in MySQL is called
  230. ``datetime``. The simplest way to handle this in a ``db_type()`` method is to
  231. import the Django settings module and check the :setting:`DATABASE_ENGINE` setting.
  232. For example::
  233. class MyDateField(models.Field):
  234. def db_type(self):
  235. from django.conf import settings
  236. if settings.DATABASE_ENGINE == 'mysql':
  237. return 'datetime'
  238. else:
  239. return 'timestamp'
  240. The :meth:`db_type` method is only called by Django when the framework
  241. constructs the ``CREATE TABLE`` statements for your application -- that is, when
  242. you first create your tables. It's not called at any other time, so it can
  243. afford to execute slightly complex code, such as the :setting:`DATABASE_ENGINE`
  244. check in the above example.
  245. Some database column types accept parameters, such as ``CHAR(25)``, where the
  246. parameter ``25`` represents the maximum column length. In cases like these,
  247. it's more flexible if the parameter is specified in the model rather than being
  248. hard-coded in the ``db_type()`` method. For example, it wouldn't make much
  249. sense to have a ``CharMaxlength25Field``, shown here::
  250. # This is a silly example of hard-coded parameters.
  251. class CharMaxlength25Field(models.Field):
  252. def db_type(self):
  253. return 'char(25)'
  254. # In the model:
  255. class MyModel(models.Model):
  256. # ...
  257. my_field = CharMaxlength25Field()
  258. The better way of doing this would be to make the parameter specifiable at run
  259. time -- i.e., when the class is instantiated. To do that, just implement
  260. :meth:`django.db.models.Field.__init__`, like so::
  261. # This is a much more flexible example.
  262. class BetterCharField(models.Field):
  263. def __init__(self, max_length, *args, **kwargs):
  264. self.max_length = max_length
  265. super(BetterCharField, self).__init__(*args, **kwargs)
  266. def db_type(self):
  267. return 'char(%s)' % self.max_length
  268. # In the model:
  269. class MyModel(models.Model):
  270. # ...
  271. my_field = BetterCharField(25)
  272. Finally, if your column requires truly complex SQL setup, return ``None`` from
  273. :meth:`db_type`. This will cause Django's SQL creation code to skip over this
  274. field. You are then responsible for creating the column in the right table in
  275. some other way, of course, but this gives you a way to tell Django to get out of
  276. the way.
  277. Converting database values to Python objects
  278. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  279. .. method:: to_python(self, value)
  280. Converts a value as returned by your database (or a serializer) to a Python
  281. object.
  282. The default implementation simply returns ``value``, for the common case in
  283. which the database backend already returns data in the correct format (as a
  284. Python string, for example).
  285. If your custom :class:`~django.db.models.Field` class deals with data structures
  286. that are more complex than strings, dates, integers or floats, then you'll need
  287. to override this method. As a general rule, the method should deal gracefully
  288. with any of the following arguments:
  289. * An instance of the correct type (e.g., ``Hand`` in our ongoing example).
  290. * A string (e.g., from a deserializer).
  291. * Whatever the database returns for the column type you're using.
  292. In our ``HandField`` class, we're storing the data as a VARCHAR field in the
  293. database, so we need to be able to process strings and ``Hand`` instances in
  294. :meth:`to_python`::
  295. import re
  296. class HandField(models.Field):
  297. # ...
  298. def to_python(self, value):
  299. if isinstance(value, Hand):
  300. return value
  301. # The string case.
  302. p1 = re.compile('.{26}')
  303. p2 = re.compile('..')
  304. args = [p2.findall(x) for x in p1.findall(value)]
  305. return Hand(*args)
  306. Notice that we always return a ``Hand`` instance from this method. That's the
  307. Python object type we want to store in the model's attribute.
  308. **Remember:** If your custom field needs the :meth:`to_python` method to be
  309. called when it is created, you should be using `The SubfieldBase metaclass`_
  310. mentioned earlier. Otherwise :meth:`to_python` won't be called automatically.
  311. Converting Python objects to database values
  312. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  313. .. method:: get_db_prep_value(self, value)
  314. This is the reverse of :meth:`to_python` when working with the database backends
  315. (as opposed to serialization). The ``value`` parameter is the current value of
  316. the model's attribute (a field has no reference to its containing model, so it
  317. cannot retrieve the value itself), and the method should return data in a format
  318. that can be used as a parameter in a query for the database backend.
  319. For example::
  320. class HandField(models.Field):
  321. # ...
  322. def get_db_prep_value(self, value):
  323. return ''.join([''.join(l) for l in (value.north,
  324. value.east, value.south, value.west)])
  325. .. method:: get_db_prep_save(self, value)
  326. Same as the above, but called when the Field value must be *saved* to the
  327. database. As the default implementation just calls ``get_db_prep_value``, you
  328. shouldn't need to implement this method unless your custom field needs a
  329. special conversion when being saved that is not the same as the conversion used
  330. for normal query parameters (which is implemented by ``get_db_prep_value``).
  331. Preprocessing values before saving
  332. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  333. .. method:: pre_save(self, model_instance, add)
  334. This method is called just prior to :meth:`get_db_prep_save` and should return
  335. the value of the appropriate attribute from ``model_instance`` for this field.
  336. The attribute name is in ``self.attname`` (this is set up by
  337. :class:`~django.db.models.Field`). If the model is being saved to the database
  338. for the first time, the ``add`` parameter will be ``True``, otherwise it will be
  339. ``False``.
  340. You only need to override this method if you want to preprocess the value
  341. somehow, just before saving. For example, Django's
  342. :class:`~django.db.models.DateTimeField` uses this method to set the attribute
  343. correctly in the case of :attr:`~django.db.models.Field.auto_now` or
  344. :attr:`~django.db.models.Field.auto_now_add`.
  345. If you do override this method, you must return the value of the attribute at
  346. the end. You should also update the model's attribute if you make any changes
  347. to the value so that code holding references to the model will always see the
  348. correct value.
  349. Preparing values for use in database lookups
  350. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  351. .. method:: get_db_prep_lookup(self, lookup_type, value)
  352. Prepares the ``value`` for passing to the database when used in a lookup (a
  353. ``WHERE`` constraint in SQL). The ``lookup_type`` will be one of the valid
  354. Django filter lookups: ``exact``, ``iexact``, ``contains``, ``icontains``,
  355. ``gt``, ``gte``, ``lt``, ``lte``, ``in``, ``startswith``, ``istartswith``,
  356. ``endswith``, ``iendswith``, ``range``, ``year``, ``month``, ``day``,
  357. ``isnull``, ``search``, ``regex``, and ``iregex``.
  358. Your method must be prepared to handle all of these ``lookup_type`` values and
  359. should raise either a ``ValueError`` if the ``value`` is of the wrong sort (a
  360. list when you were expecting an object, for example) or a ``TypeError`` if
  361. your field does not support that type of lookup. For many fields, you can get
  362. by with handling the lookup types that need special handling for your field
  363. and pass the rest of the :meth:`get_db_prep_lookup` method of the parent class.
  364. If you needed to implement ``get_db_prep_save()``, you will usually need to
  365. implement ``get_db_prep_lookup()``. If you don't, ``get_db_prep_value`` will be
  366. called by the default implementation, to manage ``exact``, ``gt``, ``gte``,
  367. ``lt``, ``lte``, ``in`` and ``range`` lookups.
  368. You may also want to implement this method to limit the lookup types that could
  369. be used with your custom field type.
  370. Note that, for ``range`` and ``in`` lookups, ``get_db_prep_lookup`` will receive
  371. a list of objects (presumably of the right type) and will need to convert them
  372. to a list of things of the right type for passing to the database. Most of the
  373. time, you can reuse ``get_db_prep_value()``, or at least factor out some common
  374. pieces.
  375. For example, the following code implements ``get_db_prep_lookup`` to limit the
  376. accepted lookup types to ``exact`` and ``in``::
  377. class HandField(models.Field):
  378. # ...
  379. def get_db_prep_lookup(self, lookup_type, value):
  380. # We only handle 'exact' and 'in'. All others are errors.
  381. if lookup_type == 'exact':
  382. return [self.get_db_prep_value(value)]
  383. elif lookup_type == 'in':
  384. return [self.get_db_prep_value(v) for v in value]
  385. else:
  386. raise TypeError('Lookup type %r not supported.' % lookup_type)
  387. Specifying the form field for a model field
  388. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  389. .. method:: formfield(self, form_class=forms.CharField, **kwargs)
  390. Returns the default form field to use when this field is displayed in a model.
  391. This method is called by the :class:`~django.forms.ModelForm` helper.
  392. All of the ``kwargs`` dictionary is passed directly to the form field's
  393. :meth:`~django.forms.Field__init__` method. Normally, all you need to do is
  394. set up a good default for the ``form_class`` argument and then delegate further
  395. handling to the parent class. This might require you to write a custom form
  396. field (and even a form widget). See the :ref:`forms documentation
  397. <topics-forms-index>` for information about this, and take a look at the code in
  398. :mod:`django.contrib.localflavor` for some examples of custom widgets.
  399. Continuing our ongoing example, we can write the :meth:`formfield` method as::
  400. class HandField(models.Field):
  401. # ...
  402. def formfield(self, **kwargs):
  403. # This is a fairly standard way to set up some defaults
  404. # while letting the caller override them.
  405. defaults = {'form_class': MyFormField}
  406. defaults.update(kwargs)
  407. return super(HandField, self).formfield(**defaults)
  408. This assumes we've imported a ``MyFormField`` field class (which has its own
  409. default widget). This document doesn't cover the details of writing custom form
  410. fields.
  411. .. _helper functions: ../forms/#generating-forms-for-models
  412. .. _forms documentation: ../forms/
  413. Emulating built-in field types
  414. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  415. .. method:: get_internal_type(self)
  416. Returns a string giving the name of the :class:`~django.db.models.Field`
  417. subclass we are emulating at the database level. This is used to determine the
  418. type of database column for simple cases.
  419. If you have created a :meth:`db_type` method, you don't need to worry about
  420. :meth:`get_internal_type` -- it won't be used much. Sometimes, though, your
  421. database storage is similar in type to some other field, so you can use that
  422. other field's logic to create the right column.
  423. For example::
  424. class HandField(models.Field):
  425. # ...
  426. def get_internal_type(self):
  427. return 'CharField'
  428. No matter which database backend we are using, this will mean that ``syncdb``
  429. and other SQL commands create the right column type for storing a string.
  430. If :meth:`get_internal_type` returns a string that is not known to Django for
  431. the database backend you are using -- that is, it doesn't appear in
  432. ``django.db.backends.<db_name>.creation.DATA_TYPES`` -- the string will still be
  433. used by the serializer, but the default :meth:`db_type` method will return
  434. ``None``. See the documentation of :meth:`db_type` for reasons why this might be
  435. useful. Putting a descriptive string in as the type of the field for the
  436. serializer is a useful idea if you're ever going to be using the serializer
  437. output in some other place, outside of Django.
  438. Converting field data for serialization
  439. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  440. .. method:: value_to_string(self, obj)
  441. This method is used by the serializers to convert the field into a string for
  442. output. Calling :meth:`Field._get_val_from_obj(obj)` is the best way to get the
  443. value to serialize. For example, since our ``HandField`` uses strings for its
  444. data storage anyway, we can reuse some existing conversion code::
  445. class HandField(models.Field):
  446. # ...
  447. def value_to_string(self, obj):
  448. value = self._get_val_from_obj(obj)
  449. return self.get_db_prep_value(value)
  450. Some general advice
  451. --------------------
  452. Writing a custom field can be a tricky process, particularly if you're doing
  453. complex conversions between your Python types and your database and
  454. serialization formats. Here are a couple of tips to make things go more
  455. smoothly:
  456. 1. Look at the existing Django fields (in
  457. :file:`django/db/models/fields/__init__.py`) for inspiration. Try to find
  458. a field that's similar to what you want and extend it a little bit,
  459. instead of creating an entirely new field from scratch.
  460. 2. Put a :meth:`__str__` or :meth:`__unicode__` method on the class you're
  461. wrapping up as a field. There are a lot of places where the default
  462. behavior of the field code is to call
  463. :func:`~django.utils.encoding.force_unicode` on the value. (In our
  464. examples in this document, ``value`` would be a ``Hand`` instance, not a
  465. ``HandField``). So if your :meth:`__unicode__` method automatically
  466. converts to the string form of your Python object, you can save yourself
  467. a lot of work.
  468. Writing a ``FileField`` subclass
  469. =================================
  470. In addition to the above methods, fields that deal with files have a few other
  471. special requirements which must be taken into account. The majority of the
  472. mechanics provided by ``FileField``, such as controlling database storage and
  473. retrieval, can remain unchanged, leaving subclasses to deal with the challenge
  474. of supporting a particular type of file.
  475. Django provides a ``File`` class, which is used as a proxy to the file's
  476. contents and operations. This can be subclassed to customize how the file is
  477. accessed, and what methods are available. It lives at
  478. ``django.db.models.fields.files``, and its default behavior is explained in the
  479. :ref:`file documentation <ref-files-file>`.
  480. Once a subclass of ``File`` is created, the new ``FileField`` subclass must be
  481. told to use it. To do so, simply assign the new ``File`` subclass to the special
  482. ``attr_class`` attribute of the ``FileField`` subclass.
  483. A few suggestions
  484. ------------------
  485. In addition to the above details, there are a few guidelines which can greatly
  486. improve the efficiency and readability of the field's code.
  487. 1. The source for Django's own ``ImageField`` (in
  488. ``django/db/models/fields/files.py``) is a great example of how to
  489. subclass ``FileField`` to support a particular type of file, as it
  490. incorporates all of the techniques described above.
  491. 2. Cache file attributes wherever possible. Since files may be stored in
  492. remote storage systems, retrieving them may cost extra time, or even
  493. money, that isn't always necessary. Once a file is retrieved to obtain
  494. some data about its content, cache as much of that data as possible to
  495. reduce the number of times the file must be retrieved on subsequent
  496. calls for that information.