What is your decision procedure for "roll my own" versus "introduce a new dependency"?
The value of code reuse is widely touted, and for good reason, but it does not come for free. Joel's In Defense of Not-Invented-Here Syndrome makes the point that you don't always want to be at the mercy of outside entities.
I work in big science. Most projects have a few custom software tools (DAQ systems, analyzers, simulations, etc.) which are generally built using pretty well organized process and decent coding practices. They also come with a raft of little tools, which are often banged up by one scientist, and put into productions with little of no processes at all.
Each of these tools need to do some of:
- Process options
- Read configuration files
- Extract metadata from other files
- ...etc...etc...etc...
This is a diverse and non-standardized hardware and software environment, and a coder can't make many assumptions about what tool/libraries/compilers a colleague will have (much less what version of each), so adding a dependency is fraught with danger and portability costs.
But rolling your own takes time, risks introducing untold numbers of bugs, and guarantees no one else will understand the tool.
So what goes into this decision? When do you drag in third party utilities for handling configuration files, and other mundane task, and when do you write a little something of your own?
(Edit: the initial version of the title seems to have led several helpful people astray. My fault. I thought I was being clever.
The question I meant to ask is when to roll my own for any of those basics task that programs do over and over again, when I have a very diverse set of environments I may need to export the code to.)
