cppcheck/addons
Eric Sesterhenn 3b1c701766
fix casing in variable name (#5778)
The attribute movedValue is misspelled with an uppercase V, this leads
to errors when printing token values:

```
$ python3 runaddon.py test.py test.c.dump 
Checking test.c.dump...
Checking test.c.dump, config ...
line 2 str=""lala\n""
Traceback (most recent call last):
  File "/home/eric/tools/cppcheck/addons/runaddon.py", line 11, in <module>
    cppcheck.runcheckers()
  File "/home/eric/tools/cppcheck/addons/cppcheck.py", line 39, in runcheckers
    c(cfg, data)
  File "test.py", line 9, in func
    print(f'    {value}')
  File "/home/eric/tools/cppcheck/addons/cppcheckdata.py", line 907, in __repr__
    ", ".join(("{}={}".format(a, repr(getattr(self, a))) for a in attrs))
  File "/home/eric/tools/cppcheck/addons/cppcheckdata.py", line 907, in <genexpr>
    ", ".join(("{}={}".format(a, repr(getattr(self, a))) for a in attrs))
AttributeError: 'Value' object has no attribute 'movedValue'
```
2023-12-18 18:57:08 +01:00
..
doc Addons: Add README (#2047) 2019-07-28 07:51:03 +02:00
test Fixed #12267 (Misra.py: crashes in 17.7 checker when there is macro in variable declaration) (#5768) 2023-12-15 22:53:19 +01:00
README.md Improved addon execution errorhandling (#5451) 2023-09-20 10:40:57 +02:00
ROS_naming.json Feature/ros naming check (#1511) 2019-01-09 18:16:51 +01:00
__init__.py misra.py: Fix up and improve load rules parser. (#1895) 2019-06-17 21:17:29 +02:00
cppcheck.py Typos found by running "codespell" (#3463) 2021-09-20 19:51:38 +02:00
cppcheckdata.doxyfile Fix some typos in comments (found by codespell) 2016-11-27 11:40:42 +01:00
cppcheckdata.py fix casing in variable name (#5778) 2023-12-18 18:57:08 +01:00
findcasts.py test/cli/test-other.py: improved addon tests (#5469) 2023-09-25 13:39:17 +02:00
misc.py Addons: Reuse cppcheckdata.simpleMatch 2020-11-11 14:24:55 +01:00
misra.py Fixed #12267 (Misra.py: crashes in 17.7 checker when there is macro in variable declaration) (#5768) 2023-12-15 22:53:19 +01:00
misra_9.py Fix #10854: False positive: misra-c2012-9.2: inner union (#5693) 2023-11-27 18:28:53 +01:00
naming.json Feature/ros naming check (#1511) 2019-01-09 18:16:51 +01:00
naming.py Ignore copy/move constructors for function naming checks (#4134) 2022-06-01 06:54:31 +02:00
namingng.py Ignore copy/move constructors for function naming checks (#4134) 2022-06-01 06:54:31 +02:00
runaddon.py Dont require __main__ for an addon (#3363) 2021-08-12 20:17:51 +02:00
threadsafety.py threadsafety.py: cleanup (#5132) 2023-06-08 19:58:11 +02:00
y2038.py test/cli/test-other.py: improved addon tests (#5469) 2023-09-25 13:39:17 +02:00

README.md

Cppcheck addons

Addons are scripts that analyses Cppcheck dump files to check compatibility with secure coding standards and to locate various issues.

Supported addons

  • misra.py Used to verify compliance with MISRA C 2012 - a proprietary set of guidelines to avoid such questionable code, developed for embedded systems. Since this standard is proprietary, cppcheck does not display error text by specifying only the number of violated rules (for example, [c2012-21.3]). If you want to display full texts for violated rules, you will need to create a text file containing MISRA rules, which you will have to pass when calling the script with --rule-texts key. Some examples of rule texts files available in tests directory.
  • y2038.py Checks Linux system for year 2038 problem safety. This required modified environment. See complete description here.
  • threadsafety.py Analyse Cppcheck dump files to locate threadsafety issues like static local objects used by multiple threads.
  • naming.py Enforces naming conventions across the code.
  • namingng.py Enforces naming conventions across the code. Enhanced version with support for type prefixes in variable and function names.
  • findcasts.py Locates casts in the code.
  • misc.py Performs miscellaneous checks.

Other files

  • doc Additional files for documentation generation.
  • tests Contains various unit tests for the addons.
  • cppcheck.py Internal helper used by Cppcheck binary to run the addons.
  • cppcheckdata.doxyfile Configuration file for documentation generation.
  • cppcheckdata.py Helper class for reading Cppcheck dump files within an addon.
  • misra_9.py Implementation of the MISRA 9.x rules used by misra addon.
  • naming.json Example configuration for namingng addon.
  • ROS_naming.json Example configuration for the namingng addon enforcing the ROS naming convention for C++ .
  • runaddon.py Internal helper used by Cppcheck binary to run the addons.

Usage

Command line interface

cppcheck --addon=misc src/test.c

It is also possible to call scripts as follows:

cppcheck --dump --quiet src/test.c
python misc.py src/test.c.dump
python misra.py --rule-texts=~/misra_rules.txt src/test.c.dump

This allows you to add additional parameters when calling the script (for example, --rule-texts for misra.py). The full list of available parameters can be found by calling any script with the --help flag.

GUI

When using the graphical interface cppcheck-gui, the selection and configuration of addons is carried out on the tab Addons and tools in the project settings (Edit Project File):

Screenshot