diff --git a/Sources/ElixxirDAppsSDK/Functors/ResumeBackup.swift b/Sources/ElixxirDAppsSDK/Functors/ResumeBackup.swift new file mode 100644 index 0000000000000000000000000000000000000000..f557dd566fa9623a28705cdd28653f7f02c1ab47 --- /dev/null +++ b/Sources/ElixxirDAppsSDK/Functors/ResumeBackup.swift @@ -0,0 +1,39 @@ +import Bindings +import XCTestDynamicOverlay + +public struct ResumeBackup { + public var run: (Int, Int, UpdateBackupFunc) throws -> Backup + + public func callAsFunction( + e2eId: Int, + udId: Int, + callback: UpdateBackupFunc + ) throws -> Backup { + try run(e2eId, udId, callback) + } +} + +extension ResumeBackup { + public static let live = ResumeBackup { e2eId, udId, callback in + var error: NSError? + let bindingsBackup = BindingsResumeBackup( + e2eId, + udId, + callback.makeBindingsUpdateBackupFunc(), + &error + ) + if let error = error { + throw error + } + guard let bindingsBackup = bindingsBackup else { + fatalError("BindingsResumeBackup returned `nil` without providing error") + } + return .live(bindingsBackup) + } +} + +extension ResumeBackup { + public static let unimplemented = ResumeBackup( + run: XCTUnimplemented("\(Self.self)") + ) +}