· 3 min read

AOP, the evolution of OOP

Over the past couple of years I’ve been teaching courses on Aspect-oriented Programming (AOP) and find that developers have a hard time grasping the concepts (as did I when I first encountered it). If we use an analogy, AOP is to Object-oriented Programming (OOP) what OOP was to top-down programming. OOP took the concepts of modularity and encapsulation to new levels, but it’s clear that OOP alone will not be able to tackle the complex software systems that we’re trying manage today. For sure OOP helps build complex systems but maintaining, ehnancing, and managing them is another matter. One of the main problems that AOP hopes to solve is separation of concerns — that is the idea that even across objects there is a set of functionality that is shared but can not be inherited or delegated easily. AOP and OOP are not competitors (just like OOP was not a competitor to top-down programming). Just as OOP extended functions into methods and structures into objects, AOP extends OOP concepts to help manage concerns.

For example, the Object.toString() method, which is built into the base Object class is a good concern — one that says that all objects should be able to represent themselves as strings. Just like to toString() method at the micro level, at the macro level all applications are composed of multiple systemic and functional concerns. A system concern may comprise security, logging, auditing, and other generic concerns while a functional concern is specific to an application’s domain such as record management or other specific features. As OOP programmers we think that by properly designing our objects we’ll be able to appropriate model the application with clean separation of system and functional concerns. However, regardless of the best-of-breed programming methodologies you use, you will eventually end up with systemic and functional concerns being mangled together because OOP techniques do not allow anything more than delegation or inheritance to help with modularity and encapsulation.

The idea that all objects, regardless of what they are, should have the ability to secure themselves, log their actions, and be auditable seems straightforward. We should be able to put all that functionality into a base class and extend it right? Wrong. Because good OOP practice means that delegation should be chosen over inheritance to reduce coupling, we end up with lots of duplicated code. What is needed is an automated way of delegating based on rules. That’s exactly what AOP provides: event-based triggers on any code that we write where the rules for the triggers that delegate the work are done outside of the code being affected. Sound intriguing? Give AOP a try: sooner or later if you don’t know AOP you’ll end up being left behind.

    Share:
    Back to Blog