Git Product home page Git Product logo

bouncer's Introduction

Short introduction to Bouncer

Bouncer is a library to validate input parameter of methods in a configurable and declarative way. The idea behind the library is to declare a “context” at the method level and declare rules for business entities at the type/property level.

Business Case Example: you might have a “Customer” that implements a property “eMail” that must be a valid email address. This validation could be implemented directly inside the methods that do accept the Customer entity – which does imply that you will have to change all methods testing for that property the time you see that there are top level domains that do have 4 (or may be in the future 5) chars. The first step is to implement Guard classes that do implement the eMail validity check once and can be references from everywhere in code. But in this case either you will have to change code, recompile etc. when the rule changes. Another problem: you explicitly have to know, where in code is a customer object with an eMail address that needs to be checked. But the business requirements don’t say “in method X there should be a validation” – most time the requirement is “the customers eMail address must be a valid – no matter where”.

Bouncer helps you get this requirement or restriction be enforced, by defining such a rule on the type level – you simply add an attribute to the property or even configure inside the app.config/web.config for the property a check with a regular expression:

<ConfiguredRuleInformation  
   Rule="Sem.GenericHelpers.Contracts.Rules.StringRegexMatchRule,   
         Sem.GenericHelpers.Contracts"  
   TargetType="Sem.Sample.Contracts.Entities.MyCustomer, Sem.Sample.Contracts"  
   TargetProperty="PhoneNumber"   
   Parameter="^((\+[0-9]{2,4}( [0-9]+? | ?\([0-9]+?\) ?))|(\(0[0-9 ]+?\) ?)|(0[0-9]+? ?( |-|\/) ?))[0-9]+?[0-9 \/-]*[0-9]$"   
   Context="Config"/>

This rule definition does only exist in configuration – no recompile is needed to add or remove that rule or change the regular expression to be validated.

You might have the case that some rules have only limited “scope” – like a rule that your entity must have a customer id: all customers must have a customer id, but when creating a new customer, you might need to save it to the database before you will get the id. For this case you can add a “context” to the rules. Such rules will only be evaluated if the method or the type defining the method is tagged with that context (via attributes):

    [ContractContext("Read")]
    internal class MyBusinessComponentSave : MyBusinessComponent

In this case the whole class is running in the context of “read” operations. But for a particular method we can switch that context, by removing “Read” and adding “Create”

    [ContractContext("Create")]  
    [ContractContext("Read"false)]  
    [MethodRule(typeof(StrictCustomerCheckRuleSet), "customer")]  
    internal void InsertCustomer(MyCustomer customer)

So, when is the rule validation being executed? You (currently) need to do that imperative (You also might use a code weaver like PostSharp to include the call to Bouncer via aspects.):

    Bouncer  
      .For(() => customer)  
         .Enforce();

In this example all rules for the variable “customer” are evaluated and in case of a rule violation, a “RuleValidationException” will be thrown. The great things about that exception are:

1)      It inherits from ArgumentException, so you can keep your exception handling for argument checking, if you want to.

2)      Instead of “Object not set to a reference of an object.” you get something like “The rule Sem.GenericHelpers.Contracts.Rules.IsNotNullRule`1 did fail for value name >>customer.InternalId<<: The object is NULL. Parameter name: customer.InternalId” – I think you see the difference.

Because of the fluent interface, you can simply concatenate the For statements and execute all at once – this has the advantage of collecting all type and method information only once.

   Bouncer  
       .For(() => customerId)  
       .For(() => amount)  
       .For(() => theCustomer)  
       .Enforce();

The last statement Enforce will start the evaluation of all rules for the variables added inside the For statements.

In some situations you might not want to get exceptions in case of a rule violation. In such a case you can use the Preview method to get an IEnumerable<RuleValidationResult>. This enables you to show your user all violations inside the UI at once, so she can fix the data according to the requirements.

Impact in performance: tested with an Intel Core 2 Duo 2.8GHz (E7400) the first "Enforce" call did take about 500 ms due to configuration loading. Additional calls did take between 2 and 3 ms for executing 12 to 18 rules.

Bouncer and Interception with Unity

With the current source code version (not yet published as a release or NuGet package) you can use the interception mechanism (tested with VirtualMethodInterceptor) to call bouncer on each virtual method. The additional library Sem.GenericHelpers.Contracts.Unity provides an IInterceptionBehavior for that purpose.

Unity configuration:

Container.AddNewExtension();
Container.RegisterType(
                new Interceptor(),
                new InterceptionBehavior(),
                new InterceptionBehavior());

Specification of Bouncer attributes:

[ContractMethodRule(typeof(IntegerGreaterThanRule), "x", Parameter = 1)]
public virtual int Add(
    int x, 
    int y,
    [ContractParameterRule(typeof(IntegerGreaterThanRule), Parameter = 3)]int z)
{
    return x + y + z;
}

In this example there is one parameter restricted by a method attribute and another one with an attribute directly attached to the parameter (what removes the need to specify the parameter name with a string). The attributes will also be found in interfaces, so you can declare your rules at a contract level.

To get an object of that calculator, you will use plain unity syntax with the method "Resolve" or (better) Dependency Injection:

ICalculator calculator = container.Resolve();

The "Resolve" method (or DI) will give you a proxy-object, that adds the intercaprion behavior, so that in your business code, you will not need to know that you are using validation.

bouncer's People

Contributors

interface007 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.