Code Similarity (csim) is a method designed to detect similarity between source codes
Project description
Code Similarity (csim)
Code Similarity (csim) provide a module designed to detect similarities between source code files, even when obfuscation techniques have been applied. It is particularly useful for programming instructors and students who need to verify code originality.
Key Features
- Source Code Similarity Analysis: Compares source code files to determine their degree of similarity.
- Advanced Analysis: Utilizes parse trees and the tree edit distance algorithm for in-depth analysis.
- Parse Trees: Represents the syntactic structure of source code, enabling detailed comparisons.
- Tree Edit Distance: Measures the similarity between different code structures.
- Hash-Based Pruning: Optimizes the comparison process by reducing tree size while preserving essential structure.
Technologies Used
- Python: The core programming language for the tool.
- ANTLR: A parser generator for creating parse trees from source code.
- zss: A library for calculating the tree edit distance.
Installation
- Clone the repository:
git clone https://github.com/EdsonEddy/csim.git
- Navigate to the project directory:
cd csim
- Install the package:
pip install .
Version Compatibility
- Python: 3.9–3.12 (recommended 3.11)
- ANTLR4 Python Runtime: 4.13.2
- zss: 1.2.0
Usage
csim can be used from the command line. For now, only Python files are supported; more languages will be added in future versions.
For example, to compare two Python files, run:
Option --files (Specify Files)
This option will compare two specified files and output the similarity index.
csim --files file1.py file2.py
Output
file1.py is similar to file2.py with similarity index: X.XX
Option --path (Specify Directory)
This option will compare all the files in the specified directory and output the similarity index for each pair of files. This option is expensive in terms of time complexity, so it is recommended to use it with a small number of files.
csim --path /path/to/directory
Output
file1.py is similar to file2.py with similarity index: X.XX
file1.py is similar to file3.py with similarity index: X.XX
...
fileN.py is similar to fileM.py with similarity index: X.XX
Notes:
- Only
.pyfiles within the directory are considered. - The output uses full file paths when reporting similarities.
Option --lang (Specify Language)
You can specify the input language. Currently, only python is supported and it is the default.
csim --files file1.py file2.py --lang python
Option --threshold (Specify Similarity Threshold)
You can specify a similarity threshold to group files based on their similarity.
Only available when using the --files option. If the similarity index is above the threshold, it will be reported in the output.
csim --path /path/to/directory --threshold 0.7
Output
Threshold: 0.7
Total files processed: N
Group 1 (Average similarity: X.XX):
file1.py
file2.py
Group 2 (Average similarity: X.XX):
file3.py
file4.py
...
Unique files (similarity below threshold):
fileN.py
Alternatively, you can use csim as a Python module:
from csim import Compare
code_a = "a = 5"
code_b = "c = 50"
similarity = Compare(name_a = 'example A', content_a = code_a, name_b = 'example B', content_b = code_b)
print(f"Similarity: {similarity}") # Output: Similarity: X.XX
ANTLR4 Installation and Parser/Lexer Generation
This installation is not required—the generated files are already included in the project. If you'd like to review the steps to generate them yourself, see grammars/parser_gen_guide.md.
Note: The included generated files were produced by ANTLR 4.13.2 and are compatible with the pinned runtime listed above.
Contributing
Contributions are welcome! To contribute, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/new-feature). - Make your changes and commit them (
git commit -am 'Add new feature'). - Push to the branch (
git push origin feature/new-feature). - Open a Pull Request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Links
Additional Resources
For more information on the techniques and tools used in this project, refer to the following resources:
Third-Party Licenses
This project utilizes the following third-party libraries:
ANTLR (ANother Tool for Language Recognition)
- Purpose: A parser generator used to create parse trees from source code.
- License: BSD 3-Clause
- Website: https://www.antlr.org/
- Repository: https://github.com/antlr/antlr4
ANTLR4-parser-for-Python-3.14 by RobEin
- Purpose: Python 3.14 grammar for ANTLR4
- License: MIT License
- Repository: https://github.com/RobEin/ANTLR4-parser-for-Python-3.14
zss (Zhang-Shasha)
- Purpose: Tree edit distance algorithm implementation for comparing tree structures
- License: MIT License
- Repository: https://github.com/timtadh/zhang-shasha
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file csim-1.6.1.tar.gz.
File metadata
- Download URL: csim-1.6.1.tar.gz
- Upload date:
- Size: 777.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14a6d4e98b0f3eaadf75ca1f2a0484307807a54da7e0823c54e50fe05213cd73
|
|
| MD5 |
4cc6ddc7cf8146dcfe8276fbf8652371
|
|
| BLAKE2b-256 |
71e8ebaf322b7fb3200aa871480e2614b96fe22848e8a3a7871714dbcfdcb1f2
|
File details
Details for the file csim-1.6.1-py3-none-any.whl.
File metadata
- Download URL: csim-1.6.1-py3-none-any.whl
- Upload date:
- Size: 99.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00376d87c68a2b2ae1d4c76c2a0dfcbee6daae3c4fececbc1c55c915dc5094a3
|
|
| MD5 |
b0c37153c293376847215251c1c5638d
|
|
| BLAKE2b-256 |
dc7478bf9aa87d055f4b3d475d9e99466aa752336904847ec91d26bc1874b3b3
|