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

#include <unistd.h>
#include <iostream>

Task::Task(const ctor::build_configuration& config, const ctor::settings& settings,
           const std::string& sourceDir)
	: config(config)
	, output_system(config.system)
	, settings(settings)
	, sourceDir(sourceDir)
{
}

int Task::registerDepTasks(const std::set<std::shared_ptr<Task>>& tasks)
{
	for(const auto& depStr : depends())
	{
		bool found{false};
		for(const auto& task : tasks)
		{
			if(*task == depStr)
			{
				dependsTasks.insert(task);
				found = true;
			}
		}
		if(!found)
		{
			std::cerr << "Could not find dependency " << depStr << " needed by " <<
				target() << " target\n";
			return 1;
		}
	}

	return registerDepTasksInner(tasks);
}

bool Task::operator==(const std::string& depStr)
{
	return
		name() == depStr ||
		target() == depStr ||
		sourceDir + "/" + target() == depStr ||
		targetFile().string() == depStr
		;
}

std::string Task::name() const
{
	return config.name;
}

bool Task::dirty()
{
	for(const auto& task : dependsTasks)
	{
		if(task->dirty())
		{
			return true;
		}
	}

	return dirtyInner();
}

bool Task::ready()
{
	for(const auto& task : dependsTasks)
	{
		if(task->dirty() || task->state() == State::Running)
		{
			return false;
		}
	}

	task_state.store(State::Ready);
	return true;
}

int Task::run()
{
	if(task_state.load() == State::Done)
	{
		return 0;
	}

	task_state.store(State::Running);
	auto ret = runInner();
	if(ret == 0)
	{
		task_state.store(State::Done);
	}
	else
	{
		task_state.store(State::Error);
	}

	return ret;
}

State Task::state() const
{
	return task_state.load();
}

const ctor::build_configuration& Task::buildConfig() const
{
	return config;
}

ctor::target_type Task::targetType() const
{
	return target_type;
}

ctor::language Task::sourceLanguage() const
{
	return source_language;
}

ctor::output_system Task::outputSystem() const
{
	return output_system;
}

std::string Task::compiler() const
{
	const auto& c = ctor::get_configuration();
	switch(sourceLanguage())
	{
	case ctor::language::c:
		switch(outputSystem())
		{
		case ctor::output_system::host:
			return c.get(ctor::cfg::host_cc, "/usr/bin/gcc");
		case ctor::output_system::build:
			return c.get(ctor::cfg::build_cc, "/usr/bin/gcc");
		}
	case ctor::language::cpp:
		switch(outputSystem())
		{
		case ctor::output_system::host:
			return c.get(ctor::cfg::host_cxx, "/usr/bin/g++");
		case ctor::output_system::build:
			return c.get(ctor::cfg::build_cxx, "/usr/bin/g++");
		}
	default:
		std::cerr << "Unknown CC target type\n";
		exit(1);
		break;
	}
}

std::set<std::shared_ptr<Task>> Task::getDependsTasks()
{
	return dependsTasks;
}