Home
Theory of patches
Contents
1. general case of a merger of mergers of mergers This unwind procedure is rather complicated but absolutely critical to the merger code as without it we wouldn t even be able to undo the effects of the patches involved in the merger since we wouldn t know what patches were all involved in it Basically unwind takes a merger such as M M A B M A M C D From which it recreates a merge history C A Merge 4 Theory of patches M M A B M A M C D For the curious yes I can easily unwind this merger in my head and on paper can unwind insanely more complex mergers that s what comes of working for a few months on an algorithm Let s start with a simple unwinding The merger M A B simply means that two patches A and B conflicted and of the two of them A is first in the history The last two patches in the unwinding of any merger are always just this easy So this unwinds to A M A B What about a merger of mergers How about M A M C D In this case we know the two most recent patches are A M A M C D But obviously the unwinding isn t complete since we don t yet see where C and D came from In this case we take the unwinding of M C D and drop its latest patch which is M C D itself and place that at the beginning of our patch train C A M A M C D As we lookatM M A B M A M C D we consider the unwindings of each of its subpatches C A A M A B M A M C D As we did with M A M C
2. this commutation fails the patches conflict Moreover one must check that the merged result actually commutes with mm as the theorem applies only when both commutations are successful Of course there are patches that actually conflict meaning a merge where the two patches truly cannot both be applied e g trying to create a file and a directory with the same name We deal with this case by creating a special kind of patch to support the merge which we will call a merger Basically a merger is a patch that contains the two patches that conflicted and instructs darcs basically to resolve the conflict By construction a merger will satisfy the commutation property see Definition L that characterizes all merges Moreover the merger s properties are what makes the order of merges unimportant which is a rather critical property for darcs as a whole The job of a merger is basically to undo the two conflicting patches and then apply some sort of a resolution of the two instead In the case of two conflicting hunks this will look much like what CVS does where it inserts both versions into the file In general of course the two conflicting patches may both be mergers themselves in which case the situation is considerably more complicated Much of the merger code depends on a routine which recreates from a single merger the entire sequence of patches which led up to that merger this is of course assuming that this is the complicated
3. D we ll drop the first patch on the right and insert the first patch on the left That moves us up to the two A s Since these agree we can use just one of them they should agree That leaves us with the C which goes first The catch is that things don t always turn out this easily There is no guarantee that the two A s would come out at the same time and if they didn t we d have to rearrange things until they did Or if there was no way to rearrange things so that they would agree we have to go on to plan B which I will explain now Consider the case of M M A B M C D Wecan easily unwind the two subpatches A E M A B M C D Now we need to reconcile the A and C How do we do this Well as usual the solution is to use the most wonderful Theorem Led In this case we have to use it in the reverse of how we used it when merging since we know that A and C could either one be the last patch applied before M A B or M C D So we can find C using Giving an unwinding of M M A B M C D There is a bit more complexity to the unwinding process mostly having to do with cases where you have deeper nesting but I think the general principles that are followed are pretty much included in the above discussion How merges are actually performed 5 Theory of patches Conflicts There are a couple of simple constraints on the routine which determines how to resolve two conflicting patches which is called glump Th
4. Theory of patches 27 N WE HAY ae SEP JAN JUI autaia T oe E on al mll 55 p 04 23 2007 2009 201 Jul 11 Next DarcsRepo format Up Darcs User Manual Previous Darcs commands Contents Subsections e Background e Introduction e Applying patches Hunk patches Token replace patches e Patch relationships e Commuting patches Composite patches Merge How merges are actually performed e Conflicts e Patch string formatting Merger patches Named patches Theory of patches Background I think a little background on the author is in order I am a physicist and think like a physicist The proofs and theorems given here are what I would call physicist proofs and theorems which is to say that while the proofs may not be rigorous they are practical and the theorems are intended to give physical insight It would be great to have a mathematician work on this to give patch theory better formalized foundations From the beginning of this theory which originated as the result of a series of email discussions with Tom Lord I have looked at patches as being analogous to the operators of quantum mechanics I include in this appendix footnotes explaining the theory of patches in terms of the theory of quantum mechanics I advise against taking this analogy too seriously although it could provide some insight into how a physicist might think about darcs Introduction A patch describes
5. Using this definition it is trivial to prove the following theorem relating to the inverse of a composition of two patches Patch relationships 2 Theory of patches Theorem 1 The inverse of the composition of two patches is Oe e _ Moreover it is possible to show that the right inverse of a patch is equal to its left inverse In this respect patches continue to be analogous to square matrices and indeed the proofs relating to these properties of the inverse are entirely analogous to the proofs in the case of matrix multiplication The compositions proofs can also readily be extended to the composition of more than two patches Commuting patches Composite patches Composite patches are made up of a series of patches intended to be applied sequentially They are represented by a list of patches with the first patch in the list being applied first The first way of only two to change the context of a patch is by commutation which is the process of changing the order of two sequential patches dik Definition 2 The commutation of patches and is represented by Here O n is intended to describe the same change as mala with the only difference being that O n is applied after rather than before The above definition is obviously rather vague the reason being that what is the same change has not been defined and we simply assume and hope that the code s view of what is the same change will match those of its hu
6. a change to the tree It could be either a primitive patch such as a file add remove a directory rename or a hunk replacement within a file or a composite patch describing many such changes Every patch type must satisfy the conditions described in this appendix The theory of patches is independent of the data which the patches manipulate which is what makes it both powerful and useful as it provides a framework upon which one can build a revision control system in a sane manner Although in a sense the defining property of any patch is that it can be applied to a certain tree and thus make a certain change this change does not wholly define the patch A patch is defined by a representation together with a set of rules for Introduction 1 Theory of patches how it behaves which it has in common with its patch type The representation of a patch defines what change that particular patch makes and must be defined in the context of a specific tree The theory of patches is a theory of the many ways one can change the representation of a patch to place it in the context of a different tree The patch itself is not changed since it describes a single change which must be the same regardless of its representation L So how does one define a tree or the context of a patch The simplest way to define a tree is as the result of a series of patches applied to the empty tree Thus the context of a patch consists of the set of patches that prec
7. ay be a patch which is much more complex than any we have yet considered4 How merges are actually performed The constraint that any two compatible patches patches which can successfully be applied to the same tree can be merged is actually quite difficult to apply The above merge constraints also imply that the result of a series of merges must be independent of the order of the merges So I m putting a whole section here for the interested to see what algorithms I use to actually perform the merges as this is pretty close to being the most difficult part of the code The first case is that in which the two merges don t actually conflict but don t trivially merge either e g hunk patches on the same file where the line number has to be shifted as they are merged This kind of merge can actually be very elegantly dealt with using only commutation and inversion There is a handy little theorem which is immensely useful when trying to merge two patches Theorem 2 if and only if provided both commutations succeed If either commutex fails this theorem does not apply This can easily be proven by multiplying both sides of the first commutation by on the left and by on the right Besides being used in merging this theorem is also useful in the recursive commutations of mergers From Theorem lal we CEI see that the merge of and is simply the commutation of 4 with making sure to do the commutation the right way Of course if
8. ede it Applying patches Hunk patches Hunks are an example of a complex filepatch A hunk is a set of lines of a text file to be replaced by a different set of lines Either of these sets may be empty which would mean a deletion or insertion of lines Token replace patches Although most filepatches will be hunks darcs is clever enough to support other types of changes as well A token replace patch replaces all instances of a given token with some other version A token here is defined by a regular expression which must be of the simple a z type indicating which characters are allowed in a token with all other characters acting as delimiters For example a C identifier would be a token with the flag A Za z_0 9 What makes the token replace patch special is the fact that a token replace can be merged with almost any ordinary hunk giving exactly what you would want For example you might want to change the patch type TokReplace to TokenReplace if you decided that saving two characters of space was stupid If you did this using hunks it would modify every line where TokReplace occurred and quite likely provoke a conflict with another patch modifying those lines On the other hand if you did this using a token replace patch the only change that it could conflict with would be if someone else had used the token TokenReplace in their patch rather than TokReplace and that actually would be a real conflict Patch relations
9. ese must be satisfied in order that the result of a series of merges is always independent of their order Firstly the output of glump cannot change when the order of the two conflicting patches is switched If it did then commuting the merger could change the resulting patch which would be bad Secondly the result of the merge of three or more conflicting patches cannot depend on the order in which the merges are performed The conflict resolution code glump begins by unravelling the merger into a set of sequences of patches Each sequence of patches corresponds to one non conflicted patch that got merged together with the others The result of the unravelling of a series of merges must obviously be independent of the order in which those merges are performed This unravelling code which uses the unwind code mentioned above uses probably the second most complicated algorithm Fortunately if we can successfully unravel the merger almost any function of the unravelled merger satisfies the two constraints mentioned above that the conflict resolution code must satisfy Patch string formatting Of course in order to store our patches in a file we ll have to save them as some sort of strings The convention is that each patch string will end with a newline but on parsing we skip any amount of whitespace between patches Merger patches Merge two patches The MERGERVERSION is included to allow some degree of backwards compatibility if the
10. hips The simplest relationship between two patches is that of sequential patches which means that the context of the second patch the one on the left consists of the first patch on the right plus the context of the first patch The composition of two patches which is also a patch refers to the patch which is formed by first applying one and then eu other The composition of two patches 3 mm and is represented as S where a Is to be applied first then pds a a There is one other very useful relationship that two patches can have which is to be parallel patches which means a the two patches have an identical context i e their representation applies to identical trees This is represented by ae course two patches may also have no simple relationship to one another In that case if you want to do something with them you ll have to manipulate them with respect to other patches until they are either in sequence or in parallel ites most fundamental and simple property of patches is that they must be invertible The inverse of a patch is described by In the darcs implementation the inverse is required to be computable from knowledge of the patch only without Pega of its context but that although convenient is not required by the theory of patches ie z o NN bi 147 i Definition 1 The inverse of patch is which is the simplest patch for which the composition makes no changes to the tree
11. man users The operator should be read as something like the operator in C indicating that the right hand side performs identical changes to the left hand side but the two patches are in reversed order When read in this manner it is clear that commutation must be a reversible process and indeed this means that commutation can fail and must fail in certain cases For example the creation and deletion of the same file cannot be commuted When two patches fail to commutex it is said that the second patch depends on the first meaning that it must have the first patch in its context remembering that the context of a patch is a set of patches which is how we represent a tree 4 Merge The second way one can change the context of a patch is by a merge operation A merge is an operation that takes two parallel patches and gives a pair of sequential patches The merge operation is represented by the arrow Definition 3 The result of a merge of two patches cokes and is one of two patches O n and Which satisfy the relationship Commuting patches 3 Theory of patches Note that the sequential patches resulting from a merge are required to commutex This is an important consideration as without it most of the manipulations we would like to perform would not be possible The other important fact is that a merge cannot fail Naively those two requirements seem contradictory In reality what it means is that the result of a merge m
12. merger algorithm needs to be changed merger MERGERVERSION lt first patch gt lt second patch gt Named patches Named patches are displayed as a patch id which is in square brackets followed by a patch Optionally after the patch id but before the patch itself can come a list of dependencies surrounded by angle brackets Each dependency consists of a patch id 2990 Next DarcsRepo format Up Darcs User Manual Previous Darcs commands Contents darcs unstable 2009 01 22 Patch string formatting 6
Download Pdf Manuals
Related Search
Related Contents
Catskill Craftsmen 2008 Instructions / Assembly MF627 Windows Dashboard B09 Upgrade User Guide Records Online User Manual GV-LPR System Installation Guide PDFファイル - 医薬品医療機器総合機構 Simpson Strong-Tie ITS1.81/14 Installation Guide 建築材料実験棟恒温恒湿装置外5件(10)保守点検・修理 L`aile, la cuisse, et bien plus SERVICE MANUAL - Wiki Karat DeLOCK Easy Transfer USB 2.0 Vista cable Copyright © All rights reserved.
Failed to retrieve file