Provider Implementation To Make Extensible Software

Ever thought how we can replace the class instance without recompiling the project in C#? In this article I will discuss how we can use Provider pattern to make extensible software. In one of my articles I have talked about loose coupling and dependency injection. I will use a very simple example to demonstrate how we can replace the functionality of one assembly or class without even compiling the project. This will be done dynamically at run time. I have used C# as the language for this project.

The article first appeared on DotNet For All.

This type of scenario can be useful if we want to replace the assemblies or classes at run time. In this article I will use the example of the Logging framework. Suppose I provide a functionality to change the logging without recompiling the whole project.

If you are not understanding what I am trying to say, please stay with me. I will make everything clear. Please go through the below problem/requirement and solution scenario.

Before going first let’s see the basic project structure. I will be making changes to this structure as we proceed.



Problem/Requirement: 
Please take a look at the EmployeeData class in the below code snippet.
  1. public class EmployeesData   
  2. {  
  3.     IDataProvider _dataProvider;  
  4.     ILogger _logger;  
  5.     public EmployeesData(IDataProvider dataProvider, ILogger logger) {  
  6.         _dataProvider = new MSSqlData();  
  7.         _logger = new TextLogger();  
  8.     }  
  9.     public void GetAll() {  
  10.         try {  
  11.             _dataProvider.GetAll();  
  12.             _logger.LogInfo("Returned the Data");  
  13.         } catch (Exception ex) {  
  14.             _logger.LogInfo(ex.Message);  
  15.         }  
  16.     }  
  17.     public void GetEmployeeByID(int Id) {  
  18.         try {  
  19.             _dataProvider.GetByID(Id);  
  20.             _logger.LogInfo("Retrieved the data");  
  21.         } catch (Exception ex) {  
  22.             _logger.LogInfo(ex.Message);  
  23.         }  
  24.     }  
  25. }  
In the above code I am using Dependency injection to provide the concrete implementation of the IDataProvider and ILogger. If the client has to change the implementation of any of these interfaces it can be done in the below code. Recompiling and building the project will change the implementations, without disturbing the working of the EmployeeData class. The below code will make things clear.
  1. IUnityContainer unity = new UnityContainer();  
  2. unity.RegisterType<IDataProvider, MsSqlData>()  
  3. .RegisterType<ILogger, TextLogger>()  
  4. .RegisterType<IEmployeeData, EmployeesData>();  
  5. IEmployeeData employeeData = unity.Resolve<IEmployeeData>();  
  6. employeeData.GetAll();  
  7. Console.Read();  
Now what if we want to change the implementations of both the interfaces from a different class. Suppose I want to have OracleData and XMLLogger classes to be injected, I can create instances here, compile the solution and provide to EmployeeData class.

But I have a requirement of not recompiling the solution every time I change the ILogger implementation. I should be just able to replace the assemblies and class implementation. It should work with these minimal changes. Let's see how we can accomplish it.

Provider Solution

Hope you are clear with the scenario. The solution is to provide the provider in the configuration file of the client App.config. I will show how we can implement the provider.

The Employee.DataEngine should refer to Employee.Common and Employee.Provider project only. The Employee.Common should not refer to any project. The Employee.Provider should only refer to the Employee.Common project. The client should only refer to Employee.Common and Employee.DataEngine. It should not refer to the provider as we should provide the implementation of the Provider by placing the assembly in the project folder. But if we want to debug the project we should refer to the provider.

Step 1

Transfer the ILogger interface to the Employee.Common, as this is the interface for which we have to implement the provider pattern. Move the TextLogger to Employee.Provider. This assembly we can only build and replace in the build folder.

Add one more class named XMLLogger in the same project.

The code for both of them is as following.

  1. public interface ILogger  
  2. {  
  3.     string LoggerName {  
  4.         get;  
  5.         set;  
  6.     }  
  7.     void LogInfo(string message);  
  8. }  
  9. public class TextLogger: ILogger {  
  10.     public string LoggerName {  
  11.         get;  
  12.         set;  
  13.     }  
  14.     public void LogInfo(string message) {  
  15.         Console.WriteLine(string.Format("Message from {0} {1}", LoggerName, message));  
  16.     }  
  17. }  
  18. public class XMLLogger: ILogger {  
  19.     public string LoggerName {  
  20.         get;  
  21.         set;  
  22.     }  
  23.     public void LogInfo(string message) {  
  24.         Console.WriteLine(string.Format("Message from {0} {1}", LoggerName, message));  
  25.     }  
  26. }  
Step 2: Change the client App.config as shown in the figure below.

     
In the above figure I have defined a section named dataEngine. This is done by adding the <section> element in <configSections> part of App.config. Here we need to give the fully qualified name for the type and its assembly. This will infer that any <dataEngine> section should refer to the type provided.

