Darcs

From Wikipedia, the free encyclopedia
Darcs
Developer(s) Eric Kow (and others)
Initial release March 3, 2003 (2003-03-03)[1]
Stable release 2.8.4 / February 7, 2013 (2013-02-07)
Written in Haskell
Operating system Unix, GNU/Linux, BSD, Apple Mac OS X, MS Windows
Type Revision control
License GNU GPL
Website darcs.net

Darcs is a distributed revision control system created by David Roundy. Key features include the ability to choose which changes to accept from other repositories, interaction with either other local (on-disk) repositories or remote repositories via SSH, HTTP, or email, and an unusually interactive interface. The developers also emphasize the use of advanced software tools for verifying correctness: the expressive type system of the functional programming language Haskell enforces some properties, and randomized testing via QuickCheck verifies many others.[2] The name is a recursive acronym for Darcs Advanced Revision Control System.[3]

Model

Darcs treats patches as first-class citizens. For the user, a repository can be seen as a set of patches, where each patch is not necessarily ordered with respect to other patches i.e. the set of patches is only a partially ordered set. In many cases patches can be independently transmitted between various repositories.

Many branching, merging and cherry-picking operations that would require additional commands with snapshot-based systems like Git or Mercurial, can be directly done with Darcs with the usual ‘pull’ and ‘push’ commands. In terms of user interface, this means that Darcs has fewer commands. Also these commands are more interactive since one can choose more precisely which patches they want to exchange with remote repositories.

On the filesystem, patches of a repository are linearly ordered. Darcs automatically calculates whether patches can be reordered (an operation called commutation), and how to do it. These calculations implement a so-called "patch theory".

A Darcs patch can contain changes of the following kinds:

  • line changes
  • file and directory creation and deletion
  • file and directory moving
  • word substitution (typically used in code refactoring, for instance rename all occurrences of ‘foo’ to ‘bar’ in a given file)

The notion of dependency between patches is defined syntactically. Intuitively, a patch B depends on another patch A if A provides the content that B modifies. This means that patches that modify different parts of the code are considered, by default, independent. To address cases when this is not desirable, Darcs enables the user to specify explicit dependencies between patches.

History

Darcs evolved out of David Roundy's efforts to design a new patch format for GNU arch in June 2002. These discussions didn't lead to any code being committed to Arch, but did lead to his theory of patches. After writing an initial version of Darcs in C++, the Haskell version was written in Autumn 2002 and released to the public in April 2003. Darcs 2.0 was released in April 2008 and introduced a more robust repository format and a new patch semantics called darcs-2, aimed at minimizing exponential merge issues.[4] The current line of development contains many optimizations and new features, maintaining the same repository format.

Shortcomings

Darcs has been criticized on the grounds of performance.[5][6] The worst of these issues was the Darcs 1.x merge algorithm that, in the worst case, could do exponential work to merge some conflicts. Although the issue was not completely corrected in Darcs 2,[7] exponential merges have been minimized. Bugs still remain in which the merging of recursive conflicts fails.[8]

See also

References

  1. "Changelog", Darcs 
  2. Roundy 2005, p. 2: ‘One of the problems I had with the initial C++ darcs was that I had no unit testing code. Within two weeks of the first darcs record, I started using QuickCheck to test the patch functions, and the same day I fixed a bug that was discovered by QuickCheck. QuickCheck makes it very easy to define properties that functions must have, which are then tested with randomly generated data.’
  3. Roundy, David (2008-10-21), "changes the acronym's meaning", Darcs (Commit), Joyful .
  4. "Two", Darcs .
  5. Marlow, Simon (March 7, 2007), "Current status of Darcs", Darcs users (mailing list), OSUOSL .
  6. Fendt, Robert (January 9, 2009), "DVCS Round-Up: One System to Rule Them All?", Developer Network 1, Linux Foundation .
  7. "ConflictsFAQ", Wiki, Darcs .
  8. "Issue 1520 Irrefutable pattern failed for pattern Data.Maybe.Just a2", Bug Tracker, Darcs .
  • Roundy, David (2005), Proceedings of the 2005 ACM SIGPLAN workshop on Haskell, Tallinn, Estonia, pp. 1–4, doi:10.1145/1088348.1088349, ISBN 1-59593-071-X 

External links

This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.