Programming by Coincidence

Do you ever watch old black-and-white war movies? The weary soldier advances cautiously out of the brush. There’s a clearing ahead: are there any land mines, or is it safe to cross? There aren’t any indications that it’s a minefield – no signs, barbed wire, or craters. The soldier pokes the ground ahead of him with his bayonet and winces, expecting an explosion. There isn’t one. So he proceeds painstakingly through the field for a while, prodding and poking as he goes. Eventually, convinced that the field is safe, he straightens up and marches proudly forward, only to be blown to pieces.

The soldier’s initial probes for mines revealed nothing, but this was merely lucky. He was led to a false conclusion – with disastrous results.

As developers, we also work in minefields. There are hundreds of traps just waiting to catch us each day. Remembering the soldier’s tale, we should be wary of drawing false conclusions. We should avoid programming by coincidence – relying on luck and accidental successes – in favor of programming deliberately.

How to Program by Coincidence

Suppose Fred is given a programming assignment. Fred types in some code, tries it, and it seems to work. Fred types in some more code, tries it, and it still seems to work. After several weeks of coding this way, the program suddenly stops working, and after hours of trying to fix it, he still doesn’t know why. Fred may well spend a significant amount of time chasing this piece of code around without ever being able to fix it. No matter what he does, it just doesn’t ever seem to work right.

Fred doesn’t know why the code is failing because he didn’t know why it worked in the first place. It seemed to work, given the limited “testing” that Fred did, but that was just a coincidence. Buoyed by false confidence, Fred charged ahead into oblivion. Now, most intelligent people may know someone like Fred, but we know better. We don’t rely on coincidences – do we?

Sometimes we might. Sometimes it can be pretty easy to confuse a happy coincidence with a purposeful plan. Let’s look at a few examples.

Accidents of Implementation

Accidents of implementation are things that happen simply because that’s the way the code is currently written. You end up relying on undocumented error or boundary conditions.

Suppose you call a routine with bad data. The routine responds in a particular way, and you code based on that response. But the author didn’t intend for the routine to work that way – it was never even considered. When the routine gets “fixed,” your code may break. In the most extreme case, the routine you called may not even be designed to do what you want, but it seems to work okay. Calling things in the wrong order, or in the wrong context, is a related problem.

paint(g);
invalidate();
validate();
revalidate();
repaint();
paintImmediately(r);

Here it looks like Fred is desperately trying to get something out on the screen. But these routines were never designed to be called this way; although they seem to work, that’s really just a coincidence.

To add insult to injury, when the component finally does get drawn, Fred won’t try to go back and take out the spurious calls. “It works now, better leave well enough alone….”

It’s easy to be fooled by this line of thought. Why should you take the risk of messing with something that’s working? Well, we can think of several reasons:

  • It may not really be working—it might just look like it is.
  • The boundary condition you rely on may be just an accident. In different circumstances (a different screen resolution, perhaps), it might behave differently.
  • Undocumented behavior may change with the next release of the library.
  • Additional and unnecessary calls make your code slower.
  • Additional calls also increase the risk of introducing new bugs of their own.

For code you write that others will call, the basic principles of good modularization and of hiding implementation behind small, well-documented interfaces can all help. A well-specified contract (Design by Contract) can help eliminate misunderstandings. For routines you call, rely only on documented behavior. If you can’t, for whatever reason, then document your assumption well.

Implicit Assumptions

Coincidences can mislead at all levels – from generating requirements through to testing. Testing is particularly fraught with false causalities and coincidental outcomes. It’s easy to assume that X causes Y, but as we said in Debugging: don’t assume it, prove it.

At all levels, people operate with many assumptions in mind – but these assumptions are rarely documented and are often in conflict between different developers. Assumptions that aren’t based on well-established facts are the bane of all projects.

Don’t Program by Coincidence!

Drop us an email at [email protected] for best practices if your team is suffering from ‘programming by coincidence’.

Source: The pragmatic programmer

Stavros Zavrakas

Since a very young age, Stavros has been passionate about the power of technology which pushed him to study Computer Science at the University of Crete. Throughout his career, he worked as a full-stack software engineer and lead developer and acted as a mentor tackling challenging IT problems of various industries - from healthcare to publishing.

ORTHOGONALITYHeadquarters
Orthogonality is based in UK and Greece.
GET IN TOUCHOrthogonality's Social links
Join our community and start your journey!
ORTHOGONALITYHeadquarters
Orthogonality is based in UK and Greece.
GET IN TOUCHSocial links
Join our community and start your journey!

© 2022 Orthogonality Ltd // UK (Companies House) Company Number: 11115046

© 2022 Orthogonality Hellas Single Member Private Company // GR (GEMI) Company Number: 165193340000

© 2022 Orthogonality Ltd // UK (Companies House) Company Number: 11115046

© 2022 Orthogonality Hellas Single Member Private Company // GR (GEMI) Company Number: 165193340000