nghttp2/doc
Tatsuhiro Tsujikawa b4cb3b0090 Remove deprecated python bindings 2022-12-26 17:06:36 +09:00
..
_exts/rubydomain Fix typos 2022-01-16 21:53:44 +09:00
_themes/sphinx_rtd_theme Bump sphinx_rtd_theme 2022-07-12 22:23:12 +09:00
bash_completion Update bash_completion 2022-06-23 21:13:25 +09:00
sources Remove deprecated python bindings 2022-12-26 17:06:36 +09:00
.gitignore Remove deprecated python bindings 2022-12-26 17:06:36 +09:00
CMakeLists.txt Remove deprecated python bindings 2022-12-26 17:06:36 +09:00
Makefile.am Remove deprecated python bindings 2022-12-26 17:06:36 +09:00
README.rst Correct misspellings 2015-11-09 11:40:35 +09:00
building-android-binary.rst.in doc: Add building-android-binary document 2014-08-17 19:15:19 +09:00
conf.py.in Rename sphinxcontrib to rubydomain to avoid module loading error 2021-09-20 13:43:40 +09:00
contribute.rst.in Add contribution guidelines 2014-11-27 23:56:29 +09:00
docutils.conf Fix sphinx warnings 2017-10-24 23:10:23 +09:00
h2load-howto.rst.in doc: Add h2load-howto.rst 2014-06-27 00:05:49 +09:00
h2load.1 Update manual pages 2022-11-13 14:51:12 +09:00
h2load.1.rst Update manual pages 2022-06-23 21:13:03 +09:00
h2load.h2r h2load: Clarify that time for connect includes TLS handshake 2018-11-02 15:43:35 +09:00
index.rst.in Out-of-tree build for sphinx documents 2014-02-13 23:44:54 +09:00
make.bat Rebranding nghttp2 2013-07-13 00:43:06 +09:00
mkapiref.py Make doc generation work with sphinx v3.3 2020-12-29 17:47:57 +09:00
nghttp.1 Update manual pages 2022-11-13 14:51:12 +09:00
nghttp.1.rst Update manual pages 2022-06-23 21:13:03 +09:00
nghttp.h2r doc: Fix Sphinx build warnings 2016-07-16 19:08:38 +09:00
nghttp2.h.rst.in Out-of-tree build for sphinx documents 2014-02-13 23:44:54 +09:00
nghttp2ver.h.rst.in Out-of-tree build for sphinx documents 2014-02-13 23:44:54 +09:00
nghttpd.1 Update manual pages 2022-11-13 14:51:12 +09:00
nghttpd.1.rst Update manual pages 2022-06-23 21:13:03 +09:00
nghttpd.h2r Produce man pages using sphinx 2015-01-10 00:37:42 +09:00
nghttpx-howto.rst.in doc: Use autoconf template nghttpx-howto.rst.in properly 2014-04-20 23:42:15 +09:00
nghttpx.1 Update manual pages 2022-11-13 14:51:12 +09:00
nghttpx.1.rst Update manual pages 2022-06-23 21:13:03 +09:00
nghttpx.h2r Replace mater remnants with main in nghttpx manual 2021-07-18 14:02:52 +09:00
package_README.rst.in Out-of-tree build for sphinx documents 2014-02-13 23:44:54 +09:00
programmers-guide.rst Document how to change stream prioritization scheme 2022-06-15 23:10:44 +09:00
security.rst Add security process document 2020-07-24 20:14:07 +09:00
tutorial-client.rst.in Out-of-tree build for sphinx documents 2014-02-13 23:44:54 +09:00
tutorial-hpack.rst.in doc: Add HPACK API tutorial 2014-06-29 23:45:49 +09:00
tutorial-server.rst.in Out-of-tree build for sphinx documents 2014-02-13 23:44:54 +09:00

README.rst

nghttp2 Documentation
=====================

The documentation of nghttp2 is generated using Sphinx.  This
directory contains the source files to be processed by Sphinx.  The
source file for API reference is generated using a script called
``mkapiref.py`` from the nghttp2 C source code.

Generating API reference
------------------------

As described earlier, we use ``mkapiref.py`` to generate rst formatted
text of API reference from C source code.  The ``mkapiref.py`` is not
so flexible and it requires that C source code is formatted in rather
strict rules.

