Content deleted Content added
Removed redlink writing inscription (just what on earth is it anyway?! Software isn't on stone tablets...). Apparently added in 2013 by an IP user, article never created nor phrase explained AFAICT. |
→External links: + academic source |
||
(12 intermediate revisions by 10 users not shown) | |||
Line 1:
{{Short description|Concept in programming}}
{{About-distinguish|code rewrites, where it is expected that the behavior will change|Code refactoring}}
A '''rewrite''' in [[computer programming]] is the act or result of re-implementing a large portion of existing functionality without re-use of its [[source code]]. When the rewrite
==Motivations==
Line 11 ⟶ 12:
*the programmer finds it difficult to understand its source code
*developers learn new techniques or wish to do a big feature overhaul which requires much change
*the [[programming language]] of the source code has to be changed
==Risks==
Several software engineers, such as [[Joel Spolsky]]<ref name=":0">{{cite web|last1=Spolsky|first1=Joel|title=Things You Should Never Do, Part I|url=http://www.joelonsoftware.com/articles/fog0000000069.html|website=Joel on Software|date=6 April 2000 |accessdate=2015-01-23}}</ref> have warned against total rewrites, especially under schedule constraints or competitive pressures. 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 or [[Software regression|regressions]] of previously fixed bugs.<ref>{{cite web | url=http://www.ronkes.nl/blog/?2005-04-15-neverrewritecode | title=Never Rewrite Code From Scratch | first=Joost | last=Ronkes Agerbeek | date=April 15, 2005 | accessdate=2008-09-11 | url-status=dead | archiveurl=https://web.archive.org/web/20081010211819/http://www.ronkes.nl/blog/?2005-04-15-neverrewritecode | archivedate=October 10, 2008 }}</ref><ref name="
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.<ref>{{cite web | url=http://www.perlmonks.org/?node_id=115511 | title=Rewriting, from scratch, a huge code base | first=Ben | last=Tilly | date=September 29, 2001 | accessdate=2008-09-11}}</ref>
==Examples==
[[Netscape]]'s project to improve HTML layout in [[Netscape Navigator|Navigator]] 4 has been cited as an example of a failed rewrite. The new layout engine ([[Gecko (layout engine)|Gecko]]) had developed independently
==See also==▼
* [[Code refactoring]]▼
* [[Open source software development]]▼
* [[Technical debt]]▼
* [[Development hell]]▼
* [[Porting]]▼
* [[Game engine recreation]]▼
Some projects mentioning major rewrites in their history:
Line 36 ⟶ 28:
* [[BIND]] (1)
* [[Freenet]] (1)
* [[GNU GRUB|GRUB]] (1)
* [[Majordomo (software)|Majordomo]] (1)
Line 51 ⟶ 42:
* [[Zope]] (1)
{{colend}}
== Techniques ==
* [[Strangler fig pattern]]
▲==See also==
▲* [[Code refactoring]]
▲* [[Open source software development]]
▲* [[Technical debt]]
▲* [[Development hell]]
▲* [[Porting]]
▲* [[Game engine recreation]]
* [[Reverse engineering]]
==References==
Line 56 ⟶ 59:
==External links==
* {{Cite journal |last=Sneed |first=Harry |last2=Verhoef |first2=Chris |date=2019-09-01 |title=Re-implementing a legacy system |url=https://www.sciencedirect.com/science/article/pii/S0164121219301050 |journal=Journal of Systems and Software |volume=155 |pages=162–184 |doi=10.1016/j.jss.2019.05.012 |issn=0164-1212}}
* [http://www.c2.com/cgi/wiki?RewriteCodeFromScratch RewriteCodeFromScratch at C2 Wiki]
* [http://www.joelonsoftware.com/articles/fog0000000069.html Things You Should Never Do, Part I] by [[Joel Spolsky]]
[[Category:Computer programming]]
|