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
// ----------------------------------------------------------------------------
// Copyright 2017 Nervana Systems Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include <fstream>
#include <functional>
#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <vector>
#include "header_rewrite.hpp"
#include "uncomment.hpp"
#include "util.hpp"
using namespace std;
class ResourceInfo
{
public:
ResourceInfo(const string& source, const vector<string>& _subdirs, bool recursive = false)
: search_path(source)
, subdirs(_subdirs)
, is_recursive(recursive)
{
}
const string search_path;
const vector<string> subdirs;
const bool is_recursive;
vector<string> files;
};
string find_path(const string& path)
{
string rc;
iterate_files(path,
[&](const string& file, bool is_dir) {
if (is_dir)
{
string dir_name = get_file_name(file);
if (is_version_number(dir_name))
{
rc = file;
}
}
},
true);
return rc;
}
int main(int argc, char** argv)
{
time_t main_timestamp = get_timestamp(argv[0]);
static vector<string> valid_ext = {".h", ".hpp", ".tcc", ""};
string output_path;
string base_name;
for (size_t i = 1; i < argc; i++)
{
if (string(argv[i]) == "--output")
{
output_path = argv[++i];
}
else if (string(argv[i]) == "--base_name")
{
base_name = argv[++i];
}
}
string cpp0 = find_path("/usr/include/x86_64-linux-gnu/c++/");
string cpp1 = find_path("/usr/include/c++/");
vector<ResourceInfo> include_paths;
include_paths.push_back({CLANG_BUILTIN_HEADERS_PATH, {}, true});
include_paths.push_back({"/usr/include/x86_64-linux-gnu", {"asm", "sys", "bits", "gnu"}});
include_paths.push_back({"/usr/include", {"linux", "asm-generic"}});
include_paths.push_back({cpp0, {"bits"}});
include_paths.push_back({cpp1, {"bits", "ext", "debug", "backward"}});
include_paths.push_back({EIGEN_HEADERS_PATH, {}, true});
include_paths.push_back({NGRAPH_HEADERS_PATH, {}, true});
include_paths.push_back({TBB_HEADERS_PATH, {}, true});
if (output_path.empty())
{
cout << "must specify output path with --output option" << endl;
return -1;
}
time_t output_timestamp = get_timestamp(output_path);
for (ResourceInfo& path : include_paths)
{
// cout << "path " << path.source_path << " -> " << path.target_path << endl;
vector<string> path_list;
path_list.push_back(path.search_path);
for (const string& p : path.subdirs)
{
path_list.push_back(path_join(path.search_path, p));
}
for (const string& p : path_list)
{
iterate_files(p,
[&](const string& file, bool is_dir) {
if (!is_dir)
{
string ext = get_file_ext(file);
if (contains(valid_ext, ext))
{
// cout << "add " << path.search_path << ", " << file << endl;
path.files.push_back(file);
}
}
},
path.is_recursive);
}
}
// test for changes to any headers
bool update_needed = main_timestamp > output_timestamp;
if (!update_needed)
{
for (ResourceInfo& path : include_paths)
{
for (const string& header_file : path.files)
{
time_t file_timestamp = get_timestamp(header_file);
if (file_timestamp > output_timestamp)
{
update_needed = true;
break;
}
}
}
}
if (update_needed)
{
ofstream out(output_path);
out << "#pragma clang diagnostic ignored \"-Weverything\"\n";
out << "#include <vector>\n";
out << "namespace ngraph\n";
out << "{\n";
out << " static const uint8_t header_resources[] =\n";
out << " {\n";
vector<pair<size_t, size_t>> offset_size_list;
size_t offset = 0;
size_t total_size = 0;
size_t total_count = 0;
for (const ResourceInfo& path : include_paths)
{
for (const string& header_file : path.files)
{
string header_data = read_file_to_string(header_file);
string base_path = header_file.substr(path.search_path.size() + 1);
header_data = rewrite_header(header_data, base_path);
// header_data = uncomment(header_data);
total_size += header_data.size();
total_count++;
// data layout is triplet of strings containing:
// 1) search path
// 2) header path within search path
// 3) header data
// all strings are null terminated and the length includes the null
// The + 1 below is to account for the null terminator
dump(out, path.search_path.c_str(), path.search_path.size() + 1);
offset_size_list.push_back({offset, path.search_path.size() + 1});
offset += path.search_path.size() + 1;
dump(out, header_file.c_str(), header_file.size() + 1);
offset_size_list.push_back({offset, header_file.size() + 1});
offset += header_file.size() + 1;
dump(out, header_data.c_str(), header_data.size() + 1);
offset_size_list.push_back({offset, header_data.size() + 1});
offset += header_data.size() + 1;
}
}
out << " };\n";
out << " struct HeaderInfo\n";
out << " {\n";
out << " const char* search_path;\n";
out << " const char* header_path;\n";
out << " const char* header_data;\n";
out << " };\n";
out << " std::vector<HeaderInfo> header_info\n";
out << " {\n";
for (size_t i = 0; i < offset_size_list.size();)
{
out << " {(char*)(&header_resources[" << offset_size_list[i++].first;
out << "]), (char*)(&header_resources[" << offset_size_list[i++].first;
out << "]), (char*)(&header_resources[" << offset_size_list[i++].first << "])},\n";
}
out << " };\n";
out << "}\n";
cout.imbue(locale(""));
cout << "Total size " << total_size << " in " << total_count << " files\n";
}
}