vote up 7 vote down star
10

I just listened to a discussion about a project drifting away from the direction it's supposed to go. The problem was "bad software design".

Components are not designed to be re-used; the software is hard to maintain, test, extense, and scales poorly.

What did the programmers do wrong? Where/how to learn better techniques?

Of course, there are the GoF patterns... but that's not all, is it?

flag

24% accept rate

11 Answers

vote up 10 vote down

The quality of software design will improve with read world industry experience.

No university and college degree is a substitute for working in a real job developing real software.

Books such as Code Complete by Steve McConnell are also invaluable resources.

link|flag
1  
+1. Just to get this book recommendation up the list ;) – Eoin Campbell Nov 6 '08 at 10:38
+1 because I have to work with a guy who comes straight out of university! throw new RealityImpactException(); – Treb Nov 6 '08 at 11:16
+ 1 for the book and text – Gregor Nov 6 '08 at 12:02
I didn't think code complete was about design... – tim Nov 25 '08 at 23:00
While its main focus is about implementation, it has a whole chapter dedicated to design as well. – LeopardSkinPillBoxHat Dec 1 '08 at 3:59
vote up 7 vote down

No it's not. The next step is to learn when not to use patterns.

I saw to many overengineered pattern infected projects.

link|flag
You got my vote! I've got a feeling the book readers are often the dangerous one's as some of them will follow the book like a recipe. Developers that don't read will often produce simpler code. I'll take simple over fancy but complex. – Bjorn Reppen Nov 6 '08 at 11:15
vote up 3 vote down

Try reading Fowler's Patterns of Enterprise application Architecture, or any of the business objects material from Rocky Lhotka.

Both are great resources.

link|flag
vote up 3 vote down

I'd recommend the Principles of OOD :

Principles of class design

  • SRP The Single Responsibility Principle A class should have one, and only one, reason to change.

  • OCP The Open Closed Principle You should be able to extend a classes behavior, without modifying it.

  • LSP The Liskov Substitution Principle Derived classes must be substitutable for their base classes.

  • DIP The Dependency Inversion Principle Depend on abstractions, not on concretions.

  • ISP The Interface Segregation Principle Make fine grained interfaces that are client specific.

Principles about packages In this context a package is a binary deliverable like a .jar file, or a dll as opposed to a namespace like a java package or a C++ namespace.

  • REP The Release Reuse Equivalency Principle The granule of reuse is the granule of release.

  • CCP The Common Closure Principle Classes that change together are packaged together.

  • CRP The Common Reuse Principle Classes that are used together are packaged together.

The last three principles are about the couplings between packages, and talk about metrics that evaluate the package structure of a system.

  • ADP The Acyclic Dependencies Principle The dependency graph of packages must have no cycles.

  • SDP The Stable Dependencies Principle Depend in the direction of stability.

  • SAP The Stable Abstractions Principle Abstractness increases with stability.

link|flag
vote up 3 vote down

Try reading Eric Evans's Domain-Driven Design: Tackling Complexity in the Heart of Software along with Fowler's Patterns of Enterprise application Architecture

link|flag
vote up 2 vote down

If you're looking for some good reading material I'd definitely recommend Code Complete 2

Its not just code related but Project Life Cycle related. I found it invaluable.

link|flag
That is freaky! I said almost exactly the same thing as you (without reading your response) only 17 seconds after you posted. – LeopardSkinPillBoxHat Nov 6 '08 at 10:33
Great minds think alike :) But seriously, I still go back to that book and it has a permanent spot on my bookshelf. Every developer should read it at some point. – Eoin Campbell Nov 6 '08 at 10:37
I'm actually in the process of reading it now for the first time. Great stuff. – LeopardSkinPillBoxHat Nov 6 '08 at 10:42
vote up 2 vote down

If a key person is saying that the project is drifting away from its direction, then most probably there's a gap between design/development and basic requirements of the project.

Might be because of bad design as well, for that I'd agree with Eoin about Code Complete 2 and I'd also recommend Code Complete.

But to answer your question specifically, reading ONLY cannot help; it has to be a mixture of reading, working with good people and maybe have a review of your current project done by a senior programmer/designer from a different team.

Moving forward, you can have sessions with that person or a particular group on a regular basis (during tea breaks?) and keep visiting forums which discuss design/development/architecture e.g. theserverside.com is for Java. Not to mention that you have to keep experimenting with some stuff every now and then. Moreover, when you design a system, try to have a POC if it involves a new design or a particularly new technology to be used so that alignment of it can be done with the actual project requirements.

Usage of Patterns can follow after one has basic design concepts, because selection of right pattern in right place is more than a basic item.

link|flag
vote up 1 vote down

Doesn't sound like the programmers did much wrong. It sounds like their lacking in experience, and if they learn the lessons, they may (hopefully) do better next time.

Whoever built the team was wrong in not getting somebody on it with some experience.

The only way to improve is to read, try stuff, learn from mistakes, and get advice from people who have some of this experience already.

link|flag
vote up 1 vote down

Two things I find most useful to avoid project failures like this:

  1. As you mention, patterns. Get a good book on patterns for the target language. I quite like the Head First Patterns book which is Java focused. Just learning a few of these should improve the overall architecture, or at least give the architects some food for thought.

  2. Get an 'under the hood' book for the key architecture platforms. For example, I would recommend that anyone building a system that uses a non-trivial amount of Oracle database should read Tom Kyte's books on db design. Books like his cover common fundamental architectural errors; the sort you need to be aware of before you start drawing system diagrams.

link|flag
vote up 1 vote down

Components are not designed to be re-used; the software is hard to maintain, test, extense, and scales poorly.

It's really expensive to design software that can be reused, at least three times more expensive than the nominal case. My bet is that the project estimates and budget didn't reflect this, in which case it's not a failure by the developers. It's a failure by the project manager to understand the implications of designing and developing for software reuse.

  • "Hard to maintain" is far too fuzzy and covers a multitude of sins. What is the exact context in this project?
  • "Hard to test" is again far too fuzzy. Do they mean unit testin, integration testing, or user-acceptance testing?
  • "Scales poorly" is also rather fuzzy. Do they mean horizontally or vertically? Or something else?

So I think you should ask for much more detail, rather than let some random managers decide why the project drifted.

As for learning good design and architecture, that's hard. I think most of it comes from experience and learning from mistakes that you and others have made. After a few years, you develop a "taste" for what works and what doesn't.

link|flag
vote up 0 vote down

(It needs to do this) + (Make it do this) + (Now make it do this too) + (Urgent fix) + (Please can you make do this for us) = bad code

Good programmers can answer all these questions - but it does not make good software. The answer is to have strong leadership from management (i.e. requirements) and vision from software architects who can see beyond the immediate need.

Experienced architects/engineers have made all the mistakes before (unless you're..) and can try to avoid them (e.g. by insisting the use of JUnit, or that the business unit prioritizes it's requirements, by using or avoiding patterns as necessary, by choosing the correct tools at the start!). However, even when experienced you still end up working on projects where the mistakes have already been made. Much woe.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.