Skip to content

cricamfe/c3ms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C3MS: Halstead's Effort and Complexity Metrics Calculator

C3MS is a comprehensive tool for calculating Halstead's programming effort and various complexity metrics. It analyzes the token composition in code files, providing valuable insights into your software's complexity and maintainability.

Table of Contents

Acknowledgments

Special thanks to all contributors for their dedication and invaluable input. This project is profoundly inspired by Basilio B. Fraguela's original C3MS code (2009-2010) [1]. In honor of his work, we have kept the name in recognition, yet our version is completely renewed, adapted to the latest C++ standards and modern APIs like oneTBB, SYCL, or SIMD.

Thanks also to the template created by the user remusao to work with Flex and Bison projects with C++ code.

[1]. "A Generic Algorithm Template for Divide-and-Conquer in Multicore Systems" presented at the 12th IEEE Intl Conf on High Performance Computing and Communications (HPCC 2010), pp. 79-88, 2010

Installation

Prerequisites: Ensure that your system meets the required dependencies before installation.

Install Bison and Flex:

Ubuntu
sudo apt-get update
sudo apt-get install bison flex

Debug/Development Mode

For developers and contributors:

./configure --with-debug
make

Release Mode

For standard installation:

./configure
make

Usage

To get started:

./C3MS [-h] [-f] [-a] [-g] [-v level] <files>

Detailed examples and use cases are available in the Usage Guide.

Description

C3MS independently calculates metrics for each file and aggregates them across all files, offering a comprehensive analysis of programming effort and complexity.

Criteria for Tokens

  • Operands: Constants, types, identifiers, and C specifiers.
  • Operators: Language and API keywords, custom developer keywords.

Includes Halstead's volume, conditional statement counts, and more.

Options

Comprehensive command options with different levels of verbosity are available, catering to various analysis needs.

  • h, --help:

    • Function: Displays a comprehensive help message.
  • f, --function-metrics:

    • Function: Initiates an in-depth analysis and generates a report detailing metrics for each individual function within the source files.
    • Use Case: Use this when you need a granular view of each function's complexity and performance metrics.
  • a, --file-metrics:

    • Function: Focuses the analysis at the file level, providing a metrics report for each file.
    • Use Case: Beneficial when evaluating the overall quality or complexity of each file independently.
  • g, --global-metrics:

    • Function: Aggregates and reports metrics across all specified files, offering a holistic view of the entire codebase.
    • Use Case: Ideal for getting an overall sense of the project's complexity and maintainability.
  • -v [level], --verbosity [level]:

    • Function: Controls the depth of information included in the output.
    • Levels:
      • Level 1: Basic metrics, providing an overview of essential aspects like Effort, Volume, Conditions, Cyclomatic Complexity, Difficulty, Time Required, Bugs, and Maintainability.
      • Level 2: Includes everything in Level 1, plus additional statistical data such as Types, Constants, Identifiers, C Specifiers, Keywords, and Operators.
      • Level 3: Encompasses all metrics from Levels 1 and 2, supplemented with Detailed Metrics for a comprehensive analysis. This includes unique operators (n1), unique operands (n2), total operators (N1), and total operands (N2).
    • Use Case: Adjust the verbosity level based on your reporting needs – whether you require a high-level summary (Level 1), more detailed insights (Level 2), or an exhaustive analysis (Level 3).

These command options empower users to fine-tune the analysis process, ensuring that C3MS delivers precisely the insights needed, whether for a quick overview or a detailed examination of your code's complexity and maintainability.

Usage Guide

Basic Usage

./C3MS -a <files>

Basic Usage

Verbose Mode

./C3MS -a -v 3 <files>

Verbose Mode

Debug mode (for developers)

In this mode, the tool will display the tokens found in the file, along with their corresponding type. To analyze a single file in debug mode:

./configure --with-debug
make
./C3MS -a <files>

Debug Mode

Updates and Contributions

By C. Campos-Ferrer (University of Málaga)

  • Extensive project restructuring and lexicon expansion.
  • Enhanced parsing capabilities and introduction of new metrics.
  • Overall improvement in performance and usability.

Full details of the 2023 updates can be found here.

FAQs/Troubleshooting

For common questions and troubleshooting advice, visit our FAQs section.

License

This project is licensed under GPL-2.0 license. See the LICENSE file for details.