mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The SDK directory is now confusing as the Windows target also has a SDK overlay. In order to make this more uniform, move the SDK directory to Darwin which covers the fact that this covers the XNU family of OSes. The Windows directory contains the SDK overlay for the Windows target.
110 lines
3.8 KiB
Swift
110 lines
3.8 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
extension DispatchIO {
|
|
|
|
public enum StreamType : UInt {
|
|
case stream = 0
|
|
case random = 1
|
|
}
|
|
|
|
public struct CloseFlags : OptionSet, RawRepresentable {
|
|
public let rawValue: UInt
|
|
public init(rawValue: UInt) { self.rawValue = rawValue }
|
|
|
|
public static let stop = CloseFlags(rawValue: 1)
|
|
}
|
|
|
|
public struct IntervalFlags : OptionSet, RawRepresentable {
|
|
public let rawValue: UInt
|
|
public init(rawValue: UInt) { self.rawValue = rawValue }
|
|
public init(nilLiteral: ()) { self.rawValue = 0 }
|
|
|
|
public static let strictInterval = IntervalFlags(rawValue: 1)
|
|
}
|
|
|
|
public class func read(fromFileDescriptor: Int32, maxLength: Int, runningHandlerOn queue: DispatchQueue, handler: @escaping (_ data: DispatchData, _ error: Int32) -> Void) {
|
|
__dispatch_read(fromFileDescriptor, maxLength, queue) { (data: __DispatchData, error: Int32) in
|
|
handler(DispatchData(data: data), error)
|
|
}
|
|
}
|
|
|
|
public class func write(toFileDescriptor: Int32, data: DispatchData, runningHandlerOn queue: DispatchQueue, handler: @escaping (_ data: DispatchData?, _ error: Int32) -> Void) {
|
|
__dispatch_write(toFileDescriptor, data as __DispatchData, queue) { (data: __DispatchData?, error: Int32) in
|
|
handler(data.map { DispatchData(data: $0) }, error)
|
|
}
|
|
}
|
|
|
|
public convenience init(
|
|
type: StreamType,
|
|
fileDescriptor: Int32,
|
|
queue: DispatchQueue,
|
|
cleanupHandler: @escaping (_ error: Int32) -> Void)
|
|
{
|
|
self.init(__type: type.rawValue, fd: fileDescriptor, queue: queue, handler: cleanupHandler)
|
|
}
|
|
|
|
@available(swift, obsoleted: 4)
|
|
public convenience init(
|
|
type: StreamType,
|
|
path: UnsafePointer<Int8>,
|
|
oflag: Int32,
|
|
mode: mode_t,
|
|
queue: DispatchQueue,
|
|
cleanupHandler: @escaping (_ error: Int32) -> Void)
|
|
{
|
|
self.init(__type: type.rawValue, path: path, oflag: oflag, mode: mode, queue: queue, handler: cleanupHandler)
|
|
}
|
|
|
|
@available(swift, introduced: 4)
|
|
public convenience init?(
|
|
type: StreamType,
|
|
path: UnsafePointer<Int8>,
|
|
oflag: Int32,
|
|
mode: mode_t,
|
|
queue: DispatchQueue,
|
|
cleanupHandler: @escaping (_ error: Int32) -> Void)
|
|
{
|
|
self.init(__type: type.rawValue, path: path, oflag: oflag, mode: mode, queue: queue, handler: cleanupHandler)
|
|
}
|
|
|
|
public convenience init(
|
|
type: StreamType,
|
|
io: DispatchIO,
|
|
queue: DispatchQueue,
|
|
cleanupHandler: @escaping (_ error: Int32) -> Void)
|
|
{
|
|
self.init(__type: type.rawValue, io: io, queue: queue, handler: cleanupHandler)
|
|
}
|
|
|
|
public func read(offset: off_t, length: Int, queue: DispatchQueue, ioHandler: @escaping (_ done: Bool, _ data: DispatchData?, _ error: Int32) -> Void) {
|
|
__dispatch_io_read(self, offset, length, queue) { (done: Bool, data: __DispatchData?, error: Int32) in
|
|
ioHandler(done, data.map { DispatchData(data: $0) }, error)
|
|
}
|
|
}
|
|
|
|
public func write(offset: off_t, data: DispatchData, queue: DispatchQueue, ioHandler: @escaping (_ done: Bool, _ data: DispatchData?, _ error: Int32) -> Void) {
|
|
__dispatch_io_write(self, offset, data as __DispatchData, queue) { (done: Bool, data: __DispatchData?, error: Int32) in
|
|
ioHandler(done, data.map { DispatchData(data: $0) }, error)
|
|
}
|
|
}
|
|
|
|
public func setInterval(interval: DispatchTimeInterval, flags: IntervalFlags = []) {
|
|
__dispatch_io_set_interval(self, UInt64(interval.rawValue), flags.rawValue)
|
|
}
|
|
|
|
public func close(flags: CloseFlags = []) {
|
|
__dispatch_io_close(self, flags.rawValue)
|
|
}
|
|
}
|
|
|