-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrcFacts.cpp
67 lines (58 loc) · 3.08 KB
/
srcFacts.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
srcFacts.cpp
Produces a report with various measures of source code.
Supports C++, C, Java, and C#. Input is an XML file in the srcML format,
and output is a markdown table with the measures. Performance statistics
are output to standard error.
The code includes a complete XML parser:
* Characters and content from XML is in UTF-8
* DTD declarations are allowed, but not fine-grained parsed
* No checking for well-formedness
*/
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <string_view>
#include <cmath>
#include <chrono>
#include <cassert>
#include "refillContent.hpp"
#include "XMLParser.hpp"
#include "srcFactsHandler.hpp"
// provides literal string operator""sv
using namespace std::literals::string_view_literals;
int main(int argc, char* argv[]) {
const auto startTime = std::chrono::steady_clock::now();
std::string_view content;
srcFactsHandler handler;
XMLParser parser(content, handler);
// parse XML
parser.parse();
const auto finishTime = std::chrono::steady_clock::now();
const auto elapsedSeconds = std::chrono::duration_cast<std::chrono::duration<double>>(finishTime - startTime).count();
const auto MLOCPerSecond = handler.getLoc() / elapsedSeconds / 1000000;
const auto files = std::max(handler.getUnitCount() - 1, 1);
std::cout.imbue(std::locale{""});
const auto valueWidth = std::max(5, static_cast<int>(log10(parser.getTotalBytes()) * 1.3 + 1));
std::cout << "# srcFacts: " << handler.getUrl() << '\n';
std::cout << "| Measure | " << std::setw(valueWidth + 3) << "Value |\n";
std::cout << "|:-------------|-" << std::setw(valueWidth + 3) << std::setfill('-') << ":|\n" << std::setfill(' ');
std::cout << "| Characters | " << std::setw(valueWidth) << handler.getTextSize() << " |\n";
std::cout << "| LOC | " << std::setw(valueWidth) << handler.getLoc() << " |\n";
std::cout << "| Files | " << std::setw(valueWidth) << files << " |\n";
std::cout << "| Classes | " << std::setw(valueWidth) << handler.getClassCount() << " |\n";
std::cout << "| Functions | " << std::setw(valueWidth) << handler.getFunctionCount() << " |\n";
std::cout << "| Declarations | " << std::setw(valueWidth) << handler.getDeclCount() << " |\n";
std::cout << "| Expressions | " << std::setw(valueWidth) << handler.getExprCount() << " |\n";
std::cout << "| Comments | " << std::setw(valueWidth) << handler.getCommentCount() << " |\n";
std::cout << "| Returns | " << std::setw(valueWidth) << handler.getReturnCount() << " |\n";
std::cout << "| Line Comments| " << std::setw(valueWidth) << handler.getLineCommentCount()<< " |\n";
std::cout << "| Strings | " << std::setw(valueWidth) << handler.getStringCount() << " |\n";
std::clog.imbue(std::locale{""});
std::clog.precision(3);
std::clog << '\n';
std::clog << parser.getTotalBytes() << " bytes\n";
std::clog << elapsedSeconds << " sec\n";
std::clog << MLOCPerSecond << " MLOC/sec\n";
return 0;
}