1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2020 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
#if os(Linux) || os(Android) || os(FreeBSD) || os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
#if os(Linux) || os(Android)
import CNIOLinux
private let sys_pthread_getname_np = CNIOLinux_pthread_getname_np
private let sys_pthread_setname_np = CNIOLinux_pthread_setname_np
private typealias ThreadDestructor = @convention(c) (UnsafeMutableRawPointer?) -> UnsafeMutableRawPointer?
#elseif os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
private let sys_pthread_getname_np = pthread_getname_np
// Emulate the same method signature as pthread_setname_np on Linux.
private func sys_pthread_setname_np(_ p: pthread_t, _ pointer: UnsafePointer<Int8>) -> Int32 {
assert(pthread_equal(pthread_self(), p) != 0)
pthread_setname_np(pointer)
// Will never fail on macOS so just return 0 which will be used on linux to signal it not failed.
return 0
}
private typealias ThreadDestructor = @convention(c) (UnsafeMutableRawPointer) -> UnsafeMutableRawPointer?
#endif
private func sysPthread_create(handle: UnsafeMutablePointer<pthread_t?>,
destructor: @escaping ThreadDestructor,
args: UnsafeMutableRawPointer?) -> CInt {
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
return pthread_create(handle, nil, destructor, args)
#else
var handleLinux = pthread_t()
let result = pthread_create(&handleLinux,
nil,
destructor,
args)
handle.pointee = handleLinux
return result
#endif
}
typealias ThreadOpsSystem = ThreadOpsPosix
enum ThreadOpsPosix: ThreadOps {
typealias ThreadHandle = pthread_t
typealias ThreadSpecificKey = pthread_key_t
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
typealias ThreadSpecificKeyDestructor = @convention(c) (UnsafeMutableRawPointer) -> Void
#else
typealias ThreadSpecificKeyDestructor = @convention(c) (UnsafeMutableRawPointer?) -> Void
#endif
static func threadName(_ thread: ThreadOpsSystem.ThreadHandle) -> String? {
// 64 bytes should be good enough as on Linux the limit is usually 16
// and it's very unlikely a user will ever set something longer
// anyway.
var chars: [CChar] = Array(repeating: 0, count: 64)
return chars.withUnsafeMutableBufferPointer { ptr in
guard sys_pthread_getname_np(thread, ptr.baseAddress!, ptr.count) == 0 else {
return nil
}
let buffer: UnsafeRawBufferPointer =
UnsafeRawBufferPointer(UnsafeBufferPointer<CChar>(rebasing: ptr.prefix { $0 != 0 }))
return String(decoding: buffer, as: Unicode.UTF8.self)
}
}
static func run(handle: inout ThreadOpsSystem.ThreadHandle?, args: Box<NIOThread.ThreadBoxValue>, detachThread: Bool) {
let argv0 = Unmanaged.passRetained(args).toOpaque()
let res = sysPthread_create(handle: &handle, destructor: {
// Cast to UnsafeMutableRawPointer? and force unwrap to make the
// same code work on macOS and Linux.
let boxed = Unmanaged<NIOThread.ThreadBox>
.fromOpaque(($0 as UnsafeMutableRawPointer?)!)
.takeRetainedValue()
let (body, name) = (boxed.value.body, boxed.value.name)
let hThread: ThreadOpsSystem.ThreadHandle = pthread_self()
if let name = name {
let maximumThreadNameLength: Int
#if os(Linux) || os(Android)
maximumThreadNameLength = 15
#else
maximumThreadNameLength = .max
#endif
name.prefix(maximumThreadNameLength).withCString { namePtr in
// this is non-critical so we ignore the result here, we've seen
// EPERM in containers.
_ = sys_pthread_setname_np(hThread, namePtr)
}
}
body(NIOThread(handle: hThread, desiredName: name))
return nil
}, args: argv0)
precondition(res == 0, "Unable to create thread: \(res)")
if detachThread {
let detachError = pthread_detach(handle!)
precondition(detachError == 0, "pthread_detach failed with error \(detachError)")
}
}
static func isCurrentThread(_ thread: ThreadOpsSystem.ThreadHandle) -> Bool {
return pthread_equal(thread, pthread_self()) != 0
}
static var currentThread: ThreadOpsSystem.ThreadHandle {
return pthread_self()
}
static func joinThread(_ thread: ThreadOpsSystem.ThreadHandle) {
let err = pthread_join(thread, nil)
assert(err == 0, "pthread_join failed with \(err)")
}
static func allocateThreadSpecificValue(destructor: @escaping ThreadSpecificKeyDestructor) -> ThreadSpecificKey {
var value = pthread_key_t()
let result = pthread_key_create(&value, Optional(destructor))
precondition(result == 0, "pthread_key_create failed: \(result)")
return value
}
static func deallocateThreadSpecificValue(_ key: ThreadSpecificKey) {
let result = pthread_key_delete(key)
precondition(result == 0, "pthread_key_delete failed: \(result)")
}
static func getThreadSpecificValue(_ key: ThreadSpecificKey) -> UnsafeMutableRawPointer? {
return pthread_getspecific(key)
}
static func setThreadSpecificValue(key: ThreadSpecificKey, value: UnsafeMutableRawPointer?) {
let result = pthread_setspecific(key, value)
precondition(result == 0, "pthread_setspecific failed: \(result)")
}
static func compareThreads(_ lhs: ThreadOpsSystem.ThreadHandle, _ rhs: ThreadOpsSystem.ThreadHandle) -> Bool {
return pthread_equal(lhs, rhs) != 0
}
}
#endif
|