Skip to content

fernando-a-marins/rules-framework

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rules Framework

Rules.Framework is a generic rules framework that allows defining and evaluating rules for complex business scenarios.

Why use rules? Most of us at some point, while developing software to support a business, have come across fast paced business logic changes. Sometimes, business needs change overnight, which requires a fast response to changes by engineering teams. By using rules, changing a calculus formula, a value mapping or simply a toggle configuration no longer requires code changes/endless CI/CD pipelines, QA validation, and so on... Business logic changes can be offloaded to configuration scenarios, instead of development scenarios.

Build status Quality Gate Status Coverage

Packages

Name nuget.org fuget.org
Rules.Framework Nuget Package Rules.Framework on fuget.org
Rules.Framework.Providers.MongoDb Nuget Package Rules.Framework.Providers.MongoDb on fuget.org
Rules.Framework.Providers.InMemory Nuget Package Rules.Framework.Providers.InMemory on fuget.org

Features

The following listing presents features implemented and features to be implemented:

  • Rules evaluation (match one)
  • Rules evaluation (match many)
  • Rules search
  • Rules content serializarion
  • Rules data source caching
  • Rules management (Create, Read, Update)
  • In-memory data source support
  • MongoDB data source support
  • SQL Server data source support

How it works

Starting with the basics, what are we considering a rule?

A rule is a data structure limited in time (date begin and date end) which is categorized by a content type. It's match on scenario is constrained by conditions which are used to determine if it is applicable, and also defines a priority as untie criteria when multiple rules have a match. A rule contains its content to be used on a specific business scenario.

For Rules.Framework, a valid rule accounts for the following conditions:

  • Categorized by a content type, which groups rules by those that will be evaluated together. Rules from different content types won't be evaluated together. Content type is a user defined type, which can be a value type or a object, depending on the requirements of usage.
  • Has a name, which must be unique by content type.
  • Is constrained in time by a date begin and a date end. Date begin must be always set, and date end can be null (meaning that rule is applied from date begin to ad eternum). Please note that date begin threshold is inclusive and date end threshold is exclusive, so if you define a rule with date begin as "2020-01-01" and date end as "2021-01-01", if evaluation date is set to "2020-01-01", rule will match, but if evaluation date is set to "2021-01-01", rule will not match.
  • Has a priority numeric value, which works as tiebreaker when many rules match on rules interval and given input conditions. Rules.Framework has the ability to configure if tiebreaker criteria is set to highest priority value or lowest priority value. This value must always be positive.
  • Also has a set of conditions disposed in tree. Conditions can be set combined by AND/OR operators and by using comparison operators to compare values set on rule (integer, boolean, string or decimal) to input conditions. Conditions are categorized by a condition type, which must be one of the user-defined types (either value types or objects).
  • And a content defined by user and totally up to the user to validate it (can virtually be anything the user wants, as long as the persistence mechanism used as data source supports it).

Bellow you can see a simple sample for demonstration purposes:

Rule Sample 1

The sample rule presented:

  • Is described by it's name as "Body Mass default formula" - a simple human-readable description.
  • Has a content type "Body Mass formula" that categorizes it.
  • Begins at 1st January 2018 and never ends - which means that requesting on a date before 1st January 2018, rule is not matched, but after midnight at the same date, the rule will match.
  • Priority is set to 1. This would be used as tiebreaker criteria if there were more rules defined, but since there's only one rule, there's no difference on evaluation.
  • Rule has no conditions defined - which means, requesting on a date on rule dates range, it will always match.

Simple right? You got the basics covered, let's complicate this a bit by adding a new rule. The formula you saw on the first rule is used to calculate body mass when using kilograms and meters unit of measures, but what if we wanted to calculate using pounds and inches? Let's define a new rule for this:

Rule Sample 2

