7.9 KiB
Contribution Guidelines
Reporting Issues
If you encounter a problem when using infer or if you have any questions, please open a GitHub issue.
- Check first if your issue is addressed in the FAQ.
- Check also if your issue has already been reported.
- Include the version of infer you are using (
infer --version
). - Include the full list of the commands you are running.
- Include the full output of infer in a paste, for instance a gist.
- If possible, give a minimal example to reproduce your problem (for instance, some code where infer reports incorrectly, together with the way you run infer to reproduce the incorrect report).
Hacking on the Code
We welcome contributions via pull requests on GitHub.
Development Dependencies
You'll want to install a few more dependencies to comfortably hack on the infer codebase. Using opam:
opam install ocp-indent merlin tuareg
Merlin provides OCaml and Reason support for several editors, including Atom, Emacs, and Vim.
Run opam user-setup install
to set up your terminal and editors to use this tooling.
Tips and Tricks
-
Build the code:
make -j
. -
Faster edit/build cycle when working on OCaml code inside infer/src/: build inside infer/src/ (skips building the models after infer has been built), and build bytecode instead of native:
make -j -C infer/src byte
. You need to have runmake -j
at some point before. -
In general,
make
commands from the root of the repository make sure that dependencies are in a consistent and up-to-date state (e.g., they rebuild infer and the models before running steps that use infer), while runningmake
commands from within subdirectories generally assumes that dependencies are already up-to-date.For instance, running
make direct_java_infer_test
will rebuild infer and the models if necessary before running the test, but runningmake -C infer/tests/codetoanalyze/java/infer test
will just execute the test.
Contributor License Agreement
We require contributors to sign our Contributor License Agreement. In order for us to review and merge your code, please sign up at https://code.facebook.com/cla. If you have any questions, please drop us a line at cla@fb.com. Thanks!
Coding Style
All Languages
-
Indent with spaces, not tabs.
-
Line width limit is 100 characters (except for Python for which the limit is 80).
-
In general, follow the style of surrounding code.
OCaml
-
Follow the ocp-indent style in infer/.ocpindent for indentation.
-
Spaces around binary operators, e.g.,
let x = a + 5
. -
Spaces around parentheses, no space inside parentheses.
-
Spaces around braces and brackets, spaces inside braces and brackets.
-
Space after
,
and;
, e.g.let (a, b) = ({ foo = 4; }, ())
. -
Terminate multi-line values such as lists and records with
;
so that it's easy to add new lines without modifying existing ones. For instance:
let foo = [
value1;
value2;
]
-
All modules open
IStd
, usingopen! IStd
. In particular this also opensCore.Std
. Do not add anything toIStd
; if you find some utility function is missing (and not provided byCore
), add it toUtils
. -
Polymorphic equality is disabled; use type-specific equality instead, even for primitive types (e.g.,
Int.equal
). However, if your module uses a lot of polymorphic variants you mayopen! PVariant
. -
Apart from
IStd
andPVariant
, refrain from globallyopen
ing modules. Using local open instead when it improves readability:let open MyModule in ...
. -
Avoid the use of module aliases, except for the following commonly-aliased modules. Use module aliases consistently (e.g., do not alias
L
to a module other thanLogging
).
module CLOpt = CommandLineOption
module F = Format
module L = Logging
module MF = MarkupFormatter
-
Use
[@@deriving compare]
to write comparison functions whenever possible. Watch out for this issue when writingtype nonrec t = t [@@deriving compare]
. -
Use
let equal_foo = [%compare.equal : foo]
to write equality functions whenever possible. -
Use named arguments whenever the purpose of the argument is not immediately obvious. In particular, use named arguments for boolean and integer parameters unless the name of the function mentions them explicitly. Also use named arguments to disambiguate between several arguments of the same type.
-
Use named arguments for functions taken as argument; it is common to name a function argument
f
. For instance:List.map : 'a list -> f:('a -> 'b) -> 'b list
. -
In modules defining a type
t
, functions that take an argument of that type should generally have that argument come first, except for for optional arguments:val f : ?optional:bool -> t -> ...
. -
Use the
_hum
suffix to flag functions that output human-readable strings. -
Check that your code compiles without warnings with
make -j test_build
.
Reason
Follow refmt
.
C/C++/Objective-C
Follow clang-format
(see ".clang-format" at the root of the repository).
Testing your Changes
-
Make sure infer builds:
make -j
. Refer to the installation document for details. -
Run the tests:
make -j 4 test
(adjust 4 to the number of cores available of your machine). The tests (almost) all consist of the same three ingredients:- Some source code to run infer on.
- An "issues.exp" file where each line represents one item of output of the test. For most tests, one line is one issue reported by infer.
- A
Makefile
that orchestrates the test, for instance running infer on the source code and comparing the results with issues.exp usingdiff
.
-
If your changes modified some of the expected outputs and if the changes make sense, you can update the expected test results by running
make test-replace
. -
If relevant, add a test for your change.
-
To add a test that infer finds (or does not find) a particular issue, add your test in "infer/tests/codetoanalyze/{language}/{analyzer}/". Look at the
Makefile
in that directory and make sure it runs your test. "{analyzer}" is often an infer analyzer (as ininfer -a {analyzer}
), with some special cases:- "errors" is "infer"
- "frontend" is a mode where the expected output is the result of the translation of the program by infer's clang frontend into infer's intermediate representation.
Name the procedures in your test following these conventions:
- Test procedures where the analyzer should report an error should end with the suffix
Bad
. - Test procedures where the analyzer should not report an error should end with the suffix
Ok
. - Test procedures documenting current limitations of the analyzer should have the prefix
FP_
(for "false positive") orFN_
(for "false negative") and a comment explaining why the analyzer gets the wrong answer.
-
To add a test that a certain build system integration or a command-line option works in a certain way, add a test in "infer/tests/build_systems/".
-
If you created a new Makefile for your test, add it to the root "Makefile", either to the
DIRECT_TESTS
(first case) or to theBUILD_SYSTEMS_TESTS
variable (second case). Gate the test appropriately if it depends on Java or Clang or Xcode (see how other tests do it). -
It can be useful to look at the debug HTML output of infer to see the detail of the symbolic execution. For instance:
$ infer --debug -- clang -c examples/hello.c
$ firefox infer-out/captured/hello.c.*.html