Seekatar.OptionToStringGenerator
0.1.1-prerelease
See the version list below for details.
dotnet add package Seekatar.OptionToStringGenerator --version 0.1.1-prerelease
NuGet\Install-Package Seekatar.OptionToStringGenerator -Version 0.1.1-prerelease
<PackageReference Include="Seekatar.OptionToStringGenerator" Version="0.1.1-prerelease" />
paket add Seekatar.OptionToStringGenerator --version 0.1.1-prerelease
#r "nuget: Seekatar.OptionToStringGenerator, 0.1.1-prerelease"
// Install Seekatar.OptionToStringGenerator as a Cake Addin #addin nuget:?package=Seekatar.OptionToStringGenerator&version=0.1.1-prerelease&prerelease // Install Seekatar.OptionToStringGenerator as a Cake Tool #tool nuget:?package=Seekatar.OptionToStringGenerator&version=0.1.1-prerelease&prerelease
OptionToString Incremental Source Generator
Problem: I have configuration class for use with IOptions and I want to safely log out its values at runtime.
Solution: Use an incremental source generator to generate an extension method to get a string with masked values for the properties.
This repo has an incremental source generator that generates an OptionToString
extension method for your classes. By marking properties in the class you can control how the values are masked. This is often used for dumping out objects used by IOptions or IConfiguration to log the configuration values for an application.
Usage
- Add the OptionToString NuGet package to your project.
- Decorate a class with the
OptionToStringAttribute
attribute. - Optionally decorate properties with how you want them to be you want to dump out. If you don't decorate a property, its full text is dumped out.
Example
Here's an example class of the various options with values set in the class for illustration purposes. The output follows.
[OptionsToString]
class MyInternalAppOptions
{
public string Name { get; set; } = "hi mom";
public string? NullName { get; set; }
[OutputMask]
public string Password { get; set; } = "thisisasecret";
[OutputMask(PrefixLen=3)]
public string Certificate { get; set; } = "abc1233435667";
[OutputLengthOnly]
public string Secret { get; set; } = "thisisasecretthatonlyshowsthelength";
[OutputRegex(Regex="User Id=([^;]+).*Password=([^;]+)")]
public string ConnectionString { get; set; } = "Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;";
[OutputRegex(Regex="User Id=([^;]+).*Password=([^;]+)",IgnoreCase=true)]
public string AnotherConnectionString { get; set; } = "Server=myServerAddress;Database=myDataBase;user Id=myUsername;Password=myPassword;";
[OutputIgnore]
public string IgnoreMe { get; set; } = "abc1233435667";
}
The output has the class name followed by an indented list of all the properties' values masked as specified.
integration.MyInternalAppOptions:
Name : "hi mom"
NullName : <null>
Password : "*************"
Certificate : "abc**********"
Secret : Len = 35
ConnectionString : Server=myServerAddress;Database=myDataBase;User Id=***;Password=***;
AnotherConnectionString : Server=myServerAddress;Database=myDataBase;user Id=***;Password=***;
Notes
- All public properties are included by default. Use the
OutputIgnore
attribute to exclude a property. ToString()
is called on the property value, then the mask is applied. You can have a customToString()
method on a class to format its output then it will be masked.- Only one
Output*
attribute is allowed per property. If more than one is set, you'll get a compile warning, and the last attribute set will be used. OutputRegex
must have aRegex
parameter, or you'll get a compile error.- If the regex doesn't match, the output will be
***!
to indicate it didn't match.
Implementation
Big shout out to Andrew Lock and his blog series on incremental source generators. I used that as a starting point for this project.
His blog tells his story of building a source generator and you learn better ways to do things as you progress through the blog.
In particular, in the last entry he breaks out the Attributes
into their own assembly. In the initial generator, he injects the Attributes
as code with these lines in the Initialize
method of the generator, which is the typical method like this:
context.RegisterPostInitializationOutput(ctx => ctx.AddSource(
"ClassExtensionsAttribute.g.cs",
SourceText.From(SourceGenerationHelper.Attribute, Encoding.UTF8)));
He says this works fine unless someone uses InternalsVisibleTo
to expose the internals of one assembly to another. He tried several things to solve this before coming up with a robust solution in part 8 of his series. There's quite a bit of advanced csproj editing that he covers to get it to work. I applied similar changes and everything but the unit tests worked. After viewing his repo, I found his original unit test helper methods to build the code on-the-fly for the unit tests was different. After picking up those changes, the unit tests worked.
Basic Logic of OptionsToStringGenerator.Initialize()
This has the implementation of IIncrementalGenerator.Initialize method. For this generator here's what I did:
- Look for classes with at least one attribute (predicate, which must be very fast)
- Look for ones with my
OptionToStringAttribute
(transform, which can be slower) - Execute() generates the code
- Take the syntax and get the semantic model of the class, extracting the name, accessibility, and list of properties with a
get
- Generate the code for the extension method
- Take the syntax and get the semantic model of the class, extracting the name, accessibility, and list of properties with a
Roadmap
- More configurability of the output. Indent, mask character, mask len, etc.
- JSON output
- Ability to use ILogger with semantic logging
- Allow alternative method to get the string value of a property
Links to Documentation
These are links to the MS documentation for the items I used in the generator.
ISymbol -- Base class for all semantic symbols
IPropertySymbol -- Semantic for the property
- GetMethod -- is it a {get}
- DeclaredAccessibility -- is it public?
INamedTypeSymbol -- More specific semantic for the class
- GetAttributes
- ContainingNamespace
- DeclaredAccessibility
- GetMembers -- get all the members of the class
Links
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.3.4 | 69 | 11/2/2024 |
0.3.3.82-prerelease | 53 | 11/2/2024 |
0.3.3.77-prerelease | 91 | 5/28/2024 |
0.3.3 | 5,279 | 5/28/2024 |
0.3.2.75-prerelease | 86 | 5/27/2024 |
0.3.2 | 92 | 5/27/2024 |
0.3.1.72-prerelease | 93 | 2/10/2024 |
0.3.1.71-prerelease | 92 | 2/10/2024 |
0.3.1 | 202 | 2/10/2024 |
0.3.0.69-prerelease | 97 | 1/31/2024 |
0.3.0.67-prerelease | 97 | 1/13/2024 |
0.3.0 | 230 | 1/13/2024 |
0.3.0-prerelease | 86 | 1/13/2024 |
0.2.3 | 164 | 1/1/2024 |
0.2.2 | 303 | 12/4/2023 |
0.2.1 | 27,321 | 11/14/2023 |
0.2.0 | 125 | 11/11/2023 |
0.1.4 | 309 | 10/12/2023 |
0.1.3 | 152 | 10/9/2023 |
0.1.2-prerelease | 126 | 9/5/2023 |
0.1.1-prerelease | 121 | 9/4/2023 |