Newly defined rule (Rule #2):

  • Becomes the rule with priority 1.
  • Defines a new formula.
  • Defines a composed condition node specifying that a AND logical operator must be applied between child nodes conditions results.
  • Defines a condition node with data type string, having a condition type of "Mass unit of measure", operator equal and operand "pounds".
  • Defines a second condition node with data type string, having a condition type of "Height unit of measure", operator equal and operand "inches".

If you request a rule for the content type "Body Mass formula" by specifying date 2019-01-01, "Mass unit of measure" as "pounds" and "Height unit of measure" as "inches", both rules will match (remember that Rule #1 has no conditions, so it matches anything). At this point is where priority is used to select the right one (by default, lowest priority values win to highest values, but this is configurable), so Rule #2 is chosen.

Remember, when you are defining rules, there are several ways on which you can define rules to match your logic needs. There's simply no silver bullet. If you need to have always a rule match, you need to find a default rule - one that matches on every scenario - and do define it, to ensure you always get a response.

Using the framework

Getting started

  1. Define your content types (suggestion: use an enum).
internal enum ContentTypes
{
    BodyMassIndexFormula = 1
}
  1. Define your condition types (suggestion: use an enum).
internal enum ConditionTypes
{
    MassUnitOfMeasure = 1,
    HeightUnitOfMeasure = 2
}
  1. Build a rules engine.
RulesEngine<ContentTypes, ConditionTypes> rulesEngine = RulesEngineBuilder.CreateRulesEngine()
    .WithContentType<ContentTypes>() // Your content types.
    .WithConditionType<ConditionTypes>() // Your condition types.
    .SetDataSource(rulesDataSource) // A rules data source instance implemented by you OR using one of the available providers.
    .Build();

Evaluating rules

  1. Set the conditions to supply to the engine.
Condition<ConditionTypes>[] expectedConditions = new Condition<ConditionTypes>[]
{
    new Condition<ConditionTypes>
    {
        Type = ConditionTypes.MassUnitOfMeasure,
        Value = "pounds"
    },
    new Condition<ConditionTypes>
    {
        Type = ConditionTypes.HeightUnitOfMeasure,
        Value = "inches"
    }
};
  1. Set the date at which you want the rules set to evalutated.
DateTime date = new DateTime(2019, 1, 1);
  1. Set the content you want to fetch.
ContentTypes contentType = ContentTypes.BodyMassIndexFormula;
  1. Evalutate rule match.
Rule<ContentTypes, ConditionTypes> ruleMatch = await rulesEngine.MatchOneAsync(contentType, date, conditions);

Using a in-memory data source provider

With a in-memory data source provider, you can define rules and manage them in-memory, and you can also manage their lifetime in memory.

There are 2 configuration possibilities:

  1. Setting the in-memory data source attached to rules engine lifetime.

    RulesEngine<ContentTypes, ConditionTypes> rulesEngine = RulesEngineBuilder.CreateRulesEngine()
        .WithContentType<ContentTypes>()
        .WithConditionType<ConditionTypes>()
        .SetInMemoryDataSource()
        .Build();
  2. Registering in-memory data source on dependency injection and using service provider-

        // Registering in-memory data source on dependency injection.
        (...)
        services.AddInMemoryRulesDataSource<ContentTypes, ConditionTypes>(ServiceLifetime.Singleton);
        (...)
    
        // Creating the rules engine specifying as parameter the service provider.
    RulesEngine<ContentTypes, ConditionTypes> rulesEngine = RulesEngineBuilder.CreateRulesEngine()
        .WithContentType<ContentTypes>()
        .WithConditionType<ConditionTypes>()
        .SetInMemoryDataSource(serviceProvider)
        .Build();

Using a MongoDB data source provider

With a MongoDB backed data source provider, you can create, manage and evaluate rules against a persistent database. MongoDB data source provider makes use of Mongo C# driver capability of deserializing BSON data into a dynamic object.

To make use of it, just set it as data source during rules engine construction:

MongoClientSettings settings = MongoClientSettings.FromConnectionString("mongodb://localhost:27017");
IMongoClient mongoClient = new MongoClient(settings);
MongoDbProviderSettings mongoDbProviderSettings = new MongoDbProviderSettings
{
    DatabaseName = "sample-database",
    RulesCollectionName = "sample-collection"
};

RulesEngine<ContentTypes, ConditionTypes> rulesEngine = RulesEngineBuilder.CreateRulesEngine()
    .WithContentType<ContentTypes>()
    .WithConditionType<ConditionTypes>()
    .SetMongoDbDataSource(mongoClient, mongoDbProviderSettings)
    .Build();

If you choose to use MongoDB as your rules data source, make sure you follow these rules of thumb for rules "content":

  • Use get/set properties with no behavior.
  • Define a parameterless (default) constructor (it may be protected or private, but must be with no parameters).
  • Keep behavior out of content objects.

It is really important to keep rules "content" objects as pure/anemic objects to avoid issues loading rules into memory.

My database has no provider available

In case you need to support other databases, you'll have to implement your own data source provider logic. You should implement IRulesDataSource<TContentType, TConditionType> interface and use it on rules engine builder.

public interface IRulesDataSource<TContentType, TConditionType>
{
    Task AddRuleAsync(Rule<TContentType, TConditionType> rule);

    Task<IEnumerable<Rule<TContentType, TConditionType>>> GetRulesAsync(TContentType contentType, DateTime dateBegin, DateTime dateEnd);

    Task<IEnumerable<Rule<TContentType, TConditionType>>> GetRulesByAsync(RulesFilterArgs<TContentType> rulesFilterArgs);

    Task UpdateRuleAsync(Rule<TContentType, TConditionType> rule);
}

You'll have to map each condition type defined by you to a data type on your rules data source. The ones available are:

  • Integer
  • Decimal
  • String
  • Boolean

For your guidance, check Mongo DB implementation: MongoDbProviderRulesDataSource.cs

Contributing

Contributions are more than welcome! Submit comments, issues or pull requests, I promise to keep an eye on them :)

While I try to do the best I can, suggestions/contributions are deeply appreciated on documentation!

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.8%
  • PowerShell 0.2%