Crafting wicked domain models with Components in DDD


Domain-Driven Design can help focus development efforts into crafting a strong, expressive domain model.  In Evans’ book, he dives in to a series of patterns which, when combined, form that strong domain model.  These patterns include Entity, Value Object, Service, Factory, Repository, Aggregates and Roots.  I think one of the biggest mistakes of someone learning and applying DDD is assuming that our entire model needs to fit into those few definitions.

When you do so, you wind up in spots where you’re trying to use a Repository from inside an Entity, or violating other more basic OO design principles.  When you’re feeling like you’re bending over backwards to fit everything into one paradigm, it’s time to stop, take a step back, and try a different angle.  The GoF design patterns book introduced a lot more patterns than described in Evans’ book, and all are valid inside the domain.  We shouldn’t artificially limit ourselves to the patterns in Evans’ book, as it was never meant to be an exhaustive domain patterns library.  Many times, what looks like a DDD problem is just an OO problem hiding in plain sight.

One example I’ve seen of a powerful OO design concept not explicitly called out is the Component pattern.  Before we get hopelessly derailed in pattern mumbo-jumbo, let’s explore how, on a recent project, we came to know and love this pattern.

Quick domain rundown

In this project, we were designing a service layer on top of an existing legacy application.  This legacy application contained about 3 million lines of code, roughly evenly split between VB.NET, SProcs, and COBOL.NET (yes, you read that right).  This application was the heart and soul of a very large corporation, but needed to be adapted to work in another, more larger corporation that just bought them out.  Long story short, our team was there to implement this service layer.

This company specialized in selling one thing: Software Licenses.  Of course, nothing was simple, but we were able to use NHibernate to interface with the legacy database (which was ported from a mainframe application), and design our domain model with ZERO compromises.

In this simplified view of Software Licenses, there are two types of products a Customer can purchase:

  • VLA Products
  • Non-VLA Products (such as retail, OEM, etc.)

To purchase a Non-VLA Product, you could be anyone, Joe Schmoe off the street.  To purchase a VLA Product, you needed to have a Contract set up with a Publisher, usually that you would agree to purchase so many licenses a year, and so on.

So, two types of Products.  VLA and Non-VLA.  A VLA Product by itself is worthless in our domain, you can’t purchase that.  Once you have a Contract set up, now we’re in business, and I can find details on your Contract that lock you in to certain pricing buckets.  Our final domain model looked something like this:

All Products were defined as a Product in our model, but VLA Products were linked to a base Product, plus the licensing Program Option you signed a contract for.  The combination of these two pieces (MS Office for the MS Select Plus program) ultimately defined what your final price was.  A single VLA Product would have one Product, plus a bunch of VLA Product entries defined for each option level defined for the licensing Program.

Confusing, I know, it took us quite a while for it to sink in.

The bottom line came to when we actually needed to be able to purchase one of these things.  If you’re buying a Non-VLA Product, you just have our Product object.  If you’re buying a VLA Product, you have a VlaProduct object.

###

Complicating matters

Things were going to get even more complicated.  On top of a base purchase price that may come from one of two places (Product or VlaProduct), this software had all sorts of custom pricing logic designed for sales guys to pull different levers and switches to seal a deal or make some extra cash.  Things like running a special on any Spreadsheet product type, or any Adobe published software.  Maybe the final price is base price plus a percentage, or targeted to a certain margin, or just some explicit, hard-coded price.  All this came out of another place.  On top of all of that, you had pricing limits in place so that you couldn’t give crazy sweetheart deals that made your quota but killed the bottom line.

Going even further, you had many different billing options, depending on your program and contract…and product.  Annual billing, proration, annual combined with proration.  We counted about two dozen different ways someone could get billed, all affecting the price you see on your screen.

We were at a crossroads.  Should our Entities (Product and VlaProduct) know about the myriad of ways its final price could be calculated?  Or do we spread this logic around haphazardly in a dozen Services, leading to domain anemia?

Neither, of course.  This was an OO problem, to be solved with basic OO concepts.  At its heart, we went with Composition over Inheritance.

Crafting our Components

