Incomputer programming,rewrite is the act of authoring newsource code to replace an existingcodebase from scratch (atotal rewrite) or to significantly modify an existing codebase such that the resulting code maintains essential aspects of the original. The essential aspects to be maintained for a rewrite effort may differ but often include behavior, performance and interface. The result of the effort is also called arewrite.
Common motivations for rewriting software include:
Some warn against a total rewrite, especially under schedule constraints or competitive pressures.[1] While developers may initially welcome the chance to correct historical design mistakes, a rewrite also discards those parts of the design that work as required. A rewrite commits the development team to deliver not just new features, but all those that exist in the previous code, while potentially introducing new bugs orregressions of previously fixed bugs.[2][1] A rewrite also interferes with the tracking of unfixed bugs in the old version.[3]
The incremental rewrite is an alternative approach, in which developers gradually replace the existing code with calls into a new implementation, expanding that implementation until it fully replaces the old one. This approach avoids a broad loss of functionality during the rewrite.Cleanroom software engineering is another approach, which requires the team to work from an exhaustive written specification of the software's functionality, without access to its code.[4]
Netscape's project to improve HTML layout inNavigator 4 has been cited as an example of a failed rewrite. The new layout engine (Gecko) had developed independently of Navigator and did not integrate readily with Navigator's code. Hence, Navigator itself was rewritten around the new engine, breaking many existing features and delaying release by several months. Meanwhile,Microsoft focused on incremental improvements toInternet Explorer and did not face the same obstacles.[1][5]