AssemblyAttributeSearch 1.0.0
dotnet add package AssemblyAttributeSearch --version 1.0.0
NuGet\Install-Package AssemblyAttributeSearch -Version 1.0.0
<PackageReference Include="AssemblyAttributeSearch" Version="1.0.0" />
paket add AssemblyAttributeSearch --version 1.0.0
#r "nuget: AssemblyAttributeSearch, 1.0.0"
// Install AssemblyAttributeSearch as a Cake Addin #addin nuget:?package=AssemblyAttributeSearch&version=1.0.0 // Install AssemblyAttributeSearch as a Cake Tool #tool nuget:?package=AssemblyAttributeSearch&version=1.0.0
AssemblyAttributeSearch
This is a small small .Net Standard library/helper to provide greatly simplified convenience methods for dynamically finding, filtering, and initializing classes based on Custom Attributes. It provides a simpel convenience methods to allow searching for all instances of a Custom Attribute type.
In addition, you may specify an optional Class/Interface filter to only return types that implement the given class/interface.
The results will have the details of the Attribute found, as well as the class type for the calling code to use (e.g. process, instantiate dynamically, etc.).1
The default behavior assumes that there may be instances where Interfaces, and classes are defined in separate class Librareis and may in which the Assembly may not yet be loaded. In which case the local assemblies -- in the same root/bin folder as the specified assembly -- are eagerly loaded (e.g. force loaded) so that all libraries are available to be searched.
This was important for my use case whereby I wanted to have a generic Factory that could create instances of any class that implmented my interface and had appropriate metadata defined by my Custom Attribute. This allowed develoeprs to create many implementations easily without any impact to the core framework that could instantiate and implement the use of those classes.
NOTE: In the context of Azure Functions, the Assembly.GetExecutingAssembly() method results in a dynamic func
and not the original
project assembly, therefore the local class libraries could not be found and loaded as expected. The solution is to simply use
the Assembly property of a specific type (e.g. this.GetType().Assembly) that exists in the main project assembly and everythign
will resolve as expected; as noted in the samples below.
Usage
To get all classes & attribute info. for all classes denoted with a given JediAttribute
Custom Attribute:
var thisAssembly = this.GetType().Assembly;
//This gets the list of all search results...
var allJediClassInfoList = AssemblyAttributeSearch<JediAttribute>.FindAllAttributedClasses(thisAssembly);
//This convenience method lets us instanticate an instance (via Relfection)
var dynamicallyCreatedJedi = allJediClassInfoList.FirstOrDefault()?.CreateInstanc<IJedi>();
To get only the classes & attribute info. with a given JediAttribute
and that also implements the IJediMaster Interface:
var thisAssembly = this.GetType().Assembly;
//This gets the list of all search results...
var jediMasterClassInfoList = AssemblyAttributeSearch<JediAttribute>.FindAllAttributedClasses(thisAssembly, typeof(IJediMaster));
//This convenience method lets us instanticate an instance (via Relfection)
var dynamicallyCreatedJediMaster = jediMasterClassInfoList.FirstOrDefault()?.CreateInstanc<IJediMaster>();
Or if you just want to force load the local class libraries via the Helper and then process with your own Reflection Logic:
//Eagerly load all local assemblies...
AssemblyLoadHelper.ForceLoadClassLibraries(this.GetType().Assembly);
//Now you can retrieve and process all types in all assemblies even if they have not yet been lazy initialized by .Net Framework...
var allTypesInAllLocalAssemblies = AppDomain.CurrentDomain.GetAssemblies().SelectMany(a => a.GetTypes());
/*
MIT License
Copyright (c) 2018
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
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 |
---|---|---|
1.0.0 | 2,537 | 4/1/2020 |
Initial version with Unit Tests.