esp-idf/docs/en/contribute/documenting-code.rst

216 lines
9.7 KiB
ReStructuredText
Raw Normal View History

2016-10-30 14:38:44 -04:00
Documenting Code
================
:link_to_translation:`zh_CN:[中文]`
The purpose of this description is to provide a quick summary of the documentation style used in `espressif/esp-idf`_ repository and how to add new documentation.
2016-11-05 12:19:31 -04:00
2016-10-30 14:38:44 -04:00
Introduction
------------
2022-04-28 02:34:20 -04:00
When documenting code for this repository, please follow `Doxygen style <https://www.doxygen.nl/manual/docblocks.html#specialblock>`_. You are doing it by inserting special commands, for instance ``@param``, into standard comments blocks, for example: ::
2016-11-05 12:19:31 -04:00
2017-03-26 18:01:52 -04:00
/**
* @param ratio this is oxygen to air ratio
*/
2016-10-30 14:38:44 -04:00
Doxygen can phrase the code, extract the commands together with subsequent text, and build documentation out of it.
2016-10-30 14:38:44 -04:00
Typical comment block, that contains documentation of a function, looks like below:
2016-10-30 14:38:44 -04:00
.. image:: ../../_static/doc-code-documentation-inline.png
2017-03-26 18:01:52 -04:00
:align: center
:alt: Sample inline code documentation
Doxygen supports a couple of formatting styles. It also gives you great flexibility on the level of details to include in documentation. To get familiar with available features, please check data-rich and very well-organized `Doxygen Manual <https://www.doxygen.nl/manual/index.html>`_.
2016-10-30 14:38:44 -04:00
2017-03-26 18:01:52 -04:00
Why We Need Doxygen?
--------------------
2016-10-30 14:38:44 -04:00
The ultimate goal is to ensure that all the code is consistently documented, so we can use tools like `Sphinx`_ and `Breathe`_ to aid preparation and automatic updates of API documentation when the code changes.
2016-10-30 14:38:44 -04:00
With these tools, the above piece of code renders like below:
2016-10-30 14:38:44 -04:00
.. image:: ../../_static/doc-code-documentation-rendered.png
2017-03-26 18:01:52 -04:00
:align: center
:alt: Sample inline code after rendering
2016-10-30 14:38:44 -04:00
Go for It!
2016-10-30 14:38:44 -04:00
----------
When writing code for this repository, please follow guidelines below:
2016-10-30 14:38:44 -04:00
1. Document all building blocks of code, including functions, structs, typedefs, enums, macros, etc. Provide enough information about purpose, functionality, and limitations of documented items, as you would like to see them documented when reading the code by others.
2016-10-30 14:38:44 -04:00
2016-11-16 14:13:18 -05:00
2. Documentation of function should describe what this function does. If it accepts input parameters and returns some value, all of them should be explained.
2016-10-30 14:38:44 -04:00
2016-11-16 14:13:18 -05:00
3. Do not add a data type before parameter or any other characters besides spaces. All spaces and line breaks are compressed into a single space. If you like to break a line, then break it twice.
2016-10-30 14:38:44 -04:00
.. image:: ../../_static/doc-code-function.png
2017-03-26 18:01:52 -04:00
:align: center
:alt: Sample function documented inline and after rendering
2016-10-30 14:38:44 -04:00
4. If function has void input or does not return any value, then skip ``@param`` or ``@return``.
2016-10-30 14:38:44 -04:00
.. image:: ../../_static/doc-code-void-function.png
2017-03-26 18:01:52 -04:00
:align: center
:alt: Sample void function documented inline and after rendering
2016-11-16 14:13:18 -05:00
5. When documenting a ``define`` as well as members of a ``struct`` or ``enum``, place specific comment like below after each member.
2016-10-30 14:38:44 -04:00
.. image:: ../../_static/doc-code-member.png
2017-03-26 18:01:52 -04:00
:align: center
:alt: Sample of member documentation inline and after rendering
2016-11-16 14:13:18 -05:00
6. To provide well-formatted lists, break the line after command (like ``@return`` in the example below). ::
2016-11-16 14:13:18 -05:00
*
* @return
* - ESP_OK if erase operation was successful
* - ESP_ERR_NVS_INVALID_HANDLE if handle has been closed or is NULL
* - ESP_ERR_NVS_READ_ONLY if handle was opened as read only
* - ESP_ERR_NVS_NOT_FOUND if the requested key does not exist
2016-11-16 14:13:18 -05:00
* - other error codes from the underlying storage driver
*
7. Overview of functionality of documented header file, or group of files that make a library, should be placed in a separate ``README.rst`` file of the same directory. If this directory contains header files for different APIs, then the file name should be ``apiname-readme.rst``.
2016-10-30 14:38:44 -04:00
2017-03-26 18:01:52 -04:00
Go One Extra Mile
2016-10-30 14:38:44 -04:00
-----------------
Here are a couple of tips on how you can make your documentation even better and more useful to the reader and writer.
2016-10-30 14:38:44 -04:00
When writing code, please follow the guidelines below:
2021-08-23 20:56:48 -04:00
2017-03-26 18:01:52 -04:00
1. Add code snippets to illustrate implementation. To do so, enclose snippet using ``@code{c}`` and ``@endcode`` commands. ::
2016-11-05 12:19:31 -04:00
2016-11-16 14:13:18 -05:00
*
* @code{c}
* // Example of using nvs_get_i32:
* int32_t max_buffer_size = 4096; // default value
* esp_err_t err = nvs_get_i32(my_handle, "max_buffer_size", &max_buffer_size);
* assert(err == ESP_OK || err == ESP_ERR_NVS_NOT_FOUND);
* // if ESP_ERR_NVS_NOT_FOUND was returned, max_buffer_size will still
* // have its default value.
* @endcode
*
2016-10-30 14:38:44 -04:00
The code snippet should be enclosed in a comment block of the function that it illustrates.
2016-11-05 12:19:31 -04:00
2017-03-26 18:01:52 -04:00
2. To highlight some important information use command ``@attention`` or ``@note``. ::
2016-11-05 12:19:31 -04:00
2016-11-16 14:13:18 -05:00
*
* @attention
* 1. This API only impact WIFI_MODE_STA or WIFI_MODE_APSTA mode
* 2. If the ESP32 is connected to an AP, call esp_wifi_disconnect to disconnect.
*
2016-10-30 14:38:44 -04:00
Above example also shows how to use a numbered list.
2016-10-30 14:38:44 -04:00
3. To provide common description to a group of similar functions, enclose them using ``/**@{*/`` and ``/**@}*/`` markup commands. ::
/**@{*/
/**
* @brief common description of similar functions
*
*/
void first_similar_function (void);
void second_similar_function (void);
/**@}*/
For practical example see :component_file:`nvs_flash/include/nvs.h`.
4. You may want to go even further and skip some code like repetitive defines or enumerations. In such case, enclose the code within ``/** @cond */`` and ``/** @endcond */`` commands. Example of such implementation is provided in :component_file:`esp_driver_gpio/include/driver/gpio.h`.
5. Use markdown to make your documentation even more readable. You will add headers, links, tables and more. ::
2016-10-30 14:38:44 -04:00
2016-11-16 14:13:18 -05:00
*
* [{IDF_TARGET_NAME} Technical Reference Manual]({IDF_TARGET_TRM_EN_URL})
2016-11-16 14:13:18 -05:00
*
2016-10-30 14:38:44 -04:00
2016-11-16 14:13:18 -05:00
.. note::
2016-11-05 12:19:31 -04:00
Code snippets, notes, links, etc., will not make it to the documentation, if not enclosed in a comment block associated with one of the documented objects.
2017-03-26 18:01:52 -04:00
6. Prepare one or more complete code examples together with description. Place description to a separate file ``README.md`` in specific folder of :idf:`examples` directory.
Standardize Document Format
---------------------------
When it comes to text, please follow guidelines below to provide well-formatted Markdown (.md) or reST (.rst) documents.
1. Please ensure that one paragraph is written in one line. Do not break lines like below. Breaking lines to enhance readability is only suitable for writing code. To make the text easier to read, it is recommended to place an empty line to separate the paragraph.
.. figure:: ../../_static/doc-format1-recommend.png
:align: center
:scale: 20%
:alt: One line for one paragraph - recommend (click to enlarge)
One line for one paragraph (click to enlarge)
.. figure:: ../../_static/doc-format2-notrecommend.png
:align: center
:scale: 20%
:alt: One line for one paragraph - not recommend (click to enlarge)
No line breaks within the same paragraph (click to enlarge)
2. Please make the line number of CN and EN documents consistent like below. The benefit of this approach is that it can save time for both writers and translators. When non-bilingual writers need to update text, they only need to update the same line in the corresponding CN or EN document. For translators, if documents are updated in English, then translators can quickly locate where to update in the corresponding CN document later. Besides, by comparing the total number of lines in EN and CN documents, you can quickly find out whether the CN version lags behind the EN version.
.. figure:: ../../_static/doc-format3-recommend.png
:align: center
:scale: 40%
:alt: Keep the line number for EN and CN files consistent (click to enlarge)
2021-08-23 20:56:48 -04:00
Keep the line number for EN and CN documents consistent (click to enlarge)
Building Documentation
2021-08-23 20:56:48 -04:00
----------------------
To build documentation, start by installing the dependencies:
1. Install `Doxygen <https://www.doxygen.nl/manual/install.html>`_.
2. Chances are you already set up the required `tools <https://docs.espressif.com/projects/esp-idf/en/stable/get-started/linux-macos-setup.html#step-3-set-up-the-tools>`_ by running ``./install.sh``. To enable building docs, you need to run:
.. code-block:: bash
./install.sh --enable-docs
This action will install the ``esp-docs`` Python package. This package is a wrapper around `Sphinx <https://www.sphinx-doc.org/>`_ and is required to build ESP-IDF documentation.
After installing the dependencies, go to the ``docs`` folder and run the following to build the documentation:
.. code-block:: bash
2021-08-23 20:56:48 -04:00
build-docs build
You can also build only the needed docs by choosing a specific target and language (it speeds up the process):
.. code-block:: bash
2021-08-23 20:56:48 -04:00
build-docs -t esp32 -l en build
For more in-depth information, see the `esp-docs <https://docs.espressif.com/projects/esp-docs/en/latest/>`_ documentation.
Wrap Up
2016-10-30 14:38:44 -04:00
-------
We love good code that is doing cool things. We love it even better, if it is well-documented, so we can quickly make it run and also do the cool things.
2016-10-30 14:38:44 -04:00
2016-11-05 12:19:31 -04:00
Go ahead, contribute your code and documentation!
Related Documents
-----------------
* :doc:`../api-reference/template`
2016-11-05 12:19:31 -04:00
.. _espressif/esp-idf: https://github.com/espressif/esp-idf/
.. _interactive shell: http://interactive.blockdiag.com/?compression=deflate&src=eJxlUMFOwzAMvecrrO3aITYQQirlAIIzEseJQ5q4TUSIq8TVGIh_J2m7jbKc7Ge_5_dSO1Lv2soWvoVYgieNoMh7VGzJR9FJtugZ7lYQ0UcKEbYNOY36rRQHZHUPT68vV5tceGLbWCUzPfeaFFMoBZzecVc56vWwJFnWMmJ59CCZg617xpOFbTSyw0pmvT_HJ7hxtFNGBr6wvuu5SCkchcrZ1vAeXZomznh5YgTqfcpR02cBO6vZVDeXBRjMjKEcFRbLh8f18-Z2UUBDnqP9wmp9ncRmSSfND2ldGo2h_zse407g0Mxc1q7HzJ3-4jzYYTJjtQH3iSV-fgFzx50J
.. _Breathe: https://breathe.readthedocs.io/en/latest/