Wednesday, October 15, 2008

Chickens and Eggs - Methodology and Tools

Which came first?  Object Oriented Methodology or Object Oriented Languages?

From where I was standing at the time I'd have to say Object Oriented Methodology.  Our practical experience with software led us to value encapsulation, inheritance and polymorphism - but we didn't have to tools to enforce those concepts in our code.  End result: We knew how to write good code but it was awfully hard.  We had to hand-craft coding conventions that Object Oriented Languages gave us for free.

Object Oriented Languages led to a Renaissance in programming... The tools codified the methodology - leading to unquestioned validation of the methodology - leading to wide adoption of the methodology.  Said another way: Most programmers began to think in terms of Objects.

Methodology by itself probably would not have led most programmers to think in terms of Objects.  Languages by themselves probably would not have led most programmers to think in terms of Objects - If you don't believe me go back and look at most of the C++ code that was written in the early 90s (most programmers continued thinkin in C for several years).

Object Oriented Design and Object Oriented Languages have been a huge factor in my programming career - but they aren't enough.  Objects are just a subset of what I need to solve the problems that I have been asked to solve.  I deal with Processes and I deal with Services.

Processes and Services are hand in glove - Processes Orchestrate and Choreograph Services - so any good Process Tool has got to also be a good Service Tool.

There are some really good Process and Service Tools out there - but they're mostly proprietary (expensive).  Those of use who are fortunate enough to use them have really been able to immerse ourselves in the methodologies - We think in Processes and Services.

Most of the widely available Process and Service Tools feel a lot like C++ to me... They're  Object Oriented environments that have "just enough" Process and Service tacked on to be useful - Many folks who use these tools still mostly think in Objects.

It's hard for me to convey exactly what I am talking about - unless you yourself think in Processes and Services you probably won't grok the nuances that make them powerful - but here's a stab at something that you might be familiar with.

The Spring Framework has a very good component (Spring Web Flow) for controlling the flow between web pages that are presented to a user.  If you're a Process guy like me, this is a wonderful little subset of what's available via BPMN.  You are essentially modelling a Process with a single participant as they navigate through a series of screens.

Unfortunately, the IDEs that support Spring Web Flow pretty much shuffle it off to the side.  They encourage good old OOD with this funky little XML thingy that you use to govern page flow.

A Process Oriented IDE would turn this paradigm on its head - When you started a new project you would begin with the Web Flow.  Your Pages would begin life as stubs with just enough functionality to set the data the Flow Controller needs to get to the next Page.  Instead of a "folder tree view" of class hierarchies, you'd find the elements of your project by drilling down through the Flow diagram to the Pages and the underlying Services (objects) that support those Pages. 

What I've described is pretty much what you'll find in the top-tier BPM products... Use these tools and you'll quickly start thinking in Processes and Services.

Once again this reminds me of the early days of OO - Smalltalk was impractical for most of us, so we had to make due with C++.  The mainstream programming tools were still procedural (rather than object) in flavor... but in just a few years the critical mass of programmers started thinking in Objects.  The rest is history.

My guess is that Process Methodology and Tools are at about the same point where OO Methodology and Tools were in the early 90s... What do you think?



No comments:

Post a Comment