Last active
September 5, 2024 18:50
-
-
Save dagronf/2d42b92272e692a7287bc1893e1bae65 to your computer and use it in GitHub Desktop.
Swift method to provide the equivalent of `@synchronised` from objc
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
/// Provide the equivalent of @synchronised on objc | |
private func synchronized<T>(_ lock: AnyObject, _ body: () throws -> T) rethrows -> T { | |
objc_sync_enter(lock) | |
defer { objc_sync_exit(lock) } | |
return try body() | |
} | |
/// Simple lockable class | |
class Lockable { | |
private var lockable: AnyObject | |
init(using lockable: AnyObject) { | |
self.lockable = lockable | |
} | |
func usingLock<Value>(_ body: () throws -> Value) rethrows -> Value { | |
objc_sync_enter(self.lockable) | |
defer { objc_sync_exit(self.lockable) } | |
return try body() | |
} | |
} |
Usage :-
func remove(document: MyDocument) -> Bool {
return synchronized(self) {
RemoveDocument(self.index, document)
}
}
func add(text: String) -> Void {
synchronized(self) {
AddDocumentWithText(self.index, text)
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not overly fast, but useful for basic async tasks