forked from RosettaCommons/binder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.cpp
323 lines (239 loc) · 8.45 KB
/
util.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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// Copyright (c) 2016 Sergey Lyskov <[email protected]>
//
// All rights reserved. Use of this source code is governed by a
// MIT license that can be found in the LICENSE file.
/// @file binder/util.cpp
/// @brief Various helper functions
/// @author Sergey Lyskov
#include <util.hpp>
#include <binder.hpp>
#include <enum.hpp>
#include <type.hpp>
#include <class.hpp>
#include <clang/AST/ASTContext.h>
#include <clang/AST/ExprCXX.h>
#include <clang/Basic/SourceManager.h>
#include <clang/AST/Comment.h>
//#include <experimental/filesystem>
#include <cstdlib>
#include <fstream>
#include <cctype>
using namespace llvm;
using namespace clang;
using std::string;
using std::vector;
namespace binder {
/// Split string using given separator
vector<string> split(string const &buffer, string const & separator)
{
string line;
vector<string> lines;
for(uint i=0; i<buffer.size(); ++i) {
if( buffer.compare(i, separator.size(), separator) ) line.push_back( buffer[i] );
else {
lines.push_back(line);
line.resize(0);
}
}
if( line.size() ) lines.push_back(line);
return lines;
}
/// Replace all occurrences of string
void replace(string &r, string const & from, string const &to)
{
size_t i = r.size();
while( ( i = r.rfind(from, i) ) != string::npos) {
r.replace(i, from.size(), to);
if(i) --i; else break;
}
}
/// Replace all occurrences of string and return result as new string
string replace_(string const &s, string const & from, string const &to)
{
string r{s};
replace(r, from, to);
return r;
}
/// check if string begins with given prefix
bool begins_with(std::string const &source, std::string const &prefix)
{
return !source.compare(0, prefix.size(), prefix);
}
/// check if string ends with given prefix
bool ends_with(std::string const &source, std::string const &prefix)
{
if( prefix.size() > source.size() ) return false;
return !source.compare(source.size() - prefix.size(), prefix.size(), prefix);
}
string indent(string const &code, string const &indentation)
{
auto lines = split(code);
string r;
for(auto & l : lines) r += l.size() ? indentation + l + '\n' : l + '\n';
return r;
}
/// Try to read exisitng file and if content does not match to code - write a new version. Also create nested dirs starting from prefix if nessesary.
void update_source_file(std::string const &prefix, std::string const &file_name, std::string const &code)
{
string path = prefix;
vector<string> dirs = split(file_name, "/"); dirs.pop_back();
for(auto &d : dirs) path += "/" + d;
//std::experimental::filesystem::create_directories(path);
string command_line = "mkdir -p " + path;
system( command_line.c_str() );
string full_file_name = prefix + '/' + file_name;
std::ifstream f(full_file_name);
std::string old_code((std::istreambuf_iterator<char>(f)), std::istreambuf_iterator<char>());
if( old_code != code ) {
if( O_verbose ) outs() << "Writing " << full_file_name << "\n";
std::ofstream f(full_file_name);
if( f.fail() ) throw std::runtime_error("ERROR: Can not open file " + full_file_name + " for writing...");
f << code;
} else {
if( O_verbose ) outs() << "File " << full_file_name << " is up-to-date, skipping...\n";
}
}
string namespace_from_named_decl(NamedDecl const *decl)
{
//return decl->getOuterLexicalRecordContext()->getNameAsString();
//outs() << decl->getDeclKindName() << "\n";
string qn = standard_name( decl->getQualifiedNameAsString() );
string n = decl->getNameAsString();
int namespace_len = qn.size() - n.size();
string path = qn.substr(0, namespace_len > 1 ? namespace_len-2 : namespace_len ); // removing trailing '::'
return path;
}
/// generate unique string representation of type represented by given declaration
string typename_from_type_decl(TypeDecl const *decl)
{
return standard_name( decl->getTypeForDecl()->getCanonicalTypeInternal()/*getCanonicalType()*/.getAsString() );
}
/// Calculate base (upper) namespace for given one: core::pose::motif --> core::pose
string base_namespace(string const & ns)
{
size_t f = ns.rfind("::");
if( f == string::npos ) return "";
else return ns.substr(0, f);
}
/// Calculate last namespace for given one: core::pose::motif --> motif
string last_namespace(string const & ns)
{
size_t f = ns.rfind("::");
if( f == string::npos ) return ns;
else return ns.substr(f+2, ns.size()-f-2);
}
// replace all _Bool types with bool
void fix_boolean_types(string &type)
{
string B("_Bool");
size_t i = 0;
while( ( i = type.find(B, i) ) != string::npos ) {
if( ( i==0 or ( !std::isalpha(type[i-1]) and !std::isdigit(type[i-1]) ) ) and
( i+B.size() == type.size() or ( !std::isalpha(type[i+B.size()]) and !std::isdigit(type[i+B.size()]) ) ) ) type.replace(i, B.size(), "bool");
++i;
}
}
// Generate string representation of given expression
string expresion_to_string(clang::Expr *e)
{
std::string _;
llvm::raw_string_ostream s(_);
if(e) {
clang::LangOptions lang_opts;
lang_opts.CPlusPlus = true;
clang::PrintingPolicy Policy(lang_opts);
e->printPretty(s, 0, Policy);
}
return s.str();
}
// Generate string representation of given TemplateArgument
string template_argument_to_string(clang::TemplateArgument const &t)
{
clang::LangOptions lang_opts;
lang_opts.CPlusPlus = true;
clang::PrintingPolicy Policy(lang_opts);
std::string _;
llvm::raw_string_ostream s(_);
t.print(Policy, s);
return s.str();
}
// calcualte line in source file for NamedDecl
string line_number(NamedDecl const *decl)
{
ASTContext & ast_context( decl->getASTContext() );
SourceManager & sm( ast_context.getSourceManager() );
return std::to_string( sm.getSpellingLineNumber(decl->getLocation() ) );
}
// generate string represetiong class name that could be used in python
string mangle_type_name(string const &name, bool mark_template)
{
string r;
bool mangle = true;
bool template_ = false;
for(auto & c : name) {
if(c!=' ' and c!='<' and c!='>' and c!=',' and c!=':') { r.push_back(c); mangle=false; }
else if(!mangle) { mangle = true; r.push_back('_'); }
if( c=='<' or c=='>' or c==',') template_ = true;
}
if(template_ and mark_template) r.push_back('t');
return r;
}
// generate C++ comment line for given declartion along with file path and line number: // core::scoring::vdwaals::VDWAtom file:core/scoring/vdwaals/VDWTrie.hh line:43
string generate_comment_for_declaration(clang::NamedDecl const *decl)
{
string const include = relevant_include(decl);
return "// " + standard_name( decl->getQualifiedNameAsString() ) + " file:" + (include.size() ? include.substr(1, include.size()-2) : "") + " line:" + line_number(decl) + "\n";
}
// extract text from hierarchy of comments
string get_text(comments::Comment const *C, SourceManager const & SM, SourceLocation previous)
{
if( auto tc = dyn_cast<comments::TextComment>(C) ) return string(tc->getText());
else {
string r;
if( isa<comments::ParagraphComment>(C) ) r += '\n';
for(auto i = C->child_begin(); i!=C->child_end(); ++i) {
#if (LLVM_VERSION_MAJOR < 8)
if( SM.getSpellingLineNumber(previous) != SM.getSpellingLineNumber( (*i)->getLocStart() ) ) { // getBeginLoc
previous = (*i)->getLocStart(); // getBeginLoc();
r += '\n';
}
#endif
#if (LLVM_VERSION_MAJOR >= 8)
if( SM.getSpellingLineNumber(previous) != SM.getSpellingLineNumber( (*i)->getBeginLoc() ) ) { // getBeginLoc
previous = (*i)->getBeginLoc(); // getBeginLoc();
r += '\n';
}
#endif
r += get_text(*i, SM, previous);
}
return r;
}
}
// extract doc string (Doxygen comments) for given declaration and convert it to C++ source code string
std::string generate_documentation_string_for_declaration(clang::Decl const* decl)
{
string text;
ASTContext & ast_context( decl->getASTContext() );
if( auto comment = ast_context.getLocalCommentForDeclUncached(decl) ) {
SourceManager & sm( ast_context.getSourceManager() );
//comment->dumpColor();
text = get_text(comment, sm, SourceLocation());
uint i=0;
for(; i<text.size() and (text[i]==' ' or text[i]=='\n'); ++i) {}
if(i) text = text.substr(i);
//replace(text, "\n\n\n", "\n");
//replace(text, "\n\n", "\n");
//replace(text, "\n\n\n\n", "\n\n");
//replace(text, "\n\n\n", "\n\n");
replace(text, "\\", "\\\\");
replace(text, "\"", "\\\"");
replace(text, "\n", "\\n");
//outs() << text << "\n";
}
//if( auto comment = ast_context->getLocalCommentForDeclUncached(decl) ) comment->dumpColor();
return text;
}
} // namespace binder