Daniel Morrison

This is My Blag (%s/website/wobsite/gI)


Working Example

All code snippets are taken from a “real boy” build-able solution.

If something isn’t working for you, make sure the solution builds.

MSDN and StackOverflow already had a pretty write-ups, but I found their explanations more confusing than satisfactory during my initial research.

What, Why?

The basis for this project is the reflection factory pattern so all the benefits apply.

Additionally, this allows for solutions to be better broken up into smaller projects for re-use.

With a little creativity, this can even be used along with Impromtu Interface for linking against a LGPL library in non-GPL code optionally.

Getting the Types

Warning

Reflection can be slow and/or dangerous.

Avoid running untrusted code (such as directly from user input) or making heavy calls such as to GetTypes repeatedly.

Because assemblies aren’t used until their first reference in c#, consider using something like LoadAssembliesOnStartup.Fody. Alternatively the internet seems to suggest loading all of the assemblies in the executing folder. As someone who is mildly paranoid, I would recommend either specifying a path manually (like a plugins directory), or just not doing that, because if somehow an untrusted dll gets dropped into your executing directory, the system will be compromised, and you should feel bad. However, arguably if anyone gets write access to the file system it is already compromised, so you do you.

foreach (var reference in Assembly.GetEntryAssembly().GetReferencedAssemblies())
{
    try
    {
        AllTypes.AddRange(Assembly.Load(reference).GetTypes());
    }
    catch (ReflectionTypeLoadException e)
    {
        AllTypes.AddRange(e.Types);
    }
}

Why so many projects?

If you look at the example solution, there are three projects:

This is because in order for the optional dependency to be type safe, it needs to reference the interface, and in order for the optional dependency type to show up, it must be referenced by the executing assembly.

The simplest solution to this circular dependency is simply to split out the interface into its own project, along with all of its related code, because why not, you’ve already got a project for it.

If you don’t care about type checking, you might hate yourself. But if you really don’t care, just trust yourself to implement the interface correctly in the optional dependency, then use Impromtu Interface to make your optional dependency to act like it is really the correct interface.

This

return (IPlugin) Activator.CreateInstance(type);

Becomes

return Activator.CreateInstance(type).ActLike<IPlugin>();

Again, I find ActLike useful for linking against LGPL projects (and maybe a few other things), because I’m a bad open source developer, but it sacrifices all of the tooling that makes type safe languages bearable.


Hosted on GitHub Pages — Theme by mattgraham