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
|
//===-- Manifest.cpp ------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "llbuild/Ninja/Manifest.h"
#include "llbuild/Basic/LLVM.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
using namespace llbuild;
using namespace llbuild::ninja;
bool Rule::isValidParameterName(StringRef name) {
return name == "command" ||
name == "description" ||
name == "deps" ||
name == "depfile" ||
name == "generator" ||
name == "pool" ||
name == "restat" ||
name == "rspfile" ||
name == "rspfile_content";
}
Manifest::Manifest() {
// Create the built-in console pool, and add it to the pool map.
consolePool = new (getAllocator()) Pool("console");
assert(consolePool != nullptr);
if (consolePool)
consolePool->setDepth(1);
pools["console"] = consolePool;
// Create the built-in phony rule, and add it to the rule map.
phonyRule = new (getAllocator()) Rule("phony");
getRootScope().getRules()["phony"] = phonyRule;
}
bool Manifest::normalize_path(StringRef workingDirectory, SmallVectorImpl<char>& tmp){
auto separatorRef = llvm::sys::path::get_separator();
assert(separatorRef.size() == 1);
char slash = *separatorRef.data();
if (llvm::sys::fs::make_absolute(workingDirectory, tmp) != std::error_code()) {
return false;
}
if (tmp.size() == 0 || !llvm::sys::path::is_absolute(tmp)) {
return false;
}
// Ignore root "network" prefixes, such as "//net/".
StringRef tmpRef{tmp.data(), tmp.size()};
auto rootNameLength = llvm::sys::path::root_name(tmpRef).size();
auto begin = tmp.begin() + rootNameLength;
auto src_it = begin;
auto dst_it = begin;
auto end = tmp.end();
for (; src_it < end; ++src_it) {
if (LLVM_LIKELY(*src_it != slash)) {
*dst_it++ = *src_it;
continue;
}
if (dst_it == begin || *(dst_it-1) != slash) {
*dst_it++ = slash;
}
// Current fragment "/"
if (LLVM_UNLIKELY(src_it + 1 >= end)) {
break;
}
if (LLVM_LIKELY(*(src_it + 1) != '.')) {
continue;
}
// Current fragment "/."
if (src_it + 2 >= end) {
++src_it;
continue;
}
if (*(src_it + 2) != '.') {
if (*(src_it + 2) == slash) {
// Means "/./"
++src_it;
} else {
// "/.?"
*dst_it++ = *++src_it;
}
continue;
}
if (src_it + 3 < end && *(src_it + 3) != slash) {
continue;
}
// Move destination pointer to the previous directory.
if (dst_it - begin <= 1) {
// Already at the top.
} else {
for (dst_it -= 2; dst_it > begin; --dst_it) {
if (LLVM_UNLIKELY(*dst_it == slash)) {
++dst_it;
break;
}
}
if (dst_it == begin) {
*dst_it++ = slash;
}
}
if (src_it + 3 < end) {
src_it += 2;
} else {
break;
}
}
tmp.resize(dst_it - tmp.begin());
return true;
}
Node* Manifest::findNode(StringRef workingDirectory, StringRef path0) {
SmallString<256> absPathTmp = path0;
if (!normalize_path(workingDirectory, absPathTmp)) {
return nullptr;
}
auto it = nodes.find(absPathTmp);
if (it == nodes.end()) {
return nullptr;
}
return it->second;
}
Node* Manifest::findOrCreateNode(StringRef workingDirectory, StringRef path0) {
SmallString<256> absPathTmp = path0;
if (!normalize_path(workingDirectory, absPathTmp)) {
return nullptr;
}
StringRef path = absPathTmp;
auto& result = nodes[path];
if (!result)
result = new (getAllocator()) Node(path, path0);
return result;
}
|