secretive/Sources/Packages/Sources/SecretAgentKit/FileHandleProtocols.swift

33 lines
967 B
Swift
Raw Normal View History

2020-03-24 06:22:22 +00:00
import Foundation
/// Protocol abstraction of the reading aspects of FileHandle.
2020-03-24 06:22:22 +00:00
public protocol FileHandleReader {
/// Gets data that is available for reading.
2020-03-24 06:22:22 +00:00
var availableData: Data { get }
/// A file descriptor of the handle.
2020-03-24 06:22:22 +00:00
var fileDescriptor: Int32 { get }
/// The process ID of the process coonnected to the other end of the FileHandle.
2020-03-24 06:22:22 +00:00
var pidOfConnectedProcess: Int32 { get }
}
/// Protocol abstraction of the writing aspects of FileHandle.
2020-03-24 06:22:22 +00:00
public protocol FileHandleWriter {
/// Writes data to the handle.
2020-03-24 06:22:22 +00:00
func write(_ data: Data)
}
extension FileHandle: FileHandleReader, FileHandleWriter {
public var pidOfConnectedProcess: Int32 {
let pidPointer = UnsafeMutableRawPointer.allocate(byteCount: 4, alignment: 1)
var len = socklen_t(MemoryLayout<Int32>.size)
getsockopt(fileDescriptor, SOCK_STREAM, LOCAL_PEERPID, pidPointer, &len)
return pidPointer.load(as: Int32.self)
}
}