Dependency Injection

Overview

Dependency Injection feature in Ocelot is designed to extend and/or control building of Ocelot core as ASP.NET MVC pipeline services.
The main methods of the ServiceCollectionExtensions class are:

Use IServiceCollection extensions in in the following ConfigureServices method (Program.cs and Startup.cs) of your ASP.NET MVC gateway app (minimal web app) to add/build Ocelot pipeline services:

namespace Microsoft.AspNetCore.Hosting;
public interface IWebHostBuilder
{
    IWebHostBuilder ConfigureServices(Action<IServiceCollection> configureServices);
}

The fact is, the OcelotBuilder class is Ocelot’s cornerstone logic.

IServiceCollection extensions

Namespace: Ocelot.DependencyInjection

Based on the current implementations for the OcelotBuilder class, the AddOcelot method adds required ASP.NET services to DI container. You could call another more extended AddOcelotUsingBuilder method while configuring services to build and use custom builder via an IMvcCoreBuilder object.

The AddOcelot method

Signatures:

IOcelotBuilder AddOcelot(this IServiceCollection services);
IOcelotBuilder AddOcelot(this IServiceCollection services, IConfiguration configuration);

These IServiceCollection extension methods add default ASP.NET services and Ocelot application services with configuration injected implicitly or explicitly.

Note! Both methods add required and default ASP.NET services for Ocelot pipeline in the AddDefaultAspNetServices method which is default builder.

In this scenario, you do nothing other than call the AddOcelot method, which is often mentioned in feature chapters, if additional startup settings are required. With this method, you simply reuse the default settings to build the Ocelot pipeline. The alternative is AddOcelotUsingBuilder method, see the next subsection.

AddOcelotUsingBuilder method

Signatures:

using CustomBuilderFunc = System.Func<IMvcCoreBuilder, Assembly, IMvcCoreBuilder>;

IOcelotBuilder AddOcelotUsingBuilder(this IServiceCollection services, CustomBuilderFunc customBuilder);
IOcelotBuilder AddOcelotUsingBuilder(this IServiceCollection services, IConfiguration configuration, CustomBuilderFunc customBuilder);

These IServiceCollection extension methods add Ocelot application services, and they add custom ASP.NET services with configuration injected implicitly or explicitly.

Note! The method adds custom ASP.NET services required for Ocelot pipeline using custom builder (aka customBuilder parameter). It is highly recommended to read docs of the AddDefaultAspNetServices method, or even to review implementation to understand default ASP.NET services which are the minimal part of the gateway pipeline.

In this custom scenario, you control everything during ASP.NET MVC pipeline building, and you provide custom settings to build Ocelot pipeline.

OcelotBuilder class

The OcelotBuilder class is the core of Ocelot which does the following:

  • Contructs itself by single public constructor:

    public OcelotBuilder(IServiceCollection services, IConfiguration configurationRoot, Func<IMvcCoreBuilder, Assembly, IMvcCoreBuilder> customBuilder = null);
    
  • Initializes and stores public properties: Services (IServiceCollection object), Configuration (IConfiguration object) and MvcCoreBuilder (IMvcCoreBuilder object)

  • Adds all application services during construction phase over the Services property

  • Adds ASP.NET services by builder using Func<IMvcCoreBuilder, Assembly, IMvcCoreBuilder> object in these 2 development scenarios:

    • by default builder (AddDefaultAspNetServices method) if there is no customBuilder parameter provided

    • by custom builder with provided delegate object as the customBuilder parameter

  • Adds (switches on/off) Ocelot features by:

    • AddSingletonDefinedAggregator and AddTransientDefinedAggregator methods

    • AddCustomLoadBalancer method

    • AddDelegatingHandler method

    • AddConfigPlaceholders method

AddDefaultAspNetServices method

Currently the method is protected and overriding is forbidden. The role of the method is to inject required services via both IServiceCollection and IMvcCoreBuilder interface objects for the minimal part of the gateway pipeline.

Current implementation is the folowing:

protected IMvcCoreBuilder AddDefaultAspNetServices(IMvcCoreBuilder builder, Assembly assembly)
{
    Services
        .AddLogging()
        .AddMiddlewareAnalysis()
        .AddWebEncoders();

    return builder
        .AddApplicationPart(assembly)
        .AddControllersAsServices()
        .AddAuthorization()
        .AddNewtonsoftJson();
}

The method cannot be overridden. It is not virtual, and there is no way to override current behavior by inheritance. And, the method is default builder of Ocelot pipeline while calling the AddOcelot method. As alternative, to “override” this default builder, you can design and reuse custom builder as a Func<IMvcCoreBuilder, Assembly, IMvcCoreBuilder> delegate object and pass it as parameter to the AddOcelotUsingBuilder extension method. It gives you full control on design and buiding of Ocelot pipeline, but be careful while designing your custom Ocelot pipeline as customizable ASP.NET MVC pipeline.

Warning! Most of services from minimal part of the pipeline should be reused, but only a few of services could be removed.

Warning!! The method above is called after adding required services of ASP.NET MVC pipeline building by AddMvcCore method over the Services property in upper calling context. These services are absolute minimum core services for ASP.NET MVC pipeline. They must be added to DI container always, and they are added implicitly before calling of the method by caller in upper context. So, AddMvcCore creates an IMvcCoreBuilder object with its assignment to the MvcCoreBuilder property. Finally, as a default builder, the method above receives IMvcCoreBuilder object being ready for further extensions.

The next section shows you an example of designing custom Ocelot pipeline by custom builder.

Custom Builder

Goal: Replace Newtonsoft.Json services with System.Text.Json services.

Problem

