5.4 KiB
How to contribute
General workflow for contributing
- Fork, then clone the repo (more details here):
git clone git@github.com:your-username/exiv2.git
- Configure the project and build (CMake is our the preferred configuration system, but not the only one. More details in the README.md) :
mkdir build && cd build
cmake .. && cmake --build . --config Release
- Make sure the tests pass:
make tests # Application tests
./bin/unit_tests # Unit tests
- Make your change. Add tests for your change. Make the tests pass.
- Create the Pull Request (PR). a. Check if the CI checks pass. b. If your PR lives for a long time, try to avoid to press the button "Update branch" in the Pull Request view. We prefer rebasing in top of master, instead of merging master into branches. c. A project member will review your PR as soon as possible.
Pull Request guidelines
- PRs should be kept at a manageable size. Try to focus in just one goal per PR. If you find yourself doing several things that in a PR that were not expected, try to split the different tasks in different PRs.
- Commits should always change one logical unit, so that cherry-picking & reverting is simple.
- Commit messages should as informative and concise as possible. The first line of the commit message should be < 80 characters and describe the commit briefly. If the 80 characters are too short for a summary, consider splitting the commit. Below the short summary add one blank line and then a more detailed explanation if required.
Code guidelines
General
- All new code must be properly tested: via unit tests (based on the Gtest framework; see
$REPO/unitTest
) or system tests (scripts exercising the main exiv2 application; see$REPO/test
). - Code should be simple to read and to understand.
- Do not invoke undefined behavior. [Optional] Ensure that with UBSAN, i.e. compile your code with
-fsanitize=undefined
and run the test suite. - Ensure that your code has no memory errors. [Optional] Use ASAN for that, i.e. compile your code with
-fsanitize=address
.
Relevant to the Exiv2 domain
- All new code that is added must be resistant to integer overflows, thus if you multiply, add, subtract, divide or bitshift integers you must ensure that no overflow can occur. Please keep in mind that signed integer overflow is undefined behavior, thus you must check for overflows before performing the arithmetic operation, otherwise the compiler is free to optimize your check after the overflow away (this has happened already).
- All new code must be resistant to buffer overflows. Thus before you access arrays a range check must be performed.
- Distrust any data that you extract from images or from external sources. E.g. if the metadata of an image gives you an offset of another information inside that file, do not assume that this offset will not result in an out off bounds read.
- New code must not assume the endianes and the wordsize of the system it is being run on. I.e. don't assume that
sizeof(int) = 8
or that the following will work:
const uint32_t some_var = get_var();
const uint16_t lower_2_bytes = (const uint16_t*) &some_var;
since this will give you the upper two bytes on big endian systems.
If in doubt, use the fixed size integer types like int32_t
, uint64_t
, size_t
, etc.
Code Formatting
The project contains a .clang-format
file defining the code formatting of the project (more details about of this file was defined can be found in this PR). We suggest you to respect the code formatting by applying clang-format to new or existing code. You can do it by using the clang-format command-line tool, or by using some integration plugins provided by some editors or IDEs. Currently we know about these integrations:
- QtCreator -> beautifier -> clang-format
- vim-clang-format
- Emacs
- Visual Studio: 1, 2
Note that some times, the formatting applied to some complex code might result in some un-expected output. If you know how to improve the current .clang-format
file to deal with such cases, please contribute!. Otherwise, you have two options:
- Apply clang-format to individual blocks of code (avoid to apply it over the complex piece of code).
- Indicate which parts of the code should not be treaten by clang-format:
// clang-format off
void unformatted_code ;
// clang-format on
Guidelines to apply clang-format:
- New files should follow the clang-format style.
- Old files will be completely re-formatted only if we need to touch several lines/functions/methods of that file. In that case, we suggest to first create a PR just re-formatting the files that will be touched. Later we create another PR with the code changes.
- If we only need to fix a small portion of a file we do not apply clang-format at all, or we just do it in the code block that we touch.
More information about clang:
- Link to clang-format tool.
- Link to the clang-format option.