RxSwift/Platform/Platform.Linux.swift

94 lines
2.3 KiB
Swift
Raw Normal View History

//
// Platform.Linux.swift
2016-10-19 23:45:27 +03:00
// Platform
//
// Created by Krunoslav Zaher on 12/29/15.
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//
#if os(Linux)
import Foundation
import XCTest
import Glibc
import SwiftShims
2016-10-15 23:36:09 +03:00
final class AtomicInt {
typealias IntegerLiteralType = Int
fileprivate var value: Int32 = 0
fileprivate var _lock = RecursiveLock()
func lock() {
_lock.lock()
}
func unlock() {
_lock.unlock()
}
func valueSnapshot() -> Int32 {
return value
}
}
extension AtomicInt: ExpressibleByIntegerLiteral {
2016-10-15 23:36:09 +03:00
convenience init(integerLiteral value: Int) {
self.init()
self.value = Int32(value)
}
}
2016-10-15 23:36:09 +03:00
func >(lhs: AtomicInt, rhs: Int32) -> Bool {
return lhs.value > rhs
}
2016-10-15 23:36:09 +03:00
func ==(lhs: AtomicInt, rhs: Int32) -> Bool {
return lhs.value == rhs
}
2016-10-15 23:36:09 +03:00
func AtomicIncrement(_ atomic: inout AtomicInt) -> Int32 {
atomic.lock(); defer { atomic.unlock() }
atomic.value += 1
return atomic.value
}
2016-10-15 23:36:09 +03:00
func AtomicDecrement(_ atomic: inout AtomicInt) -> Int32 {
atomic.lock(); defer { atomic.unlock() }
atomic.value -= 1
return atomic.value
}
2016-10-15 23:36:09 +03:00
func AtomicCompareAndSwap(_ l: Int32, _ r: Int32, _ atomic: inout AtomicInt) -> Bool {
atomic.lock(); defer { atomic.unlock() }
if atomic.value == l {
atomic.value = r
return true
}
return false
}
extension Thread {
static func setThreadLocalStorageValue<T: AnyObject>(_ value: T?, forKey key: String) {
let currentThread = Thread.current
var threadDictionary = currentThread.threadDictionary
if let newValue = value {
threadDictionary[key] = newValue
}
else {
threadDictionary[key] = nil
}
currentThread.threadDictionary = threadDictionary
}
static func getThreadLocalStorageValueForKey<T: AnyObject>(_ key: String) -> T? {
let currentThread = Thread.current
let threadDictionary = currentThread.threadDictionary
return threadDictionary[key] as? T
}
}
#endif