-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e5f0d15
Showing
2,310 changed files
with
658,658 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
C64.xcodeproj/xcuserdata/ | ||
/C64.xcodeproj/project.xcworkspace/xcuserdata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
// | ||
// CwlMutex.swift | ||
// CwlUtils | ||
// | ||
// Created by Matt Gallagher on 2015/02/03. | ||
// Copyright © 2015 Matt Gallagher ( https://www.cocoawithlove.com ). All rights reserved. | ||
// | ||
// Permission to use, copy, modify, and/or distribute this software for any | ||
// purpose with or without fee is hereby granted, provided that the above | ||
// copyright notice and this permission notice appear in all copies. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR | ||
// IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
// | ||
|
||
#if os(Linux) | ||
import Glibc | ||
#else | ||
import Darwin | ||
#endif | ||
|
||
/// A basic mutex protocol that requires nothing more than "performing work inside the mutex". | ||
public protocol ScopedMutex { | ||
/// Perform work inside the mutex | ||
func sync<R>(execute work: () throws -> R) rethrows -> R | ||
|
||
/// Perform work inside the mutex, returning immediately if the mutex is in-use | ||
func trySync<R>(execute work: () throws -> R) rethrows -> R? | ||
} | ||
|
||
/// A more specific kind of mutex that assume an underlying primitive and unbalanced lock/trylock/unlock operators | ||
public protocol RawMutex: ScopedMutex { | ||
associatedtype MutexPrimitive | ||
|
||
var underlyingMutex: MutexPrimitive { get set } | ||
|
||
func unbalancedLock() | ||
func unbalancedTryLock() -> Bool | ||
func unbalancedUnlock() | ||
} | ||
|
||
extension RawMutex { | ||
public func sync<R>(execute work: () throws -> R) rethrows -> R { | ||
unbalancedLock() | ||
defer { unbalancedUnlock() } | ||
return try work() | ||
} | ||
public func trySync<R>(execute work: () throws -> R) rethrows -> R? { | ||
guard unbalancedTryLock() else { return nil } | ||
defer { unbalancedUnlock() } | ||
return try work() | ||
} | ||
} | ||
|
||
/// A basic wrapper around the "NORMAL" and "RECURSIVE" `pthread_mutex_t` (a general purpose mutex). This type is a "class" type to take advantage of the "deinit" method and prevent accidental copying of the `pthread_mutex_t`. | ||
public final class PThreadMutex: RawMutex { | ||
public typealias MutexPrimitive = pthread_mutex_t | ||
|
||
// Non-recursive "PTHREAD_MUTEX_NORMAL" and recursive "PTHREAD_MUTEX_RECURSIVE" mutex types. | ||
public enum PThreadMutexType { | ||
case normal | ||
case recursive | ||
} | ||
|
||
public var underlyingMutex = pthread_mutex_t() | ||
|
||
/// Default constructs as ".Normal" or ".Recursive" on request. | ||
public init(type: PThreadMutexType = .normal) { | ||
var attr = pthread_mutexattr_t() | ||
guard pthread_mutexattr_init(&attr) == 0 else { | ||
preconditionFailure() | ||
} | ||
switch type { | ||
case .normal: | ||
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL) | ||
case .recursive: | ||
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) | ||
} | ||
guard pthread_mutex_init(&underlyingMutex, &attr) == 0 else { | ||
preconditionFailure() | ||
} | ||
pthread_mutexattr_destroy(&attr) | ||
} | ||
|
||
deinit { | ||
pthread_mutex_destroy(&underlyingMutex) | ||
} | ||
|
||
public func unbalancedLock() { | ||
pthread_mutex_lock(&underlyingMutex) | ||
} | ||
|
||
public func unbalancedTryLock() -> Bool { | ||
return pthread_mutex_trylock(&underlyingMutex) == 0 | ||
} | ||
|
||
public func unbalancedUnlock() { | ||
pthread_mutex_unlock(&underlyingMutex) | ||
} | ||
} | ||
|
||
extension PThreadMutex { | ||
func sync<R>(f: () throws -> R) rethrows -> R { | ||
pthread_mutex_lock(&underlyingMutex) | ||
defer { pthread_mutex_unlock(&underlyingMutex) } | ||
return try f() | ||
} | ||
} | ||
|
||
/// A basic wrapper around `os_unfair_lock` (a non-FIFO, high performance lock that offers safety against priority inversion). This type is a "class" type to prevent accidental copying of the `os_unfair_lock`. | ||
@available(OSX 10.12, iOS 10, tvOS 10, *) | ||
public final class UnfairLock: RawMutex { | ||
public typealias MutexPrimitive = os_unfair_lock | ||
|
||
public init() { | ||
} | ||
|
||
/// Exposed as an "unsafe" public property so non-scoped patterns can be implemented, if required. | ||
public var underlyingMutex = os_unfair_lock() | ||
|
||
public func unbalancedLock() { | ||
os_unfair_lock_lock(&underlyingMutex) | ||
} | ||
|
||
public func unbalancedTryLock() -> Bool { | ||
return os_unfair_lock_trylock(&underlyingMutex) | ||
} | ||
|
||
public func unbalancedUnlock() { | ||
os_unfair_lock_unlock(&underlyingMutex) | ||
} | ||
} | ||
|
Oops, something went wrong.