|
Arkanjo 0.2
A tool for find code duplicated functions in codebases
|
Parses and transforms duplication detection tool output. More...
#include <parser.hpp>
Public Member Functions | |
| Parser (const fs::path &output_file, double similarity_cap) | |
| Constructs parser with configuration. | |
| void | exec_from_stream (FILE *pipe) |
| Main parsing execution method using stream. | |
| ~Parser () | |
Parses and transforms duplication detection tool output.
Processes raw output from third-party duplication detection tools, filters results by similarity threshold, and produces cleaned output.
Definition at line 70 of file parser.hpp.
|
explicit |
Constructs parser with configuration.
| output_file | Path for cleaned output |
| similarity_cap | Minimum similarity threshold (0-100) |
Definition at line 126 of file parser.cpp.
| Parser::~Parser | ( | ) |
Definition at line 134 of file parser.cpp.
| void Parser::exec_from_stream | ( | FILE * | pipe | ) |
Main parsing execution method using stream.
Definition at line 90 of file parser.cpp.