We have a software product that was written by a single programmer who is no longer with the company, and have we even have a few customers running the software. I was asked to do a code review and report on the feasibility of adding a new feature to the product. The code (written in VB.NET) was an awful mess, and my boss tells me he has been noticing similarly poor code in other projects from this former developer. I know it's easy to nitpick someone else's code, but I'd say it's pretty bad. Some choice bits from my code review:
- Abuse of threads:
QueueUserWorkItemshows up a lot and is definitely over-used, and Thread-pool delegates have uninformative names such asPoolStartandPoolStart2. - Magic numbers and magic stings...everywhere. Almost as if someone didn't know that
ConstandEnumexist. - Global variables: Most variables are declared global and may or may not be initialized depending on what code paths get followed and what order things occur in (all the threads running makes this worse)
- Compiler warnings: the main solution file contains 500+ warnings.
- Duplicate classes as well as seemingly half-finished classes.
- Duplicating our existing core libraries (data access layer, error logging,etc.) with subtle modifications (such as changing parameter data types to suit his preferences) because he wanted a "static" unchanging copy of the core code.
- Despite duplicating our data access layer code, failed to use it when he actually needed access to the database from his code. Instead, he created a new
OleDbReaderobject every time he needed to query the database.
I'm just scratching the surface here, but my question is simple enough: Would it make more sense to take the time to refactor the existing codebase, focusing on one issue at a time, or would you consider rewriting the entire thing from scratch?
EDIT: To clarify a bit, we do have the original requirements for the project, which is why starting over could be an option. Another way to phrase my question is: Can code ever reach a point where the cost of maintaining it would become greater than the cost of dumping it and starting over?
