-
Notifications
You must be signed in to change notification settings - Fork 17
/
convert.cc
231 lines (196 loc) · 6.5 KB
/
convert.cc
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <boost/foreach.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/key_extractors.hpp>
#include <unordered_map>
using namespace ::boost::multi_index;
#include <string>
#include <set>
#include <exception>
#include <iostream>
#include <fstream>
#include <unordered_set>
#include <map>
#include "nlohmann/json.hpp"
namespace pt = boost::property_tree;
using namespace std;
struct RFCEntry
{
std::string name;
time_t creation;
set<std::string> obsoletes;
set<std::string> obsoletedBy;
string title;
mutable bool obsoleted{false};
string currentStatus;
int pages{0};
};
struct NameTag{};
struct TimeTag{};
typedef multi_index_container<
RFCEntry,
indexed_by<
ordered_non_unique<
tag<TimeTag>,
member<RFCEntry, time_t, &RFCEntry::creation>
>,
ordered_unique<
tag<NameTag>,
member<RFCEntry, std::string, &RFCEntry::name>
>
>
> index_t;
index_t g_index;
int main(int argc, char** argv)
{
string specific;
specific = "dns"; // this code defaults to dns; but could be used for oher areas
if (argc > 1) {
specific = argv[1];
}
ifstream dnsrfcsfile(specific + "-rfc-annotations.json");
nlohmann::json dnsrfcsJS;
dnsrfcsfile >> dnsrfcsJS;
std::unordered_map<string, unordered_set<string>> dnsrfcs;
for(auto iter = dnsrfcsJS.begin() ; iter != dnsrfcsJS.end(); ++iter) {
for(const auto& s : iter.value()["sections"])
dnsrfcs[boost::to_upper_copy(iter.key())].insert(s.get<string>());
}
cout<<"Have "<<dnsrfcs.size()<<" RFCs whitllisted for " + specific<<endl;
// Create empty property tree object
pt::ptree tree;
// Parse the XML into the property tree.
pt::read_xml("ext/rfc-index.xml", tree);
auto idx=tree.get_child("rfc-index");
int count=0;
for(const auto& v : idx) {
if(v.first=="rfc-entry") {
RFCEntry re;
re.name = v.second.get_child("doc-id").data();
if(!dnsrfcs.count(re.name)) {
// cout << "Ignoring "<<re.name<<", not a " + specific + " rfc"<<endl;
continue;
}
else {
// if(dnsrfcs[re.name].count("dns-use"))
// continue;
}
re.title = v.second.get_child("title").data();
re.currentStatus=v.second.get_child("current-status").data();
if(re.currentStatus == "DRAFT STANDARD")
re.currentStatus = "PROPOSED STANDARD";
count++;
if(v.second.count("obsoleted-by")) {
for(const auto obs : v.second.get_child("obsoleted-by")) {
re.obsoletedBy.insert(obs.second.data());
if(!dnsrfcs.count(obs.second.data())) {
cerr<<re.name<<" " <<re.title<<" is obsoleted by "<< obs.second.data()<< " which itself is not a " + specific + " RFC!" <<endl;
}
}
}
if(v.second.count("obsoletes")) {
for(const auto obs : v.second.get_child("obsoletes")) {
re.obsoletes.insert(obs.second.data());
if(!dnsrfcs.count(obs.second.data())) {
cerr<<re.name<<" " <<re.title<<" obsoletes "<< obs.second.data()<< " which itself is not a " + specific + " RFC!" <<endl;
}
}
}
if(v.second.count("updated-by")) {
for(const auto obs : v.second.get_child("updated-by")) {
if(!dnsrfcs.count(obs.second.data())) {
cerr<<re.name<<" " <<re.title<<" is updated by "<< obs.second.data()<< " which itself is not a " + specific + " RFC!" <<endl;
}
}
}
if(v.second.get_child("format").count("page-count")) {
re.pages = atoi(v.second.get_child("format.page-count").data().c_str());
string date = v.second.get_child("date.month").data();
date+=" ";
date +=v.second.get_child("date.year").data();
struct tm tm;
memset(&tm, 0, sizeof(tm));
tm.tm_mday = 1;
strptime(date.c_str(), "%B %Y", &tm);
re.creation = mktime(&tm);
}
g_index.insert(re);
}
}
cout<<"Have "<<g_index.size()<<" " + specific + " RFCs"<<endl;
std::map<string, int> statusPageCount;
statusPageCount["OBSOLETED"];
for(const auto& re : g_index) {
statusPageCount[re.currentStatus];
cout << re.name << endl;
}
ofstream plot("data/" + specific + "_plot");
ofstream csv("data/" + specific + "_camel.csv");
csv<<"TIME";
plot << "# TIME";
for(const auto& spc : statusPageCount) {
plot << '\t' << spc.first;
csv << '\t'<< boost::replace_all_copy(spc.first, " ", "_");
}
plot << "\n";
csv << "\n";
set<string> dedup;
auto& nameidx = g_index.get<NameTag>();
// this is in time order
for(const auto& re : g_index) {
plot << re.creation;
csv << re.creation;
statusPageCount[re.currentStatus] += re.pages;
cout << re.name << " ["<<re.currentStatus<<"] appears, "<< re.title<<endl;
for(const auto& obsoletes : re.obsoletes) {
cout << "\tIt obsoletes "<<obsoletes<<endl;
if(auto iter = nameidx.find(obsoletes); iter != nameidx.end()) {
if(!dedup.count(iter->name)) {
statusPageCount[iter->currentStatus] -= iter->pages;
statusPageCount["OBSOLETED"] += iter->pages;
iter->obsoleted = true;
dedup.insert(iter->name);
}
else {
cout << re.name <<" tried to re-obsolete "<< iter-> name << endl;
}
}
else {
cerr<< re.name<<": could not find the thing it obsoletes: "<< obsoletes << endl;
}
}
for(const auto& spc : statusPageCount) {
plot << '\t' << spc.second;
csv << '\t' << spc.second;
}
plot <<" # "<< re.name;
for(const auto& obsoletes : re.obsoletes) {
plot << "\t-"<<obsoletes;
}
plot << "\n";
csv << "\n";
}
for(const auto& re : g_index) {
if(!re.obsoletedBy.empty() && !re.obsoleted) {
cerr << re.name << " is obsoleted, but your protocolset did not include the document that obsoletes it"<<endl;
}
}
nlohmann::json allRFCs;
for(const auto& re : nameidx) {
nlohmann::json rfc;
rfc["docID"]=re.name;
rfc["title"]=re.title;
rfc["pages"]=re.pages;
rfc["currentStatus"]=re.currentStatus;
rfc["obsoleted"]= re.obsoletedBy.empty() ? 0 : 1;
rfc["draft"]=0;
allRFCs[re.name]=rfc;
}
ofstream newJSON("data/all-" + specific + "-rfcs.json");
newJSON << std::setw(4) << allRFCs << endl;
ofstream myfile("data/project.js");
myfile << "var specific = \"" + specific + "\";\n";
}