The main AddOcelot method adds Newtonsoft JSON services by the AddNewtonsoftJson extension method in default builder (AddDefaultAspNetServices method). The AddNewtonsoftJson method calling was introduced in old .NET and Ocelot releases which was necessary when Microsoft did not launch the System.Text.Json library, but now it affects normal use, so we have an intention to solve the problem.

Modern JSON services out of the box will help to configure JSON settings by the JsonSerializerOptions property for JSON formatters during (de)serialization.

Solution

We have the following methods in ServiceCollectionExtensions class:

IOcelotBuilder AddOcelotUsingBuilder(this IServiceCollection services, Func<IMvcCoreBuilder, Assembly, IMvcCoreBuilder> customBuilder);
IOcelotBuilder AddOcelotUsingBuilder(this IServiceCollection services, IConfiguration configuration, Func<IMvcCoreBuilder, Assembly, IMvcCoreBuilder> customBuilder);

These methods with custom builder allow you to use your any desired JSON library for (de)serialization. But we are going to create custom MvcCoreBuilder with support of JSON services, such as System.Text.Json. To do that we need to call AddJsonOptions extension of the MvcCoreMvcCoreBuilderExtensions class (NuGet package: Microsoft.AspNetCore.Mvc.Core) in Startup.cs:

using Microsoft.Extensions.DependencyInjection;
using Ocelot.DependencyInjection;
using System.Reflection;

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services
            .AddLogging()
            .AddMiddlewareAnalysis()
            .AddWebEncoders()
            // Add your custom builder
            .AddOcelotUsingBuilder(MyCustomBuilder);
    }

    private static IMvcCoreBuilder MyCustomBuilder(IMvcCoreBuilder builder, Assembly assembly)
    {
        return builder
            .AddApplicationPart(assembly)
            .AddControllersAsServices()
            .AddAuthorization()

            // Replace AddNewtonsoftJson() by AddJsonOptions()
            .AddJsonOptions(options =>
            {
                options.JsonSerializerOptions.WriteIndented = true; // use System.Text.Json
            });
    }
}

The sample code provides settings to render JSON as indented text rather than compressed plain JSON text without spaces. This is just one common use case, and you can add additional services to the builder.


Configuration Overview

Dependency Injection for the Configuration feature in Ocelot is designed to extend and/or control the configuration of Ocelot kernel before the stage of building ASP.NET MVC pipeline services.

To configure the Ocelot pipeline and services, use the IConfigurationBuilder extensions in the following ConfigureAppConfiguration method (located in Program.cs and Startup.cs) of your minimal web app:

namespace Microsoft.AspNetCore.Hosting;
public interface IWebHostBuilder
{
    IWebHostBuilder ConfigureAppConfiguration(Action<WebHostBuilderContext, IConfigurationBuilder> configureDelegate);
}

IConfigurationBuilder extensions

Namespace: Ocelot.DependencyInjection

The main methods are the AddOcelot methods within the ConfigurationBuilderExtensions class. This method has a list of overloaded versions with corresponding signatures.

The purpose of this method is to prepare everything before actually configuring with native extensions. It involves the following steps:

  1. Merging Partial JSON Files: The GetMergedOcelotJson method merges partial JSON files.

  2. Selecting Merge Type: It allows you to choose a merge type to save the merged JSON configuration data either ToFile or ToMemory.

  3. Framework Extensions: Finally, the method calls the following native IConfigurationBuilder framework extensions:

    • The AddJsonFile method adds the primary configuration file (commonly known as ocelot.json) after the merge stage. It writes the file back to the file system using the ToFile merge type option, which is implicitly the default.

    • The AddJsonStream method adds the JSON data of the primary configuration file as a UTF-8 stream into memory after the merge stage. It uses the ToMemory merge type option.

AddOcelot methods

Signatures of the most common versions:

IConfigurationBuilder AddOcelot(this IConfigurationBuilder builder, IWebHostEnvironment env);
IConfigurationBuilder AddOcelot(this IConfigurationBuilder builder, string folder, IWebHostEnvironment env);

Note: These versions use the implicit ToFile merge type to write ocelot.json back to disk. Finally, they call the AddJsonFile extension.

Signatures of the versions to specify a MergeOcelotJson option:

IConfigurationBuilder AddOcelot(this IConfigurationBuilder builder, IWebHostEnvironment env, MergeOcelotJson mergeTo,
    string primaryConfigFile = null, string globalConfigFile = null, string environmentConfigFile = null, bool? optional = null, bool? reloadOnChange = null);
IConfigurationBuilder AddOcelot(this IConfigurationBuilder builder, string folder, IWebHostEnvironment env, MergeOcelotJson mergeTo,
    string primaryConfigFile = null, string globalConfigFile = null, string environmentConfigFile = null, bool? optional = null, bool? reloadOnChange = null);

Note: These versions include optional arguments to specify the location of the three main files involved in the merge operation. In theory, these files can be located anywhere, but in practice, it is better to keep them in one folder.

Signatures of the versions to indicate the FileConfiguration object of a self-created out-of-the-box configuration: [1]

IConfigurationBuilder AddOcelot(this IConfigurationBuilder builder, FileConfiguration fileConfiguration,
    string primaryConfigFile = null, bool? optional = null, bool? reloadOnChange = null);
IConfigurationBuilder AddOcelot(this IConfigurationBuilder builder, FileConfiguration fileConfiguration, IWebHostEnvironment env, MergeOcelotJson mergeTo,
    string primaryConfigFile = null, string globalConfigFile = null, string environmentConfigFile = null, bool? optional = null, bool? reloadOnChange = null);
Note 1: These versions include optional arguments to specify the location of the three main files involved in the merge operation.
Note 2: Your FileConfiguration object can be serialized/deserialized from anywhere: local or remote storage, Consul KV storage, and even a database. For more information about this super useful feature, please read PR 1569 [1].