vote up 0 vote down star
1

What is the worst case of pathologically awful coupling between code modules that you've encountered?

My bid - from this morning's build failures in my (private) build of the product I work on:

I broke the build by removing unused functions from a library. (Library names changed to conceal the guilty - and its closed source.)

Scenario, in outline:

  • There are two low-level libraries used by most of the code in the product. Let's call them libbase.a and libutil.a.
  • Some of the functions in libbase.a use some of the functions in libutil.a.
  • Some of the functions in libutil.a use some of the functions in libbase.a.
  • However, the link order libbase.a libutil.a worked (most of the time).
  • Code analysis found some functions in libbase.a(basefile.o) that were never called.
  • Code analysis found some other functions in libbase.a(basefile.o) that were only called by unused functions in libbase.a(extrafile.o).
  • There was no change to the code in libutil.a - just in libbase.a
  • Unfortunately, after removing the dead code, some of the functions that used to be pulled in when libbase.a was loaded were no longer pulled in when the dead functions were removed.
  • So, there were unresolved symbols for some (but not all) programs that could be resolved by changing the link lines to list libbase.a libutil.a libbase.a!

That is, although the dead functions were never called, they provided linkage between two object files within libbase.a that then ensured references in libutil.a were satisfied before libutil.a was loaded. Removing the dead functions removed the linkage.

Aaaaaaarrrrrgggghhhh!!!

That's a first for me. It could be said to be the most indirect form of coupling between modules, and a pathologically awful coupling - connection by otherwise uncalled functions.

Long term, I think the solution is to combine the libraries since there are so many interdependencies. In the interim, back to hacking makefiles.

[Shared libraries are not considered an option - because of problems related to root privileged programs (so LD_LIBRARY_PATH doesn't work), indeterminate install path (so hard-coded install paths are not an option), multiple concurrent installs of different versions (so using /etc/ld.so.conf or relatives is not an option), and the code is complex enough that dynamic loading would be extremely difficult.]

flag

Given that there is no true answer to this question, this should be a community wiki. – ryeguy Feb 17 at 16:30
Strange that someone with such a high reputation would post something like this... – Juan Manuel Feb 17 at 16:31
@ryeguy, why does everyone assume CW == Post_Anything? – Juan Manuel Feb 17 at 16:31
I'd say because there's dozens of CWs kind of like this in StackOverflow, so there's plenty of precedent. It does need to be a CW, though - don't give massive rep to the guy with the best horror story, if nothing else. – David Thornley Feb 17 at 17:03
@Juan - it's like what david said. There is plenty of this garbage here on SO. I personally wouldn't want to see it, but it's here in CW form. – ryeguy Feb 17 at 17:09
show 2 more comments

closed as not a real question by Shog9, AnthonyWJones, Juan Manuel, toolkit Feb 17 at 16:30

Browse other questions tagged or ask your own question.