mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

* basic implementation, that works for now only with the local SDK * replaced a handmade mock with a generated mock
40 lines
1.5 KiB
Swift
40 lines
1.5 KiB
Swift
import ArgumentParser
|
|
import Foundation
|
|
|
|
enum Utilities {
|
|
enum Error: LocalizedError {
|
|
case scriptFailed(command: String, path: String)
|
|
|
|
var errorDescription: String? {
|
|
switch self {
|
|
case let .scriptFailed(command, path):
|
|
return "command \(command) failed in path: \(path)"
|
|
}
|
|
}
|
|
}
|
|
|
|
static var projectDirectoryURL: URL { URL(fileURLWithPath: FileManager.default.currentDirectoryPath) }
|
|
static var parentDirectoryURL: URL { Utilities.projectDirectoryURL.deletingLastPathComponent() }
|
|
static var sdkDirectoryURL: URL { parentDirectoryURL.appendingPathComponent("matrix-rust-sdk") }
|
|
|
|
/// Runs a command in zsh.
|
|
@discardableResult
|
|
static func zsh(_ command: String, workingDirectoryURL: URL = projectDirectoryURL) throws -> String? {
|
|
let process = Process()
|
|
process.executableURL = URL(fileURLWithPath: "/bin/zsh")
|
|
process.arguments = ["-cu", command]
|
|
process.currentDirectoryURL = workingDirectoryURL
|
|
|
|
let outputPipe = Pipe()
|
|
process.standardOutput = outputPipe
|
|
|
|
try process.run()
|
|
process.waitUntilExit()
|
|
|
|
guard process.terminationReason == .exit, process.terminationStatus == 0 else { throw Error.scriptFailed(command: command, path: workingDirectoryURL.absoluteString) }
|
|
|
|
guard let outputData = try outputPipe.fileHandleForReading.readToEnd() else { return nil }
|
|
return String(data: outputData, encoding: .utf8)
|
|
}
|
|
}
|