vote up 2 vote down star

I'm working on a 10 page web site with a database back-end. There are 500+ objects in use, trying to implement the MVP pattern in ASP.Net. I'm tracing the code-execution from a single-page, my finger has been on F-11 in Visual Studio for about 40 minutes, there seems to be no end, possibly 1000+ method calls for one web page! If it was just 50 objects that would be one thing, however, code execution snakes through all these objects just like millions of ants frantically woring in their giant dirt mound house, riddled with object tunnels. Hence, a new anti-pattern is born : AntFarm.

AntFarm is also known as "OO-Madnes", "OO-Fever", OO-ADD, or simply design-pattern junkie.

This is not the first time I've seen this, nor my associates at other companies. It seems that this style is being actively propogated, or in any case is a misunderstanding of the numerous OO/DP gospels going around...

I'd like to introduce an anti-pattern to the anti-pattern: GST or "Get Stuff Done" AKA "Get Sh** done" AKA GRD (GetRDone). This pattern focused on just what it says, getting stuff done, in a simple way. I may try to outline it more in a later post, or please share your ideas on this antidote pattern.

Anyway, I'm in the midst of a great example of AntFarm anti-pattern as I write (as a bonus, there is no documentation or comments). Please share you thoughts on how this anti-pattern has become so prevelant, how we can avoid it, and how can one undo or deal with this pattern in a live system one must work with!

flag

78% accept rate
Are the objects unit-tested? – Greg D Jul 22 at 19:33
good question, I think the dev team believed they were doing some unit testing...like many other patterns they implemented, they would start with an idea, and then in the heat of battle it would sometimes start to fall apart. With this complicated an architecture though, I'm not sure that unnit-testing by itself would help that much. – LuftMensch Jul 23 at 16:16

4 Answers

vote up 6 vote down check

I think that Parnas pretty much nailed it in On the Criteria to be used in Decomposing Systems into Modules. Each module should hide a design decision, one that may change in the future. In general, a module with nothing to hide is usually just overhead. He wasn't talking about classes exactly, but I think the reasoning still applies.

link|flag
vote up 1 vote down

Thanks Glomek the article is for an interesting problem-space, going to the core of what is OO, i.e. how to design your objects...for success or failure, thanks for the link.

Oh yeah, the anti-pattern design could be called "Ant Hill", that's a clearer description I think. I do believe it is quite prevelant right now, and seems to be growing...I'm still wondering how we can get away from it in general, and write clearer, simpler code that gets the job done with just the minimal complexity needed.

link|flag
vote up 2 vote down

Hi,

If is is indeed due to over design (and it sounds like it) then here are some synonyms for you:

Gas Factory
Rube Goldberg machine
Heath Robinson contraption

But my personal name for this "trying too F#$%3n hard". My condolences.

Cheers Adrian

link|flag
that's a great way of putting it (the latter description)! – LuftMensch Jul 13 at 18:32
vote up 1 vote down

Many files where one would do. Nasty. 500 objects for 10 webpages seems a crazy ratio. Have you considered running code analysis on the solution? Might give you some interesting stats to fight back with.

Also I'd call the anti-anti-pattern KISS.

link|flag

Your Answer

Get an OpenID
or

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