mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
161 lines
4.9 KiB
C++
161 lines
4.9 KiB
C++
//===--- Job.cpp - Command to Execute -------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/Basic/STLExtras.h"
|
|
#include "swift/Driver/Job.h"
|
|
#include "llvm/ADT/STLExtras.h"
|
|
#include "llvm/Option/Arg.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
#include "llvm/Support/Path.h"
|
|
#include "llvm/Support/Program.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace swift;
|
|
using namespace swift::driver;
|
|
|
|
void CommandOutput::setAdditionalOutputForType(types::ID type,
|
|
StringRef OutputFilename) {
|
|
AdditionalOutputsMap[type] = OutputFilename;
|
|
}
|
|
|
|
const std::string &
|
|
CommandOutput::getAdditionalOutputForType(types::ID type) const {
|
|
auto iter = AdditionalOutputsMap.find(type);
|
|
if (iter != AdditionalOutputsMap.end())
|
|
return iter->second;
|
|
|
|
static const std::string empty;
|
|
return empty;
|
|
}
|
|
|
|
const std::string &
|
|
CommandOutput::getAnyOutputForType(types::ID type) const {
|
|
if (PrimaryOutputType == type)
|
|
return PrimaryOutputFilenames[0];
|
|
return getAdditionalOutputForType(type);
|
|
}
|
|
|
|
static void escapeAndPrintString(llvm::raw_ostream &os, StringRef Str) {
|
|
if (Str.empty()) {
|
|
// Special-case the empty string.
|
|
os << "\"\"";
|
|
return;
|
|
}
|
|
|
|
bool NeedsEscape = Str.find_first_of(" \"\\$") != StringRef::npos;
|
|
|
|
if (!NeedsEscape) {
|
|
// This string doesn't have anything we need to escape, so print it directly
|
|
os << Str;
|
|
return;
|
|
}
|
|
|
|
// Quote and escape. This isn't really complete, but is good enough, and
|
|
// matches how Clang's Command handles escaping arguments.
|
|
os << '"';
|
|
for (const char c : Str) {
|
|
switch (c) {
|
|
case '"':
|
|
case '\\':
|
|
case '$':
|
|
// These characters need to be escaped.
|
|
os << '\\';
|
|
// Fall-through to the default case, since we still need to print the
|
|
// character.
|
|
LLVM_FALLTHROUGH;
|
|
default:
|
|
os << c;
|
|
}
|
|
}
|
|
os << '"';
|
|
}
|
|
|
|
void Job::printArguments(raw_ostream &os,
|
|
const llvm::opt::ArgStringList &Args) {
|
|
interleave(Args,
|
|
[&](const char *Arg) { escapeAndPrintString(os, Arg); },
|
|
[&] { os << ' '; });
|
|
}
|
|
|
|
void Job::dump() const {
|
|
printCommandLineAndEnvironment(llvm::errs());
|
|
}
|
|
|
|
void Job::printCommandLineAndEnvironment(raw_ostream &Stream,
|
|
StringRef Terminator) const {
|
|
printCommandLine(Stream, /*Terminator=*/"");
|
|
if (!ExtraEnvironment.empty()) {
|
|
Stream << " #";
|
|
for (auto &pair : ExtraEnvironment) {
|
|
Stream << " " << pair.first << "=" << pair.second;
|
|
}
|
|
}
|
|
Stream << "\n";
|
|
}
|
|
|
|
void Job::printCommandLine(raw_ostream &os, StringRef Terminator) const {
|
|
escapeAndPrintString(os, Executable);
|
|
os << ' ';
|
|
printArguments(os, Arguments);
|
|
os << Terminator;
|
|
}
|
|
|
|
void Job::printSummary(raw_ostream &os) const {
|
|
// Deciding how to describe our inputs is a bit subtle; if we are a Job built
|
|
// from a JobAction that itself has InputActions sources, then we collect
|
|
// those up. Otherwise it's more correct to talk about our inputs as the
|
|
// outputs of our input-jobs.
|
|
SmallVector<std::string, 4> Inputs;
|
|
|
|
for (const Action *A : getSource().getInputs())
|
|
if (const auto *IA = dyn_cast<InputAction>(A))
|
|
Inputs.push_back(IA->getInputArg().getValue());
|
|
|
|
for (const Job *J : getInputs())
|
|
for (const std::string &f : J->getOutput().getPrimaryOutputFilenames())
|
|
Inputs.push_back(f);
|
|
|
|
size_t limit = 3;
|
|
size_t actual = Inputs.size();
|
|
if (actual > limit) {
|
|
Inputs.erase(Inputs.begin() + limit, Inputs.end());
|
|
}
|
|
|
|
os << "{" << getSource().getClassName() << ": ";
|
|
interleave(getOutput().getPrimaryOutputFilenames(),
|
|
[&](const std::string &Arg) {
|
|
os << llvm::sys::path::filename(Arg);
|
|
},
|
|
[&] { os << ' '; });
|
|
os << " <= ";
|
|
interleave(Inputs,
|
|
[&](const std::string &Arg) {
|
|
os << llvm::sys::path::filename(Arg);
|
|
},
|
|
[&] { os << ' '; });
|
|
if (actual > limit) {
|
|
os << " ... " << (actual-limit) << " more";
|
|
}
|
|
os << "}";
|
|
}
|
|
|
|
BatchJob::BatchJob(const JobAction &Source,
|
|
SmallVectorImpl<const Job *> &&Inputs,
|
|
std::unique_ptr<CommandOutput> Output,
|
|
const char *Executable, llvm::opt::ArgStringList Arguments,
|
|
EnvironmentVector ExtraEnvironment,
|
|
std::vector<FilelistInfo> Infos,
|
|
ArrayRef<const Job *> Combined)
|
|
: Job(Source, std::move(Inputs), std::move(Output), Executable, Arguments,
|
|
ExtraEnvironment, Infos),
|
|
CombinedJobs(Combined.begin(), Combined.end()) {}
|