-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathprj_project_impl.cpp
More file actions
402 lines (308 loc) · 9.22 KB
/
prj_project_impl.cpp
File metadata and controls
402 lines (308 loc) · 9.22 KB
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#include "project/impl/prj_project_impl.hpp"
#include "project/impl/exceptions/prj_exception_invalid_regex.hpp"
#include "tools/path_string_tools.hpp"
#include "tools/regex_exception.hpp"
#include "exception/ih/exc_internal_error.hpp"
#include <functional>
#include <regex>
//------------------------------------------------------------------------------
namespace project
{
//------------------------------------------------------------------------------
ProjectImpl::ProjectImpl()
: m_ignoreSystemIncludes{ false }
, m_analyzeWithoutExtension{ false }
, m_verboseIgnore{ false }
{
}
//------------------------------------------------------------------------------
void ProjectImpl::setProjectDir( const Path & _path )
{
m_projectDir = _path;
}
//------------------------------------------------------------------------------
const ProjectImpl::Path & ProjectImpl::getProjectDir() const
{
return m_projectDir;
}
//------------------------------------------------------------------------------
ProjectImpl::IncludeDirIndex ProjectImpl::getIncludeDirsCount() const
{
return m_includeDirs.size();
}
//------------------------------------------------------------------------------
const ProjectImpl::Path &
ProjectImpl::getIncludeDir( IncludeDirIndex _index ) const
{
return m_includeDirs.at( _index );
}
//------------------------------------------------------------------------------
void ProjectImpl::addIncludeDir( const Path & _path )
{
m_includeDirs.push_back( _path );
}
//------------------------------------------------------------------------------
void ProjectImpl::addIncludeDirs( const DirPaths & _paths )
{
for( const Path & path: _paths )
{
addIncludeDir( path );
}
}
//------------------------------------------------------------------------------
bool ProjectImpl::hasIgnoreDirs() const
{
return !m_ignoredDirs.empty();
}
//------------------------------------------------------------------------------
bool ProjectImpl::isIgnoredDir( const Path & _path ) const
{
if( _path == getProjectDir() )
{
return false;
}
Path path = convertToDirPath( _path );
const std::string dirName = path.parent_path().filename().string();
INTERNAL_CHECK_WARRING( !dirName.empty() );
if( dirName.empty() )
{
return false;
}
// ignore hidden folders
if( dirName.at( 0 ) == '.' )
{
return true;
}
const bool isFound = m_ignoredDirs.count( path ) > 0;
if( isFound && m_verboseIgnore )
printIgnoredFolder( _path );
return isFound;
}
//------------------------------------------------------------------------------
void ProjectImpl::addIgnoredDir( const Path & _path )
{
m_ignoredDirs.insert( _path );
}
//------------------------------------------------------------------------------
void ProjectImpl::addIgnoredDirs( const DirPaths & _paths )
{
for( const Path & path: _paths )
{
addIgnoredDir( path );
}
}
//------------------------------------------------------------------------------
void ProjectImpl::forEachIgnoreDir( PathCallback _callback ) const
{
for( const Path & path: m_ignoredDirs )
{
if( !_callback( path ) )
{
break;
}
}
}
//------------------------------------------------------------------------------
bool ProjectImpl::hasCppFileExtensions() const
{
return !m_extensions.empty();
}
//------------------------------------------------------------------------------
bool ProjectImpl::isExistsCppExtension( std::string_view _ext ) const
{
std::string ext{ _ext };
bool result = m_extensions.count( ext ) > 0;
if( !result )
{
ext = "*" + ext;
result = m_extensions.count( ext ) > 0;
}
return result;
}
//------------------------------------------------------------------------------
void ProjectImpl::addCppFileExtension( std::string_view _ext )
{
std::string ext{ _ext };
m_extensions.insert( ext );
}
//------------------------------------------------------------------------------
void ProjectImpl::addCppFileExtensions( const Strings & _extensions )
{
for( std::string_view ext: _extensions )
{
addCppFileExtension( ext );
}
}
//------------------------------------------------------------------------------
void ProjectImpl::forEachFileExtension( FileExtensionCallback _callback ) const
{
for( const std::string & ext: m_extensions )
{
if( !_callback( ext ) )
{
break;
}
}
}
//------------------------------------------------------------------------------
bool ProjectImpl::getAnalyzeWithoutExtension() const
{
return m_analyzeWithoutExtension;
}
//------------------------------------------------------------------------------
void ProjectImpl::setAnalyzeWithoutExtension( bool _enable )
{
m_analyzeWithoutExtension = _enable;
}
//------------------------------------------------------------------------------
bool ProjectImpl::getIgnoreSystemIncludes() const
{
return m_ignoreSystemIncludes;
}
//------------------------------------------------------------------------------
void ProjectImpl::setIgnoreSystemIncludes( bool _ignore )
{
m_ignoreSystemIncludes = _ignore;
}
//------------------------------------------------------------------------------
ProjectImpl::FileFilterIndex ProjectImpl::getFileFilterCount() const
{
return m_fileFilters.size();
}
//------------------------------------------------------------------------------
void ProjectImpl::addFileFilter( std::string_view _filter )
{
std::string str{ _filter };
try
{
m_fileFilters.emplace_back( tools::Regex{ str } );
}
catch( const tools::RegexException & _exception )
{
throw InvalidRegexImpl{ _exception };
}
}
//------------------------------------------------------------------------------
void ProjectImpl::addFileFilters( const Strings & _filters )
{
for( const auto & filter: _filters )
{
addFileFilter( filter );
}
}
//------------------------------------------------------------------------------
bool ProjectImpl::hasFileFilters() const
{
return !m_fileFilters.empty();
}
//------------------------------------------------------------------------------
bool ProjectImpl::isIgnoredFile( const Path & _path ) const
{
for( const tools::Regex & filter: m_fileFilters )
{
if( isIgnoredFile( _path, filter ) )
{
return true;
}
}
return false;
}
//------------------------------------------------------------------------------
void ProjectImpl::changeAllPathsToAbsolute()
{
for( Path & path: m_includeDirs )
{
changeToProjectPath( path );
}
std::vector< Path > newPath;
newPath.reserve( m_ignoredDirs.size() );
for( Path path: m_ignoredDirs )
{
changeToProjectPath( path );
newPath.push_back( path );
}
m_ignoredDirs.clear();
m_ignoredDirs.insert( newPath.begin(), newPath.end() );
}
//------------------------------------------------------------------------------
void ProjectImpl::changeAllPathsToAbsolute( const Path & _currentDir )
{
changeToAbsolute( _currentDir, m_projectDir );
changeAllPathsToAbsolute();
}
//------------------------------------------------------------------------------
void ProjectImpl::setVerboseIgnore( bool _enable )
{
m_verboseIgnore = _enable;
}
//------------------------------------------------------------------------------
ProjectImpl::Path ProjectImpl::convertToDirPath( const Path & _path ) const
{
Path path = _path;
path = stdfs::lexically_normal( path );
const std::string filename = path.filename().string();
if( !stdfs::is_dir_filename( path ) )
{
// folder path should finish with path separator
path /= "";
if( filename == path.filename().string() )
{
path /= Path::string_type{ Path::preferred_separator };
}
}
return path;
}
//------------------------------------------------------------------------------
void ProjectImpl::changeToAbsolute( const Path & _currentDir, Path & _path )
{
if( !_path.is_absolute() )
{
_path = _currentDir / _path;
}
changeToProjectPath( _path );
}
//------------------------------------------------------------------------------
bool ProjectImpl::isIgnoredFile(
const Path & _path, const tools::Regex & _filter ) const
{
const std::string originStr = _path.string();
const std::string unixStr = tools::toUnixPath( originStr );
if( checkFilter( unixStr, _filter ) )
{
return true;
}
const std::string windowsStr = tools::toWindowsPath( originStr );
return checkFilter( windowsStr, _filter );
}
//------------------------------------------------------------------------------
bool ProjectImpl::checkFilter(
const std::string & _str, const tools::Regex & _filter ) const
{
const bool result = _filter.search( _str );
if( result && m_verboseIgnore )
printIgnoredPath( _str, _filter.toString() );
return result;
}
//------------------------------------------------------------------------------
void ProjectImpl::changeToProjectPath( Path & _path )
{
if( !_path.is_absolute() )
{
_path = getProjectDir() / _path;
}
_path = convertToDirPath( _path );
}
//------------------------------------------------------------------------------
void ProjectImpl::printIgnoredFolder( const Path & _path )
{
std::cout << "Folder " << _path << " was ignored" << std::endl;
}
//------------------------------------------------------------------------------
void ProjectImpl::printIgnoredPath(
std::string_view _path, std::string_view _filter )
{
std::cout << "Path \"" << _path << "\" was ignored by \"" << _filter << '"'
<< std::endl;
}
//------------------------------------------------------------------------------
}