Mercurial > hgsubversion
annotate .hgtags @ 937:fb6f6b7fa5a5
editor: implement file batons
The concept of current.file is incorrect, svn_delta.h documents open
file lifetime as:
* 5. When the producer calls @c open_file or @c add_file, either:
*
* (a) The producer must follow with any changes to the file
* (@c change_file_prop and/or @c apply_textdelta, as applicable),
* followed by a @c close_file call, before issuing any other file
* or directory calls, or
*
* (b) The producer must follow with a @c change_file_prop call if
* it is applicable, before issuing any other file or directory
* calls; later, after all directory batons including the root
* have been closed, the producer must issue @c apply_textdelta
* and @c close_file calls.
So, an open file can be kept open until after the root directory is
closed and have deltas applied afterwards. In the meantime, other files
may have been opened and patched, overwriting the current.file variable.
This patch fixes it by introducing file batons bound to file paths, and
using them to deduce the correct target in apply_textdelta(). In theory,
open files could be put in a staging area until they are closed and
moved in the RevisionData. But the current code registers files copied
during a directory copy as open files and these will not receive a
close_file() event. This separation will be enforced later.
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Sun, 23 Sep 2012 19:52:48 +0200 |
parents | 78ffbe411695 |
children | 109c412ecf12 |
rev | line source |
---|---|
554
d2d5c09b33d0
Added tag 1.0 for changeset 97f2079e3778
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
1 97f2079e3778511944ffb6a662520580650a3993 1.0 |
564
7bd457ec4e5e
Added tag 1.0.1 for changeset 09c016174e33
Augie Fackler <durin42@gmail.com>
parents:
554
diff
changeset
|
2 09c016174e332eceda015d3f43d96d7e0228acf3 1.0.1 |
592
b4c3afc95420
Added tag 1.1 for changeset 4359ddd73b00
Augie Fackler <durin42@gmail.com>
parents:
564
diff
changeset
|
3 4359ddd73b009fbb356c52ea5d99cba25222ee7a 1.1 |
627
faba8e636960
Added tag 1.1.1 for changeset 8e621dbb82d4
Augie Fackler <durin42@gmail.com>
parents:
592
diff
changeset
|
4 8e621dbb82d4363a85317638ad237e2817c56347 1.1.1 |
631
493023041e74
Added tag 1.1.2 for changeset 093ae2915b45
Augie Fackler <durin42@gmail.com>
parents:
627
diff
changeset
|
5 093ae2915b452539b44390ee4ea14987484e1eee 1.1.2 |
738
2ddb95cd36dd
Added tag 1.2 for changeset 708234ad6c97
Augie Fackler <durin42@gmail.com>
parents:
631
diff
changeset
|
6 708234ad6c97fb52417e0b46a86c8373e25123a5 1.2 |
788
836aa282f1f8
Added tag 1.2.1 for changeset 4bbc6bf947f5
Augie Fackler <durin42@gmail.com>
parents:
738
diff
changeset
|
7 4bbc6bf947f56a92e95a04a27b94a9f72d5482d7 1.2.1 |
838
efc86b40e915
Added tag 1.3 for changeset 0cbf9fd89672
Augie Fackler <durin42@gmail.com>
parents:
788
diff
changeset
|
8 0cbf9fd89672e73165e1bb4db1ec8f7f65b95c94 1.3 |
883
78ffbe411695
Added tag 1.4 for changeset 07234759a3f7
Augie Fackler <raf@durin42.com>
parents:
838
diff
changeset
|
9 07234759a3f750029ccaa001837d42fa12dd33ee 1.4 |