mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
4848f422d6
Fixes #364.
80 lines
1.8 KiB
Swift
80 lines
1.8 KiB
Swift
//
|
|
// Utilities.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 14/09/2016.
|
|
// Copyright © 2016 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// A collection of output formatting helpers
|
|
|
|
/// Terminal Control Sequence Indicator
|
|
let csi = "\u{001B}["
|
|
|
|
#if DEBUG
|
|
|
|
var printObserver: ((String) -> Void)?
|
|
|
|
// Override global print for testability.
|
|
// See MasKitTests/OutputListener.swift.
|
|
func print(_ items: Any..., separator: String = " ", terminator: String = "\n") {
|
|
if let observer = printObserver {
|
|
let output =
|
|
items
|
|
.map { "\($0)" }
|
|
.joined(separator: separator)
|
|
.appending(terminator)
|
|
observer(output)
|
|
}
|
|
|
|
var prefix = ""
|
|
for item in items {
|
|
Swift.print(prefix, terminator: "")
|
|
Swift.print(item, terminator: "")
|
|
prefix = separator
|
|
}
|
|
|
|
Swift.print(terminator, terminator: "")
|
|
}
|
|
|
|
#endif
|
|
|
|
func printInfo(_ message: String) {
|
|
guard isatty(fileno(stdout)) != 0 else {
|
|
print("==> \(message)")
|
|
return
|
|
}
|
|
|
|
// Blue bold arrow, Bold text
|
|
print("\(csi)1;34m==>\(csi)0m \(csi)1m\(message)\(csi)0m")
|
|
}
|
|
|
|
func printWarning(_ message: String) {
|
|
guard isatty(fileno(stdout)) != 0 else {
|
|
print("Warning: \(message)")
|
|
return
|
|
}
|
|
|
|
// Yellow, underlined "Warning:" prefix
|
|
print("\(csi)4;33mWarning:\(csi)0m \(message)")
|
|
}
|
|
|
|
public func printError(_ message: String) {
|
|
guard isatty(fileno(stdout)) != 0 else {
|
|
print("Error: \(message)")
|
|
return
|
|
}
|
|
|
|
// Red, underlined "Error:" prefix
|
|
print("\(csi)4;31mError:\(csi)0m \(message)")
|
|
}
|
|
|
|
func clearLine() {
|
|
guard isatty(fileno(stdout)) != 0 else {
|
|
return
|
|
}
|
|
print("\(csi)2K\(csi)0G", terminator: "")
|
|
fflush(stdout)
|
|
}
|