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
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#include "task_fn.h"
#include <iostream>
#include <fstream>
#include <cassert>
#include "ctor.h"
#include "execute.h"
#include "util.h"
TaskFn::TaskFn(const ctor::build_configuration& config_, const ctor::settings& settings_,
const std::string& sourceDir_, const ctor::source& source)
: Task(config_, settings_, sourceDir_)
, sourceFile(sourceDir_)
, config(config_)
, settings(settings_)
{
sourceFile /= source.file;
for(const auto& src : config.sources)
{
auto _src = sourceFile / src.file;
sources.push_back(_src.string());
}
std::filesystem::create_directories(std::filesystem::path(settings.builddir) / sourceFile.parent_path());
target_type = config.type;
source_language = source.language;
if(source.output.empty())
{
std::filesystem::path base = sourceFile.parent_path();
_targetFile =
//std::filesystem::path(settings.builddir) /
base / config.target;
}
else
{
_targetFile = source.output;
}
sourceListFile = targetFile().parent_path() / targetFile().filename();
sourceListFile += ".sources";
}
bool TaskFn::dirtyInner()
{
if(!std::filesystem::exists(targetFile()))
{
//std::cout << "Missing targetFile\n";
return true;
}
if(!std::filesystem::exists(sourceListFile))
{
//std::cout << "Missing sourceListFile\n";
return true;
}
{
auto lastSourceList = readFile(sourceListFile.string());
if(sourceListString() != lastSourceList)
{
//std::cout << "The compiler sourceList changed\n";
return true;
}
}
std::filesystem::file_time_type last_changed{};
bool missing{false};
const auto visitor = overloaded
{
[](std::monostate) {},
[&](ctor::GeneratorCb)
{
if(!std::filesystem::exists(sourceFile))
{
missing = true;
}
last_changed = std::filesystem::last_write_time(sourceFile);
},
[&](ctor::GeneratorCb2)
{
bool first{true};
for(const auto& source : sources)
{
if(!std::filesystem::exists(source))
{
missing |= true;
}
else
{
if(first)
{
last_changed = std::filesystem::last_write_time(source);
}
else
{
last_changed =
std::max(last_changed,
std::filesystem::last_write_time(source));
}
}
first = false;
}
},
};
std::visit(visitor, config.function);
if(missing)
{
return true;
}
if(last_changed > std::filesystem::last_write_time(targetFile()))
{
//std::cout << "The targetFile older than sourceFile\n";
return true;
}
return false;
}
int TaskFn::runInner()
{
// if(!std::filesystem::exists(sourceFile))
// {
// std::cout << "Missing source file: " << sourceFile.string() << "\n";
// return 1;
// }
{ // Write sourceList to file.
std::ofstream sourceListStream(sourceListFile.string());
std::cout << "Write to sources file: " << sourceListFile.string() << '\n';
sourceListStream << sourceListString();
std::cout << "Content: " << sourceListString() << '\n';
}
if(settings.verbose >= 0)
{
std::string output = "Fn " +
sourceFile.lexically_normal().string() + " => " +
targetFile().lexically_normal().string() + '\n';
std::cout << output << std::flush;
}
int res{};
const auto visitor = overloaded
{
[](std::monostate) {},
[&](ctor::GeneratorCb cb)
{
res = cb(sourceFile.string(),
targetFile().string(),
config,
settings);
},
[&](ctor::GeneratorCb2 cb)
{
res = cb(sources,
targetFile().string(),
config,
settings);
},
};
std::visit(visitor, config.function);
if(res != 0)
{
std::filesystem::remove(targetFile());
}
return res;
}
int TaskFn::clean()
{
if(std::filesystem::exists(targetFile()))
{
std::cout << "Removing " << targetFile().string() << "\n";
std::filesystem::remove(targetFile());
}
if(std::filesystem::exists(sourceListFile))
{
std::cout << "Removing " << sourceListFile.string() << "\n";
std::filesystem::remove(sourceListFile);
}
return 0;
}
std::vector<std::string> TaskFn::depends() const
{
return {};
}
std::string TaskFn::target() const
{
return _targetFile.string();
}
std::filesystem::path TaskFn::targetFile() const
{
return std::filesystem::path(settings.builddir) / sourceDir / _targetFile;
}
std::string TaskFn::sourceListString() const
{
std::string sourceListStr;
for(const auto& source : config.sources)
{
sourceListStr += " " + source.file;
}
return sourceListStr;
}
bool TaskFn::derived() const
{
return false;
}
std::string TaskFn::toJSON() const
{
return {}; // TODO: Not sure how to express this...
}
std::string TaskFn::source() const
{
return sourceFile.string();
}
|