The type of the Logger(<logger> element) is the one which the DataEngine provider will take and create instance. This is the type which we can change if we want to change the Logger without recompiling the solution.

In the above figure <dataEngine> is Section and <logger> is Element of the section.

Step 3

To include a class as Section and Element we need to derive from ConfigurationSection and ConfigurationElement classes. These classes are part of System.Configuration assembly. Include System.Configuration assembly reference to the Employee.DataEngine project.

Define the properties for these classes which I have already defined in the App.config. The properties need to have the ConfigurationProperty attibute. This attribute has the configuration supported property name and other properties.

Create a new folder named Configuration in Employee.DataEngine. Add two classes named DataEngineConfigurationSection.cs and LoggerElement.cs.

  1. public class DataEngineConfigurationSection: ConfigurationSection  
  2. {  
  3.     [ConfigurationProperty("logger", IsRequired = true)]  
  4.     public LoggerElement Logger  
  5.     {  
  6.         get  
  7.         {  
  8.             return (LoggerElement) base["logger"];  
  9.         }  
  10.         set {  
  11.             base["logger"] = value;  
  12.         }  
  13.     }  
  14. }  
  15. public class LoggerElement: ConfigurationElement  
  16. {  
  17.     [ConfigurationProperty("name", IsRequired = true)]  
  18.     public string Name {  
  19.         get {  
  20.             return (stringbase["name"];  
  21.         }  
  22.         set {  
  23.             base["name"] = value;  
  24.         }  
  25.     }  
  26.     [ConfigurationProperty("type", IsRequired = true)]  
  27.     public string Type {  
  28.         get {  
  29.             return (stringbase["type"];  
  30.         }  
  31.         set {  
  32.             base["type"] = value;  
  33.         }  
  34.     }  
  35.     [ConfigurationProperty("loggerName", IsRequired = true)]  
  36.     public string LoggerName {  
  37.         get {  
  38.             return (stringbase["loggerName"];  
  39.         }  
  40.         set {  
  41.             base["loggerName"] = value;  
  42.         }  
  43.     }  
  44. }  
Match these two classes with the app.config settings. DataEngineConfigurationSection(dataEngine in app.config) has a property of type LoggerElement(logger in App.config). LoggerElement has three properties Name, Type and LoggerName (name, type and loggerName respectively in App.config).

Step 4: Change the EmployeeData.cs class to accept the ILogger variables instance from the config file as shown below. 

  1. IDataProvider _dataProvider;    
  2. ILogger _logger;    
  3. public EmployeesData(IDataProvider dataProvider)    
  4. {    
  5.     _dataProvider = new MsSqlData();    
  6.     //_logger = new TextLogger();    
  7.     DataEngineConfigurationSection config = ConfigurationManager.GetSection("dataEngine"as DataEngineConfigurationSection;    
  8.     if (config != null)    
  9.     {    
  10.         _logger = Activator.CreateInstance(Type.GetType(config.Logger.Type)) as ILogger;    
  11.         _logger.LoggerName = config.Logger.LoggerName;    
  12.     }    
  13. }   
As seen from the above code I am taking the instance of IDataProvider as dependency injection. But we have removed ILogger from being injected. I am creating the instance of ILogger at run time using the property of config (which is of type DataEngineConfigurationSection) type. This type is provided in the app.config. 

And I am creating an instance of the ILogger type using the “Logger.Type” property value from app.config. I am using Activator.CreateInstance. It takes Type as parameter to create instances at run time. I am getting type using Type.GetType which takes fully qualifiesd type name(string) as parameter to get the type.

Step 5

Build the project in the release mode. Copy the Employee.Provider.dll from the “ConsoleApplication1\Employee.Provider\bin\Release” folder. Paste it to “ConsoleApplication1\bin\Release” folder. Double click on the ConsoleApplication1.exe in the same folder.

Run the project you will get the message as “Message from Text returned all data”. Signifying that the TextLogger.cs is being used to log messages.

Step 6: Change of the class without rebuilding or recompiling the solution.

Change the Console.Application1.exe (XML Configuration file). Change the type to “Employee.Provider.XMLLogger,Employee.Provider” and name to “XML”. Run the application by clicking the ConsoleApplication1.exe.

The message is “Message from XML returned all data”. This means that XMLLogger.cs is instantiated. This happened without rebuilding or recompiling the solution.

The final structure of the project looks as shown in the figure below.

          
Conclusion

In this article we have seen how we can use providers in the App.config to write software which are easily pluggable. We have replaced the functionality of one class with the other without recompiling the whole solution. The example solution we have written in C#.


Recommended Free Ebook
Similar Articles