Created
May 27, 2023 03:57
-
-
Save leptos-null/de904e0a0d8cc05de1cb55a543ea9afa to your computer and use it in GitHub Desktop.
Swift function to redirect stdout. Helpful for using print in environments where stdout is not easily accessible
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
func redirectStdout(to path: String) throws { | |
let (openResult, posixErrorCode) = path.withCString { | |
// idea thanks to https://github.com/leptos-null/ClassDumpRuntime/blob/31e3601/classdumpctl/main.m#L456-L459 | |
// error checking thanks to https://github.com/leptos-null/Forest/blob/ba4b89a/Shared/Tar.swift#L172-L174 | |
let result = open($0, O_WRONLY | O_CREAT | O_TRUNC, 0o644) | |
let globalError = errno // copy errno since it may change before we access it again later | |
return (result, globalError) | |
} | |
guard openResult >= 0 else { | |
throw NSError(domain: NSPOSIXErrorDomain, code: Int(posixErrorCode)) | |
} | |
let dupStatus = dup2(openResult, STDOUT_FILENO) | |
let globalError = errno // copy errno since it may change before we access it again later | |
guard dupStatus >= 0 else { | |
throw NSError(domain: NSPOSIXErrorDomain, code: Int(globalError)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Testing:
and running
tail -f /tmp/app_logs.txt
in a shell.