2019-07-19 06:55:14 -04:00
|
|
|
Code Style
|
|
|
|
==========
|
|
|
|
|
|
|
|
Formatting tools
|
|
|
|
----------------
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
The Synapse codebase uses a number of code formatting tools in order to
|
|
|
|
quickly and automatically check for formatting (and sometimes logical) errors
|
|
|
|
in code.
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
The necessary tools are detailed below.
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
- **black**
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
The Synapse codebase uses `black <https://pypi.org/project/black/>`_ as an
|
|
|
|
opinionated code formatter, ensuring all comitted code is properly
|
|
|
|
formatted.
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
First install ``black`` with::
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
pip install --upgrade black
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
Have ``black`` auto-format your code (it shouldn't change any functionality)
|
|
|
|
with::
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
black . --exclude="\.tox|build|env"
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
- **flake8**
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
``flake8`` is a code checking tool. We require code to pass ``flake8`` before being merged into the codebase.
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
Install ``flake8`` with::
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
pip install --upgrade flake8
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
Check all application and test code with::
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
flake8 synapse tests
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
- **isort**
|
|
|
|
|
|
|
|
``isort`` ensures imports are nicely formatted, and can suggest and
|
|
|
|
auto-fix issues such as double-importing.
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
Install ``isort`` with::
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
pip install --upgrade isort
|
2017-10-26 05:42:06 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
Auto-fix imports with::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
isort -rc synapse tests
|
2014-12-10 08:11:43 -05:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
``-rc`` means to recursively search the given directories.
|
2014-12-10 08:11:43 -05:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
It's worth noting that modern IDEs and text editors can run these tools
|
|
|
|
automatically on save. It may be worth looking into whether this
|
|
|
|
functionality is supported in your editor for a more convenient development
|
|
|
|
workflow. It is not, however, recommended to run ``flake8`` on save as it
|
|
|
|
takes a while and is very resource intensive.
|
2014-12-10 08:11:43 -05:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
General rules
|
|
|
|
-------------
|
2014-12-10 08:11:43 -05:00
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
- **Naming**:
|
|
|
|
|
|
|
|
- Use camel case for class and type names
|
|
|
|
- Use underscores for functions and variables.
|
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
- **Docstrings**: should follow the `google code style
|
|
|
|
<https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings>`_.
|
2017-10-26 05:28:41 -04:00
|
|
|
This is so that we can generate documentation with `sphinx
|
|
|
|
<http://sphinxcontrib-napoleon.readthedocs.org/en/latest/>`_. See the
|
|
|
|
`examples
|
|
|
|
<http://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html>`_
|
|
|
|
in the sphinx documentation.
|
2017-10-26 05:58:34 -04:00
|
|
|
|
|
|
|
- **Imports**:
|
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
- Imports should be sorted by ``isort`` as described above.
|
|
|
|
|
2019-06-24 12:48:05 -04:00
|
|
|
- Prefer to import classes and functions rather than packages or modules.
|
2017-10-26 05:58:34 -04:00
|
|
|
|
|
|
|
Example::
|
|
|
|
|
|
|
|
from synapse.types import UserID
|
|
|
|
...
|
|
|
|
user_id = UserID(local, server)
|
|
|
|
|
|
|
|
is preferred over::
|
|
|
|
|
|
|
|
from synapse import types
|
|
|
|
...
|
|
|
|
user_id = types.UserID(local, server)
|
|
|
|
|
|
|
|
(or any other variant).
|
|
|
|
|
|
|
|
This goes against the advice in the Google style guide, but it means that
|
|
|
|
errors in the name are caught early (at import time).
|
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
- Avoid wildcard imports (``from synapse.types import *``) and relative
|
|
|
|
imports (``from .types import UserID``).
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
Configuration file format
|
|
|
|
-------------------------
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
The `sample configuration file <./sample_config.yaml>`_ acts as a reference to
|
|
|
|
Synapse's configuration options for server administrators. Remember that many
|
|
|
|
readers will be unfamiliar with YAML and server administration in general, so
|
|
|
|
that it is important that the file be as easy to understand as possible, which
|
|
|
|
includes following a consistent format.
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
Some guidelines follow:
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
* Sections should be separated with a heading consisting of a single line
|
|
|
|
prefixed and suffixed with ``##``. There should be **two** blank lines
|
|
|
|
before the section header, and **one** after.
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
* Each option should be listed in the file with the following format:
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
* A comment describing the setting. Each line of this comment should be
|
|
|
|
prefixed with a hash (``#``) and a space.
|
2017-10-26 05:58:34 -04:00
|
|
|
|
2019-07-19 06:55:14 -04:00
|
|
|
The comment should describe the default behaviour (ie, what happens if
|
|
|
|
the setting is omitted), as well as what the effect will be if the
|
|
|
|
setting is changed.
|
|
|
|
|
|
|
|
Often, the comment end with something like "uncomment the
|
|
|
|
following to \<do action>".
|
|
|
|
|
|
|
|
* A line consisting of only ``#``.
|
|
|
|
|
|
|
|
* A commented-out example setting, prefixed with only ``#``.
|
|
|
|
|
|
|
|
For boolean (on/off) options, convention is that this example should be
|
|
|
|
the *opposite* to the default (so the comment will end with "Uncomment
|
|
|
|
the following to enable [or disable] \<feature\>." For other options,
|
|
|
|
the example should give some non-default value which is likely to be
|
|
|
|
useful to the reader.
|
|
|
|
|
|
|
|
* There should be a blank line between each option.
|
|
|
|
|
|
|
|
* Where several settings are grouped into a single dict, *avoid* the
|
|
|
|
convention where the whole block is commented out, resulting in comment
|
|
|
|
lines starting ``# #``, as this is hard to read and confusing to
|
|
|
|
edit. Instead, leave the top-level config option uncommented, and follow
|
|
|
|
the conventions above for sub-options. Ensure that your code correctly
|
|
|
|
handles the top-level option being set to ``None`` (as it will be if no
|
|
|
|
sub-options are enabled).
|
|
|
|
|
|
|
|
* Lines should be wrapped at 80 characters.
|
|
|
|
|
|
|
|
Example::
|
|
|
|
|
|
|
|
## Frobnication ##
|
|
|
|
|
|
|
|
# The frobnicator will ensure that all requests are fully frobnicated.
|
|
|
|
# To enable it, uncomment the following.
|
|
|
|
#
|
|
|
|
#frobnicator_enabled: true
|
|
|
|
|
|
|
|
# By default, the frobnicator will frobnicate with the default frobber.
|
|
|
|
# The following will make it use an alternative frobber.
|
|
|
|
#
|
|
|
|
#frobincator_frobber: special_frobber
|
|
|
|
|
|
|
|
# Settings for the frobber
|
|
|
|
#
|
|
|
|
frobber:
|
|
|
|
# frobbing speed. Defaults to 1.
|
|
|
|
#
|
|
|
|
#speed: 10
|
|
|
|
|
|
|
|
# frobbing distance. Defaults to 1000.
|
|
|
|
#
|
|
|
|
#distance: 100
|
|
|
|
|
|
|
|
Note that the sample configuration is generated from the synapse code and is
|
|
|
|
maintained by a script, ``scripts-dev/generate_sample_config``. Making sure
|
|
|
|
that the output from this script matches the desired format is left as an
|
|
|
|
exercise for the reader!
|