Click here to Skip to main content
4.73 / 5, 8 votes

1

2

3
2 votes, 25.0%
4
6 votes, 75.0%
5

Fast Marshaling for Cross-AppDomain Proxies

By reflex@codeproject | 24 Apr 2009
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.

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.

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.

[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:
    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

About the Author

reflex@codeproject




Argentina Argentina

Member


Sign Up to vote for this article
Add a reason or comment to your vote:

Comments and Discussions

You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 7 of 7 (Total in Forum: 7) (Refresh)FirstPrevNext
GeneralSource code for IPluginProxy would be very helpful Pinmemberbscaer5:58 28 Apr '09  
GeneralRe: Source code for IPluginProxy would be very helpful Pinmemberreflex@codeproject9:36 1 May '09  
GeneralMy vote of 5 PinmemberADLER16:59 25 Apr '09  
GeneralRe: My vote of 5 Pinmemberreflex@codeproject10:16 26 Apr '09  
GeneralRe: My vote of 5 Pinmembertrevorde stickman11:42 29 Apr '09  
GeneralRe: My vote of 5 Pinmemberreflex@codeproject9:42 1 May '09  
GeneralRe: My vote of 5 Pinmembertgrk8:05 18 Dec '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+PgUp/PgDown to switch pages.

PermaLink | Privacy | Terms of Use
Last Updated: 24 Apr 2009

Copyright 2009 by reflex@codeproject
Everything else Copyright © CodeProject, 1999-2010
Web21 | Advertise on the Code Project