diff --git a/swiftwinrt/code_writers.h b/swiftwinrt/code_writers.h index d56811e7..ca3be4ea 100644 --- a/swiftwinrt/code_writers.h +++ b/swiftwinrt/code_writers.h @@ -1235,7 +1235,7 @@ vtable); { invoke_implementation = w.write_temp(R"(var result:%% for handler in getInvocationList() { - result = handler(%) + result = try handler(%) } return result)", bind(*delegate_method.return_type->type, write_type_params::swift), @@ -1245,13 +1245,13 @@ vtable); else { invoke_implementation = w.write_temp(R"(for handler in getInvocationList() { - handler(%) + try handler(%) })", bind(delegate_method.params)); } assert(delegate_method.def); w.write(R"(% extension EventSource where Handler == % { - %func invoke(%)% { + %func invoke(%) throws% { % } } @@ -1477,7 +1477,7 @@ vtable); // parameters for the delegate signature to create the bridge. The swift compiler // complains if the typealias isn't placed in a tuple function_def delegate_method = type.functions[0]; - w.write("public typealias % = (%) -> %\n", + w.write("public typealias % = (%) throws -> %\n", type, bind(delegate_method.params), bind(delegate_method)); @@ -1523,7 +1523,7 @@ vtable); interface_info delegate{ &type }; delegate.is_default = true; // so that the _default name is used auto indent_guard{ w.push_indent({3}) }; - write_class_func_body(w, invoke_method, delegate, true); + write_class_func_body(w, invoke_method, delegate, false); })); } @@ -2851,7 +2851,7 @@ override % func _getABI() -> UnsafeMutablePointer? { func_call += w.write_temp(format, get_swift_name(method), bind(function)); } - bool needs_try_catch = !is_get_or_put && !is_winrt_generic_collection(type) && !is_delegate(type); + bool needs_try_catch = !is_get_or_put && !is_winrt_generic_collection(type); w.write("%: {\n", func_name); if (needs_try_catch) { w.m_indent += 1; diff --git a/tests/test_app/WinRTInterfaceImplementations.swift b/tests/test_app/WinRTInterfaceImplementations.swift index a641ec75..7f185b92 100644 --- a/tests/test_app/WinRTInterfaceImplementations.swift +++ b/tests/test_app/WinRTInterfaceImplementations.swift @@ -84,7 +84,7 @@ class MyImplementableDelegate: IIAmImplementable { var id: Foundation.UUID? func fireEvent(_ data: String) { - _implementableEvent.invoke(data) + try! _implementableEvent.invoke(data) } private var object: Any? diff --git a/tests/test_component/Sources/test_component/Windows.Foundation+ABI.swift b/tests/test_component/Sources/test_component/Windows.Foundation+ABI.swift index ae6f90d9..70e3e3c0 100644 --- a/tests/test_component/Sources/test_component/Windows.Foundation+ABI.swift +++ b/tests/test_component/Sources/test_component/Windows.Foundation+ABI.swift @@ -1347,11 +1347,13 @@ extension __ABI_Windows_Foundation { AddRef: { AsyncActionCompletedHandlerWrapper.addRef($0) }, Release: { AsyncActionCompletedHandlerWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = AsyncActionCompletedHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncAction? = __ABI_Windows_Foundation.IAsyncActionWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = AsyncActionCompletedHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncAction? = __ABI_Windows_Foundation.IAsyncActionWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } @@ -1382,9 +1384,11 @@ extension __ABI_Windows_Foundation { AddRef: { DeferralCompletedHandlerWrapper.addRef($0) }, Release: { DeferralCompletedHandlerWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = DeferralCompletedHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - __unwrapped__instance() - return S_OK + do { + guard let __unwrapped__instance = DeferralCompletedHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + try __unwrapped__instance() + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } diff --git a/tests/test_component/Sources/test_component/Windows.Foundation+Impl.swift b/tests/test_component/Sources/test_component/Windows.Foundation+Impl.swift index 0f23d375..94b3d3fe 100644 --- a/tests/test_component/Sources/test_component/Windows.Foundation+Impl.swift +++ b/tests/test_component/Sources/test_component/Windows.Foundation+Impl.swift @@ -405,7 +405,7 @@ public enum __IMPL_Windows_Foundation { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -419,7 +419,7 @@ public enum __IMPL_Windows_Foundation { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { () in - try! _default.InvokeImpl() + try _default.InvokeImpl() } return handler } diff --git a/tests/test_component/Sources/test_component/Windows.Foundation.Collections.swift b/tests/test_component/Sources/test_component/Windows.Foundation.Collections.swift index 35b2a601..be81f085 100644 --- a/tests/test_component/Sources/test_component/Windows.Foundation.Collections.swift +++ b/tests/test_component/Sources/test_component/Windows.Foundation.Collections.swift @@ -300,8 +300,8 @@ public final class ValueSet : WinRTClass, IObservableMap, IMap, IIterable, IProp } } -public typealias MapChangedEventHandler = (AnyIObservableMap?, AnyIMapChangedEventArgs?) -> () -public typealias VectorChangedEventHandler = (AnyIObservableVector?, AnyIVectorChangedEventArgs?) -> () +public typealias MapChangedEventHandler = (AnyIObservableMap?, AnyIMapChangedEventArgs?) throws -> () +public typealias VectorChangedEventHandler = (AnyIObservableVector?, AnyIVectorChangedEventArgs?) throws -> () /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.foundation.collections.iiterable-1) public protocol IIterable : WinRTInterface { associatedtype T diff --git a/tests/test_component/Sources/test_component/Windows.Foundation.swift b/tests/test_component/Sources/test_component/Windows.Foundation.swift index 1a92d171..39bc0919 100644 --- a/tests/test_component/Sources/test_component/Windows.Foundation.swift +++ b/tests/test_component/Sources/test_component/Windows.Foundation.swift @@ -350,13 +350,13 @@ public final class WwwFormUrlDecoder : WinRTClass, IIterable, IVectorView { } } -public typealias AsyncActionCompletedHandler = (AnyIAsyncAction?, AsyncStatus) -> () -public typealias AsyncOperationCompletedHandler = (AnyIAsyncOperation?, AsyncStatus) -> () -public typealias AsyncOperationProgressHandler = (AnyIAsyncOperationWithProgress?, TProgress) -> () -public typealias AsyncOperationWithProgressCompletedHandler = (AnyIAsyncOperationWithProgress?, AsyncStatus) -> () -public typealias DeferralCompletedHandler = () -> () -public typealias EventHandler = (Any?, T) -> () -public typealias TypedEventHandler = (TSender, TResult) -> () +public typealias AsyncActionCompletedHandler = (AnyIAsyncAction?, AsyncStatus) throws -> () +public typealias AsyncOperationCompletedHandler = (AnyIAsyncOperation?, AsyncStatus) throws -> () +public typealias AsyncOperationProgressHandler = (AnyIAsyncOperationWithProgress?, TProgress) throws -> () +public typealias AsyncOperationWithProgressCompletedHandler = (AnyIAsyncOperationWithProgress?, AsyncStatus) throws -> () +public typealias DeferralCompletedHandler = () throws -> () +public typealias EventHandler = (Any?, T) throws -> () +public typealias TypedEventHandler = (TSender, TResult) throws -> () /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.foundation.datetime) public struct DateTime: Hashable, Codable { /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.foundation.datetime.universaltime) diff --git a/tests/test_component/Sources/test_component/Windows.Storage+ABI.swift b/tests/test_component/Sources/test_component/Windows.Storage+ABI.swift index dc536235..bfb2361e 100644 --- a/tests/test_component/Sources/test_component/Windows.Storage+ABI.swift +++ b/tests/test_component/Sources/test_component/Windows.Storage+ABI.swift @@ -1899,10 +1899,12 @@ extension __ABI_Windows_Storage { AddRef: { StreamedFileDataRequestedHandlerWrapper.addRef($0) }, Release: { StreamedFileDataRequestedHandlerWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = StreamedFileDataRequestedHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let stream: test_component.StreamedFileDataRequest? = .from(abi: ComPtr($1)) - __unwrapped__instance(stream) - return S_OK + do { + guard let __unwrapped__instance = StreamedFileDataRequestedHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let stream: test_component.StreamedFileDataRequest? = .from(abi: ComPtr($1)) + try __unwrapped__instance(stream) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } diff --git a/tests/test_component/Sources/test_component/Windows.Storage+Impl.swift b/tests/test_component/Sources/test_component/Windows.Storage+Impl.swift index 6707f1a2..c50dfd6d 100644 --- a/tests/test_component/Sources/test_component/Windows.Storage+Impl.swift +++ b/tests/test_component/Sources/test_component/Windows.Storage+Impl.swift @@ -775,7 +775,7 @@ public enum __IMPL_Windows_Storage { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (stream) in - try! _default.InvokeImpl(stream) + try _default.InvokeImpl(stream) } return handler } diff --git a/tests/test_component/Sources/test_component/Windows.Storage.swift b/tests/test_component/Sources/test_component/Windows.Storage.swift index 32ce907a..70fd0792 100644 --- a/tests/test_component/Sources/test_component/Windows.Storage.swift +++ b/tests/test_component/Sources/test_component/Windows.Storage.swift @@ -979,7 +979,7 @@ public final class StreamedFileDataRequest : WinRTClass, test_component.IClosabl } } -public typealias StreamedFileDataRequestedHandler = (StreamedFileDataRequest?) -> () +public typealias StreamedFileDataRequestedHandler = (StreamedFileDataRequest?) throws -> () /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.storage.istoragefile) public protocol IStorageFile : IStorageItem, test_component.IRandomAccessStreamReference, test_component.IInputStreamReference { /// [Open Microsoft documentation](https://learn.microsoft.com/uwp/api/windows.storage.istoragefile.openasync) diff --git a/tests/test_component/Sources/test_component/test_component+ABI.swift b/tests/test_component/Sources/test_component/test_component+ABI.swift index e5b4ab16..11ae4a21 100644 --- a/tests/test_component/Sources/test_component/test_component+ABI.swift +++ b/tests/test_component/Sources/test_component/test_component+ABI.swift @@ -2708,10 +2708,12 @@ extension __ABI_test_component { AddRef: { ObjectHandlerWrapper.addRef($0) }, Release: { ObjectHandlerWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = ObjectHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let item: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($1)) - __unwrapped__instance(item) - return S_OK + do { + guard let __unwrapped__instance = ObjectHandlerWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let item: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($1)) + try __unwrapped__instance(item) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } @@ -2742,9 +2744,11 @@ extension __ABI_test_component { AddRef: { VoidToVoidDelegateWrapper.addRef($0) }, Release: { VoidToVoidDelegateWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = VoidToVoidDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - __unwrapped__instance() - return S_OK + do { + guard let __unwrapped__instance = VoidToVoidDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + try __unwrapped__instance() + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } diff --git a/tests/test_component/Sources/test_component/test_component+Generics.swift b/tests/test_component/Sources/test_component/test_component+Generics.swift index 1b4d6d80..715e7de0 100644 --- a/tests/test_component/Sources/test_component/test_component+Generics.swift +++ b/tests/test_component/Sources/test_component/test_component+Generics.swift @@ -19,11 +19,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanVTable: __x_AB AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_booleanWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_booleanWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanWrapper = InterfaceWrapperBase @@ -49,7 +51,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1_booleanBridge : Win guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -70,11 +72,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1_intVTable: __x_ABI_C_ AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_intWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_intWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_intWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_intWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_intWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_intWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1_intWrapper = InterfaceWrapperBase @@ -100,7 +104,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1_intBridge : WinRTDe guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -121,11 +125,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGVTable: __x_AB AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGWrapper = InterfaceWrapperBase @@ -151,7 +157,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1_HSTRINGBridge : Win guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -172,11 +178,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32VTable: __x_ABI AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32Wrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32Wrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32Wrapper = InterfaceWrapperBase @@ -202,7 +210,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1_UINT32Bridge : WinR guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -223,11 +231,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_HS AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_HSTRING_IInspectableWrapper = InterfaceWrapperBase @@ -253,7 +263,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIMap_2_ guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -274,11 +284,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorVi AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper = InterfaceWrapperBase @@ -304,7 +316,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -325,11 +337,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorVi AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFileWrapper = InterfaceWrapperBase @@ -355,7 +369,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -376,11 +390,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorVi AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper = InterfaceWrapperBase @@ -406,7 +422,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -427,11 +443,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorVi AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVectorView_1___x_ABI_CWindows__CStorage__CStorageLibraryChangeWrapper = InterfaceWrapperBase @@ -457,7 +475,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -478,11 +496,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector_1 AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector_1_HSTRINGWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector_1_HSTRINGWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector_1_HSTRINGWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVector_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector_1_HSTRINGWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation?>? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_C__FIVector_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector_1_HSTRINGWrapper = InterfaceWrapperBase @@ -508,7 +528,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_C__FIVector guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -529,11 +549,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CBasicPropertiesWrapper = InterfaceWrapperBase @@ -559,7 +581,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -580,11 +602,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CDocumentPropertiesWrapper = InterfaceWrapperBase @@ -610,7 +634,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -631,11 +655,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CImagePropertiesWrapper = InterfaceWrapperBase @@ -661,7 +687,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -682,11 +708,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CMusicPropertiesWrapper = InterfaceWrapperBase @@ -712,7 +740,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -733,11 +761,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CStorageItemThumbnailWrapper = InterfaceWrapperBase @@ -763,7 +793,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -784,11 +814,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CFileProperties__CVideoPropertiesWrapper = InterfaceWrapperBase @@ -814,7 +846,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -835,11 +867,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CIStorageItemWrapper = InterfaceWrapperBase @@ -865,7 +899,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -886,11 +920,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CSearch__CIndexedStateWrapper = InterfaceWrapperBase @@ -916,7 +952,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -937,11 +973,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStorageFileWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFileWrapper = InterfaceWrapperBase @@ -967,7 +1005,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -988,11 +1026,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageFolderWrapper = InterfaceWrapperBase @@ -1018,7 +1058,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1039,11 +1079,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStorageStreamTransactionWrapper = InterfaceWrapperBase @@ -1069,7 +1111,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1090,11 +1132,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIBufferWrapper = InterfaceWrapperBase @@ -1120,7 +1164,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1141,11 +1185,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIInputStreamWrapper = InterfaceWrapperBase @@ -1171,7 +1217,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1192,11 +1238,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWrapper = InterfaceWrapperBase @@ -1222,7 +1270,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1243,11 +1291,13 @@ internal var __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CSt AddRef: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperation? = test_component.__x_ABI_C__FIAsyncOperation_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__CStorage__CStreams__CIRandomAccessStreamWithContentTypeWrapper = InterfaceWrapperBase @@ -1273,7 +1323,7 @@ internal class __x_ABI_C__FIAsyncOperationCompletedHandler_1___x_ABI_CWindows__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1294,11 +1344,13 @@ internal var __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleVTable: __x_ AddRef: { __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_int_doubleWrapper.unwrapFrom(abi: ComPtr($1)) - let progressInfo: Double = $2 - __unwrapped__instance(asyncInfo, progressInfo) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_int_doubleWrapper.unwrapFrom(abi: ComPtr($1)) + let progressInfo: Double = $2 + try __unwrapped__instance(asyncInfo, progressInfo) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleWrapper = InterfaceWrapperBase @@ -1324,7 +1376,7 @@ internal class __x_ABI_C__FIAsyncOperationProgressHandler_2_int_doubleBridge : W guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, progressInfo) in - try! _default.InvokeImpl(asyncInfo, progressInfo) + try _default.InvokeImpl(asyncInfo, progressInfo) } return handler } @@ -1345,11 +1397,13 @@ internal var __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32VTable: _ AddRef: { __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32Wrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32Wrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_UINT32_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) - let progressInfo: UInt32 = $2 - __unwrapped__instance(asyncInfo, progressInfo) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_UINT32_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) + let progressInfo: UInt32 = $2 + try __unwrapped__instance(asyncInfo, progressInfo) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32Wrapper = InterfaceWrapperBase @@ -1375,7 +1429,7 @@ internal class __x_ABI_C__FIAsyncOperationProgressHandler_2_UINT32_UINT32Bridge guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, progressInfo) in - try! _default.InvokeImpl(asyncInfo, progressInfo) + try _default.InvokeImpl(asyncInfo, progressInfo) } return handler } @@ -1396,11 +1450,13 @@ internal var __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CSto AddRef: { __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) - let progressInfo: UInt32 = $2 - __unwrapped__instance(asyncInfo, progressInfo) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) + let progressInfo: UInt32 = $2 + try __unwrapped__instance(asyncInfo, progressInfo) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper = InterfaceWrapperBase @@ -1426,7 +1482,7 @@ internal class __x_ABI_C__FIAsyncOperationProgressHandler_2___x_ABI_CWindows__CS guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, progressInfo) in - try! _default.InvokeImpl(asyncInfo, progressInfo) + try _default.InvokeImpl(asyncInfo, progressInfo) } return handler } @@ -1447,11 +1503,13 @@ internal var __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_doubl AddRef: { __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_doubleWrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_doubleWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_doubleWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_int_doubleWrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_doubleWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_int_doubleWrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_doubleWrapper = InterfaceWrapperBase @@ -1477,7 +1535,7 @@ internal class __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_int_dou guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1498,11 +1556,13 @@ internal var __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_UI AddRef: { __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_UINT32Wrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_UINT32Wrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_UINT32_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2_UINT32_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_UINT32Wrapper = InterfaceWrapperBase @@ -1528,7 +1588,7 @@ internal class __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2_UINT32_ guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -1549,11 +1609,13 @@ internal var __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI_C AddRef: { __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.addRef($0) }, Release: { __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) - let asyncStatus: test_component.AsyncStatus = $2 - __unwrapped__instance(asyncInfo, asyncStatus) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let asyncInfo: test_component.AnyIAsyncOperationWithProgress? = test_component.__x_ABI_C__FIAsyncOperationWithProgress_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper.unwrapFrom(abi: ComPtr($1)) + let asyncStatus: test_component.AsyncStatus = $2 + try __unwrapped__instance(asyncInfo, asyncStatus) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI_CWindows__CStorage__CStreams__CIBuffer_UINT32Wrapper = InterfaceWrapperBase @@ -1579,7 +1641,7 @@ internal class __x_ABI_C__FIAsyncOperationWithProgressCompletedHandler_2___x_ABI guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (asyncInfo, asyncStatus) in - try! _default.InvokeImpl(asyncInfo, asyncStatus) + try _default.InvokeImpl(asyncInfo, asyncStatus) } return handler } @@ -11597,11 +11659,13 @@ internal var __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableVTable: __ AddRef: { __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableWrapper.addRef($0) }, Release: { __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.AnyIObservableMap? = test_component.__x_ABI_C__FIObservableMap_2_HSTRING_IInspectableWrapper.unwrapFrom(abi: ComPtr($1)) - let event: test_component.AnyIMapChangedEventArgs? = test_component.__x_ABI_C__FIMapChangedEventArgs_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, event) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.AnyIObservableMap? = test_component.__x_ABI_C__FIObservableMap_2_HSTRING_IInspectableWrapper.unwrapFrom(abi: ComPtr($1)) + let event: test_component.AnyIMapChangedEventArgs? = test_component.__x_ABI_C__FIMapChangedEventArgs_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, event) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableWrapper = InterfaceWrapperBase @@ -11629,7 +11693,7 @@ internal class __x_ABI_C__FMapChangedEventHandler_2_HSTRING_IInspectableBridge : guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, event) in - try! _default.InvokeImpl(sender, event) + try _default.InvokeImpl(sender, event) } return handler } @@ -11650,11 +11714,13 @@ internal var __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGVTable: __x_ABI AddRef: { __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGWrapper.addRef($0) }, Release: { __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.AnyIObservableMap? = test_component.__x_ABI_C__FIObservableMap_2_HSTRING_HSTRINGWrapper.unwrapFrom(abi: ComPtr($1)) - let event: test_component.AnyIMapChangedEventArgs? = test_component.__x_ABI_C__FIMapChangedEventArgs_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, event) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.AnyIObservableMap? = test_component.__x_ABI_C__FIObservableMap_2_HSTRING_HSTRINGWrapper.unwrapFrom(abi: ComPtr($1)) + let event: test_component.AnyIMapChangedEventArgs? = test_component.__x_ABI_C__FIMapChangedEventArgs_1_HSTRINGWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, event) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGWrapper = InterfaceWrapperBase @@ -11682,7 +11748,7 @@ internal class __x_ABI_C__FMapChangedEventHandler_2_HSTRING_HSTRINGBridge : WinR guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, event) in - try! _default.InvokeImpl(sender, event) + try _default.InvokeImpl(sender, event) } return handler } @@ -11703,11 +11769,13 @@ internal var __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__ AddRef: { __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CBaseWrapper.addRef($0) }, Release: { __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CBaseWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CBaseWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.AnyIObservableVector? = test_component.__x_ABI_C__FIObservableVector_1___x_ABI_Ctest__zcomponent__CBaseWrapper.unwrapFrom(abi: ComPtr($1)) - let event: test_component.AnyIVectorChangedEventArgs? = __ABI_Windows_Foundation_Collections.IVectorChangedEventArgsWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, event) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CBaseWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.AnyIObservableVector? = test_component.__x_ABI_C__FIObservableVector_1___x_ABI_Ctest__zcomponent__CBaseWrapper.unwrapFrom(abi: ComPtr($1)) + let event: test_component.AnyIVectorChangedEventArgs? = __ABI_Windows_Foundation_Collections.IVectorChangedEventArgsWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, event) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CBaseWrapper = InterfaceWrapperBase @@ -11735,7 +11803,7 @@ internal class __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, event) in - try! _default.InvokeImpl(sender, event) + try _default.InvokeImpl(sender, event) } return handler } @@ -11756,11 +11824,13 @@ internal var __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__ AddRef: { __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CIBasicWrapper.addRef($0) }, Release: { __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CIBasicWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CIBasicWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.AnyIObservableVector? = test_component.__x_ABI_C__FIObservableVector_1___x_ABI_Ctest__zcomponent__CIBasicWrapper.unwrapFrom(abi: ComPtr($1)) - let event: test_component.AnyIVectorChangedEventArgs? = __ABI_Windows_Foundation_Collections.IVectorChangedEventArgsWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, event) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CIBasicWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.AnyIObservableVector? = test_component.__x_ABI_C__FIObservableVector_1___x_ABI_Ctest__zcomponent__CIBasicWrapper.unwrapFrom(abi: ComPtr($1)) + let event: test_component.AnyIVectorChangedEventArgs? = __ABI_Windows_Foundation_Collections.IVectorChangedEventArgsWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, event) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent__CIBasicWrapper = InterfaceWrapperBase @@ -11788,7 +11858,7 @@ internal class __x_ABI_C__FVectorChangedEventHandler_1___x_ABI_Ctest__zcomponent guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, event) in - try! _default.InvokeImpl(sender, event) + try _default.InvokeImpl(sender, event) } return handler } @@ -11809,11 +11879,13 @@ internal var __x_ABI_C__FIEventHandler_1_IInspectableVTable: __x_ABI_C__FIEventH AddRef: { __x_ABI_C__FIEventHandler_1_IInspectableWrapper.addRef($0) }, Release: { __x_ABI_C__FIEventHandler_1_IInspectableWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FIEventHandler_1_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($1)) - let args: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, args) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FIEventHandler_1_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($1)) + let args: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, args) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FIEventHandler_1_IInspectableWrapper = InterfaceWrapperBase @@ -11841,7 +11913,7 @@ internal class __x_ABI_C__FIEventHandler_1_IInspectableBridge : WinRTDelegateBri guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, args) in - try! _default.InvokeImpl(sender, args) + try _default.InvokeImpl(sender, args) } return handler } @@ -16500,11 +16572,13 @@ internal var __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__CIM AddRef: { __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__CIMemoryBufferReference_IInspectableWrapper.addRef($0) }, Release: { __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__CIMemoryBufferReference_IInspectableWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__CIMemoryBufferReference_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.AnyIMemoryBufferReference? = __ABI_Windows_Foundation.IMemoryBufferReferenceWrapper.unwrapFrom(abi: ComPtr($1)) - let args: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, args) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__CIMemoryBufferReference_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.AnyIMemoryBufferReference? = __ABI_Windows_Foundation.IMemoryBufferReferenceWrapper.unwrapFrom(abi: ComPtr($1)) + let args: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, args) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__CIMemoryBufferReference_IInspectableWrapper = InterfaceWrapperBase @@ -16532,7 +16606,7 @@ internal class __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CFoundation__C guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, args) in - try! _default.InvokeImpl(sender, args) + try _default.InvokeImpl(sender, args) } return handler } @@ -16553,11 +16627,13 @@ internal var __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSearc AddRef: { __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSearch__CIStorageQueryResultBase_IInspectableWrapper.addRef($0) }, Release: { __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSearch__CIStorageQueryResultBase_IInspectableWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSearch__CIStorageQueryResultBase_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.AnyIStorageQueryResultBase? = __ABI_Windows_Storage_Search.IStorageQueryResultBaseWrapper.unwrapFrom(abi: ComPtr($1)) - let args: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($2)) - __unwrapped__instance(sender, args) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSearch__CIStorageQueryResultBase_IInspectableWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.AnyIStorageQueryResultBase? = __ABI_Windows_Storage_Search.IStorageQueryResultBaseWrapper.unwrapFrom(abi: ComPtr($1)) + let args: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($2)) + try __unwrapped__instance(sender, args) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSearch__CIStorageQueryResultBase_IInspectableWrapper = InterfaceWrapperBase @@ -16585,7 +16661,7 @@ internal class __x_ABI_C__FITypedEventHandler_2___x_ABI_CWindows__CStorage__CSea guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, args) in - try! _default.InvokeImpl(sender, args) + try _default.InvokeImpl(sender, args) } return handler } @@ -16606,11 +16682,13 @@ internal var __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClass_ AddRef: { __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClass___x_ABI_Ctest__zcomponent__CDeferrableEventArgsWrapper.addRef($0) }, Release: { __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClass___x_ABI_Ctest__zcomponent__CDeferrableEventArgsWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClass___x_ABI_Ctest__zcomponent__CDeferrableEventArgsWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.Class? = .from(abi: ComPtr($1)) - let args: test_component.DeferrableEventArgs? = .from(abi: ComPtr($2)) - __unwrapped__instance(sender, args) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClass___x_ABI_Ctest__zcomponent__CDeferrableEventArgsWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.Class? = .from(abi: ComPtr($1)) + let args: test_component.DeferrableEventArgs? = .from(abi: ComPtr($2)) + try __unwrapped__instance(sender, args) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClass___x_ABI_Ctest__zcomponent__CDeferrableEventArgsWrapper = InterfaceWrapperBase @@ -16634,7 +16712,7 @@ internal class __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CClas guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, args) in - try! _default.InvokeImpl(sender, args) + try _default.InvokeImpl(sender, args) } return handler } @@ -16655,11 +16733,13 @@ internal var __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimple AddRef: { __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimple___x_ABI_Ctest__zcomponent__CSimpleEventArgsWrapper.addRef($0) }, Release: { __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimple___x_ABI_Ctest__zcomponent__CSimpleEventArgsWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimple___x_ABI_Ctest__zcomponent__CSimpleEventArgsWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let sender: test_component.Simple? = .from(abi: ComPtr($1)) - let args: test_component.SimpleEventArgs = .from(abi: $2) - __unwrapped__instance(sender, args) - return S_OK + do { + guard let __unwrapped__instance = __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimple___x_ABI_Ctest__zcomponent__CSimpleEventArgsWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let sender: test_component.Simple? = .from(abi: ComPtr($1)) + let args: test_component.SimpleEventArgs = .from(abi: $2) + try __unwrapped__instance(sender, args) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) typealias __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimple___x_ABI_Ctest__zcomponent__CSimpleEventArgsWrapper = InterfaceWrapperBase @@ -16683,31 +16763,31 @@ internal class __x_ABI_C__FITypedEventHandler_2___x_ABI_Ctest__zcomponent__CSimp guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (sender, args) in - try! _default.InvokeImpl(sender, args) + try _default.InvokeImpl(sender, args) } return handler } } public extension EventSource where Handler == EventHandler { - func invoke(_ sender: Any!, _ args: Any!) { + func invoke(_ sender: Any!, _ args: Any!) throws { for handler in getInvocationList() { - handler(sender, args) + try handler(sender, args) } } } public extension EventSource where Handler == TypedEventHandler { - func invoke(_ sender: test_component.AnyIMemoryBufferReference!, _ args: Any!) { + func invoke(_ sender: test_component.AnyIMemoryBufferReference!, _ args: Any!) throws { for handler in getInvocationList() { - handler(sender, args) + try handler(sender, args) } } } public extension EventSource where Handler == TypedEventHandler { - func invoke(_ sender: test_component.AnyIStorageQueryResultBase!, _ args: Any!) { + func invoke(_ sender: test_component.AnyIStorageQueryResultBase!, _ args: Any!) throws { for handler in getInvocationList() { - handler(sender, args) + try handler(sender, args) } } } diff --git a/tests/test_component/Sources/test_component/test_component+Impl.swift b/tests/test_component/Sources/test_component/test_component+Impl.swift index 77e1f47f..d70576fc 100644 --- a/tests/test_component/Sources/test_component/test_component+Impl.swift +++ b/tests/test_component/Sources/test_component/test_component+Impl.swift @@ -381,7 +381,7 @@ public enum __IMPL_test_component { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (item) in - try! _default.InvokeImpl(item) + try _default.InvokeImpl(item) } return handler } @@ -395,7 +395,7 @@ public enum __IMPL_test_component { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { () in - try! _default.InvokeImpl() + try _default.InvokeImpl() } return handler } diff --git a/tests/test_component/Sources/test_component/test_component.Delegates+ABI.swift b/tests/test_component/Sources/test_component/test_component.Delegates+ABI.swift index d4247b6e..6ddb96ac 100644 --- a/tests/test_component/Sources/test_component/test_component.Delegates+ABI.swift +++ b/tests/test_component/Sources/test_component/test_component.Delegates+ABI.swift @@ -42,10 +42,12 @@ extension __ABI_test_component_Delegates { AddRef: { InDelegateWrapper.addRef($0) }, Release: { InDelegateWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = InDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let value: String = .init(from: $1) - __unwrapped__instance(value) - return S_OK + do { + guard let __unwrapped__instance = InDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let value: String = .init(from: $1) + try __unwrapped__instance(value) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } @@ -78,10 +80,12 @@ extension __ABI_test_component_Delegates { AddRef: { InObjectDelegateWrapper.addRef($0) }, Release: { InObjectDelegateWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = InObjectDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let value: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($1)) - __unwrapped__instance(value) - return S_OK + do { + guard let __unwrapped__instance = InObjectDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let value: Any? = __ABI_.AnyWrapper.unwrapFrom(abi: ComPtr($1)) + try __unwrapped__instance(value) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } @@ -114,10 +118,12 @@ extension __ABI_test_component_Delegates { AddRef: { ReturnInt32DelegateWrapper.addRef($0) }, Release: { ReturnInt32DelegateWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = ReturnInt32DelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - let result = __unwrapped__instance() - $1?.initialize(to: result) - return S_OK + do { + guard let __unwrapped__instance = ReturnInt32DelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + let result = try __unwrapped__instance() + $1?.initialize(to: result) + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } @@ -148,9 +154,11 @@ extension __ABI_test_component_Delegates { AddRef: { SignalDelegateWrapper.addRef($0) }, Release: { SignalDelegateWrapper.release($0) }, Invoke: { - guard let __unwrapped__instance = SignalDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } - __unwrapped__instance() - return S_OK + do { + guard let __unwrapped__instance = SignalDelegateWrapper.tryUnwrapFrom(raw: $0) else { return E_INVALIDARG } + try __unwrapped__instance() + return S_OK + } catch { return failWith(err: E_FAIL) } } ) } diff --git a/tests/test_component/Sources/test_component/test_component.Delegates+Impl.swift b/tests/test_component/Sources/test_component/test_component.Delegates+Impl.swift index 739319a8..0b1f4057 100644 --- a/tests/test_component/Sources/test_component/test_component.Delegates+Impl.swift +++ b/tests/test_component/Sources/test_component/test_component.Delegates+Impl.swift @@ -13,7 +13,7 @@ public enum __IMPL_test_component_Delegates { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (value) in - try! _default.InvokeImpl(value) + try _default.InvokeImpl(value) } return handler } @@ -27,7 +27,7 @@ public enum __IMPL_test_component_Delegates { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { (value) in - try! _default.InvokeImpl(value) + try _default.InvokeImpl(value) } return handler } @@ -41,7 +41,7 @@ public enum __IMPL_test_component_Delegates { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { () in - try! _default.InvokeImpl() + try _default.InvokeImpl() } return handler } @@ -55,7 +55,7 @@ public enum __IMPL_test_component_Delegates { guard let abi = abi else { return nil } let _default = SwiftABI(abi) let handler: Handler = { () in - try! _default.InvokeImpl() + try _default.InvokeImpl() } return handler } diff --git a/tests/test_component/Sources/test_component/test_component.Delegates.swift b/tests/test_component/Sources/test_component/test_component.Delegates.swift index defa06cd..4eed3e08 100644 --- a/tests/test_component/Sources/test_component/test_component.Delegates.swift +++ b/tests/test_component/Sources/test_component/test_component.Delegates.swift @@ -3,7 +3,7 @@ import Foundation import Ctest_component -public typealias InDelegate = (String) -> () -public typealias InObjectDelegate = (Any?) -> () -public typealias ReturnInt32Delegate = () -> Int32 -public typealias SignalDelegate = () -> () +public typealias InDelegate = (String) throws -> () +public typealias InObjectDelegate = (Any?) throws -> () +public typealias ReturnInt32Delegate = () throws -> Int32 +public typealias SignalDelegate = () throws -> () diff --git a/tests/test_component/Sources/test_component/test_component.swift b/tests/test_component/Sources/test_component/test_component.swift index 452f1de4..e0e632f7 100644 --- a/tests/test_component/Sources/test_component/test_component.swift +++ b/tests/test_component/Sources/test_component/test_component.swift @@ -1645,8 +1645,8 @@ open class UnsealedDerivedNoOverrides : test_component.BaseNoOverrides { } } -public typealias ObjectHandler = (Any?) -> () -public typealias VoidToVoidDelegate = () -> () +public typealias ObjectHandler = (Any?) throws -> () +public typealias VoidToVoidDelegate = () throws -> () public struct BlittableStruct: Hashable, Codable { public var first: Int32 = 0 public var second: Int32 = 0 @@ -1798,9 +1798,9 @@ public protocol IIAmImplementable : WinRTInterface { } public extension EventSource where Handler == test_component.InDelegate { - func invoke(_ value: String) { + func invoke(_ value: String) throws { for handler in getInvocationList() { - handler(value) + try handler(value) } } } @@ -1855,10 +1855,10 @@ public protocol InterfaceWithReturnDelegate : WinRTInterface { } public extension EventSource where Handler == test_component.ReturnInt32Delegate { - @discardableResult func invoke() -> Int32 { + @discardableResult func invoke() throws -> Int32 { var result:Int32 = 0 for handler in getInvocationList() { - result = handler() + result = try handler() } return result }