Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Various fixups and cosmetics in the doc
[simgrid.git] / docs / source / Contributors_Documentation.rst
1 .. _contrib_doc:
2
3 Contributor's Documentation
4 ===========================
5
6 This page describes the software infrastructure for SimGrid potential contributors. It is particularly interesting if you plan to send some patches for
7 inclusion in the project code.
8
9 Enforcing the coding standards
10 ------------------------------
11
12 If you plan to contribute code to the SimGrid project, you must ensure that your changes follow our coding standards. For that, simply install the relevant
13 tools and scripts.
14
15 .. code-block:: console
16
17    # install clang-format
18    sudo apt-get install clang-format # debian/ubuntu
19
20    # tell git to call the script on each commit
21    ln -s $(realpath tools/git-hooks/clang-format.pre-commit) .git/hooks/pre-commit
22
23 This will add an extra verification before integrating any commit that you could prepare. If your code does not respects our formatting code, git will say so,
24 and provide a ready to use patch that you can apply to improve your commit. Just read the error message you get to find how to apply the fix after review.
25
26 If you prefer not to apply the fix on a specific commit (because the formatter fails on this case), then add ``--no-verify`` to your git commit command line.
27
28 Interacting with cmake
29 ----------------------
30
31 Configuring
32 ^^^^^^^^^^^
33
34 The :ref:`default build configuration <install_src_config>` is intended for users, but contributors should change these settings for their comfort, and to
35 produce better code. In particular, the default is to build highly optimized binaries, at the price of high compilation time and somewhat harder debug sessions.
36 Instead, contributors want to disable the ``enable_compile_optimizations`` compile option. Likewise, ``enable_compile_warnings`` is off by default to not bother
37 the users, but the contributors should really enable it, as your code will not be integrated if it raises warnings from the compiler.
38
39 .. code-block:: console
40
41    cmake -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON \
42          -GNinja .
43
44 As you can see, we advise to use Ninja instead of the good old Makefiles. In our experience, Ninja is a bit faster because it does not fork as many external
45 commands as make for basic operations.
46
47 Adding a new file
48 ^^^^^^^^^^^^^^^^^
49
50 The content of the archive is mostly built from the lists given in ``tools/cmake/DefinePackages.cmake``. The only exceptions are the files related to the
51 examples, that are listed in the relevant ``CMakeLists.txt`` file, e.g. ``examples/cpp/CMakeLists.txt``. This information is duplicated in ``MANIFEST.in`` for
52 the python building process, that does not use cmake to build the archive.
53
54 When you add a new file, you should use the relevant build target to check that every files followed by git are included in the archive or properly excluded (by
55 being listed in ``tools/internal/check_dist_archive.exclude``), and that all settings are consistent.
56
57 Interacting with the tests
58 --------------------------
59
60 Breaking tests once in a while is completely OK in SimGrid. We accept temporarily breakages because we want things to evolve, but if you break something, it is
61 your duty to fix it within 24 hours to not hinder the work of others.
62
63 Understanding the existing tests
64 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
65
66 We use unit tests based on `Catch2 <https://github.com/catchorg/Catch2/>`_, but most of our testing is done through integration tests that launch a specific
67 simulation example and enforce that the output remains unchanged. Since SimGrid displays the timestamp of every logged event, such integration tests ensure that
68 every change of the models' prediction will be noticed. We designed a specific tool for these integration tests, called TESH (the TEsting SHell). ``ctest`` is
69 used to run both unit and integration tests. You can :ref:`run only some of the tests <install_src_test>` if you prefer. To launch the unit tests out of ctest,
70 build and execute the ``./unit-tests`` binary (it accepts a ``--help`` parameter). To rebuild and run all tests, use the ``./BuildSimGrid.sh`` script.
71
72 The SimGrid code base contains a lot of tests for a coverage well over 80%. We want the contributors to feel confident, and improve the code without fearing of
73 breaking something without noticing. Tests must be fast (because we run them very often), the should stress many aspects of the code (to actually catch problems) and
74 clear to read (understanding and debugging failures should be easy).
75
76 In fact, our integration tests fall in two categories. The ones located in ``examples/`` are part of the documentation, so readability is utterly important
77 here. The goal is that novice users could grab some of the provided examples and assemble them to constitute a first version of their simulator. These files can
78 only load public header files, and we tend to avoid advanced C++ constructs that would hinder the readability of these files. On the other hand, the integration
79 tests located in ``teshsuite/`` are usually torture tests trying to exhaustively cover all cases. They may be less readable and some even rely on a small DSL to
80 describe all test cases and the expected result (check for example ``teshsuite/models/cloud-sharing``), but they should still be rather easy to debug on need.
81 For this reason, we tend to avoid random testing that is difficult to reproduce. For example, the tests under ``teshsuite/models/`` try to be very verbose to
82 make the model intend clear, and the code easier to debug on need. The WiFi tests seem to be a good example of that trend.
83
84 Adding a test
85 ^^^^^^^^^^^^^
86
87 We often say that a feature that is not tested is a feature that could soon disappear. So you want to write tests for the features you add. To add new unit
88 tests, please refer to the end of ``tools/cmake/Tests.cmake``) for some examples. Catch2 comes with a good documentation and many examples online. If you add a
89 new feature, you should add an integration test in ``examples/``. Your code should be instructive, documented, reusable, and its output must be perfectly
90 reproducible. Some debugging information can be hidden when run from TESH with the :c:macro:`XBT_LOG_ISENABLED` macro. You then need to write a tesh file,
91 following the syntax described in this man page: ``man -l manpages/tesh.1`` Finally, you should add your source code and tesh file to the cmake infrastructure
92 by modifying for example the ``examples/cpp/CMakeLists.txt`` file. The test name shall allow the filtering of tests with ``ctest -R``. Do not forget to run
93 ``make distcheck`` once you're done to check that you did not forget to add your new files to the distribution.
94
95 Continuous integrations
96 ^^^^^^^^^^^^^^^^^^^^^^^
97
98 We have many online build bots that launch the tests on various configurations and operating systems. The results are centralized on two Jenkins jobs: `the main
99 one <https://ci.inria.fr/simgrid/job/SimGrid/>`_ runs all tests on a variety of systems for each commit, while `Nightly
100 <https://ci.inria.fr/simgrid/job/SimGrid-Nightly/>`_ runs some additional code analysis every night. Several sister projects built on top of SimGrid regularly
101 test our git too. The FramaGit project gathers some additional `build badges <https://framagit.org/simgrid/simgrid>`_, and results are posted on the `bot-office
102 channel <https://framateam.org/simgrid/channels/bot-office>`_ on Mattermost. Our code quality is tested every night using `SonarQube
103 <https://sonarcloud.io/dashboard?id=simgrid_simgrid>`_ , and the `Debian build daemon <https://buildd.debian.org/status/package.php?p=simgrid>`_ test each
104 release on several CPU architectures. We maintain some scripts to interact with these tools under ``tools/cmake``.
105
106 Interacting with git
107 --------------------
108
109 The SimGrid community is relatively small and active. We are not used to maintain long-standing branches but instead, we strive to do our changes in an
110 incremental way, commiting all intermediary steps to the main branch. The only thing is to ensure that you don't break things on the path, i.e. that all tests
111 pass for all commits. If you prefer to do a branch to accumulate some commits in a branch, you should strive to make so for a short period of time to reduce the
112 burden of the branch maintenance. Large changes happen from time to time to the SimGrid source code, and your branch may become hard to rebase.
113
114 It is nice if your commit message could follow the git habits, explained in this `blog post
115 <http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>`_, or in the `style guide of Atom
116 <https://github.com/atom/atom/blob/master/CONTRIBUTING.md#git-commit-messages>`_.
117
118 Type naming standard
119 --------------------
120
121 * Filenames shall be unique in the whole project (because of a bug in Sonar coverage computation).
122
123 In C++:
124
125 * Fields, methods and variables are in snake_case();
126 * Classes and Enum names are in UpperCamelCase;
127 * Enum values are in UPPER_SNAKE_CASE, just as constants.
128
129 * Files of public modules are usually named ``api_Class.cpp`` and ``api/Class.hpp`` (e.g. ``src/s4u/s4u_ConditionVariable.cpp`` and
130   ``include/simgrid/s4u/ConditionVariable.hpp``).
131 * Files of internal modules are usually named ``Class.cpp`` and ``Class.hpp`` (e.g. ``src/kernel/activity/Activity.cpp`` and
132   ``src/kernel/activity/Activity.hpp``) unless it raises name conflicts.
133
134 In C:
135
136 * Getters and setters are named ``sg_object_get_field()`` and ``sg_object_field()`` (e.g. ``sg_link_get_name()`` and ``sg_link_set_data()``);
137 * Variables and functions are snake_case();
138 * Typedefs do not hide the pointers, i.e. the * must be explicit. ``char* sg_host_get_name(sg_host_t* host)``.
139
140 Unsorted hints
141 --------------
142
143 * To thoroughly test your changes before pushing your commits, use several cmake configurations under sub-trees of ``build/`` (that is ignored by git) as
144   explained in :ref:`install_cmake_outsrc`. For example, I have the following directories: build/clang build/full build/mc (but YMMV).
145
146 * If you break the logs, you want to define XBT_LOG_MAYDAY at the beginning of log.h. It deactivates the whole logging mechanism, switching to printfs instead.
147   SimGrid then becomes incredibly verbose, but it you let you fixing things.