Skip to content

Commit df1cb7c

Browse files
feature/monad-result-disposable (#69)
* Added `IDisposable` and `IAsyncDisposable` to `Result<T>` to dispose of instances that contain `IDisposable` or `IAsyncDisposable` values. * Updated library versions.
1 parent 4fdd399 commit df1cb7c

File tree

7 files changed

+63
-9
lines changed

7 files changed

+63
-9
lines changed

OnixLabs.Core/OnixLabs.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<Title>OnixLabs.Core</Title>
88
<Authors>ONIXLabs</Authors>
99
<Description>ONIXLabs Core API for .NET</Description>
10-
<AssemblyVersion>8.11.0</AssemblyVersion>
10+
<AssemblyVersion>8.12.0</AssemblyVersion>
1111
<NeutralLanguage>en</NeutralLanguage>
1212
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1313
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
14-
<PackageVersion>8.11.0</PackageVersion>
14+
<PackageVersion>8.12.0</PackageVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>
1717
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

OnixLabs.Core/Result.Failure.cs

+19
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
using System;
16+
using System.Threading.Tasks;
1617

1718
namespace OnixLabs.Core;
1819

@@ -288,4 +289,22 @@ public sealed class Failure<T> : Result<T>, IValueEquatable<Failure<T>>
288289
/// </summary>
289290
/// <returns>Returns a <see cref="String"/> that represents the current object.</returns>
290291
public override string ToString() => Exception.ToString();
292+
293+
/// <summary>
294+
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
295+
/// </summary>
296+
public override void Dispose()
297+
{
298+
}
299+
300+
/// <summary>
301+
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.
302+
/// </summary>
303+
/// <returns>
304+
/// Returns a task that represents the asynchronous dispose operation.
305+
/// </returns>
306+
public override async ValueTask DisposeAsync()
307+
{
308+
await ValueTask.CompletedTask;
309+
}
291310
}

OnixLabs.Core/Result.Success.cs

+22
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
using System;
16+
using System.Threading.Tasks;
1617

1718
namespace OnixLabs.Core;
1819

@@ -294,4 +295,25 @@ public override void Throw()
294295
/// </summary>
295296
/// <returns>Returns a <see cref="String"/> that represents the current object.</returns>
296297
public override string ToString() => Value?.ToString() ?? string.Empty;
298+
299+
/// <summary>
300+
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
301+
/// </summary>
302+
public override void Dispose()
303+
{
304+
if (Value is IDisposable disposable)
305+
disposable.Dispose();
306+
}
307+
308+
/// <summary>
309+
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.
310+
/// </summary>
311+
/// <returns>
312+
/// Returns a task that represents the asynchronous dispose operation.
313+
/// </returns>
314+
public override async ValueTask DisposeAsync()
315+
{
316+
if (Value is IAsyncDisposable disposable)
317+
await disposable.DisposeAsync();
318+
}
297319
}

OnixLabs.Core/Result.cs

+14-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public static async Task<Result> OfAsync(Func<CancellationToken, Task> func, Can
254254
/// Represents a result value, which signifies the presence of a value or an exception.
255255
/// </summary>
256256
/// <typeparam name="T">The type of the underlying result value.</typeparam>
257-
public abstract class Result<T> : IValueEquatable<Result<T>>
257+
public abstract class Result<T> : IValueEquatable<Result<T>>, IDisposable, IAsyncDisposable
258258
{
259259
/// <summary>
260260
/// Initializes a new instance of the <see cref="Result{T}"/> class.
@@ -528,4 +528,17 @@ public static async Task<Result<T>> OfAsync(Func<CancellationToken, Task<T>> fun
528528
Failure<T> failure => failure.ToString(),
529529
_ => base.ToString() ?? GetType().FullName ?? nameof(Result<T>)
530530
};
531+
532+
/// <summary>
533+
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
534+
/// </summary>
535+
public abstract void Dispose();
536+
537+
/// <summary>
538+
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.
539+
/// </summary>
540+
/// <returns>
541+
/// Returns a task that represents the asynchronous dispose operation.
542+
/// </returns>
543+
public abstract ValueTask DisposeAsync();
531544
}

OnixLabs.Numerics/OnixLabs.Numerics.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<Title>OnixLabs.Numerics</Title>
55
<Authors>ONIXLabs</Authors>
66
<Description>ONIXLabs Numerics API for .NET</Description>
7-
<AssemblyVersion>8.11.0</AssemblyVersion>
7+
<AssemblyVersion>8.12.0</AssemblyVersion>
88
<NeutralLanguage>en</NeutralLanguage>
99
<Nullable>enable</Nullable>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.11.0</PackageVersion>
13+
<PackageVersion>8.12.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>

OnixLabs.Security.Cryptography/OnixLabs.Security.Cryptography.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<Title>OnixLabs.Security.Cryptography</Title>
55
<Authors>ONIXLabs</Authors>
66
<Description>ONIXLabs Cryptography API for .NET</Description>
7-
<AssemblyVersion>8.11.0</AssemblyVersion>
7+
<AssemblyVersion>8.12.0</AssemblyVersion>
88
<NeutralLanguage>en</NeutralLanguage>
99
<Nullable>enable</Nullable>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.11.0</PackageVersion>
13+
<PackageVersion>8.12.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>

OnixLabs.Security/OnixLabs.Security.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<Title>OnixLabs.Security</Title>
55
<Authors>ONIXLabs</Authors>
66
<Description>ONIXLabs Security API for .NET</Description>
7-
<AssemblyVersion>8.11.0</AssemblyVersion>
7+
<AssemblyVersion>8.12.0</AssemblyVersion>
88
<NeutralLanguage>en</NeutralLanguage>
99
<Nullable>enable</Nullable>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.11.0</PackageVersion>
13+
<PackageVersion>8.12.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>

0 commit comments

Comments
 (0)