]> git.tdb.fi Git - builder.git/blobdiff - source/tool.cpp
Refactor transitive dependencies to work on all targets
[builder.git] / source / tool.cpp
diff --git a/source/tool.cpp b/source/tool.cpp
deleted file mode 100644 (file)
index cd00237..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-#include <msp/core/algorithm.h>
-#include <msp/fs/utils.h>
-#include <msp/strings/format.h>
-#include "architecture.h"
-#include "builder.h"
-#include "filetarget.h"
-#include "tool.h"
-
-using namespace std;
-using namespace Msp;
-
-void Tool::set_command(const string &cmd, bool cross)
-{
-       if(cmd.empty())
-               throw invalid_argument("Tool::set_command");
-
-       if(cross && architecture->is_cross() && !FS::Path(cmd).is_absolute())
-               command = format("%s-%s", architecture->get_cross_prefix(), cmd);
-       else
-               command = cmd;
-}
-
-void Tool::set_run(function<Task *(const Target &)> f)
-{
-       run_func = move(f);
-}
-
-bool Tool::accepts_suffix(const string &suffix, bool aux) const
-{
-       return (any_equals(input_suffixes, suffix) || (aux && any_equals(aux_suffixes, suffix)));
-}
-
-Target *Tool::create_target(Target &source, const string &arg)
-{
-       vector<Target *> sources;
-       sources.push_back(&source);
-       return create_target(sources, arg);
-}
-
-void Tool::prepare()
-{
-       if(prepared)
-               return;
-
-       prepared = true;
-       if(!command.empty())
-               executable = builder.get_vfs().find_binary(command);
-       do_prepare();
-       if(!command.empty() && !executable)
-       {
-               builder.get_logger().log("problems", "Can't find executable %s for %s", command, tag);
-               problems.push_back(format("Can't find executable %s", command));
-       }
-}
-
-string Tool::create_build_signature(const BuildInfo &) const
-{
-       if(executable)
-               return format("%s=%s", tag, FS::basename(executable->get_path()));
-       else
-               return string();
-}
-
-
-void operator>>(const LexicalConverter &conv, Tool::ProcessingUnit &unit)
-{
-       const string &str = conv.get();
-       if(str=="FILE")
-               unit = Tool::ONE_FILE;
-       else if(str=="DIRECTORY")
-               unit = Tool::DIRECTORY;
-       else if(str=="COMPONENT")
-               unit = Tool::COMPONENT;
-       else
-               throw lexical_error(format("conversion of '%s' to ProcessingUnit", str));
-}