Guidelines and HOWTOs/Code Checking: Difference between revisions

From KDE Community Wiki
(https://community.kde.org/Get_Involved/development/Easy#Fix_static_analysis_issue_using_Allen_Winter's_krazy)
 
(24 intermediate revisions by 13 users not shown)
Line 1: Line 1:
{{Note|This page has old content. See page history.}}
Note: Allen Winter's Krazy is here https://github.com/Krazy-collection/krazy .
See https://community.kde.org/Get_Involved/development/Easy#Fix_static_analysis_issue_using_Allen_Winter's_krazy
The information below is probably incorrect because it is old.
==Code Checking==
==Code Checking==
There are a lot of ways to find bugs in KDE code. Increasingly, KDE developers have started to use automated tools. You can use some of those tools to improve your own code.
There are a lot of ways to find bugs in KDE code. Increasingly, KDE developers have started to use automated tools. You can use some of those tools to improve your own code.
Line 6: Line 12:


You can also run the tests yourself. To do this, you need to obtain a copy of
You can also run the tests yourself. To do this, you need to obtain a copy of
the code from {{path|trunk/quality/krazy2}} and install them. You can then test either a single file (using the krazy2 application) or a whole tree, including subdirectories (using the krazy2all application).
the code from [https://github.com/Krazy-collection/krazy krazy2/install.txt] and install them. You can then test either a single file (using the krazy2 application) or a whole tree, including subdirectories (using the krazy2all application).


====How Krazy works====
====How Krazy works====
Line 23: Line 29:
Krazy needs to be installed before use. Krazy has two different ways to be
Krazy needs to be installed before use. Krazy has two different ways to be
installed - you can either modify the {{path|krazy2/install.sh}} script and
installed - you can either modify the {{path|krazy2/install.sh}} script and
run it, or follow the instructions in the [http://websvn.kde.org/trunk/quality/krazy2/INSTALL.txt?view=markup krazy2/INSTALL.txt] file. I recommend the second.
run it, or follow the instructions in the [https://github.com/Krazy-collection/krazy krazy2/install.txt] file. I recommend the second.


You may need to install additional perl modules like XML::LibXML, here is how:
You may need to install additional perl modules like XML::LibXML, here is how:
linux-pudb:~/krazy2 # ./install.sh
<pre>
MakeMaker FATAL: prerequisites not found.
linux-pudb:~/krazy2 # ./install.sh
    Tie::IxHash not installed
MakeMaker FATAL: prerequisites not found.
    XML::LibXML not installed
    Tie::IxHash not installed
    XML::LibXML not installed


Please install these modules first and rerun 'perl Makefile.PL'.
Please install these modules first and rerun 'perl Makefile.PL'.
linux-pudb:~/krazy2 # perl -mCPAN -e CPAN::shell
linux-pudb:~/krazy2 # perl -mCPAN -e CPAN::shell
</pre>
You may have to answer 25 useless questions here. In this case, just press ENTER 25 times. Then you go on like this:
You may have to answer 25 useless questions here. In this case, just press ENTER 25 times. Then you go on like this:
cpan[1]> install XML::LibXML
<pre>
cpan[1]> install XML::LibXML
</pre>


The Tie::IxHash I installed from the distro repository (libtie-ixhash-perl) and also the perl-doc package is needed to install it.
The Tie::IxHash I installed from the distro repository (libtie-ixhash-perl) and also the perl-doc package is needed to install it.
Line 64: Line 74:
====Suppressing false-positives====
====Suppressing false-positives====
The Krazy tests are designed to minimise false positives (that is, alerts that do not represent real problems). However because most of the tests are conducted on a single line, there are some tests that might produce such a false positive. For example, code that does something like:
The Krazy tests are designed to minimise false positives (that is, alerts that do not represent real problems). However because most of the tests are conducted on a single line, there are some tests that might produce such a false positive. For example, code that does something like:
<code cppqt>
<syntaxhighlight lang="cpp-qt">
QString mystring;
QString mystring;
mystring += "/";
mystring += "/";
</code>
</syntaxhighlight>
will be flagged by the doublequote_chars checker, because it is more efficient to add a single char, as shown below:
will be flagged by the doublequote_chars checker, because it is more efficient to add a single char, as shown below:
<code cppqt>
<syntaxhighlight lang="cpp-qt">
QString mystring;
QString mystring;
// note that we are using single quotes
// note that we are using single quotes
// this is a char, not a char array
// this is a char, not a char array
mystring += '/';
mystring += '/';
</code>
</syntaxhighlight>


That same checker will produce a false positive for code that looks like:
That same checker will produce a false positive for code that looks like:
<code cppqt>
<syntaxhighlight lang="cpp-qt">
std::string mystring;
std::string mystring;
mystring += "/";
mystring += "/";
</code>
</syntaxhighlight>


You can suppress these false positives using a special comment format.
You can suppress these false positives using a special comment format.
To exclude a particular plugin from being run on a line of code, simply add
To exclude a particular plugin from being run on a line of code, simply add
a C++ comment containing the string "krazy:exclude=<plugin_name>". The plugins currently available can be found in the
a C++ comment containing the string "krazy:exclude=<plugin_name>". The plugins currently available can be found in the
[http://websvn.kde.org/trunk/quality/krazy2/plugins repository].
[http://github.com/Krazy-collection/krazy/tree/master/plugins repository].


Specifically, for this plugin use "krazy:exclude=doublequote_chars".
Specifically, for this plugin use "krazy:exclude=doublequote_chars".
For example:
For example:
<code cppqt>
<syntaxhighlight lang="cpp-qt">
  lenstr = "0" + lenstr;
lenstr = "0" + lenstr;
</code>
</syntaxhighlight>
becomes
becomes
<code cppqt>
<syntaxhighlight lang="cpp-qt">
  lenstr = "0" + lenstr;  // krazy:exclude=doublequote_chars
lenstr = "0" + lenstr;  // krazy:exclude=doublequote_chars
</code>
</syntaxhighlight>


{{Note|Using c-style (/* */) comments will ''not'' work. You must use C++ style (//) comments when noting tests to be skipped.}}
{{Note|Using c-style (/* */) comments will ''not'' work. You must use C++ style (//) comments when noting tests to be skipped.}}
Line 104: Line 114:
To ignore a sub-directory within a module, say {{path|kdepim/kmail}}, use the IGNORESUBS directory within the {{path|kdepim/.krazy}} file, like so:
To ignore a sub-directory within a module, say {{path|kdepim/kmail}}, use the IGNORESUBS directory within the {{path|kdepim/.krazy}} file, like so:


<code>
<pre>
IGNORESUBS kmail
IGNORESUBS kmail
</code>
</pre>


Or you can ignore a set of directories by specifying a comma-separated list:
Or you can ignore a set of directories by specifying a comma-separated list:


<code>
<pre>
IGNORESUBS kmail,kontact,knode
IGNORESUBS kmail,kontact,knode
</code>
</pre>


To ignore files or directories within a module/subdir, specify a regular expression that matches the files to skip together with the SKIP directive.
To ignore files or directories within a module/subdir, specify a regular expression that matches the files to skip together with the SKIP directive.
For example, to skip the directories {{path|kdepimlibs/kcal/libical}}, {{path|kdepimlibs/kcal/versit}}, and the {{path|kdepimlibs/kcal/fred.c}} file, use this directive within the {{path|kdepim/kcal/.krazy}} file:
For example, to skip the directories {{path|kdepimlibs/kcal/libical}}, {{path|kdepimlibs/kcal/versit}}, and the {{path|kdepimlibs/kcal/fred.c}} file, use this directive within the {{path|kdepim/kcal/.krazy}} file:


<code>
<pre>
SKIP /libical/\|/versit/\|fred\.c
SKIP /libical/\|/versit/\|fred\.c
</code>
</pre>


Use the EXCLUDE directive to disable a list of plugins for all files within a module/subdir:
Use the EXCLUDE directive to disable a list of plugins for all files within a module/subdir:


<code>
<pre>
EXCLUDE doublequote_chars,qclasses
EXCLUDE doublequote_chars,qclasses
</code>
</pre>


To override the EXCLUDE directive set from a {{path|.krazy}} file up in the directory hierarchy, use the CHECK command.  For example, the component level {{path|.krazy}} file may EXCLUDE the ''copyright'' and ''license'' plugins, but those plugins can be re-enabled in a module/subdir with the CHECK directive like so:
To override the EXCLUDE directive set from a {{path|.krazy}} file up in the directory hierarchy, use the CHECK command.  For example, the component level {{path|.krazy}} file may EXCLUDE the ''copyright'' and ''license'' plugins, but those plugins can be re-enabled in a module/subdir with the CHECK directive like so:


<code>
<pre>
CHECK copyright,license
CHECK copyright,license
</code>
</pre>
 
{{Note|Individual modules can be ignored as well, but this is an EBN administrator duty controlled by component-level ''.krazy'' files within the ''/usr/local/src'' hierarchy. See the [http://wiki.kde.org/English+Breakfast+Network English Breakfast Network wiki] for details.}}


===Compiler Warnings===
{{Note|Individual modules can be ignored as well, but this is an EBN administrator duty controlled by component-level ''.krazy'' files within the ''/usr/local/src'' hierarchy.}}
In addition to the various Krazy tools, you can also get valuable assistance from the warnings that the compiler emits, especially if you enable additional warnings (per the documentation for your compiler), and also if you test with more than one compiler (e.g. if you can test on Linux with both GCC and the Intel compiler; or on Linux with GCC and also on Windows with the Microsoft compiler).


===Krazy Checks===
===Krazy Modules===


Risk Ratings:
Risk Ratings:
Line 147: Line 154:


'''High:'''  Should only be fixed by maintainer/owner of code
'''High:'''  Should only be fixed by maintainer/owner of code
If you don't understand the code, or you don't understand the fix, then do not fix the code.
Fixing apidox and spelling mistakes only requires a compile before submitting.  All other fixes should be tested to an appropriate degree, the standard unit tests are useful for this.


====Module=spelling====
====Module=spelling====
'''Risk from Fixing:''' Low


Spelling errors in comments and strings should be fixed as they may show up later in API documentation, handbooks, etc. Misspelled strings make the translator's job harder. Please use US English.
Spelling errors in comments and strings should be fixed as they may show up later in API documentation, handbooks, etc. Misspelled strings make the translator's job harder. Please use US English.
To exclude all checks in file comment at top of file:
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=spelling
</syntaxhighlight>
To exclude an individual check comment at the end of the line:
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=spelling
</syntaxhighlight>
====Module=doublequote_chars====


'''Risk from Fixing:''' Low
'''Risk from Fixing:''' Low


Override inline with:
Adding single characters to a QString is faster if the characters are QChars and not QStrings, i.e. use single quotes instead of double quotes around single characters.
<code>
 
The same holds for arguments to QString::startsWith(), QString::endsWith(), QString::remove(), QString::section(), and QString::split().
 
Use QString::remove() instead of QString::replace(foo,"")
 
Replace
<syntaxhighlight lang="cpp-qt">
QString path = oldpath + "/" + base;
</syntaxhighlight>
with
<syntaxhighlight lang="cpp-qt">
QString path = oldpath + '/' + base;
</syntaxhighlight>
 
To exclude all checks in file comment at top of file:
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=doublequote_chars
</syntaxhighlight>


</code>
To exclude an individual check comment at the end of the line:
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=doublequote_chars
</syntaxhighlight>


====Module=nullstrassign====
====Module=nullstrassign====
'''Risk from Fixing:''' Low


Do not assign QString::null or QString() to a QString. Instead use the .clear() method.
Do not assign QString::null or QString() to a QString. Instead use the .clear() method.


Replace
Replace
<code>
<syntaxhighlight lang="cpp-qt">
fileName = QString::null;
fileName = QString::null;
</code>
</syntaxhighlight>
or
or
<code>
<syntaxhighlight lang="cpp-qt">
fileName = QString();
fileName = QString();
</code>
</syntaxhighlight>
with
with
<code>
<syntaxhighlight lang="cpp-qt">
fileName.clear();
fileName.clear();
</code>
</syntaxhighlight>


When returning an empty string from a method use "return QString()" When passing an empty string use "QString()".
When returning an empty string from a method use "return QString()" When passing an empty string use "QString()".


Override inline with:
To exclude all checks in file comment at top of file:
<code>
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=nullstrassign
</syntaxhighlight>
 
To exclude an individual check comment at the end of the line:
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=nullstrassign
</syntaxhighlight>
 
====Module=foreach====
 
'''Message:''' non-const ref iterator
 
'''Risk from Fixing:''' Low to Medium
 
When not using POD types (int, double, pointer, ...) you should use const & for your foreach variables. There are two reasons for this: 1) Prevents you from the mistake of writing foreach loops that modify the list, that is 'foreach(Foo f, list) f.a = f.b = f.c = 0;' compiles but does not modify the contents of list 2) Saves a copy constructor call for each of the list elements
 
Be careful if dealing with pointers?  False positive for bool, qlonglong and qulonglong?
 
http://tsdgeos.blogspot.com/2008/04/qforeach-is-your-friend.html
 
Replace
<syntaxhighlight lang="cpp-qt">
foreach(QString str, stringList) {
</syntaxhighlight>
with
<syntaxhighlight lang="cpp-qt">
foreach(const QString &str, stringList) {
</syntaxhighlight>


</code>
'''Message:''' values or keys iteration
 
'''Risk from Fixing:''' Medium to High
 
http://tsdgeos.blogspot.com/2009/04/how-to-make-foreach-loops-that-dont.html
 
To exclude all checks in file comment at top of file:
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=foreach
</syntaxhighlight>
 
To exclude an individual check comment at the end of the line:
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=foreach
</syntaxhighlight>


====Module=strings====
====Module=strings====
Line 192: Line 281:


Replace
Replace
<code>
<syntaxhighlight lang="cpp-qt">
aString.startsWith("init")
aString.startsWith("init")
</code>
</syntaxhighlight>
with
with
<code>
<syntaxhighlight lang="cpp-qt">
aString.startsWith(QLatin1String("init"))
aString.startsWith(QLatin1String("init"))
</code>
</syntaxhighlight>
 
A common false positive is with QByteArray which cannot take a QLatin1String.
 
To exclude all checks in file comment at top of file:
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=strings
</syntaxhighlight>


A common false positive is with QByteArray which cannot take a QLatin1String.  To exclude comment inline with:
To exclude an individual check comment at the end of the line:
<code>
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=strings
// krazy:exclude=strings
</code>
</syntaxhighlight>


====Module=includes====
====Module=includes====
Line 222: Line 318:


The cpp file should include their own .h and _p.h headers first in the file (but below config.h).  Move the includes to the correct position.  You may need to adjust includes and forward declarations in other files as a result, the compiler will advise of these.
The cpp file should include their own .h and _p.h headers first in the file (but below config.h).  Move the includes to the correct position.  You may need to adjust includes and forward declarations in other files as a result, the compiler will advise of these.
'''Message:''' missing or improper include guard in header
'''Risk from Fixing:''' Low
Either the include guards are missing, or they are not appropriately encoded macro names, e.g. do not include the class name.
'''Message:'''


Use <..> to include installed headers.
Use <..> to include installed headers.
'''Message:'''


To include Qt headers from installed headers.
To include Qt headers from installed headers.


Use include guards in headers with appropriately encoded macro names.
To exclude all checks in file comment at top of file:
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=includes
</syntaxhighlight>


To exclude an individual check comment at the end of the line:
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=includes
</syntaxhighlight>


To exclude comment inline with:
====Module=qclasses====
<code>
 
// krazy:exclude=includes
'''Risk from Fixing:''' Medium
</code>
 
Deprecated Qt classes and classes that have a KDE version shouldn't be used. Also KDE versions of some Qt GUI elements provide a consistent look and feel for the KDE desktop. See http://techbase.kde.org/Policies/API_to_Avoid
 
Some of the K classes don't just add features to the Qt ones and might not even be based on the Qt class. '''Please refer to the API documentation before porting to the K classes.'''
 
To exclude all checks in file comment at top of file:
<syntaxhighlight lang="cpp-qt">
// krazy:excludeall=qclasses
</syntaxhighlight>
 
To exclude an individual check comment at the end of the line:
<syntaxhighlight lang="cpp-qt">
// krazy:exclude=qclasses
</syntaxhighlight>
 
==Compiler Warnings==
In addition to the various Krazy tools, you can also get valuable assistance from the warnings that the compiler emits, especially if you enable additional warnings (per the documentation for your compiler), and also if you test with more than one compiler (e.g. if you can test on Linux with both GCC and the Intel compiler; or on Linux with GCC and also on Windows with the Microsoft compiler).

Latest revision as of 03:33, 1 November 2023

Note

This page has old content. See page history.


Note: Allen Winter's Krazy is here https://github.com/Krazy-collection/krazy . See https://community.kde.org/Get_Involved/development/Easy#Fix_static_analysis_issue_using_Allen_Winter's_krazy The information below is probably incorrect because it is old.

Code Checking

There are a lot of ways to find bugs in KDE code. Increasingly, KDE developers have started to use automated tools. You can use some of those tools to improve your own code.

The KDE 'Krazy' Checker

KDE developers have a simple set of tests that are collectively known as "Krazy". These tests were originally developed to be run as part of a larger set of tests on a machine known as http://www.englishbreakfastnetwork.org, or EBN for short. You can see the results of running the various tests on EBN (at http://www.englishbreakfastnetwork.org/krazy/).

You can also run the tests yourself. To do this, you need to obtain a copy of the code from krazy2/install.txt and install them. You can then test either a single file (using the krazy2 application) or a whole tree, including subdirectories (using the krazy2all application).

How Krazy works

The Krazy tests are essentially a form of static analysis - they check the source code, but not how it runs.

Krazy exists as a framework comprising a number of different test runners, and a set of plugins. The test runners are called krazy2, krazy2all, and krazy2ebn. The test runners just call one or more plugins on the appropriate code, and format the results for display.

At this stage, most of the test runners are written in perl, however one is written in C++ (using Qt) and it is quite possible to add your own tests, or to modify a test - all sources are provided.

Installing Krazy

Krazy needs to be installed before use. Krazy has two different ways to be installed - you can either modify the krazy2/install.sh script and run it, or follow the instructions in the krazy2/install.txt file. I recommend the second.

You may need to install additional perl modules like XML::LibXML, here is how:

linux-pudb:~/krazy2 # ./install.sh
MakeMaker FATAL: prerequisites not found.
    Tie::IxHash not installed
    XML::LibXML not installed

Please install these modules first and rerun 'perl Makefile.PL'.
linux-pudb:~/krazy2 # perl -mCPAN -e CPAN::shell

You may have to answer 25 useless questions here. In this case, just press ENTER 25 times. Then you go on like this:

cpan[1]> install XML::LibXML

The Tie::IxHash I installed from the distro repository (libtie-ixhash-perl) and also the perl-doc package is needed to install it.

Note

I had a minor problem with the plugin that is built from C++, because that plugin got installed into the wrong directory. If you are missing the passbyvalue plugin, then you may need to move it into the directory that contains the rest of your plugins.


Using Krazy

Krazy comes with a particularly good man page, which gives you the various options and a usage example. The file is generated on installation. This is definitely recommended reading!

As noted above, there are three test runners - krazy2, krazy2ebn and krazy2all. If you are trying to check a single file, then krazy2 is the right tool. If you are trying to check a source tree (say, an application or a whole subversion module), then krazy2all is more useful. krazy2all doesn't have a man page, but you can get a list of the options with krazy2all --help. You can also use krazy2 to get information on the various plugins, which can help you understand more about krazy2all.

krazy2ebn is the tool that runs over the KDE codebase on the EBN and should not be run locally. However, please see Controlling Krazy on the EBN below to learn how you can control which plugins are run, and what files are processed by the krazy2ebn program on the EBN machine.

Remember that Krazy doesn't change your code - it only examines it. So you can safely experiment with running Krazy checks until you are confident that you understand what is happening.

Equally, that means that Krazy doesn't fix problems - it only tries to report them. Understanding what is being reported, and how to fix it, is up to you. You should also remember the KDE commit policy about not committing code that you don't understand. So fixing a spelling error in a comment is pretty safe, but blindly changing code to stop explicit constructor warnings from Krazy is not a good idea.

In-Code directives

The Krazy plugins support the following list of in-code directives:

  • //krazy:skip - no Krazy tests will run on this file.
  • //krazy:excludeall=<name1[,name2,...,nameN]> - the Krazy tests name1, etc will not be run on this file. Multiple occurrences of krazy:excludeall are allowed.
  • //krazy:exclude=<name1[,name2,...,nameN]> - the Krazy tests name1, etc. will not be run on the line where this directive is found (see the next section below for more information).

Note that these directives must be C++ style comments that can be put anywhere in the file desired (except embedded within C-style comments).

Suppressing false-positives

The Krazy tests are designed to minimise false positives (that is, alerts that do not represent real problems). However because most of the tests are conducted on a single line, there are some tests that might produce such a false positive. For example, code that does something like:

QString mystring;
mystring += "/";

will be flagged by the doublequote_chars checker, because it is more efficient to add a single char, as shown below:

QString mystring;
// note that we are using single quotes
// this is a char, not a char array
mystring += '/';

That same checker will produce a false positive for code that looks like:

std::string mystring;
mystring += "/";

You can suppress these false positives using a special comment format. To exclude a particular plugin from being run on a line of code, simply add a C++ comment containing the string "krazy:exclude=<plugin_name>". The plugins currently available can be found in the repository.

Specifically, for this plugin use "krazy:exclude=doublequote_chars". For example:

lenstr = "0" + lenstr;

becomes

lenstr = "0" + lenstr;  // krazy:exclude=doublequote_chars

Note

Using c-style (/* */) comments will not work. You must use C++ style (//) comments when noting tests to be skipped.


Controlling Krazy on the EBN

This section describes how to use .krazy files to control the Krazy runs on the EBN. The .krazy files are used to tell Krazy to skip over specific sub-directories, or files; or to disable certain plugins within those modules and sub-directories.

To ignore a sub-directory within a module, say kdepim/kmail, use the IGNORESUBS directory within the kdepim/.krazy file, like so:

IGNORESUBS kmail

Or you can ignore a set of directories by specifying a comma-separated list:

IGNORESUBS kmail,kontact,knode

To ignore files or directories within a module/subdir, specify a regular expression that matches the files to skip together with the SKIP directive. For example, to skip the directories kdepimlibs/kcal/libical, kdepimlibs/kcal/versit, and the kdepimlibs/kcal/fred.c file, use this directive within the kdepim/kcal/.krazy file:

SKIP /libical/\|/versit/\|fred\.c

Use the EXCLUDE directive to disable a list of plugins for all files within a module/subdir:

EXCLUDE doublequote_chars,qclasses

To override the EXCLUDE directive set from a .krazy file up in the directory hierarchy, use the CHECK command. For example, the component level .krazy file may EXCLUDE the copyright and license plugins, but those plugins can be re-enabled in a module/subdir with the CHECK directive like so:

CHECK copyright,license

Note

Individual modules can be ignored as well, but this is an EBN administrator duty controlled by component-level .krazy files within the /usr/local/src hierarchy.


Krazy Modules

Risk Ratings:

Low: Can be fixed by anyone with minimal risk of error.

Medium: Can be fixed by anyone with appropriate knowledge of C++ features involved, some testing advised.

High: Should only be fixed by maintainer/owner of code

If you don't understand the code, or you don't understand the fix, then do not fix the code.

Fixing apidox and spelling mistakes only requires a compile before submitting. All other fixes should be tested to an appropriate degree, the standard unit tests are useful for this.

Module=spelling

Risk from Fixing: Low

Spelling errors in comments and strings should be fixed as they may show up later in API documentation, handbooks, etc. Misspelled strings make the translator's job harder. Please use US English.

To exclude all checks in file comment at top of file:

// krazy:excludeall=spelling

To exclude an individual check comment at the end of the line:

// krazy:exclude=spelling

Module=doublequote_chars

Risk from Fixing: Low

Adding single characters to a QString is faster if the characters are QChars and not QStrings, i.e. use single quotes instead of double quotes around single characters.

The same holds for arguments to QString::startsWith(), QString::endsWith(), QString::remove(), QString::section(), and QString::split().

Use QString::remove() instead of QString::replace(foo,"")

Replace

QString path = oldpath + "/" + base;

with

QString path = oldpath + '/' + base;

To exclude all checks in file comment at top of file:

// krazy:excludeall=doublequote_chars

To exclude an individual check comment at the end of the line:

// krazy:exclude=doublequote_chars

Module=nullstrassign

Risk from Fixing: Low

Do not assign QString::null or QString() to a QString. Instead use the .clear() method.

Replace

fileName = QString::null;

or

fileName = QString();

with

fileName.clear();

When returning an empty string from a method use "return QString()" When passing an empty string use "QString()".

To exclude all checks in file comment at top of file:

// krazy:excludeall=nullstrassign

To exclude an individual check comment at the end of the line:

// krazy:exclude=nullstrassign

Module=foreach

Message: non-const ref iterator

Risk from Fixing: Low to Medium

When not using POD types (int, double, pointer, ...) you should use const & for your foreach variables. There are two reasons for this: 1) Prevents you from the mistake of writing foreach loops that modify the list, that is 'foreach(Foo f, list) f.a = f.b = f.c = 0;' compiles but does not modify the contents of list 2) Saves a copy constructor call for each of the list elements

Be careful if dealing with pointers? False positive for bool, qlonglong and qulonglong?

http://tsdgeos.blogspot.com/2008/04/qforeach-is-your-friend.html

Replace

foreach(QString str, stringList) {

with

foreach(const QString &str, stringList) {

Message: values or keys iteration

Risk from Fixing: Medium to High

http://tsdgeos.blogspot.com/2009/04/how-to-make-foreach-loops-that-dont.html

To exclude all checks in file comment at top of file:

// krazy:excludeall=foreach

To exclude an individual check comment at the end of the line:

// krazy:exclude=foreach

Module=strings

Message: QLatin1String issues

Risk from Fixing: Low to Medium

Some QString methods (like startsWith() and endsWith()) are more efficient if they are passed a QLatin1String, avoiding an implicit conversion from const char *.

Replace

aString.startsWith("init")

with

aString.startsWith(QLatin1String("init"))

A common false positive is with QByteArray which cannot take a QLatin1String.

To exclude all checks in file comment at top of file:

// krazy:excludeall=strings

To exclude an individual check comment at the end of the line:

// krazy:exclude=strings

Module=includes

See http://techbase.kde.org/Policies/Library_Code_Policy#Getting_.23includes_right.

Message: duplicate includes

Risk from Fixing: Low

The same file has been included twice, remove the second occurrence.

Message: include own header first

Message: include own _p header first

Risk from Fixing: Medium

The cpp file should include their own .h and _p.h headers first in the file (but below config.h). Move the includes to the correct position. You may need to adjust includes and forward declarations in other files as a result, the compiler will advise of these.

Message: missing or improper include guard in header

Risk from Fixing: Low

Either the include guards are missing, or they are not appropriately encoded macro names, e.g. do not include the class name.

Message:

Use <..> to include installed headers.

Message:

To include Qt headers from installed headers.

To exclude all checks in file comment at top of file:

// krazy:excludeall=includes

To exclude an individual check comment at the end of the line:

// krazy:exclude=includes

Module=qclasses

Risk from Fixing: Medium

Deprecated Qt classes and classes that have a KDE version shouldn't be used. Also KDE versions of some Qt GUI elements provide a consistent look and feel for the KDE desktop. See http://techbase.kde.org/Policies/API_to_Avoid

Some of the K classes don't just add features to the Qt ones and might not even be based on the Qt class. Please refer to the API documentation before porting to the K classes.

To exclude all checks in file comment at top of file:

// krazy:excludeall=qclasses

To exclude an individual check comment at the end of the line:

// krazy:exclude=qclasses

Compiler Warnings

In addition to the various Krazy tools, you can also get valuable assistance from the warnings that the compiler emits, especially if you enable additional warnings (per the documentation for your compiler), and also if you test with more than one compiler (e.g. if you can test on Linux with both GCC and the Intel compiler; or on Linux with GCC and also on Windows with the Microsoft compiler).