Plug-in architecture for ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T21:57:45Z http://stackoverflow.com/feeds/question/340183 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340183/plug-in-architecture-for-asp-net-mvc 8 Plug-in architecture for ASP.NET MVC Simon Farrow 2008-12-04T10:40:22Z 2009-03-24T14:35:55Z <p>I've been spending some time looking at Phil Haack's article on <a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" rel="nofollow">Grouping Controllers</a> very interesting stuff.</p> <p>At the moment I'm trying to figure out if it would be possible to use the same ideas to create a plug-in/modular architecture for a project I'm working on.</p> <p>So my question is: Is it possible to have the Areas in Phil's article split across multiple projects?</p> <p>I can see that the name spaces will work themselves out, but I'm concerned about the views ending up in the right place. Is it something that can be sorted out with build rules?</p> <p>Assuming that the above is possible with multiple projects in a single solution, does anyone have any ideas about the best way to make it possible with a separate solution and coding to a predefined set of interfaces? Moving from an Area to a plug-in.</p> <p>I have some experiences with plug-in architecture but not masses so any guidance in this area would be useful.</p> http://stackoverflow.com/questions/340183/plug-in-architecture-for-asp-net-mvc/340322#340322 1 Answer by gius for Plug-in architecture for ASP.NET MVC gius 2008-12-04T11:48:34Z 2008-12-04T12:14:04Z <p>I guess it is possible to leave your views in the plug-in projects. </p> <p>That's my idea: you need a ViewEngine that would call the plugin (probably through an interface) and request the view (IView). The plugin would then instantiate the view not through its url (as an ordinary ViewEngine does - /Views/Shared/View.asp) but through its name of the view )for example via reflection or DI/IoC container).</p> <p>The returning of the view in the plugin might me even hardcoded (simple example follows):</p> <pre><code>public IView GetView(string viewName) { switch (viewName) { case "Namespace.View1": return new View1(); case "Namespace.View2": return new View2(); ... } } </code></pre> <p>...this was just an idea but I hope it could work or just be a good inspiration.</p> http://stackoverflow.com/questions/340183/plug-in-architecture-for-asp-net-mvc/341355#341355 5 Answer by J Wynia for Plug-in architecture for ASP.NET MVC J Wynia 2008-12-04T17:07:09Z 2008-12-06T00:54:49Z <p>I did a proof of concept a few weeks ago where I put a complete stack of components: a model class, a controller class and their associated views into a DLL, added/tweaked <a href="http://stackoverflow.com/questions/236972/using-virtualpathprovider-to-load-aspnet-mvc-views-from-dlls">one of the examples</a> of the VirtualPathProvider classes that retrieve the views so they'd address those in the DLL appropriately.</p> <p>In the end, I just dropped the DLL into an appropriately configured MVC app and it worked just like if it had been part of the MVC app from the start. I pushed it a bit further and it worked with 5 of these little mini-MVC plugins just fine. Obviously, you have to watch your references and config dependencies when shuffling it all around, but it did work.</p> <p>The exercise was aimed at plugin functionality for an MVC-based platform I'm building for a client. There are a core set of controllers and views that are augmented by more optional ones in each instance of the site. We're going to be making those optional bits into these modular DLL plugins. So far so good.</p> <p>I wrote up an overview of my prototype and a <a href="http://www.wynia.org/wordpress/2008/12/05/aspnet-mvc-plugins/" rel="nofollow">sample solution for ASP.NET MVC plugins</a> on my site.</p> http://stackoverflow.com/questions/340183/plug-in-architecture-for-asp-net-mvc/353403#353403 1 Answer by Simon Farrow for Plug-in architecture for ASP.NET MVC Simon Farrow 2008-12-09T16:38:19Z 2008-12-09T16:38:19Z <p>So I had a little play around with the example from <a href="http://stackoverflow.com/users/1124/j-wynia">J Wynia</a> above. Many thanks for that btw.</p> <p>I changed things so that the extension of the VirtualPathProvider used a static constructor to create a list of all of the available resources ending with .aspx in the various dll's in the system. It's laborious but only we're only doing it once.</p> <p>It's probably a total abuse of the way that VirtualFiles are supposed to be used as well ;-)</p> <p>you end up with a:</p> <p>private static IDictionary resourceVirtualFile;</p> <p>with the string being virtual paths.</p> <p>the code below makes some assumptions about the namespace of the .aspx files but it will work in simple cases. This nice thing being that you don't have to create complicated view paths they are created from the resource name.</p> <pre><code>class ResourceVirtualFile : VirtualFile { string path; string assemblyName; string resourceName; public ResourceVirtualFile( string virtualPath, string AssemblyName, string ResourceName) : base(virtualPath) { path = VirtualPathUtility.ToAppRelative(virtualPath); assemblyName = AssemblyName; resourceName = ResourceName; } public override Stream Open() { assemblyName = Path.Combine(HttpRuntime.BinDirectory, assemblyName + ".dll"); Assembly assembly = Assembly.ReflectionOnlyLoadFrom(assemblyName); if (assembly != null) { Stream resourceStream = assembly.GetManifestResourceStream(resourceName); if (resourceStream == null) throw new ArgumentException("Cannot find resource: " + resourceName); return resourceStream; } throw new ArgumentException("Cannot find assembly: " + assemblyName); } //todo: Neaten this up private static string CreateVirtualPath(string AssemblyName, string ResourceName) { string path = ResourceName.Substring(AssemblyName.Length); path = path.Replace(".aspx", "").Replace(".", "/"); return string.Format("~{0}.aspx", path); } public static IDictionary&lt;string, VirtualFile&gt; FindAllResources() { Dictionary&lt;string, VirtualFile&gt; files = new Dictionary&lt;string, VirtualFile&gt;(); //list all of the bin files string[] assemblyFilePaths = Directory.GetFiles(HttpRuntime.BinDirectory, "*.dll"); foreach (string assemblyFilePath in assemblyFilePaths) { string assemblyName = Path.GetFileNameWithoutExtension(assemblyFilePath); Assembly assembly = Assembly.ReflectionOnlyLoadFrom(assemblyFilePath); //go through each one and get all of the resources that end in aspx string[] resourceNames = assembly.GetManifestResourceNames(); foreach (string resourceName in resourceNames) { if (resourceName.EndsWith(".aspx")) { string virtualPath = CreateVirtualPath(assemblyName, resourceName); files.Add(virtualPath, new ResourceVirtualFile(virtualPath, assemblyName, resourceName)); } } } return files; } } </code></pre> <p>You can then do something like this in the extended VirtualPathProvider:</p> <pre><code> private bool IsExtended(string virtualPath) { String checkPath = VirtualPathUtility.ToAppRelative(virtualPath); return resourceVirtualFile.ContainsKey(checkPath); } public override bool FileExists(string virtualPath) { return (IsExtended(virtualPath) || base.FileExists(virtualPath)); } public override VirtualFile GetFile(string virtualPath) { string withTilda = string.Format("~{0}", virtualPath); if (resourceVirtualFile.ContainsKey(withTilda)) return resourceVirtualFile[withTilda]; return base.GetFile(virtualPath); } </code></pre> http://stackoverflow.com/questions/340183/plug-in-architecture-for-asp-net-mvc/677682#677682 2 Answer by Geo for Plug-in architecture for ASP.NET MVC Geo 2009-03-24T14:35:55Z 2009-03-24T14:35:55Z <p>I’m actually working on an extensibility framework to use on top of ASP.NET MVC. My extensibility framework is based on the famous Ioc container: Structuremap .</p> <p>The use case I’m trying to fulfill is simple: create an application that should have some basic functionality that can be extended for every customer (=multi-tenancy). There should only be one instance of the application hosted but this instance can be adapted for every customer without making any changes to the core website. </p> <p>I was inspired by the article on multi tenacy wroted by Ayende Rahien: <a href="http://ayende.com/Blog/archive/2008/08/16/Multi-Tenancy--Approaches-and-Applicability.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/08/16/Multi-Tenancy--Approaches-and-Applicability.aspx</a> Another source of inspiration was the book of Eric Evans on Domain Driven Design. My Extensibility framework is based on the repository pattern and the concept of root aggregates. To be able to use the framework the hosting application should be build around repositories and domain objects. The controllers, repositories or domain objects are bind at runtime by the ExtensionFactory. </p> <p>A plug-in is simply an asselmbly that contains Controllers or Repositories or Domain Objects that respects a specific naming convention. The naming convention is simple, every class should be prefixed by the customerID e.g.: AdventureworksHomeController. </p> <p>To extend an application you copy a plug-in assembly in the extension folder of the application. When a user request a page under the customer root folder e.g: <a href="http://multitenant-site.com/" rel="nofollow">http://multitenant-site.com/</a>[customerID]/[controller]/[action] the framework check if there is a plug-in for that particular customer and instantiate the custom plug-in classes otherwise it loads the default once. The custom classes can be Controllers – Repositories or Domain Objects. This approach enables to extend an application at all levels, from the database to the UI, through the domain model, repositories. </p> <p>When you want to extend some existing features you create a plug-in an assembly that contains subclasses of the core application. When you’ve to create totally new functionalities you add new controllers inside the plug-in. These controllers will be loaded by the MVC framework when the corresponding url is requested. If you want to extend the UI you can create a new view inside the extension folder and reference the view by a new or subclassed controller .To modify existing behavior you can create new repositories or domain objects or sub classing exiting ones. The framework responsibility is to determine which controller/ repository / domain object should be loaded for a specific customer.<br /> I advise to have a look at structuremap (<a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">http://structuremap.sourceforge.net/Default.htm</a>) and especially at the Registry DSL features <a href="http://structuremap.sourceforge.net/RegistryDSL.htm" rel="nofollow">http://structuremap.sourceforge.net/RegistryDSL.htm</a> . </p> <p>This is the code I use at the startup of the application to register all plug-in controllers/repositories or domain objects: </p> <pre><code>protected void ScanControllersAndRepositoriesFromPath(string path) { this.Scan(o =&gt; { o.AssembliesFromPath(path); o.AddAllTypesOf&lt;SaasController&gt;().NameBy(type =&gt; type.Name.Replace("Controller", "")); o.AddAllTypesOf&lt;IRepository&gt;().NameBy(type =&gt; type.Name.Replace("Repository", "")); o.AddAllTypesOf&lt;IDomainFactory&gt;().NameBy(type =&gt; type.Name.Replace("DomainFactory", "")); }); } </code></pre> <p>I also use an ExtensionFactory inheriting from the System.Web.MVC. DefaultControllerFactory. This factory is responsible to load the extension objects (controllers/registries or domain objects). You can plugin your own factories by registering them at startup in the Global.asax file:</p> <pre><code>protected void Application_Start() { ControllerBuilder.Current.SetControllerFactory( new ExtensionControllerFactory() ); } </code></pre> <p>Hopefully this provide you with the begin of an answer; in any way I’ll try to find some time to explain my approach more clearly on my blog <a href="http://geoffrey-vandiest.blogspot.com/" rel="nofollow">http://geoffrey-vandiest.blogspot.com/</a> and I’ll be also able to publish my Extesnsibility framework on CodePlex soon. </p>