Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Fast Marshaling for Cross-AppDomain Proxies

4.80/5 (12 votes)
24 Apr 2009Public Domain2 min read 45.3K  
This article describes how to speed up marshaling across application domains.

Introduction 

This article briefly describes how to increase the speed while marshaling across application domains. The intention of this how-to is to provide some tips and some clues about this issue.

Background 

Fast cross-AppDomain calls were a need for me, while trying to implement a plug-in architecture for my application. The one problem of performance I've faced was that cross application domain method calls were 1000x slower than standard method calls. 

Using the Code

The solution has three projects: one for the application executable, another one for the "PluginInterface", and another for the plugin itself. Both projects, the plugin and the executable reference the PluginInterface. That's because when executing your program, referenced libraries get loaded automatically in the default AppDomain, and then, it's impossible to unload them. By creating an intermediate DLL (the PluginProxy) we can create an AppDomain in which types loaded by this DLL remain isolated from the default AppDomain, giving us the possibility to unload previously loaded plugins, using AppDomain.Unload(...).

To describe how to improve this situation, let's define some classes to use as an example.

The plugin class. This class should be in an independent assembly, like "Plugin.dll". The catch: it is ~1000x slower to invoke a method for an object instance residing in another application domain.

C#
public class Plugin : MarshalByRefObject, PluginInterface.IPlugin
{
    public string SendMessage(string message)
    {
        return "Received: " + message;
    }
}

Then the IPluginProxy and the IPlugin interfaces should also be in another independent assembly, like "PluginInterface.dll". For the sake of simplicity of this article, IPluginProxy's implementation is left as an exercise to the reader.

C#
public interface IPlugin
{
    string SendMessage(string message);
} 

public interface IPluginProxy
{
    IPlugin Create(AssemblyName assemblyName);
}	 

Last but not least, the plug-in consumer, your executable file. The first tip for speeding up marshaling is right here, in your application's entry point.

C#
[STAThread, LoaderOptimization(LoaderOptimization.MultiDomainHost)]
static void Main()
{
    AppDomain pluginDomain = AppDomain.CreateDomain("PluginDomain");

    [...]  // you should create an instance of the proxy in the pluginDomain AppDomain.
    [...]  // Then, by calling proxy.Create() the proxy should create an instance
    [...]  // of the plug-in in that AppDomain, so it can be unloaded later if necessary.

    PluginInterface.IPlugin plugin = proxy.Create(pluginAssembly);

    plugin.SendMessage("hello from another AppDomain");  // if all goes well, 
					// this call should be 10x faster
}

Now, for this to work faster, first it's necessary to:  

  1. Apply a strong name to PluginInterface.dll and to the plugin(s), in this example, "Plugin.dll".
  2. Install PluginInterface.dll and Plugin.dll into the GAC.
  3. The entry point of your application should have the following attribute applied:
    C#
    LoaderOptimization(LoaderOptimization.MultiDomainHost)  

And... that's it. If you followed those steps, and your plugin is getting loaded in another domain, other than the default domain, then, you should see some improvements, like this:  

Standard Implementation

Optimized Implementation
Standard Method Calls/sec 

Average: ~11600000 

Cross AppDomain Method Calls/sec

~42000

~390000

History

  • 24th April, 2009: Initial post 

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication