reson is a robust command-line tool designed for detecting code duplication across multiple source files. By leveraging Abstract Syntax Tree (AST) analysis, reson ensures accurate and reliable detection of duplicated code, supporting various programming languages such as C/C++, Java, and Python.
This tool helps maintain high-quality codebases by identifying redundant code blocks, enabling effective refactoring and optimization.
- AST-based Analysis: Ensures precise duplication detection by analyzing the code structure rather than plain text.
- Customizable Thresholds: Define the minimum number of lines to consider as duplicates.
- Exclude Directories/Files: Easily exclude specific paths from the analysis.
- Flexible Output Options: Generate detailed reports in JSON and other formats.
- Debug Mode: Access additional logs for debugging and deeper analysis.
Language |
---|
C |
C++ |
Java |
Go |
Python |
JavaScript |
Rust |
Clone the repository and build the project using Rust's Cargo:
git clone https://github.com/nexepic/reson.git
cd reson
cargo build --release
Run the tool using the following command:
./reson --source-path <path_to_source> [options]
Detect code duplication in the src directory, excluding tests and build directories, and output the results to result.json:
./reson \
--source-path src \
--excludes tests,build \
--output-format json \
--output-file result.json \
--threshold 10
Run the included test suite to validate functionality:
cargo test
We welcome contributions to enhance reson. Feel free to open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
reson was created by Nexepic to streamline the process of detecting and managing code duplication in diverse codebases. Your feedback and contributions are highly valued!