summaryrefslogtreecommitdiff
path: root/src/task_cc.cc
blob: 294c5ea98fb39aaf59b0cfa35530952b7bb4b822 (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
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
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#include "task_cc.h"

#include <iostream>
#include <fstream>
#include <cassert>

#include "ctor.h"
#include "execute.h"
#include "util.h"
#include "tools.h"

TaskCC::TaskCC(const ctor::build_configuration& config, const ctor::settings& settings,
               const std::string& sourceDir, const ctor::source& source)
	: Task(config, settings, sourceDir)
	, config(config)
	, settings(settings)
	, sourceDir(sourceDir)
	, _source(source)
{
	sourceFile = sourceDir;
	sourceFile /= source.file;

	std::filesystem::path base = sourceFile.parent_path();

	base /= cleanUp(config.target);
	base += "-";
	base += sourceFile.stem();

	target_type = ctor::target_type::object;
	output_system = config.system;
	source_language = source.language;
	if(source_language == ctor::language::automatic)
	{
		source_language = languageFromExtension(sourceFile);
	}

	switch(source_language)
	{
	case ctor::language::c:
		base += "_c";
		break;
	case ctor::language::cpp:
		base += "_cc";
		break;
	case ctor::language::assembler:
		base += "_asm";
		break;
	case ctor::language::automatic:
		assert(0 && "This should never happen");
		break;
	}

	if(source.output.empty())
	{
		_targetFile = base;
	}
	else
	{
		_targetFile = source.output;
	}
	auto toolchain = getToolChain(config.system);
	_targetFile = extension(toolchain, target_type, config.system, _targetFile);

	depsFile = targetFile().parent_path() / targetFile().stem();
	depsFile += ".d";
	flagsFile = targetFile().parent_path() / targetFile().stem();
	flagsFile += ".flags";

	std::filesystem::create_directories(targetFile().parent_path());
}

int TaskCC::registerDepTasksInner(const std::set<std::shared_ptr<Task>>& tasks)
{
	for(const auto& task : tasks)
	{
		if(*task == _source.file)
		{
			dependsTasks.insert(task);
		}
	}

	return 0;
}

std::string TaskCC::name() const
{
	return {};
}

bool TaskCC::dirtyInner()
{
	if(!std::filesystem::exists(sourceFile))
	{
		//std::cout << "Missing source file: " << std::string(sourceFile) << "\n";
		return true;
	}

	if(!std::filesystem::exists(targetFile()))
	{
		//std::cout << "Missing targetFile\n";
		return true;
	}

	if(!std::filesystem::exists(depsFile))
	{
		//std::cout << "Missing depsFile\n";
		return true;
	}

	if(!std::filesystem::exists(flagsFile))
	{
		//std::cout << "Missing flagsFile\n";
		return true;
	}

	if(std::filesystem::last_write_time(sourceFile) >
	   std::filesystem::last_write_time(depsFile))
	{
		//std::cout << "The sourceFile newer than depsFile\n";
		return true;
	}

	{
		auto lastFlags = readFile(flagsFile.string());
		if(flagsString() != lastFlags)
		{
			//std::cout << "The compiler flags changed\n";
			return true;
		}
	}

	auto depList = readDeps(depsFile.string());
	for(const auto& dep : depList)
	{
		if(!std::filesystem::exists(dep) ||
		   std::filesystem::last_write_time(targetFile()) <
		   std::filesystem::last_write_time(dep))
		{
			//std::cout << "The targetFile older than " << std::string(dep) << "\n";
			return true;
		}
	}

	if(std::filesystem::last_write_time(sourceFile) >
	   std::filesystem::last_write_time(targetFile()))
	{
		//std::cout << "The targetFile older than sourceFile\n";
		return true;
	}

	return false;
}

int TaskCC::runInner()
{
	if(!std::filesystem::exists(sourceFile))
	{
		std::cout << "Missing source file: " << sourceFile.string() << "\n";
		return 1;
	}

	auto args = getCompilerArgs();

	{ // Write flags to file.
		std::ofstream flagsStream(flagsFile.string());
		flagsStream << flagsString();
	}

	if(settings.verbose == 0)
	{
		switch(sourceLanguage())
		{
		case ctor::language::c:
			std::cout << "CC ";
			break;
		case ctor::language::cpp:
			std::cout << "CXX ";
			break;
		case ctor::language::automatic:
		case ctor::language::assembler:
			// Only c/c++ handled by this task type.
			break;
		}
		std::cout <<
			sourceFile.lexically_normal().string() << " => " <<
			targetFile().lexically_normal().string() << std::endl;
	}

	return execute(compiler(), args, {}, settings.verbose > 0);
}

int TaskCC::clean()
{
	if(std::filesystem::exists(targetFile()))
	{
		std::cout << "Removing " << targetFile().string() << "\n";
		std::filesystem::remove(targetFile());
	}

	if(std::filesystem::exists(depsFile))
	{
		std::cout << "Removing " << depsFile.string() << "\n";
		std::filesystem::remove(depsFile);
	}

	if(std::filesystem::exists(flagsFile))
	{
		std::cout << "Removing " << flagsFile.string() << "\n";
		std::filesystem::remove(flagsFile);
	}

	return 0;
}

std::vector<std::string> TaskCC::depends() const
{
	return {};
}

std::string TaskCC::target() const
{
	return _targetFile.string();
}

std::filesystem::path TaskCC::targetFile() const
{
	return std::filesystem::path(settings.builddir) / _targetFile;
}

bool TaskCC::derived() const
{
	return true;
}

std::string TaskCC::toJSON() const
{
	std::string json;
	json += "\t{\n";
	json += "\t\t\"directory\": \"" + sourceDir.string() + "\",\n";
	json += "\t\t\"file\": \"" + sourceFile.lexically_normal().string() + "\",\n";
	json += "\t\t\"output\": \"" + targetFile().string() + "\",\n";
	json += "\t\t\"arguments\": [ \"" + compiler() + "\"";
	auto args = getCompilerArgs();
	for(const auto& arg : args)
	{
		json += ", \"" + arg + "\"";
	}
	json += " ]\n";
	json += "\t}";
	return json;
}

std::string TaskCC::source() const
{
	return sourceFile.string();
}

std::vector<std::string> TaskCC::flags() const
{
	std::vector<std::string> flags;
	auto toolchain = getToolChain(config.system);

	switch(sourceLanguage())
	{
	case ctor::language::c:
		for(const auto& flag : config.flags.cflags)
		{
			append(flags, to_strings(toolchain, flag));
		}
		return flags;
	case ctor::language::cpp:
		for(const auto& flag : config.flags.cxxflags)
		{
			append(flags, to_strings(toolchain, flag));
		}
		return flags;
	default:
		std::cerr << "Unknown CC target type\n";
		exit(1);
		break;
	}
}

std::string TaskCC::flagsString() const
{
	std::string flagsStr = compiler();
	for(const auto& flag : flags())
	{
		flagsStr += " " + flag;
	}
	return flagsStr;
}

std::vector<std::string> TaskCC::getCompilerArgs() const
{
	auto toolchain = getToolChain(config.system);
	auto compiler_flags = flags();

	std::vector<std::string> args;

	switch(sourceLanguage())
	{
	case ctor::language::c:
		{
			append(args, c_option(toolchain, ctor::c_opt::generate_dep_tree));

			if(std::filesystem::path(config.target).extension() == ".so")
			{
				// Add -fPIC arg to all contained object files
				append(args, c_option(toolchain,
				                      ctor::c_opt::position_independent_code));
			}

			append(args, c_option(toolchain, ctor::c_opt::no_link));
			args.push_back(sourceFile.string());
			append(args, c_option(toolchain,
			                      ctor::c_opt::output, targetFile().string()));

			// Relative include paths has to be altered to be relative to sourceDir
			for(const auto& flag : compiler_flags)
			{
				auto option = c_option(flag, toolchain);
				switch(option.opt)
				{
				case ctor::c_opt::include_path:
					{
						std::filesystem::path path(option.arg);
						if(path.is_relative())
						{
							path = (sourceDir / path).lexically_normal();
							append(args, c_option(toolchain,
							                      ctor::c_opt::include_path, path.string()));
						}
					}
					break;
				default:
					break;
				}

				args.push_back(flag);
			}
		}
		break;

	case ctor::language::cpp:
		{
			append(args, cxx_option(toolchain, ctor::cxx_opt::generate_dep_tree));

			if(std::filesystem::path(config.target).extension() == ".so")
			{
				// Add -fPIC arg to all contained object files
				append(args, cxx_option(toolchain,
				                        ctor::cxx_opt::position_independent_code));
			}

			append(args, cxx_option(toolchain, ctor::cxx_opt::no_link));
			args.push_back(sourceFile.string());
			append(args, cxx_option(toolchain,
			                        ctor::cxx_opt::output, targetFile().string()));

			// Relative include paths has to be altered to be relative to sourceDir
			for(const auto& flag : compiler_flags)
			{
				auto option = cxx_option(flag, toolchain);
				switch(option.opt)
				{
				case ctor::cxx_opt::include_path:
					{
						std::filesystem::path path(option.arg);
						if(path.is_relative())
						{
							path = (sourceDir / path).lexically_normal();
							append(args, cxx_option(toolchain,
							                        ctor::cxx_opt::include_path, path.string()));
						}
					}
					break;
				default:
					break;
				}

				args.push_back(flag);
			}

		}
		break;

	default:
		break;
	}

	return args;
}