mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Implements SE-0055: https://github.com/apple/swift-evolution/blob/master/proposals/0055-optional-unsafe-pointers.md - Add NULL as an extra inhabitant of Builtin.RawPointer (currently hardcoded to 0 rather than being target-dependent). - Import non-object pointers as Optional/IUO when nullable/null_unspecified (like everything else). - Change the type checker's *-to-pointer conversions to handle a layer of optional. - Use 'AutoreleasingUnsafeMutablePointer<NSError?>?' as the type of error parameters exported to Objective-C. - Drop NilLiteralConvertible conformance for all pointer types. - Update the standard library and then all the tests. I've decided to leave this commit only updating existing tests; any new tests will come in the following commits. (That may mean some additional implementation work to follow.) The other major piece that's missing here is migration. I'm hoping we get a lot of that with Swift 1.1's work for optional object references, but I still need to investigate.
130 lines
3.3 KiB
Swift
130 lines
3.3 KiB
Swift
//===--- SwiftPrivateLibcExtras.swift -------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import SwiftPrivate
|
|
#if os(OSX) || os(iOS) || os(watchOS) || os(tvOS)
|
|
import Darwin
|
|
#elseif os(Linux) || os(FreeBSD)
|
|
import Glibc
|
|
#endif
|
|
|
|
public func _stdlib_mkstemps(_ template: inout String, _ suffixlen: CInt) -> CInt {
|
|
var utf8 = template.nulTerminatedUTF8
|
|
let (fd, fileName) = utf8.withUnsafeMutableBufferPointer {
|
|
(utf8) -> (CInt, String) in
|
|
let fd = mkstemps(UnsafeMutablePointer(utf8.baseAddress!), suffixlen)
|
|
let fileName = String(cString: UnsafePointer(utf8.baseAddress!))
|
|
return (fd, fileName)
|
|
}
|
|
template = fileName
|
|
return fd
|
|
}
|
|
|
|
public var _stdlib_FD_SETSIZE: CInt {
|
|
return 1024
|
|
}
|
|
|
|
public struct _stdlib_fd_set {
|
|
var _data: [UInt32]
|
|
static var _wordBits: Int {
|
|
return sizeof(UInt32) * 8
|
|
}
|
|
|
|
public init() {
|
|
_data = [UInt32](
|
|
repeating: 0,
|
|
count: Int(_stdlib_FD_SETSIZE) / _stdlib_fd_set._wordBits)
|
|
}
|
|
|
|
public func isset(_ fd: CInt) -> Bool {
|
|
let fdInt = Int(fd)
|
|
return (
|
|
_data[fdInt / _stdlib_fd_set._wordBits] &
|
|
UInt32(1 << (fdInt % _stdlib_fd_set._wordBits))
|
|
) != 0
|
|
}
|
|
|
|
public mutating func set(_ fd: CInt) {
|
|
let fdInt = Int(fd)
|
|
_data[fdInt / _stdlib_fd_set._wordBits] |=
|
|
UInt32(1 << (fdInt % _stdlib_fd_set._wordBits))
|
|
}
|
|
|
|
public mutating func clear(_ fd: CInt) {
|
|
let fdInt = Int(fd)
|
|
_data[fdInt / _stdlib_fd_set._wordBits] &=
|
|
~UInt32(1 << (fdInt % _stdlib_fd_set._wordBits))
|
|
}
|
|
|
|
public mutating func zero() {
|
|
let count = _data.count
|
|
return _data.withUnsafeMutableBufferPointer {
|
|
(_data) in
|
|
for i in 0..<count {
|
|
_data[i] = 0
|
|
}
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
public func _stdlib_select(
|
|
_ readfds: inout _stdlib_fd_set, _ writefds: inout _stdlib_fd_set,
|
|
_ errorfds: inout _stdlib_fd_set, _ timeout: UnsafeMutablePointer<timeval>?
|
|
) -> CInt {
|
|
return readfds._data.withUnsafeMutableBufferPointer {
|
|
(readfds) in
|
|
writefds._data.withUnsafeMutableBufferPointer {
|
|
(writefds) in
|
|
errorfds._data.withUnsafeMutableBufferPointer {
|
|
(errorfds) in
|
|
let readAddr = readfds.baseAddress
|
|
let writeAddr = writefds.baseAddress
|
|
let errorAddr = errorfds.baseAddress
|
|
return select(
|
|
_stdlib_FD_SETSIZE,
|
|
UnsafeMutablePointer(readAddr),
|
|
UnsafeMutablePointer(writeAddr),
|
|
UnsafeMutablePointer(errorAddr),
|
|
timeout)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// Functions missing in `Darwin` module.
|
|
//
|
|
public func _WSTATUS(_ status: CInt) -> CInt {
|
|
return status & 0x7f
|
|
}
|
|
|
|
public var _WSTOPPED: CInt {
|
|
return 0x7f
|
|
}
|
|
|
|
public func WIFEXITED(_ status: CInt) -> Bool {
|
|
return _WSTATUS(status) == 0
|
|
}
|
|
|
|
public func WIFSIGNALED(_ status: CInt) -> Bool {
|
|
return _WSTATUS(status) != _WSTOPPED && _WSTATUS(status) != 0
|
|
}
|
|
|
|
public func WEXITSTATUS(_ status: CInt) -> CInt {
|
|
return (status >> 8) & 0xff
|
|
}
|
|
|
|
public func WTERMSIG(_ status: CInt) -> CInt {
|
|
return _WSTATUS(status)
|
|
}
|