#include "task_ld.h"

#include <iostream>
#include <fstream>

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

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);
	}
}

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

	for(const auto& objectFile : objectFiles)
	{
		if(std::filesystem::last_write_time(targetFile) <=
		   std::filesystem::last_write_time(objectFile))
		{
			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));

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

int TaskLD::clean()
{
	std::filesystem::remove(targetFile);
	return 0;
}

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

std::string TaskLD::target() const
{
	std::cout << "Removing " << std::string(targetFile) << "\n";
	return std::string(targetFile);
}