Since a Product by itself really wasn’t purchasable by itself, we crafted the idea of a PurchasableProduct.  This would be composed of two pieces: a BaseProduct that contained base price and cost calculations, such as UnitCost, ListPrice, etc.  We had one unified view into “something that had a name, a SKU, price and cost”.  This wasn’t a row in any database, but an abstraction needed to conceptualize our model.

The other piece was a PricingStrategy, which was able to take a BaseProduct and give you a final purchase price.  The kicker was that this PurchasableProduct was neither an Entity nor a Value Object.  It had no identity, so it clearly wasn’t an Entity.  But on the Value Object side, it wasn’t really an object defined by attributes.  The PurchasableProduct is an Aggregate Component, from Framework Design Guidelines:

An aggregate component ties multiple lower-level factored types into a higher-level component to support common scenarios.

This is just a fancy definition for favoring composition into a single class:

Our PurchasableProduct Component combines the concept of a BaseProduct (which could be a VLA or Non-VLA Product) and a PricingStrategy, which could be absolutely anything.  The PurchasableProduct has real domain-heavy behavior, as its cost and price calculations combine the BaseProduct and PricingStrategy objects to something and end-user can purchase.

In this case, the only kind of identity I care about is referential identity.  The building of a PurchasableProduct is obviously quite complex, as it has to create a dynamic pricing strategy plus some kind of Product.  This object is a snapshot in time, as a Customer’s pricing can change at any time.  However, the price can never change on a PurchasableProduct, as there are certain guarantees on prices that they won’t go up or down after a Customer has chosen to buy this Product.

The really great part about this pattern is that the PurchasableProduct concept became part of the ubiquitous language of our team (devs plus domain experts).  It used composition, meaning that each piece could vary without affecting the other.  Complexity of pricing strategies was kept completely separate from base product pricing and costing, but finally combined into one model that everyone could talk about in a meaningful way.

###

How we got there

It became clear very early on that our Entities by themselves did not have enough behavior for them to stand alone at time of purchase.  Customers purchased Products, but they also had a lot more that went into exactly what price they paid.  But this extra information was dynamic, determined only when requested and never persisted.  Pricing rules were persisted, but the results of their calculations against products were not calculated until a PurchasableProduct was requested by a Customer.  At that point, pricing was locked and final price was determined by a transient PurchasableProduct.

If we put all of our logic around a bunch of surrounding Services, we would notice that groups of behavior tended to clump together, and wanted a home.  Not to mention, we needed a way to group a Product requested with a snapshot of pricing logic.  Additionally, when we first had price and cost just attributes on PurchasableProduct, we found an awfully anemic domain model where lots of services concerned with the PurchasableProduct were very far away from it.  It became an exercise in fixing the Inappropriate Intimacy smell to get towards a solid OO design.

A very bad turn would have been to make the Products be responsible for determining dynamic price and cost strategies.  The problem with that concept is that it didn’t reflect the reality of our conceptual model – that PurchasableProducts were snapshots in time, and should give the exact same result every time I ask for the Cost and Price.

This design didn’t come easy, nor overnight.  It came after months of learning and tweaking, until we had a huge breakthrough in about a week of time.  We felt exactly what Evans described in his “Refactoring Towards Deeper Insight” parts of his book – that refactoring a domain model can be both small and incremental, or a sea change.  These sea change refactorings can only come after a long and deep knowledge of the big picture of the domain, as our earlier efforts were fairly close to clutching at straws, in the dark.

Power of composition

If I could point to one strength in our design, it was our choice of composition over inheritance.  Because we allowed individual pieces to vary independently from each other, we were far more prepared for dealing with complexity.  When we first broke into our PricingStrategy idea, we only had a couple of pricing strategies.  As we took on more and more of the underlying legacy system’s design, we were able to handle that new complexity through simple, independent changes.

This design wasn’t accidental, nor was it perfect the first time around.  But if we stuck strictly to the patterns listed in DDD without using the full breadth of OO knowledge and patterns at our hands, we wouldn’t have nearly as elegant of a design as where we arrived.

We could have stuffed all of these calculations into Services or Entities, but that wouldn’t have fit into a model we could communicate about with our domain experts.  Don’t artificially constrain yourself to the five or six patterns listed in the DDD book, the OO world is too huge to not take advantage of.

AutoMapper mailing list created