Skip to main content

Find problems in C++ source that slow development of large code bases.

Project description

Build status

Goal

cppclean attempts to find problems in C++ source that slow development in large code bases, for example various forms of unused code. Unused code can be unused functions, methods, data members, types, etc to unnecessary #include directives. Unnecessary #includes can cause considerable extra compiles increasing the edit-compile-run cycle.

This is a fork of the original cppclean project. The original project home page, which no longer contains code, is: https://code.google.com/p/cppclean/

Features

cppclean finds the following:

  • Classes with virtual methods, no virtual destructor, and no bases

  • Global/static data that are potential problems when using threads

  • Functions that are declared but not defined

  • Unnecessary forward class declarations

  • Unnecessary function declarations

  • Undeclared function definitions

  • Unnecessary header files #included
    • No direct reference to anything in the header

    • Header is unnecessary if classes were forward declared instead

  • (planned) Source files that reference headers not directly #included, ie, files that rely on a transitive #include from another header

  • (planned) Unused members (private, protected, & public) methods and data

  • (planned) using namespace std in header files

AST is Abstract Syntax Tree, a representation of parsed source code. http://en.wikipedia.org/wiki/Abstract_syntax_tree

Installation

$ pip install --upgrade cppclean

Run

$ cppclean <path>

Multiple include paths can be specified:

$ cppclean --include-path=directory1 --include-path=directory2 <path>

Current status

The parser works pretty well for header files, parsing about 99% of Google’s header files. Anything which inspects structure of C++ source files should work reasonably well. Function bodies are not transformed to an AST, but left as tokens.

Non-goals

  • Parsing all valid C++ source

  • Handling invalid C++ source gracefully

  • Compiling to machine code (or anything beyond an AST)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cppclean-0.2.6.tar.gz (30.4 kB view details)

Uploaded Source

File details

Details for the file cppclean-0.2.6.tar.gz.

File metadata

  • Download URL: cppclean-0.2.6.tar.gz
  • Upload date:
  • Size: 30.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cppclean-0.2.6.tar.gz
Algorithm Hash digest
SHA256 101aafe19a9f0608482d52b9069dc83a45858428d2c2bc23474a6b40b2ce39db
MD5 feb704abe0804fdf4ad7b65f9bd82c58
BLAKE2b-256 4c219b938a0f5095075202d377824ee0851020ffd5e6d7f53cbf35f124f02bfe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page