blob: 957896f52155310f869f84b7249b2b73d154dc9e (
plain)
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
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGccDepfileLexerHelper.h"
#include <cstdio>
#include <memory>
#include <string>
#include <vector>
#include "cmGccDepfileReaderTypes.h"
#include "LexerParser/cmGccDepfileLexer.h"
#ifdef _WIN32
# include "cmsys/Encoding.h"
#endif
bool cmGccDepfileLexerHelper::readFile(const char* filePath)
{
#ifdef _WIN32
wchar_t* wpath = cmsysEncoding_DupToWide(filePath);
FILE* file = _wfopen(wpath, L"rb");
free(wpath);
#else
FILE* file = fopen(filePath, "r");
#endif
if (!file) {
return false;
}
newEntry();
yyscan_t scanner;
cmGccDepfile_yylex_init(&scanner);
cmGccDepfile_yyset_extra(this, scanner);
cmGccDepfile_yyrestart(file, scanner);
cmGccDepfile_yylex(scanner);
cmGccDepfile_yylex_destroy(scanner);
sanitizeContent();
fclose(file);
return true;
}
void cmGccDepfileLexerHelper::newEntry()
{
this->HelperState = State::Rule;
this->Content.emplace_back();
newRule();
}
void cmGccDepfileLexerHelper::newRule()
{
auto& entry = this->Content.back();
if (entry.rules.empty() || !entry.rules.back().empty()) {
entry.rules.emplace_back();
}
}
void cmGccDepfileLexerHelper::newDependency()
{
// printf("NEW DEP\n");
this->HelperState = State::Dependency;
if (this->Content.back().paths.empty() ||
!this->Content.back().paths.back().empty()) {
this->Content.back().paths.emplace_back();
}
}
void cmGccDepfileLexerHelper::newRuleOrDependency()
{
if (this->HelperState == State::Rule) {
newRule();
} else {
newDependency();
}
}
void cmGccDepfileLexerHelper::addToCurrentPath(const char* s)
{
if (this->Content.empty()) {
return;
}
cmGccStyleDependency* dep = &this->Content.back();
std::string* dst = nullptr;
switch (this->HelperState) {
case State::Rule: {
if (dep->rules.empty()) {
return;
}
dst = &dep->rules.back();
} break;
case State::Dependency: {
if (dep->paths.empty()) {
return;
}
dst = &dep->paths.back();
} break;
}
dst->append(s);
}
void cmGccDepfileLexerHelper::sanitizeContent()
{
for (auto it = this->Content.begin(); it != this->Content.end();) {
// Remove empty rules
for (auto rit = it->rules.begin(); rit != it->rules.end();) {
if (rit->empty()) {
rit = it->rules.erase(rit);
} else {
++rit;
}
}
// Remove the entry if rules are empty
if (it->rules.empty()) {
it = this->Content.erase(it);
} else {
// Remove empty paths
for (auto pit = it->paths.begin(); pit != it->paths.end();) {
if (pit->empty()) {
pit = it->paths.erase(pit);
} else {
++pit;
}
}
++it;
}
}
}
|