To generate API reference, just run ``make html``. It runs
``mkapiref.py`` and then run Sphinx to build the entire document.

The ``mkapiref.py`` reads C source code and searches the comment block
starts with ``/**``. In other words, it only processes the comment
block starting ``/**``. The comment block must end with ``*/``. The
``mkapiref.py`` requires that which type of the object this comment
block refers to.  To specify the type of the object, the next line
must contain the so-called action keyword.  Currently, the following
action keywords are supported: ``@function``, ``@functypedef``,
``@enum``, ``@struct`` and ``@union``. The following sections
describes each action keyword.

@function
#########

``@function`` is used to refer to the function.  The comment block is
used for the document for the function.  After the script sees the end
of the comment block, it consumes the lines as the function
declaration until the line which ends with ``;`` is encountered.

In Sphinx doc, usually the function argument is formatted like
``*this*``.  But in C, ``*`` is used for dereferencing a pointer and
we must escape ``*`` with a back slash. To avoid this, we format the
argument like ``|this|``. The ``mkapiref.py`` translates it with
``*this*``, as escaping ``*`` inside ``|`` and ``|`` as necessary.
Note that this shadows the substitution feature of Sphinx.

The example follows::

    /**
     * @function
     *
     * Submits PING frame to the |session|.
     */
    int nghttp2_submit_ping(nghttp2_session *session);


@functypedef
############

``@functypedef`` is used to refer to the typedef of the function
pointer. The formatting rule is pretty much the same with
``@function``, but this outputs ``type`` domain, rather than
``function`` domain.

The example follows::

    /**
     * @functypedef
     *
     * Callback function invoked when |session| wants to send data to
     * remote peer.
     */
    typedef ssize_t (*nghttp2_send_callback)
    (nghttp2_session *session,
     const uint8_t *data, size_t length, int flags, void *user_data);

@enum
#####

``@enum`` is used to refer to the enum.  Currently, only enum typedefs
are supported.  The comment block is used for the document for the
enum type itself. To document each values, put comment block starting
with the line ``/**`` and ending with the ``*/`` just before the enum
value.  When the line starts with ``}`` is encountered, the
``mkapiref.py`` extracts strings next to ``}`` as the name of enum.

At the time of this writing, Sphinx does not support enum type. So we
use ``type`` domain for enum it self and ``macro`` domain for each
value. To refer to the enum value, use ``:enum:`` pseudo role. The
``mkapiref.py`` replaces it with ``:macro:``. By doing this, when
Sphinx will support enum officially, we can replace ``:enum:`` with
the official role easily.

The example follows::

    /**
     * @enum
     * Error codes used in the nghttp2 library.
     */
    typedef enum {
      /**
       * Invalid argument passed.
       */
      NGHTTP2_ERR_INVALID_ARGUMENT = -501,
      /**
       * Zlib error.
       */
      NGHTTP2_ERR_ZLIB = -502,
    } nghttp2_error;

@struct
#######

``@struct`` is used to refer to the struct. Currently, only struct
typedefs are supported. The comment block is used for the document for
the struct type itself.To document each member, put comment block
starting with the line ``/**`` and ending with the ``*/`` just before
the member.  When the line starts with ``}`` is encountered, the
``mkapiref.py`` extracts strings next to ``}`` as the name of struct.
The block-less typedef is also supported. In this case, typedef
declaration must be all in one line and the ``mkapiref.py`` uses last
word as the name of struct.

Some examples follow::
    
    /**
     * @struct
     * The control frame header.
     */
    typedef struct {
      /**
       * SPDY protocol version.
       */
      uint16_t version;
      /**
       * The type of this control frame.
       */
      uint16_t type;
      /**
       * The control frame flags.
       */
      uint8_t flags;
      /**
       * The length field of this control frame.
       */
      int32_t length;
    } nghttp2_ctrl_hd;
        
    /**
     * @struct
     *
     * The primary structure to hold the resources needed for a SPDY
     * session. The details of this structure is hidden from the public
     * API.
     */
    typedef struct nghttp2_session nghttp2_session;

@union
######

``@union`` is used to refer to the union. Currently, ``@union`` is an
alias of ``@struct``.