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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
/*
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 http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import TSCBasic
import Foundation
// deprecated 12/21, moved to SwiftPM
@available(*, deprecated, message: "moved into SwiftPM")
public enum PkgConfigError: Swift.Error, CustomStringConvertible {
case couldNotFindConfigFile(name: String)
case parsingError(String)
case prohibitedFlags(String)
public var description: String {
switch self {
case .couldNotFindConfigFile(let name):
return "couldn't find pc file for \(name)"
case .parsingError(let error):
return "parsing error(s): \(error)"
case .prohibitedFlags(let flags):
return "prohibited flag(s): \(flags)"
}
}
}
// deprecated 12/21, moved to SwiftPM
@available(*, deprecated, message: "moved into SwiftPM")
public struct PCFileFinder {
/// DiagnosticsEngine to emit warnings
let diagnostics: DiagnosticsEngine
/// Cached results of locations `pkg-config` will search for `.pc` files
/// FIXME: This shouldn't use a static variable, since the first lookup
/// will cache the result of whatever `brewPrefix` was passed in. It is
/// also not threadsafe.
public private(set) static var pkgConfigPaths: [AbsolutePath]? // FIXME: @testable(internal)
private static var shouldEmitPkgConfigPathsDiagnostic = false
/// The built-in search path list.
///
/// By default, this is combined with the search paths inferred from
/// `pkg-config` itself.
static func searchPaths() throws -> [AbsolutePath] {
return try [
AbsolutePath(validating: "/usr/local/lib/pkgconfig"),
AbsolutePath(validating: "/usr/local/share/pkgconfig"),
AbsolutePath(validating: "/usr/lib/pkgconfig"),
AbsolutePath(validating: "/usr/share/pkgconfig"),
]
}
/// Get search paths from `pkg-config` itself to locate `.pc` files.
///
/// This is needed because on Linux machines, the search paths can be different
/// from the standard locations that we are currently searching.
public init(diagnostics: DiagnosticsEngine, brewPrefix: AbsolutePath?) {
self.diagnostics = diagnostics
if PCFileFinder.pkgConfigPaths == nil {
do {
let pkgConfigPath: String
if let brewPrefix = brewPrefix {
pkgConfigPath = brewPrefix.appending(components: "bin", "pkg-config").pathString
} else {
pkgConfigPath = "pkg-config"
}
let searchPaths = try Process.checkNonZeroExit(
args: pkgConfigPath, "--variable", "pc_path", "pkg-config").spm_chomp()
PCFileFinder.pkgConfigPaths = searchPaths.split(separator: ":").compactMap({ try? AbsolutePath(validating: String($0)) })
} catch {
PCFileFinder.shouldEmitPkgConfigPathsDiagnostic = true
PCFileFinder.pkgConfigPaths = []
}
}
}
/// Reset the cached `pkgConfigPaths` property, so that it will be evaluated
/// again when instantiating a `PCFileFinder()`. This is intended only for
/// use by testing. This is a temporary workaround for the use of a static
/// variable by this class.
internal static func resetCachedPkgConfigPaths() {
PCFileFinder.pkgConfigPaths = nil
}
public func locatePCFile(
name: String,
customSearchPaths: [AbsolutePath],
fileSystem: FileSystem
) throws -> AbsolutePath {
// FIXME: We should consider building a registry for all items in the
// search paths, which is likely to be substantially more efficient if
// we end up searching for a reasonably sized number of packages.
for path in try OrderedSet(customSearchPaths + PCFileFinder.pkgConfigPaths! + PCFileFinder.searchPaths()) {
let pcFile = path.appending(component: name + ".pc")
if fileSystem.isFile(pcFile) {
return pcFile
}
}
if PCFileFinder.shouldEmitPkgConfigPathsDiagnostic {
PCFileFinder.shouldEmitPkgConfigPathsDiagnostic = false
diagnostics.emit(warning: "failed to retrieve search paths with pkg-config; maybe pkg-config is not installed")
}
throw PkgConfigError.couldNotFindConfigFile(name: name)
}
}
/// Informations to track circular dependencies and other PkgConfig issues
// deprecated 12/21, moved to SwiftPM
@available(*, deprecated, message: "moved into SwiftPM")
public class LoadingContext {
public init() {
pkgConfigStack = [String]()
}
public var pkgConfigStack: [String]
}
/// Information on an individual `pkg-config` supported package.
/// // deprecated 12/21, moved to SwiftPM
@available(*, deprecated, message: "moved into SwiftPM")
public struct PkgConfig {
/// The name of the package.
public let name: String
/// The path to the definition file.
public let pcFile: AbsolutePath
/// The list of C compiler flags in the definition.
public let cFlags: [String]
/// The list of libraries to link.
public let libs: [String]
/// DiagnosticsEngine to emit diagnostics
let diagnostics: DiagnosticsEngine
/// Load the information for the named package.
///
/// It will search `fileSystem` for the pkg config file in the following order:
/// * Paths defined in `PKG_CONFIG_PATH` environment variable
/// * Paths defined in `additionalSearchPaths` argument
/// * Built-in search paths (see `PCFileFinder.searchPaths`)
///
/// - parameter name: Name of the pkg config file (without file extension).
/// - parameter additionalSearchPaths: Additional paths to search for pkg config file.
/// - parameter fileSystem: The file system to use, defaults to local file system.
///
/// - throws: PkgConfigError
public init(
name: String,
additionalSearchPaths: [AbsolutePath] = [],
diagnostics: DiagnosticsEngine,
fileSystem: FileSystem = localFileSystem,
brewPrefix: AbsolutePath?,
loadingContext: LoadingContext = LoadingContext()
) throws {
loadingContext.pkgConfigStack.append(name)
if let path = try? AbsolutePath(validating: name) {
guard fileSystem.isFile(path) else { throw PkgConfigError.couldNotFindConfigFile(name: name) }
self.name = path.basenameWithoutExt
self.pcFile = path
} else {
self.name = name
let pkgFileFinder = PCFileFinder(diagnostics: diagnostics, brewPrefix: brewPrefix)
self.pcFile = try pkgFileFinder.locatePCFile(
name: name,
customSearchPaths: PkgConfig.envSearchPaths + additionalSearchPaths,
fileSystem: fileSystem)
}
self.diagnostics = diagnostics
var parser = PkgConfigParser(pcFile: pcFile, fileSystem: fileSystem)
try parser.parse()
func getFlags(from dependencies: [String]) throws -> (cFlags: [String], libs: [String]) {
var cFlags = [String]()
var libs = [String]()
for dep in dependencies {
if let index = loadingContext.pkgConfigStack.firstIndex(of: dep) {
diagnostics.emit(warning: "circular dependency detected while parsing \(loadingContext.pkgConfigStack[0]): \(loadingContext.pkgConfigStack[index..<loadingContext.pkgConfigStack.count].joined(separator: " -> ")) -> \(dep)")
continue
}
// FIXME: This is wasteful, we should be caching the PkgConfig result.
let pkg = try PkgConfig(
name: dep,
additionalSearchPaths: additionalSearchPaths,
diagnostics: diagnostics,
fileSystem: fileSystem,
brewPrefix: brewPrefix,
loadingContext: loadingContext
)
cFlags += pkg.cFlags
libs += pkg.libs
}
return (cFlags: cFlags, libs: libs)
}
let dependencyFlags = try getFlags(from: parser.dependencies)
let privateDependencyFlags = try getFlags(from: parser.privateDependencies)
self.cFlags = parser.cFlags + dependencyFlags.cFlags + privateDependencyFlags.cFlags
self.libs = parser.libs + dependencyFlags.libs
loadingContext.pkgConfigStack.removeLast();
}
private static var envSearchPaths: [AbsolutePath] {
if let configPath = ProcessEnv.vars["PKG_CONFIG_PATH"] {
return configPath.split(separator: ":").compactMap({ try? AbsolutePath(validating: String($0)) })
}
return []
}
}
// FIXME: This is only internal so it can be unit tested.
//
/// Parser for the `pkg-config` `.pc` file format.
///
/// See: https://www.freedesktop.org/wiki/Software/pkg-config/
// deprecated 12/21, moved to SwiftPM
@available(*, deprecated, message: "moved into SwiftPM")
public struct PkgConfigParser {
public let pcFile: AbsolutePath
private let fileSystem: FileSystem
public private(set) var variables = [String: String]()
public private(set) var dependencies = [String]()
public private(set) var privateDependencies = [String]()
public private(set) var cFlags = [String]()
public private(set) var libs = [String]()
public init(pcFile: AbsolutePath, fileSystem: FileSystem) {
precondition(fileSystem.isFile(pcFile))
self.pcFile = pcFile
self.fileSystem = fileSystem
}
public mutating func parse() throws {
func removeComment(line: String) -> String {
if let commentIndex = line.firstIndex(of: "#") {
return String(line[line.startIndex..<commentIndex])
}
return line
}
// Add pcfiledir variable. This is the path of the directory containing this pc file.
variables["pcfiledir"] = pcFile.parentDirectory.pathString
// Add pc_sysrootdir variable. This is the path of the sysroot directory for pc files.
variables["pc_sysrootdir"] = ProcessEnv.vars["PKG_CONFIG_SYSROOT_DIR"] ?? "/"
let fileContents = try fileSystem.readFileContents(pcFile)
// FIXME: Should we error out instead if content is not UTF8 representable?
for line in fileContents.validDescription?.components(separatedBy: "\n") ?? [] {
// Remove commented or any trailing comment from the line.
let uncommentedLine = removeComment(line: line)
// Ignore any empty or whitespace line.
guard let line = uncommentedLine.spm_chuzzle() else { continue }
if line.contains(":") {
// Found a key-value pair.
try parseKeyValue(line: line)
} else if line.contains("=") {
// Found a variable.
let (name, maybeValue) = line.spm_split(around: "=")
let value = maybeValue?.spm_chuzzle() ?? ""
variables[name.spm_chuzzle() ?? ""] = try resolveVariables(value)
} else {
// Unexpected thing in the pc file, abort.
throw PkgConfigError.parsingError("Unexpected line: \(line) in \(pcFile)")
}
}
}
private mutating func parseKeyValue(line: String) throws {
precondition(line.contains(":"))
let (key, maybeValue) = line.spm_split(around: ":")
let value = try resolveVariables(maybeValue?.spm_chuzzle() ?? "")
switch key {
case "Requires":
dependencies = try parseDependencies(value)
case "Requires.private":
privateDependencies = try parseDependencies(value)
case "Libs":
libs = try splitEscapingSpace(value)
case "Cflags":
cFlags = try splitEscapingSpace(value)
default:
break
}
}
/// Parses `Requires: ` string into array of dependencies.
///
/// The dependency string has seperator which can be (multiple) space or a
/// comma. Additionally each there can be an optional version constaint to
/// a dependency.
private func parseDependencies(_ depString: String) throws -> [String] {
let operators = ["=", "<", ">", "<=", ">="]
let separators = [" ", ","]
// Look at a char at an index if present.
func peek(idx: Int) -> Character? {
guard idx <= depString.count - 1 else { return nil }
return depString[depString.index(depString.startIndex, offsetBy: idx)]
}
// This converts the string which can be separated by comma or spaces
// into an array of string.
func tokenize() -> [String] {
var tokens = [String]()
var token = ""
for (idx, char) in depString.enumerated() {
// Encountered a seperator, use the token.
if separators.contains(String(char)) {
// If next character is a space skip.
if let peeked = peek(idx: idx+1), peeked == " " { continue }
// Append to array of tokens and reset token variable.
tokens.append(token)
token = ""
} else {
token += String(char)
}
}
// Append the last collected token if present.
if !token.isEmpty { tokens += [token] }
return tokens
}
var deps = [String]()
var it = tokenize().makeIterator()
while let arg = it.next() {
// If we encounter an operator then we need to skip the next token.
if operators.contains(arg) {
// We should have a version number next, skip.
guard it.next() != nil else {
throw PkgConfigError.parsingError("""
Expected version number after \(deps.last.debugDescription) \(arg) in \"\(depString)\" in \
\(pcFile)
""")
}
} else {
// Otherwise it is a dependency.
deps.append(arg)
}
}
return deps
}
/// Perform variable expansion on the line by processing the each fragment
/// of the string until complete.
///
/// Variables occur in form of ${variableName}, we search for a variable
/// linearly in the string and if found, lookup the value of the variable in
/// our dictionary and replace the variable name with its value.
private func resolveVariables(_ line: String) throws -> String {
// Returns variable name, start index and end index of a variable in a string if present.
// We make sure it of form ${name} otherwise it is not a variable.
func findVariable(_ fragment: String)
-> (name: String, startIndex: String.Index, endIndex: String.Index)? {
guard let dollar = fragment.firstIndex(of: "$"),
dollar != fragment.endIndex && fragment[fragment.index(after: dollar)] == "{",
let variableEndIndex = fragment.firstIndex(of: "}")
else { return nil }
return (String(fragment[fragment.index(dollar, offsetBy: 2)..<variableEndIndex]), dollar, variableEndIndex)
}
var result = ""
var fragment = line
while !fragment.isEmpty {
// Look for a variable in our current fragment.
if let variable = findVariable(fragment) {
// Append the contents before the variable.
result += fragment[fragment.startIndex..<variable.startIndex]
guard let variableValue = variables[variable.name] else {
throw PkgConfigError.parsingError(
"Expected a value for variable '\(variable.name)' in \(pcFile). Variables: \(variables)")
}
// Append the value of the variable.
result += variableValue
// Update the fragment with post variable string.
fragment = String(fragment[fragment.index(after: variable.endIndex)...])
} else {
// No variable found, just append rest of the fragment to result.
result += fragment
fragment = ""
}
}
return String(result)
}
/// Split line on unescaped spaces.
///
/// Will break on space in "abc def" and "abc\\ def" but not in "abc\ def"
/// and ignore multiple spaces such that "abc def" will split into ["abc",
/// "def"].
private func splitEscapingSpace(_ line: String) throws -> [String] {
var splits = [String]()
var fragment = [Character]()
func saveFragment() {
if !fragment.isEmpty {
splits.append(String(fragment))
fragment.removeAll()
}
}
var it = line.makeIterator()
// Indicates if we're in a quoted fragment, we shouldn't append quote.
var inQuotes = false
while let char = it.next() {
if char == "\"" {
inQuotes = !inQuotes
} else if char == "\\" {
if let next = it.next() {
fragment.append(next)
}
} else if char == " " && !inQuotes {
saveFragment()
} else {
fragment.append(char)
}
}
guard !inQuotes else {
throw PkgConfigError.parsingError(
"Text ended before matching quote was found in line: \(line) file: \(pcFile)")
}
saveFragment()
return splits
}
}
|