RSCG – BenutomoAutomaticDisposeImplSourceGenerator
RSCG – BenutomoAutomaticDisposeImplSourceGenerator
name | BenutomoAutomaticDisposeImplSourceGenerator |
nuget | https://www.nuget.org/packages/Benutomo.AutomaticDisposeImpl.SourceGenerator/ |
link | https://github.com/benutomo-dev/RoslynComponents |
author | benutomo |
Automatic dispose resources
This is how you can use BenutomoAutomaticDisposeImplSourceGenerator .
The code that you start with is
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net7.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <PackageReference Include="Benutomo.AutomaticDisposeImpl.SourceGenerator" Version="2.0.1"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> <PropertyGroup> <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath> </PropertyGroup> </Project>
The code that you will use is
using IDisposableGeneratorDemo; //https://github.com/benutomo-dev/RoslynComponents using (var db = new DALDB()) { Console.WriteLine("before releasing"); } Console.WriteLine("after releasing");
namespace IDisposableGeneratorDemo; using Benutomo; [AutomaticDisposeImpl] partial class DALDB :IDisposable { [EnableAutomaticDispose] private readonly ConnectionDB cn; [EnableAutomaticDispose] private readonly ConnectionDB cn1; public DALDB() { cn = new ConnectionDB(); cn1=new ConnectionDB(); } }
namespace IDisposableGeneratorDemo; class ConnectionDB : IDisposable { public void Dispose() { Console.WriteLine("disposing connectiondb"); } }
The code that is generated is
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// 指定したクラスに破棄(<see cref=""System.IDisposable"" />,<see cref=""System.IAsyncDisposable"" />)をサポートするメンバを破棄する<see cref=""System.IDisposable.Dispose"" />メソッドおよび<see cref=""System.IAsyncDisposable.DisposeAsync"" />メソッド(当該クラスに<see cref=""System.IAsyncDisposable"" />インターフェイスが含まれている場合のみ)を自動実装する。 /// </summary> [global::System.AttributeUsage(global::System.AttributeTargets.Class)] internal class AutomaticDisposeImplAttribute : global::System.Attribute { /// <summary> /// 自動破棄実装の既定動作を設定する。 /// </summary> public AutomaticDisposeImplMode Mode { get; set; } } }
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// 破棄(<see cref=""System.IDisposable"" />,<see cref=""System.IAsyncDisposable"" />)をサポートするメンバを自動実装Disposeの対象とすることに関する振る舞いの指定。 /// </summary> internal enum AutomaticDisposeImplMode { /// <summary> /// <see cref=""System.IDisposable"" />,<see cref=""System.IAsyncDisposable"" />を継承する型を持つメンバは暗黙的に自動Dispose呼び出しの対象となる。 /// </summary> Implicit, /// <summary> /// <see cref=""System.IDisposable"" />,<see cref=""System.IAsyncDisposable"" />を継承する型を持つメンバは自動Dispose呼び出しの対象となる。 /// </summary> Explicit, } }
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// このメンバに対して、<see cref=""System.IDisposable.Dispose"" />メソッドまたは<see cref=""System.IAsyncDisposable.DisposeAsync"" />メソッドの自動呼出しは行いません。このオブジェクトで破棄するのが不適当であるかユーザ自身が<see cref=""System.IDisposable.Dispose"" />メソッドまたは<see cref=""System.IAsyncDisposable.DisposeAsync"" />メソッドの呼び出しを実装するメンバです。 /// </summary> [global::System.AttributeUsage(global::System.AttributeTargets.Field | global::System.AttributeTargets.Property)] internal class DisableAutomaticDisposeAttribute : global::System.Attribute { } }
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// このオブジェクトの破棄と同時に自動的に<see cref=""System.IDisposable.Dispose"" />メソッドまたは<see cref=""System.IAsyncDisposable.DisposeAsync"" />メソッドを呼び出します。 /// </summary> [global::System.AttributeUsage(global::System.AttributeTargets.Field | global::System.AttributeTargets.Property)] internal class EnableAutomaticDisposeAttribute : global::System.Attribute { public EnableAutomaticDisposeAttribute() { } /// <summary> /// このオブジェクトの破棄と同時に自動的に<see cref=""System.IDisposable.Dispose"" />メソッドまたは<see cref=""System.IAsyncDisposable.DisposeAsync"" />メソッドを呼び出します。 /// </summary> /// <param name=""linkedMembers"">このメンバの破棄に連動して破棄されるメンバ(ここで列挙されたメンバはEnable/DisableAutomaticDispose属性を省略可能)</param> public EnableAutomaticDisposeAttribute(params string[] dependencyMembers) { } } }
#nullable enable #pragma warning disable CS0612,CS0618,CS0619 namespace IDisposableGeneratorDemo { partial class DALDB // This is implementation class by AutomaticDisposeImpl. { [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)] [global::System.Obsolete("AutomaticDisposeImplによって生成されたフィールドです。一般のコードから参照してはいけません。")] private const int __generator_internal_BeNotInitiatedAnyDispose = 0; [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)] [global::System.Obsolete("AutomaticDisposeImplによって生成されたフィールドです。一般のコードから参照してはいけません。")] private const int __generator_internal_InitiatedSyncDispose = 1; [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)] [global::System.Obsolete("AutomaticDisposeImplによって生成されたフィールドです。一般のコードから参照してはいけません。")] private const int __generator_internal_InitiatedAsyncDispose = 2; [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)] [global::System.Obsolete("AutomaticDisposeImplによって生成されたフィールドです。一般のコードから参照してはいけません。")] private const int __generator_internal_DisposeAlreadyCompleted = 9; [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)] [global::System.Obsolete("AutomaticDisposeImplによって生成されたフィールドです。一般のコードから参照してはいけません。")] private int __generator_internal_disposeState = __generator_internal_BeNotInitiatedAnyDispose; public bool IsDisposed => (global::System.Threading.Thread.VolatileRead(ref __generator_internal_disposeState) != __generator_internal_BeNotInitiatedAnyDispose); [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)] [global::System.Obsolete("AutomaticDisposeImplによって生成されたフィールドです。一般のコードから参照してはいけません。")] private int __generator_internal_managedObjectDisposeState = 0; protected virtual void Dispose(bool disposing) { if (disposing) { var managedObjectDisposeState = global::System.Threading.Interlocked.Exchange(ref __generator_internal_managedObjectDisposeState, 1); if (managedObjectDisposeState == 0) { try { (this.cn as global::System.IDisposable)?.Dispose(); } catch (global::System.Exception ex) { global::System.Diagnostics.Debug.Fail($"Caught an exception in the cn.Dispose() calling. Message=\"{ex.Message}\""); } try { (this.cn1 as global::System.IDisposable)?.Dispose(); } catch (global::System.Exception ex) { global::System.Diagnostics.Debug.Fail($"Caught an exception in the cn1.Dispose() calling. Message=\"{ex.Message}\""); } } } } public void Dispose() { var dispose_state = global::System.Threading.Interlocked.CompareExchange(ref __generator_internal_disposeState, __generator_internal_InitiatedSyncDispose, __generator_internal_BeNotInitiatedAnyDispose); if (dispose_state == __generator_internal_BeNotInitiatedAnyDispose) { // Dispose managed members and release unmaneged resources. Dispose(disposing: true); global::System.Threading.Thread.VolatileWrite(ref __generator_internal_disposeState, __generator_internal_DisposeAlreadyCompleted); } } } }
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// <see cref=""Benutomo.AutomaticDisposeImplAttribute""/>を利用しているクラスで、ユーザが実装するマネージドオブジェクトを非同期的な処理による破棄を行うメソッドに付与する。このメソッドはデストラクタからは呼び出されない。デストラクタからも呼び出される必要がある場合はデストラクタで必要な処理を全て同期的に行うようにした上で<see cref=""Benutomo.UnmanagedResourceReleaseMethodAttribute"">を使用すること。この属性を付与するメソッドは引数なしで戻り値は<see cref=""System.Threading.ValueTask"" />などawait可能な型である必要がある。このメソッドはこのオブジェクトのDisposeAsync()が初めて実行された時に自動実装コードから呼び出される。ただし、このメソッドを所有するクラスがIDisposableも実装していて、かつ、Dispose()によってこのオブジェクトが破棄された場合は、この属性が付与されているメソッドは呼び出されず、<see cref=""Benutomo.ManagedObjectDisposeMethodAttribute"">が付与されているメソッドが呼び出される。 /// </summary> [global::System.AttributeUsage(global::System.AttributeTargets.Method)] internal class ManagedObjectAsyncDisposeMethodAttribute : global::System.Attribute { /// <summary> /// <inheritdoc cref=""Benutomo.ManagedObjectAsyncDisposeMethodAttribute""/> /// </summary> public ManagedObjectAsyncDisposeMethodAttribute() { } } }
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// <see cref=""Benutomo.AutomaticDisposeImplAttribute""/>を利用しているクラスで、ユーザが実装するマネージドオブジェクトを同期的な処理による破棄を行うメソッドに付与する。このメソッドはデストラクタからは呼び出されない。デストラクタからも呼び出される必要がある場合は<see cref=""Benutomo.UnmanagedResourceReleaseMethodAttribute"">を使用すること。この属性を付与するメソッドは引数なしで戻り値はvoidである必要がある。このメソッドはこのオブジェクトのDispose()が初めて実行された時に自動実装コードから呼び出される。ただし、このメソッドを所有するクラスがIAsyncDisposableも実装していて、かつ、DisposeAsync()によってこのオブジェクトが破棄された場合は、この属性が付与されているメソッドは呼び出されず、<see cref=""Benutomo.ManagedObjectAsyncDisposeMethodAttribute"">が付与されているメソッドが呼び出される。 /// </summary> [global::System.AttributeUsage(global::System.AttributeTargets.Method)] internal class ManagedObjectDisposeMethodAttribute : global::System.Attribute { /// <summary> /// <inheritdoc cref=""Benutomo.ManagedObjectDisposeMethodAttribute""/> /// </summary> public ManagedObjectDisposeMethodAttribute() { } } }
#pragma warning disable CS0436 #nullable enable namespace Benutomo { /// <summary> /// <see cref=""Benutomo.AutomaticDisposeImplAttribute""/>を利用しているクラスで、ユーザが実装するアンマネージドリソースの解放を行うメソッド(引数なしで戻り値はvoid)に付与する。このメソッドはこのオブジェクトのDispose()またはDisposeAsync()、デストラクタのいずれかが初めて実行された時に自動実装コードから呼び出される。この属性を付与したメソッドは、実装者の責任でGCのファイナライズスレッドから呼び出されても問題無いように実装しなければならないことに注意すること。 /// </summary> [global::System.AttributeUsage(global::System.AttributeTargets.Method)] internal class UnmanagedResourceReleaseMethodAttribute : global::System.Attribute { /// <summary> /// <inheritdoc cref=""Benutomo.UnmanagedResourceReleaseMethodAttribute""/> /// </summary> public UnmanagedResourceReleaseMethodAttribute() { } } }
Code and pdf at
https://ignatandrei.github.io/RSCG_Examples/v2/docs/BenutomoAutomaticDisposeImplSourceGenerator
Leave a Reply