Skip to main content

Making your domain less mutable

This happens regularly to me (and from my anecdotal investigation everyone involved in large / old projects). We need a new piece of functionality. I write it, it's beautiful and I win the internet. I have estimated 8 days (or 22.23 lol-points depending on how you live) and it's only taken 4 days.

Ah, but then a very small; mostly ignored and very unimportant detail rears it's cruel head. You need to make it work with the code that exists already. This is normally in the form of saving to some pre-existing entities. Oh dear. You save everything through the various management / service classes that exist already and nothing works. So begins the next couple of days of horror.

You find that you didn't set the work = true. Most of my woes in this area are caused by modifications at layer further down (or the stored procedure it finally ends up in) changing the object that I was trying to save or not saving part of the object because of some rule.

So many errors are caused by objects being used and abused and then changed or properties being altered somewhere by someone you weren't expecting. I have a couple of tips to help try and mitigate these problems. Of course, as Devs this shouldn't happen, you should test everything, other people should test everything, it should pass code review and so on and so forth. However that's all well and good but you aren't in control of the future. You don't know what the level of skill of the devs who pick up your code base in the future will have and you don't know what procedures will be added / removed.

Keep classes sealed!

Don't let your class be abused by some future fiend. Unless you are writing something specifically as a base class, the likelihood of it needing to be inherited from is slim. More likely is that someone is trying to do some good old fashioned lazy code-reuse by inheriting your lovely class instead of refactoring the functionality. Of course if a genuine reason crops up the future for the inheritence.... er, just change it! But let the need drive what you do.

Make constructors internal

Stop your object being created in the wrong assembly by making the constructor internal. This way, you can retrieve the object from the repository but you can't create a random new object for who knows what. You might not always need to do this, but I like to allow a command object or other method of instruction to create an object, this keeps the knowledge of how the object is created and what business rules need to be applied out of the calling assembly.

Control how your properties are set

Make properties private set or use public readonly fields that are set using the constructor. If you can at all, try to make changing an object once it exists, as difficult as possible unless your intention is for the property to change for a specific reason. The reason I love F# is that you have to specifically call a value mutable if you need it to change and it's discouraged.

Use an interface to control mutating an object

I stopped using this a couple of years ago as it seemed overkill but then recently we ran into problems of abuse again and although you can help people when you work somewhere and you can leave documentation and coding conventions you need to think about your legacy. Explicitly making the object be cast using the interface (object as IEditableObject) means you can control how the object is updated. If you make the interface internal to the correct assembly too you can stop people just getting an object out of the database, saving it and bypassing any logic that should have been applied.

From the above, if we now try to use some of the functionality from a calling assembly (for example the website or application assembly). We are very limited to how we can interact with the object. In this case, we are limited to pulling objects out of the repository as readonly objects and we have to use a command object if we want something to happen. Obviously the command object very well could be a "service" or whatever method you fancy using.

Comments

Popular posts from this blog

IIS Administration using Microsoft.Web.Administration using F#

A friend had mentioned his joy at using Powershell. I guess this is pretty cool and I don't mind Powershell. I sort of missed the boat a little with it because I haven't done any Windows Administration since I used to look after Windows Server 2000 machines (and possibly a couple of 2003). At that time I had a different arsenal to cause untold woe on my fellow colleagues....VBSCRIPT!!!! Boy could I cause trouble with that. With a combination of that, VBA and SQL I used to love creating spider webs of pure madness, once written the apps were tied together so precariously; one false move and the entire thing would explode.... anyway that's a different story. Back to the Powershell. He was using it to automate IIS (or else I heard what I wanted to so I could try and push F# onto him, who knows?). I have heard various stories of extremely large platform automation scripts being written recently (for example  .net rocks interview with Steve Evans ) and whilst they seem to be g

My home office upgrade wish list.

My home office is almost due an upgrade. I have been holding off until my youngest daughter is out of her cot as then we can finally dispatch the enormous monstrosity of a cot out from the kids bedroom and the drawers that are in my office can be banished giving me better access to my wonderful whiteboard. My other improvements will be purchasing a new, larger monitor. I currently work from a single 22ich Samsung which just doesn't cut it anymore, I did have two at some point but I can't recall what I did with it. I really enjoy using a touch screen so I think I will go for one of these 27inch Hannspree models that I have used before. I put a lot of hours in at home and whilst I have a reasonable chair I still tend to suffer with some back problems, so my next port of call will be to get a Varidesk for home. It works an absolute treat at work and just lets me switch stuff up when I feel like it. they take a reasonable amount of desk space up but I tend to leave my desk fairly