Share via


Working with the Managed addin framework (System.Addin)

I’m writing this post mainly as a reference for myself to remember key points regarding the Managed Addin Framework (MAF). MAF is pretty complex and a developer needs some sort of a reference guide in order to use it effectively. Thats what I’ll try and achieve with this post.

Disclaimer: I’ll be extracting quite a lot of info from msdn for this post so you might read stuff you’ve already been through before. Again, this post is only for my reference and its going to be a long one.

Before I begin let me note a few good references to the Addin Framework:

  1. Daniel Moth’s MAF – Part 1
  2. Daniel Moth’s MAF – Version Resilience – Part 2
  3. Detailed MSDN Coverage
  4. MAF at CodePlex
  5. Pipeline Builder
Addin pipeline:

Addin pipeline 

Add-in overview:

The contract is loaded into both the host and addin app domains.

To pass through the isolation boundary any type should be serializable or should be a contract. If not a contract or a serializable type then it should be converted to one by the adapter segment in the pipeline.

The views are usually abstract base classes or interfaces which are statically bound to the host or the addin.

 

Developing the pipeline:

The addin side adapter and host side adapter segment convert the flow of types between the respective views and the contract.

The contract derives from IContract interface.

The diagram below depicts the segments of the pipeline requiring attributes.

Add-in model with required attributes on types. 

 

Description of the pipeline segments:
Pipeline segment Description
Host The application assembly that creates an instance of an add-in.
Host view of addin Abstract base class or interface. Represents host’s view of types and methods used to communicate with the addin.
Host side adapter An assembly with one or more classes that adapts methods to and from the contract. [HostAdapter] attribute.
Contract Interface deriving from IContract. [AddInContract] attribute
Addin side adapter [AddInAdapter] attribute. Each assembly in the addin side adapter directory that has this attribute is loaded into the addin’s app domain.
Addin view Abstract base class or interface. [AddInBase] attribute. Each assembly in the addin views directory that has this attribute is loaded into the addin’s app domain.
Add In A type that performs service for the host. [AddIn]

 

Pipeline Activation Path:

Add-in model with activation path.

Moving from right to left in the diagram:

1. The addin inherits the addin view.

2. The addin view is passed into the constructor of the addin side adapter.

3. The addin side adapter inherits the contract.

4. The contract is passed into the constructor of the host side adapter.

5. The host side adapter inherits the host view.

 

 

 

 

 

 

Steps involved in activation:

  1. The host application activates the add-in with the Activate method.

  2. The add-in, add-in view, add-in-side adapter, and the contract assemblies are loaded into the add-in's application domain.

  3. An instance of the add-in-side adapter is created using the add-in view (with the class identified by the AddInBaseAttribute attribute) as its constructor. The add-in-side adapter inherits from the contract.

  4. The add-in-side adapter, which is typed as the contract, is passed across the (optional) isolation boundary to the host-side adapter's constructor.

  5. The host view of the add-in, host-side adapter, and the contract assemblies are loaded into the host's application domain.

  6. An instance of the host-side adapter is created using the contract as its constructor. The host-side adapter inherits from the host view of the add-in.

  7. The host has the add-in, which is typed as the host view of the add-in, and can continue calling its methods.

Attributes required:

Host view of addin is the type passed to AddInStore.FindAddIns method meaning this type need not be discovered, hence no attribute required.

 

Pipeline Directory Structure:

Required directories for add-in development.

Important:

The host application and the host view of the add-in pipeline segment are typically deployed in the same directory, which can be at any location. The host application requires a reference to the host view of the add-in segment that represents the add-in to activate.

You are not required to have add-ins in the pipeline directory structure. If they are not in the pipeline directory structure, you must call the AddInStore.UpdateAddIns method or the RebuildAddIns method that takes the path to the containing directory of the add-ins as its parameter.

Change the Output path for the pipeline segments to their respective directories in the pipeline directory structure.

 

 

 

 

 

 

Pipeline deployment:

Pipeline details

Pipeline Segment References in Visual Studio:

When adding references from one segment to another make a reference to the segment’s project instead of the assembly.

To add a project reference:

  1. In Solution Explorer, right-click the References folder and choose Add Reference.

  2. On the Projects tab, choose the desired project and click OK.

  3. Under the References folder, click the project reference you just added.

  4. In the reference Properties, set Copy Local to False.

image

The host view of the add-in has no reference requirements but it is required for the host application.

This pretty much covers all the background required to work with the MAF. Of course a lot of important stuff hasn’t been covered here like the Lifetime management and details of contracts and views and adapters. But since this is only a quick reference I’ll leave it at this.

In the next post I’ll walthrough creating an addin and note down all the points to note while doing the same.

Until then…

Sidharth