A C# Source Generator to automatically create Interfaces from classes.
Not all .NET Interfaces are created equal. Some interfaces are lovingly handcrafted, e.g. the public interface of your .NET package which is used by your customers. Other interfaces are far from lovingly crafted, they are birthed because you need an interface for testing or for the DI container. They are often implemented only once or twice: The class itself and a mock for testing. They are noise at best and often create lots of friction. Adding a new method / field? You have to edit the interface, too!. Change parameters? Edit the interface. Add documentation? Hopefully you add it to the interface, too!
This Source Generator aims to eliminate this cost by generating an interface from the class, without you needing to do anything. This interface will be generated on each subsequent build, eliminating the friction.
using AutomaticInterface;
using System;
namespace AutomaticInterfaceExample
{
/// <summary>
/// Class Documentation will be copied
/// </summary>
[GenerateAutomaticInterface]
class DemoClass: IDemoClass // Your interface will get the Name I+classname, here IDemoclass.
// Generics, including constraints are allowed, too. E.g. MyClass<T> where T: class
{
/// <summary>
/// Property Documentation will be copied
/// </summary>
public string Hello { get; set; } // included, get and set are copied to the interface when public
public string OnlyGet { get; } // included, get and set are copied to the interface when public
[IgnoreAutomaticInterface]
public string? AnotherGet { get; } // ignored with help of attribute
/// <summary>
/// Method Documentation will be copied
/// </summary>
public string AMethod(string x, string y) // included
{
return BMethod(x, y);
}
private string BMethod(string x, string y) // ignored because not public
{
return x + y;
}
public string CMethod<T, T1, T2, T3, T4>(string? x, string y) // included
where T : class
where T1 : struct
where T3 : DemoClass
where T4 : IDemoClass
{
return "Ok";
}
public Task<string> ASync(string x, string y)
{
return Task.FromResult("");
}
public static string StaticProperty => "abc"; // static property, ignored
public static string StaticMethod() // static method, ignored
{
return "static" + DateTime.Now;
}
/// <summary>
/// event Documentation will be copied
/// </summary>
public event EventHandler ShapeChanged; // included
private event EventHandler ShapeChanged2; // ignored because not public
private readonly int[] arr = new int[100];
public int this[int index] // currently ignored
{
get => arr[index];
set => arr[index] = value;
}
}
}
This will create this interface:
#nullable enable
/// <summary>
/// Result of the generator
/// </summary>
namespace AutomaticInterfaceExample
{
/// <summary>
/// Class documentation will be copied
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("AutomaticInterface", "")]
public partial interface IDemoClass
{
/// <inheritdoc />
string Hello { get; set; }
/// <inheritdoc />
string OnlyGet { get; }
/// <inheritdoc />
string AMethod(string x, string y);
/// <inheritdoc />
string CMethod<T, T1, T2, T3, T4>(string? x, string y) where T : class where T1 : struct where T3 : DemoClass where T4 : IDemoClass;
/// <inheritdoc />
global::System.Threading.Tasks.Task<string> ASync(string x, string y);
/// <inheritdoc />
event global::System.EventHandler ShapeChanged;
/// <inheritdoc />
event global::System.EventHandler? ShapeChangedNullable;
/// <inheritdoc />
event global::System.EventHandler<string?> ShapeChangedNullable2;
}
}
#nullable restore
- Install the nuget:
dotnet add package AutomaticInterface
. - Add
using AutomaticInterface;
or (Pro-tip) addglobal using AutomaticInterface;
to your GlobalUsings. - Tag your class with the
[GenerateAutomaticInterface]
attribute. - The Interface should now be available.
To validate or use the interface:
- Let your class implement the interface, e.g.
SomeClass: ISomeClass
- 'Go to definition' to see the generated interface.
- Build Solution to compile the interface.
Any errors? Ping me at: [email protected]
Newer Visual Studio Versions (2019+) can see the source code directly:
Alternatively, the Source Generator generates a log file - look out for a "logs" folder somewhere in bin/debug/... OR your temp folder /logs. The exact location is also reported on Diagnosticlevel Info.
Please create an issue and a minimally reproducible test for the problem.
PRs are welcome! Please make sure that you run CSharpier on the code for formatting.
- Thanks to dnf for creating some great extensions. I use them partially in this Generator. Unfortunately due to problems referencing packages I cannot depend on his packages directly.
- skarllot for PRs
- Frederik91 for PRs
- definitelyokay for PRs
- roflmuffin for PRs
- mohummedibrahim for code and idea
- simonmckenzie for PRs
- avtc for PR
- crwsolutions for PRs
- FinnAngelo for PR
Should be simply a build and run Tests
- Sync DemoClass and actual generated code with README. Thanks, @crwsolutions!
- Removed manual attribute in TestNuget project. Thanks, @crwsolutions!
- 4.0.0 changed how parameters where qualified - this PR changes it to using qualified names everywhere because 4.0.0 broke lots of stuff. Thanks for your contributions! Especially simonmckenzie for the hard work and realbart for bringing it up
- Adds ability to use
init
in property setters
- Breaking change in how generated code qualifies parameters, e.g.
async Task
should no longer generated asSystem.Threading.Task
. I hope this does not break things - Completely overhauled test suite - fixed lots of code issues and tightened checks so that errors now surface when testing-
- Applied fixes for overriding and shadowing also for events. Thanks FinnAngelo!
- Maintenance update. Use of
ForAttributeWithMetadataName
to improve performance. Thanks crwsolutions!
- You can remove the manually created
GenerateAutomaticInterfaceAttribute
, as it is generated automatically now. Thanks crwsolutions! - You can remove the manually created
IgnoreAutomaticInterfaceAttribute
, as it is generated automatically now. Thanks crwsolutions!
- Now can ignore class members with [IgnoreAutomaticInterface] attribute. Thanks avtc!
- Now prevents duplicates when overriding or shadowing methods (
new void DoSomething()
). Thanks simonmckenzie!
- Now supports methods with
ref / in / out
parameters. Thanks mohummedibrahim - Handles default values for
true / false
correctly. Thanks simonmckenzie!
- Now supports Interfaces containing
new
, previously duplicates entries where created - Now supports
ref
parameters - Now supports properties with reserved names like
@event
- Fix bug where multiple automatic interfaces caused issues
- Better support for nullable like Task<string?>, previously only top level generic where considered
- Major rework to Incremental Source generator
- Fixed some outstanding bugs
- Removed logging, b/c not really used
- Increased coverage
- Minor bug fixes
- Add support nullable context
- Add support for overloaded methods.
- Add support for optional parameters in method
void test(string x = null)
should now work.