blob: 15c28af69d3173cce8af09ee9a44780ec9bae3fe [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "tools/gn/ninja_helper.h"
#include "base/logging.h"
#include "tools/gn/filesystem_utils.h"
#include "tools/gn/string_utils.h"
#include "tools/gn/target.h"
namespace {
const char kLibDirWithSlash[] = "lib/";
const char kObjectDirNoSlash[] = "obj";
} // namespace
NinjaHelper::NinjaHelper(const BuildSettings* build_settings)
: build_settings_(build_settings) {
build_to_src_no_last_slash_ = build_settings->build_to_source_dir_string();
if (!build_to_src_no_last_slash_.empty() &&
build_to_src_no_last_slash_[build_to_src_no_last_slash_.size() - 1] ==
'/')
build_to_src_no_last_slash_.resize(build_to_src_no_last_slash_.size() - 1);
build_to_src_system_no_last_slash_ = build_to_src_no_last_slash_;
ConvertPathToSystem(&build_to_src_system_no_last_slash_);
}
NinjaHelper::~NinjaHelper() {
}
std::string NinjaHelper::GetTopleveOutputDir() const {
return kObjectDirNoSlash;
}
std::string NinjaHelper::GetTargetOutputDir(const Target* target) const {
return kObjectDirNoSlash + target->label().dir().SourceAbsoluteWithOneSlash();
}
OutputFile NinjaHelper::GetNinjaFileForTarget(const Target* target) const {
OutputFile ret(target->settings()->toolchain_output_subdir());
ret.value().append(kObjectDirNoSlash);
AppendStringPiece(&ret.value(),
target->label().dir().SourceAbsoluteWithOneSlash());
ret.value().append(target->label().name());
ret.value().append(".ninja");
return ret;
}
OutputFile NinjaHelper::GetNinjaFileForToolchain(
const Settings* settings) const {
OutputFile ret;
ret.value().append(settings->toolchain_output_subdir().value());
ret.value().append("toolchain.ninja");
return ret;
}
// In Python, GypPathToUniqueOutput does the qualification. The only case where
// the Python version doesn't qualify the name is for target outputs, which we
// handle in a separate function.
OutputFile NinjaHelper::GetOutputFileForSource(
const Target* target,
const SourceFile& source,
SourceFileType type) const {
// Extract the filename and remove the extension (keep the dot).
base::StringPiece filename = FindFilename(&source.value());
std::string name(filename.data(), filename.size());
size_t extension_offset = FindExtensionOffset(name);
CHECK(extension_offset != std::string::npos);
name.resize(extension_offset);
// Append the new extension.
switch (type) {
case SOURCE_ASM:
case SOURCE_C:
case SOURCE_CC:
case SOURCE_M:
case SOURCE_MM:
case SOURCE_S:
name.append(target->settings()->IsWin() ? "obj" : "o");
break;
case SOURCE_RC:
name.append("res");
break;
case SOURCE_H:
case SOURCE_UNKNOWN:
NOTREACHED();
return OutputFile();
}
// Use the scheme <path>/<target>.<name>.<extension> so that all output
// names are unique to different targets.
// This will look like "obj" or "toolchain_name/obj".
OutputFile ret(target->settings()->toolchain_output_subdir());
ret.value().append(kObjectDirNoSlash);
// Find the directory, assume it starts with two slashes, and trim to one.
base::StringPiece dir = FindDir(&source.value());
CHECK(dir.size() >= 2 && dir[0] == '/' && dir[1] == '/')
<< "Source file isn't in the source repo: " << dir;
AppendStringPiece(&ret.value(), dir.substr(1));
ret.value().append(target->label().name());
ret.value().append(".");
ret.value().append(name);
return ret;
}
OutputFile NinjaHelper::GetTargetOutputFile(const Target* target) const {
OutputFile ret;
// This is prepended to the output file name.
const char* prefix;
if (!target->settings()->IsWin() &&
(target->output_type() == Target::SHARED_LIBRARY ||
target->output_type() == Target::STATIC_LIBRARY))
prefix = "lib";
else
prefix = "";
const char* extension;
if (target->output_type() == Target::GROUP ||
target->output_type() == Target::COPY_FILES ||
target->output_type() == Target::CUSTOM) {
extension = "stamp";
} else {
extension = GetExtensionForOutputType(target->output_type(),
target->settings()->target_os());
}
// Everything goes into the toolchain directory (which will be empty for the
// default toolchain, and will end in a slash otherwise).
ret.value().append(target->settings()->toolchain_output_subdir().value());
// Binaries and loadable libraries go into the toolchain root.
if (target->output_type() == Target::EXECUTABLE ||
(target->settings()->IsMac() &&
(target->output_type() == Target::SHARED_LIBRARY ||
target->output_type() == Target::STATIC_LIBRARY)) ||
(target->settings()->IsWin() &&
target->output_type() == Target::SHARED_LIBRARY)) {
// Generate a name like "<toolchain>/<prefix><name>.<extension>".
ret.value().append(prefix);
ret.value().append(target->label().name());
if (extension[0]) {
ret.value().push_back('.');
ret.value().append(extension);
}
return ret;
}
// Libraries go into the library subdirectory like
// "<toolchain>/lib/<prefix><name>.<extension>".
if (target->output_type() == Target::SHARED_LIBRARY) {
ret.value().append(kLibDirWithSlash);
ret.value().append(prefix);
ret.value().append(target->label().name());
if (extension[0]) {
ret.value().push_back('.');
ret.value().append(extension);
}
return ret;
}
// Everything else goes next to the target's .ninja file like
// "<toolchain>/obj/<path>/<name>.<extension>".
ret.value().append(kObjectDirNoSlash);
AppendStringPiece(&ret.value(),
target->label().dir().SourceAbsoluteWithOneSlash());
ret.value().append(prefix);
ret.value().append(target->label().name());
if (extension[0]) {
ret.value().push_back('.');
ret.value().append(extension);
}
return ret;
}
std::string NinjaHelper::GetRulePrefix(const Toolchain* toolchain) const {
if (toolchain->is_default())
return std::string(); // Default toolchain has no prefix.
return toolchain->label().name() + "_";
}
std::string NinjaHelper::GetRuleForSourceType(const Settings* settings,
const Toolchain* toolchain,
SourceFileType type) const {
// This function may be hot since it will be called for every source file
// in the tree. We could cache the results to avoid making a string for
// every invocation.
std::string prefix = GetRulePrefix(toolchain);
if (type == SOURCE_C)
return prefix + "cc";
if (type == SOURCE_CC)
return prefix + "cxx";
// TODO(brettw) asm files.
if (settings->IsMac()) {
if (type == SOURCE_M)
return prefix + "objc";
if (type == SOURCE_MM)
return prefix + "objcxx";
}
if (settings->IsWin()) {
if (type == SOURCE_RC)
return prefix + "rc";
} else {
if (type == SOURCE_S)
return prefix + "cc"; // Assembly files just get compiled by CC.
}
return std::string();
}
std::string NinjaHelper::GetRuleForTargetType(
const Toolchain* toolchain,
Target::OutputType target_type) const {
std::string prefix = GetRulePrefix(toolchain);
if (target_type == Target::STATIC_LIBRARY) {
// TODO(brettw) stuff about standalong static libraryes on Unix in
// WriteTarget in the Python one, and lots of postbuild steps.
return prefix + "alink";
}
if (target_type == Target::SHARED_LIBRARY)
return prefix + "solink";
return prefix + "link";
}