summaryrefslogtreecommitdiff
path: root/task_ld.cc
blob: de74af2128cc525d316de1cd581051621bbcd289 (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
#include "task_ld.h"

#include <iostream>
#include <fstream>

#include "libcppbuild.h"
#include "settings.h"
#include "execute.h"

namespace
{
std::string readFile(const std::string &fileName)
{
	std::ifstream ifs(fileName.c_str(), std::ios::in | std::ios::binary | std::ios::ate);

	std::ifstream::pos_type fileSize = ifs.tellg();
	ifs.seekg(0, std::ios::beg);

	std::vector<char> bytes(fileSize);
	ifs.read(bytes.data(), fileSize);

	return std::string(bytes.data(), fileSize);
}
} // namespace ::

TaskLD::TaskLD(const BuildConfiguration& config,
               const Settings& settings,
               const std::string& target,
               const std::vector<std::string>& objects)
	: config(config)
	, settings(settings)
{
	targetFile = settings.builddir;
	targetFile /= target;
	for(const auto& object : objects)
	{
		std::filesystem::path objectFile = object;
		objectFiles.push_back(objectFile);
	}

	flagsFile = settings.builddir / targetFile.stem();
	flagsFile += ".flags";
}

bool TaskLD::dirty()
{
	if(!std::filesystem::exists(targetFile))
	{
		return true;
	}

	if(!std::filesystem::exists(flagsFile))
	{
		return true;
	}

	for(const auto& objectFile : objectFiles)
	{
		if(std::filesystem::last_write_time(targetFile) <=
		   std::filesystem::last_write_time(objectFile))
		{
			return true;
		}
	}

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

	return false;
}

int TaskLD::run()
{
	std::string objectlist;
	for(const auto& objectFile : objectFiles)
	{
		if(!objectlist.empty())
		{
			objectlist += " ";
		}
		objectlist += std::string(objectFile);
	}

	std::vector<std::string> args;
	for(const auto& objectFile : objectFiles)
	{
		args.push_back(std::string(objectFile));
	}
	for(const auto& flag : config.ldflags)
	{
		args.push_back(flag);
	}
	args.push_back("-o");
	args.push_back(std::string(targetFile));

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

	return execute("/usr/bin/g++", args);
}

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

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

	return 0;
}

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

std::string TaskLD::target() const
{
	return std::string(targetFile);
}

std::string TaskLD::flagsString() const
{
	std::string flagsStr;
	for(const auto& flag : config.ldflags)
	{
		if(!flagsStr.empty())
		{
			flagsStr += " ";
		}
		flagsStr += flag;
	}
	return flagsStr;
}