2018-12-13 10:08:10 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
|
|
|
|
|
|
|
|
import os.log
|
|
|
|
|
|
|
|
class Logger {
|
|
|
|
static var logPtr: UnsafeMutablePointer<log>?
|
|
|
|
|
|
|
|
static func configure(withFilePath filePath: String) -> Bool {
|
|
|
|
let logPtr = filePath.withCString { filePathCStr -> UnsafeMutablePointer<log>? in
|
|
|
|
return open_log(filePathCStr)
|
|
|
|
}
|
|
|
|
Logger.logPtr = logPtr
|
|
|
|
return (logPtr != nil)
|
|
|
|
}
|
|
|
|
|
2018-12-13 12:30:29 +00:00
|
|
|
static func writeLog(mergedWith otherLogFile: String, tag: String, otherTag: String, to targetFile: String) -> Bool {
|
2018-12-13 10:08:10 +00:00
|
|
|
let otherlogPtr = otherLogFile.withCString { otherLogFileCStr -> UnsafeMutablePointer<log>? in
|
|
|
|
return open_log(otherLogFileCStr)
|
|
|
|
}
|
|
|
|
if let thisLogPtr = Logger.logPtr, let otherlogPtr = otherlogPtr {
|
|
|
|
return targetFile.withCString { targetFileCStr -> Bool in
|
2018-12-13 12:30:29 +00:00
|
|
|
return tag.withCString { tagCStr -> Bool in
|
|
|
|
return otherTag.withCString { otherTagCStr -> Bool in
|
|
|
|
let returnValue = write_logs_to_file(targetFileCStr, tagCStr, thisLogPtr, otherTagCStr, otherlogPtr)
|
|
|
|
return (returnValue == 0)
|
|
|
|
}
|
|
|
|
}
|
2018-12-13 10:08:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func wg_log(_ type: OSLogType, staticMessage msg: StaticString) {
|
|
|
|
// Write to os log
|
|
|
|
os_log(msg, log: OSLog.default, type: type)
|
|
|
|
// Write to file log
|
|
|
|
let msgString: String = msg.withUTF8Buffer { (ptr: UnsafeBufferPointer<UInt8>) -> String in
|
|
|
|
return String(decoding: ptr, as: UTF8.self)
|
|
|
|
}
|
2018-12-13 12:36:57 +00:00
|
|
|
file_log(message: msgString)
|
2018-12-13 10:08:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func wg_log(_ type: OSLogType, message msg: String) {
|
|
|
|
// Write to os log
|
|
|
|
os_log("%{public}s", log: OSLog.default, type: type, msg)
|
|
|
|
// Write to file log
|
2018-12-13 12:36:57 +00:00
|
|
|
file_log(message: msg)
|
2018-12-13 10:08:10 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 12:36:57 +00:00
|
|
|
private func file_log(message: String) {
|
2018-12-13 10:08:10 +00:00
|
|
|
message.withCString { messageCStr in
|
|
|
|
if let logPtr = Logger.logPtr {
|
|
|
|
write_msg_to_log(logPtr, messageCStr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|