Show More
@@ -1,2107 +1,2109 | |||||
1 | # revlog.py - storage back-end for mercurial |
|
1 | # revlog.py - storage back-end for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | """Storage back-end for Mercurial. |
|
8 | """Storage back-end for Mercurial. | |
9 |
|
9 | |||
10 | This provides efficient delta storage with O(1) retrieve and append |
|
10 | This provides efficient delta storage with O(1) retrieve and append | |
11 | and O(changes) merge between branches. |
|
11 | and O(changes) merge between branches. | |
12 | """ |
|
12 | """ | |
13 |
|
13 | |||
14 | from __future__ import absolute_import |
|
14 | from __future__ import absolute_import | |
15 |
|
15 | |||
16 | import collections |
|
16 | import collections | |
17 | import errno |
|
17 | import errno | |
18 | import hashlib |
|
18 | import hashlib | |
19 | import os |
|
19 | import os | |
20 | import struct |
|
20 | import struct | |
21 | import zlib |
|
21 | import zlib | |
22 |
|
22 | |||
23 | # import stuff from node for others to import from revlog |
|
23 | # import stuff from node for others to import from revlog | |
24 | from .node import ( |
|
24 | from .node import ( | |
25 | bin, |
|
25 | bin, | |
26 | hex, |
|
26 | hex, | |
27 | nullid, |
|
27 | nullid, | |
28 | nullrev, |
|
28 | nullrev, | |
29 | ) |
|
29 | ) | |
30 | from .i18n import _ |
|
30 | from .i18n import _ | |
31 | from . import ( |
|
31 | from . import ( | |
32 | ancestor, |
|
32 | ancestor, | |
33 | error, |
|
33 | error, | |
34 | mdiff, |
|
34 | mdiff, | |
35 | parsers, |
|
35 | parsers, | |
36 | pycompat, |
|
36 | pycompat, | |
37 | templatefilters, |
|
37 | templatefilters, | |
38 | util, |
|
38 | util, | |
39 | ) |
|
39 | ) | |
40 |
|
40 | |||
41 | _pack = struct.pack |
|
41 | _pack = struct.pack | |
42 | _unpack = struct.unpack |
|
42 | _unpack = struct.unpack | |
43 | # Aliased for performance. |
|
43 | # Aliased for performance. | |
44 | _zlibdecompress = zlib.decompress |
|
44 | _zlibdecompress = zlib.decompress | |
45 |
|
45 | |||
46 | # revlog header flags |
|
46 | # revlog header flags | |
47 | REVLOGV0 = 0 |
|
47 | REVLOGV0 = 0 | |
48 | REVLOGNG = 1 |
|
48 | REVLOGNG = 1 | |
49 | REVLOGNGINLINEDATA = (1 << 16) |
|
49 | REVLOGNGINLINEDATA = (1 << 16) | |
50 | REVLOGGENERALDELTA = (1 << 17) |
|
50 | REVLOGGENERALDELTA = (1 << 17) | |
51 | REVLOG_DEFAULT_FLAGS = REVLOGNGINLINEDATA |
|
51 | REVLOG_DEFAULT_FLAGS = REVLOGNGINLINEDATA | |
52 | REVLOG_DEFAULT_FORMAT = REVLOGNG |
|
52 | REVLOG_DEFAULT_FORMAT = REVLOGNG | |
53 | REVLOG_DEFAULT_VERSION = REVLOG_DEFAULT_FORMAT | REVLOG_DEFAULT_FLAGS |
|
53 | REVLOG_DEFAULT_VERSION = REVLOG_DEFAULT_FORMAT | REVLOG_DEFAULT_FLAGS | |
54 | REVLOGNG_FLAGS = REVLOGNGINLINEDATA | REVLOGGENERALDELTA |
|
54 | REVLOGNG_FLAGS = REVLOGNGINLINEDATA | REVLOGGENERALDELTA | |
55 |
|
55 | |||
56 | # revlog index flags |
|
56 | # revlog index flags | |
57 | REVIDX_ISCENSORED = (1 << 15) # revision has censor metadata, must be verified |
|
57 | REVIDX_ISCENSORED = (1 << 15) # revision has censor metadata, must be verified | |
58 | REVIDX_ELLIPSIS = (1 << 14) # revision hash does not match data (narrowhg) |
|
58 | REVIDX_ELLIPSIS = (1 << 14) # revision hash does not match data (narrowhg) | |
59 | REVIDX_EXTSTORED = (1 << 13) # revision data is stored externally |
|
59 | REVIDX_EXTSTORED = (1 << 13) # revision data is stored externally | |
60 | REVIDX_DEFAULT_FLAGS = 0 |
|
60 | REVIDX_DEFAULT_FLAGS = 0 | |
61 | # stable order in which flags need to be processed and their processors applied |
|
61 | # stable order in which flags need to be processed and their processors applied | |
62 | REVIDX_FLAGS_ORDER = [ |
|
62 | REVIDX_FLAGS_ORDER = [ | |
63 | REVIDX_ISCENSORED, |
|
63 | REVIDX_ISCENSORED, | |
64 | REVIDX_ELLIPSIS, |
|
64 | REVIDX_ELLIPSIS, | |
65 | REVIDX_EXTSTORED, |
|
65 | REVIDX_EXTSTORED, | |
66 | ] |
|
66 | ] | |
67 | REVIDX_KNOWN_FLAGS = util.bitsfrom(REVIDX_FLAGS_ORDER) |
|
67 | REVIDX_KNOWN_FLAGS = util.bitsfrom(REVIDX_FLAGS_ORDER) | |
68 |
|
68 | |||
69 | # max size of revlog with inline data |
|
69 | # max size of revlog with inline data | |
70 | _maxinline = 131072 |
|
70 | _maxinline = 131072 | |
71 | _chunksize = 1048576 |
|
71 | _chunksize = 1048576 | |
72 |
|
72 | |||
73 | RevlogError = error.RevlogError |
|
73 | RevlogError = error.RevlogError | |
74 | LookupError = error.LookupError |
|
74 | LookupError = error.LookupError | |
75 | CensoredNodeError = error.CensoredNodeError |
|
75 | CensoredNodeError = error.CensoredNodeError | |
76 | ProgrammingError = error.ProgrammingError |
|
76 | ProgrammingError = error.ProgrammingError | |
77 |
|
77 | |||
78 | # Store flag processors (cf. 'addflagprocessor()' to register) |
|
78 | # Store flag processors (cf. 'addflagprocessor()' to register) | |
79 | _flagprocessors = { |
|
79 | _flagprocessors = { | |
80 | REVIDX_ISCENSORED: None, |
|
80 | REVIDX_ISCENSORED: None, | |
81 | } |
|
81 | } | |
82 |
|
82 | |||
83 | def addflagprocessor(flag, processor): |
|
83 | def addflagprocessor(flag, processor): | |
84 | """Register a flag processor on a revision data flag. |
|
84 | """Register a flag processor on a revision data flag. | |
85 |
|
85 | |||
86 | Invariant: |
|
86 | Invariant: | |
87 | - Flags need to be defined in REVIDX_KNOWN_FLAGS and REVIDX_FLAGS_ORDER. |
|
87 | - Flags need to be defined in REVIDX_KNOWN_FLAGS and REVIDX_FLAGS_ORDER. | |
88 | - Only one flag processor can be registered on a specific flag. |
|
88 | - Only one flag processor can be registered on a specific flag. | |
89 | - flagprocessors must be 3-tuples of functions (read, write, raw) with the |
|
89 | - flagprocessors must be 3-tuples of functions (read, write, raw) with the | |
90 | following signatures: |
|
90 | following signatures: | |
91 | - (read) f(self, rawtext) -> text, bool |
|
91 | - (read) f(self, rawtext) -> text, bool | |
92 | - (write) f(self, text) -> rawtext, bool |
|
92 | - (write) f(self, text) -> rawtext, bool | |
93 | - (raw) f(self, rawtext) -> bool |
|
93 | - (raw) f(self, rawtext) -> bool | |
94 | "text" is presented to the user. "rawtext" is stored in revlog data, not |
|
94 | "text" is presented to the user. "rawtext" is stored in revlog data, not | |
95 | directly visible to the user. |
|
95 | directly visible to the user. | |
96 | The boolean returned by these transforms is used to determine whether |
|
96 | The boolean returned by these transforms is used to determine whether | |
97 | the returned text can be used for hash integrity checking. For example, |
|
97 | the returned text can be used for hash integrity checking. For example, | |
98 | if "write" returns False, then "text" is used to generate hash. If |
|
98 | if "write" returns False, then "text" is used to generate hash. If | |
99 | "write" returns True, that basically means "rawtext" returned by "write" |
|
99 | "write" returns True, that basically means "rawtext" returned by "write" | |
100 | should be used to generate hash. Usually, "write" and "read" return |
|
100 | should be used to generate hash. Usually, "write" and "read" return | |
101 | different booleans. And "raw" returns a same boolean as "write". |
|
101 | different booleans. And "raw" returns a same boolean as "write". | |
102 |
|
102 | |||
103 | Note: The 'raw' transform is used for changegroup generation and in some |
|
103 | Note: The 'raw' transform is used for changegroup generation and in some | |
104 | debug commands. In this case the transform only indicates whether the |
|
104 | debug commands. In this case the transform only indicates whether the | |
105 | contents can be used for hash integrity checks. |
|
105 | contents can be used for hash integrity checks. | |
106 | """ |
|
106 | """ | |
107 | if not flag & REVIDX_KNOWN_FLAGS: |
|
107 | if not flag & REVIDX_KNOWN_FLAGS: | |
108 | msg = _("cannot register processor on unknown flag '%#x'.") % (flag) |
|
108 | msg = _("cannot register processor on unknown flag '%#x'.") % (flag) | |
109 | raise ProgrammingError(msg) |
|
109 | raise ProgrammingError(msg) | |
110 | if flag not in REVIDX_FLAGS_ORDER: |
|
110 | if flag not in REVIDX_FLAGS_ORDER: | |
111 | msg = _("flag '%#x' undefined in REVIDX_FLAGS_ORDER.") % (flag) |
|
111 | msg = _("flag '%#x' undefined in REVIDX_FLAGS_ORDER.") % (flag) | |
112 | raise ProgrammingError(msg) |
|
112 | raise ProgrammingError(msg) | |
113 | if flag in _flagprocessors: |
|
113 | if flag in _flagprocessors: | |
114 | msg = _("cannot register multiple processors on flag '%#x'.") % (flag) |
|
114 | msg = _("cannot register multiple processors on flag '%#x'.") % (flag) | |
115 | raise error.Abort(msg) |
|
115 | raise error.Abort(msg) | |
116 | _flagprocessors[flag] = processor |
|
116 | _flagprocessors[flag] = processor | |
117 |
|
117 | |||
118 | def getoffset(q): |
|
118 | def getoffset(q): | |
119 | return int(q >> 16) |
|
119 | return int(q >> 16) | |
120 |
|
120 | |||
121 | def gettype(q): |
|
121 | def gettype(q): | |
122 | return int(q & 0xFFFF) |
|
122 | return int(q & 0xFFFF) | |
123 |
|
123 | |||
124 | def offset_type(offset, type): |
|
124 | def offset_type(offset, type): | |
125 | if (type & ~REVIDX_KNOWN_FLAGS) != 0: |
|
125 | if (type & ~REVIDX_KNOWN_FLAGS) != 0: | |
126 | raise ValueError('unknown revlog index flags') |
|
126 | raise ValueError('unknown revlog index flags') | |
127 | return int(int(offset) << 16 | type) |
|
127 | return int(int(offset) << 16 | type) | |
128 |
|
128 | |||
129 | _nullhash = hashlib.sha1(nullid) |
|
129 | _nullhash = hashlib.sha1(nullid) | |
130 |
|
130 | |||
131 | def hash(text, p1, p2): |
|
131 | def hash(text, p1, p2): | |
132 | """generate a hash from the given text and its parent hashes |
|
132 | """generate a hash from the given text and its parent hashes | |
133 |
|
133 | |||
134 | This hash combines both the current file contents and its history |
|
134 | This hash combines both the current file contents and its history | |
135 | in a manner that makes it easy to distinguish nodes with the same |
|
135 | in a manner that makes it easy to distinguish nodes with the same | |
136 | content in the revision graph. |
|
136 | content in the revision graph. | |
137 | """ |
|
137 | """ | |
138 | # As of now, if one of the parent node is null, p2 is null |
|
138 | # As of now, if one of the parent node is null, p2 is null | |
139 | if p2 == nullid: |
|
139 | if p2 == nullid: | |
140 | # deep copy of a hash is faster than creating one |
|
140 | # deep copy of a hash is faster than creating one | |
141 | s = _nullhash.copy() |
|
141 | s = _nullhash.copy() | |
142 | s.update(p1) |
|
142 | s.update(p1) | |
143 | else: |
|
143 | else: | |
144 | # none of the parent nodes are nullid |
|
144 | # none of the parent nodes are nullid | |
145 | l = [p1, p2] |
|
145 | l = [p1, p2] | |
146 | l.sort() |
|
146 | l.sort() | |
147 | s = hashlib.sha1(l[0]) |
|
147 | s = hashlib.sha1(l[0]) | |
148 | s.update(l[1]) |
|
148 | s.update(l[1]) | |
149 | s.update(text) |
|
149 | s.update(text) | |
150 | return s.digest() |
|
150 | return s.digest() | |
151 |
|
151 | |||
152 | # index v0: |
|
152 | # index v0: | |
153 | # 4 bytes: offset |
|
153 | # 4 bytes: offset | |
154 | # 4 bytes: compressed length |
|
154 | # 4 bytes: compressed length | |
155 | # 4 bytes: base rev |
|
155 | # 4 bytes: base rev | |
156 | # 4 bytes: link rev |
|
156 | # 4 bytes: link rev | |
157 | # 20 bytes: parent 1 nodeid |
|
157 | # 20 bytes: parent 1 nodeid | |
158 | # 20 bytes: parent 2 nodeid |
|
158 | # 20 bytes: parent 2 nodeid | |
159 | # 20 bytes: nodeid |
|
159 | # 20 bytes: nodeid | |
160 | indexformatv0 = ">4l20s20s20s" |
|
160 | indexformatv0 = ">4l20s20s20s" | |
161 |
|
161 | |||
162 | class revlogoldio(object): |
|
162 | class revlogoldio(object): | |
163 | def __init__(self): |
|
163 | def __init__(self): | |
164 | self.size = struct.calcsize(indexformatv0) |
|
164 | self.size = struct.calcsize(indexformatv0) | |
165 |
|
165 | |||
166 | def parseindex(self, data, inline): |
|
166 | def parseindex(self, data, inline): | |
167 | s = self.size |
|
167 | s = self.size | |
168 | index = [] |
|
168 | index = [] | |
169 | nodemap = {nullid: nullrev} |
|
169 | nodemap = {nullid: nullrev} | |
170 | n = off = 0 |
|
170 | n = off = 0 | |
171 | l = len(data) |
|
171 | l = len(data) | |
172 | while off + s <= l: |
|
172 | while off + s <= l: | |
173 | cur = data[off:off + s] |
|
173 | cur = data[off:off + s] | |
174 | off += s |
|
174 | off += s | |
175 | e = _unpack(indexformatv0, cur) |
|
175 | e = _unpack(indexformatv0, cur) | |
176 | # transform to revlogv1 format |
|
176 | # transform to revlogv1 format | |
177 | e2 = (offset_type(e[0], 0), e[1], -1, e[2], e[3], |
|
177 | e2 = (offset_type(e[0], 0), e[1], -1, e[2], e[3], | |
178 | nodemap.get(e[4], nullrev), nodemap.get(e[5], nullrev), e[6]) |
|
178 | nodemap.get(e[4], nullrev), nodemap.get(e[5], nullrev), e[6]) | |
179 | index.append(e2) |
|
179 | index.append(e2) | |
180 | nodemap[e[6]] = n |
|
180 | nodemap[e[6]] = n | |
181 | n += 1 |
|
181 | n += 1 | |
182 |
|
182 | |||
183 | # add the magic null revision at -1 |
|
183 | # add the magic null revision at -1 | |
184 | index.append((0, 0, 0, -1, -1, -1, -1, nullid)) |
|
184 | index.append((0, 0, 0, -1, -1, -1, -1, nullid)) | |
185 |
|
185 | |||
186 | return index, nodemap, None |
|
186 | return index, nodemap, None | |
187 |
|
187 | |||
188 | def packentry(self, entry, node, version, rev): |
|
188 | def packentry(self, entry, node, version, rev): | |
189 | if gettype(entry[0]): |
|
189 | if gettype(entry[0]): | |
190 | raise RevlogError(_("index entry flags need RevlogNG")) |
|
190 | raise RevlogError(_("index entry flags need RevlogNG")) | |
191 | e2 = (getoffset(entry[0]), entry[1], entry[3], entry[4], |
|
191 | e2 = (getoffset(entry[0]), entry[1], entry[3], entry[4], | |
192 | node(entry[5]), node(entry[6]), entry[7]) |
|
192 | node(entry[5]), node(entry[6]), entry[7]) | |
193 | return _pack(indexformatv0, *e2) |
|
193 | return _pack(indexformatv0, *e2) | |
194 |
|
194 | |||
195 | # index ng: |
|
195 | # index ng: | |
196 | # 6 bytes: offset |
|
196 | # 6 bytes: offset | |
197 | # 2 bytes: flags |
|
197 | # 2 bytes: flags | |
198 | # 4 bytes: compressed length |
|
198 | # 4 bytes: compressed length | |
199 | # 4 bytes: uncompressed length |
|
199 | # 4 bytes: uncompressed length | |
200 | # 4 bytes: base rev |
|
200 | # 4 bytes: base rev | |
201 | # 4 bytes: link rev |
|
201 | # 4 bytes: link rev | |
202 | # 4 bytes: parent 1 rev |
|
202 | # 4 bytes: parent 1 rev | |
203 | # 4 bytes: parent 2 rev |
|
203 | # 4 bytes: parent 2 rev | |
204 | # 32 bytes: nodeid |
|
204 | # 32 bytes: nodeid | |
205 | indexformatng = ">Qiiiiii20s12x" |
|
205 | indexformatng = ">Qiiiiii20s12x" | |
206 | versionformat = ">I" |
|
206 | versionformat = ">I" | |
207 |
|
207 | |||
208 | # corresponds to uncompressed length of indexformatng (2 gigs, 4-byte |
|
208 | # corresponds to uncompressed length of indexformatng (2 gigs, 4-byte | |
209 | # signed integer) |
|
209 | # signed integer) | |
210 | _maxentrysize = 0x7fffffff |
|
210 | _maxentrysize = 0x7fffffff | |
211 |
|
211 | |||
212 | class revlogio(object): |
|
212 | class revlogio(object): | |
213 | def __init__(self): |
|
213 | def __init__(self): | |
214 | self.size = struct.calcsize(indexformatng) |
|
214 | self.size = struct.calcsize(indexformatng) | |
215 |
|
215 | |||
216 | def parseindex(self, data, inline): |
|
216 | def parseindex(self, data, inline): | |
217 | # call the C implementation to parse the index data |
|
217 | # call the C implementation to parse the index data | |
218 | index, cache = parsers.parse_index2(data, inline) |
|
218 | index, cache = parsers.parse_index2(data, inline) | |
219 | return index, getattr(index, 'nodemap', None), cache |
|
219 | return index, getattr(index, 'nodemap', None), cache | |
220 |
|
220 | |||
221 | def packentry(self, entry, node, version, rev): |
|
221 | def packentry(self, entry, node, version, rev): | |
222 | p = _pack(indexformatng, *entry) |
|
222 | p = _pack(indexformatng, *entry) | |
223 | if rev == 0: |
|
223 | if rev == 0: | |
224 | p = _pack(versionformat, version) + p[4:] |
|
224 | p = _pack(versionformat, version) + p[4:] | |
225 | return p |
|
225 | return p | |
226 |
|
226 | |||
227 | class revlog(object): |
|
227 | class revlog(object): | |
228 | """ |
|
228 | """ | |
229 | the underlying revision storage object |
|
229 | the underlying revision storage object | |
230 |
|
230 | |||
231 | A revlog consists of two parts, an index and the revision data. |
|
231 | A revlog consists of two parts, an index and the revision data. | |
232 |
|
232 | |||
233 | The index is a file with a fixed record size containing |
|
233 | The index is a file with a fixed record size containing | |
234 | information on each revision, including its nodeid (hash), the |
|
234 | information on each revision, including its nodeid (hash), the | |
235 | nodeids of its parents, the position and offset of its data within |
|
235 | nodeids of its parents, the position and offset of its data within | |
236 | the data file, and the revision it's based on. Finally, each entry |
|
236 | the data file, and the revision it's based on. Finally, each entry | |
237 | contains a linkrev entry that can serve as a pointer to external |
|
237 | contains a linkrev entry that can serve as a pointer to external | |
238 | data. |
|
238 | data. | |
239 |
|
239 | |||
240 | The revision data itself is a linear collection of data chunks. |
|
240 | The revision data itself is a linear collection of data chunks. | |
241 | Each chunk represents a revision and is usually represented as a |
|
241 | Each chunk represents a revision and is usually represented as a | |
242 | delta against the previous chunk. To bound lookup time, runs of |
|
242 | delta against the previous chunk. To bound lookup time, runs of | |
243 | deltas are limited to about 2 times the length of the original |
|
243 | deltas are limited to about 2 times the length of the original | |
244 | version data. This makes retrieval of a version proportional to |
|
244 | version data. This makes retrieval of a version proportional to | |
245 | its size, or O(1) relative to the number of revisions. |
|
245 | its size, or O(1) relative to the number of revisions. | |
246 |
|
246 | |||
247 | Both pieces of the revlog are written to in an append-only |
|
247 | Both pieces of the revlog are written to in an append-only | |
248 | fashion, which means we never need to rewrite a file to insert or |
|
248 | fashion, which means we never need to rewrite a file to insert or | |
249 | remove data, and can use some simple techniques to avoid the need |
|
249 | remove data, and can use some simple techniques to avoid the need | |
250 | for locking while reading. |
|
250 | for locking while reading. | |
251 |
|
251 | |||
252 | If checkambig, indexfile is opened with checkambig=True at |
|
252 | If checkambig, indexfile is opened with checkambig=True at | |
253 | writing, to avoid file stat ambiguity. |
|
253 | writing, to avoid file stat ambiguity. | |
254 | """ |
|
254 | """ | |
255 | def __init__(self, opener, indexfile, checkambig=False): |
|
255 | def __init__(self, opener, indexfile, checkambig=False): | |
256 | """ |
|
256 | """ | |
257 | create a revlog object |
|
257 | create a revlog object | |
258 |
|
258 | |||
259 | opener is a function that abstracts the file opening operation |
|
259 | opener is a function that abstracts the file opening operation | |
260 | and can be used to implement COW semantics or the like. |
|
260 | and can be used to implement COW semantics or the like. | |
261 | """ |
|
261 | """ | |
262 | self.indexfile = indexfile |
|
262 | self.indexfile = indexfile | |
263 | self.datafile = indexfile[:-2] + ".d" |
|
263 | self.datafile = indexfile[:-2] + ".d" | |
264 | self.opener = opener |
|
264 | self.opener = opener | |
265 | # When True, indexfile is opened with checkambig=True at writing, to |
|
265 | # When True, indexfile is opened with checkambig=True at writing, to | |
266 | # avoid file stat ambiguity. |
|
266 | # avoid file stat ambiguity. | |
267 | self._checkambig = checkambig |
|
267 | self._checkambig = checkambig | |
268 | # 3-tuple of (node, rev, text) for a raw revision. |
|
268 | # 3-tuple of (node, rev, text) for a raw revision. | |
269 | self._cache = None |
|
269 | self._cache = None | |
270 | # Maps rev to chain base rev. |
|
270 | # Maps rev to chain base rev. | |
271 | self._chainbasecache = util.lrucachedict(100) |
|
271 | self._chainbasecache = util.lrucachedict(100) | |
272 | # 2-tuple of (offset, data) of raw data from the revlog at an offset. |
|
272 | # 2-tuple of (offset, data) of raw data from the revlog at an offset. | |
273 | self._chunkcache = (0, '') |
|
273 | self._chunkcache = (0, '') | |
274 | # How much data to read and cache into the raw revlog data cache. |
|
274 | # How much data to read and cache into the raw revlog data cache. | |
275 | self._chunkcachesize = 65536 |
|
275 | self._chunkcachesize = 65536 | |
276 | self._maxchainlen = None |
|
276 | self._maxchainlen = None | |
277 | self._aggressivemergedeltas = False |
|
277 | self._aggressivemergedeltas = False | |
278 | self.index = [] |
|
278 | self.index = [] | |
279 | # Mapping of partial identifiers to full nodes. |
|
279 | # Mapping of partial identifiers to full nodes. | |
280 | self._pcache = {} |
|
280 | self._pcache = {} | |
281 | # Mapping of revision integer to full node. |
|
281 | # Mapping of revision integer to full node. | |
282 | self._nodecache = {nullid: nullrev} |
|
282 | self._nodecache = {nullid: nullrev} | |
283 | self._nodepos = None |
|
283 | self._nodepos = None | |
284 | self._compengine = 'zlib' |
|
284 | self._compengine = 'zlib' | |
285 |
|
285 | |||
286 | v = REVLOG_DEFAULT_VERSION |
|
286 | v = REVLOG_DEFAULT_VERSION | |
287 | opts = getattr(opener, 'options', None) |
|
287 | opts = getattr(opener, 'options', None) | |
288 | if opts is not None: |
|
288 | if opts is not None: | |
289 | if 'revlogv1' in opts: |
|
289 | if 'revlogv1' in opts: | |
290 | if 'generaldelta' in opts: |
|
290 | if 'generaldelta' in opts: | |
291 | v |= REVLOGGENERALDELTA |
|
291 | v |= REVLOGGENERALDELTA | |
292 | else: |
|
292 | else: | |
293 | v = 0 |
|
293 | v = 0 | |
294 | if 'chunkcachesize' in opts: |
|
294 | if 'chunkcachesize' in opts: | |
295 | self._chunkcachesize = opts['chunkcachesize'] |
|
295 | self._chunkcachesize = opts['chunkcachesize'] | |
296 | if 'maxchainlen' in opts: |
|
296 | if 'maxchainlen' in opts: | |
297 | self._maxchainlen = opts['maxchainlen'] |
|
297 | self._maxchainlen = opts['maxchainlen'] | |
298 | if 'aggressivemergedeltas' in opts: |
|
298 | if 'aggressivemergedeltas' in opts: | |
299 | self._aggressivemergedeltas = opts['aggressivemergedeltas'] |
|
299 | self._aggressivemergedeltas = opts['aggressivemergedeltas'] | |
300 | self._lazydeltabase = bool(opts.get('lazydeltabase', False)) |
|
300 | self._lazydeltabase = bool(opts.get('lazydeltabase', False)) | |
301 | if 'compengine' in opts: |
|
301 | if 'compengine' in opts: | |
302 | self._compengine = opts['compengine'] |
|
302 | self._compengine = opts['compengine'] | |
303 |
|
303 | |||
304 | if self._chunkcachesize <= 0: |
|
304 | if self._chunkcachesize <= 0: | |
305 | raise RevlogError(_('revlog chunk cache size %r is not greater ' |
|
305 | raise RevlogError(_('revlog chunk cache size %r is not greater ' | |
306 | 'than 0') % self._chunkcachesize) |
|
306 | 'than 0') % self._chunkcachesize) | |
307 | elif self._chunkcachesize & (self._chunkcachesize - 1): |
|
307 | elif self._chunkcachesize & (self._chunkcachesize - 1): | |
308 | raise RevlogError(_('revlog chunk cache size %r is not a power ' |
|
308 | raise RevlogError(_('revlog chunk cache size %r is not a power ' | |
309 | 'of 2') % self._chunkcachesize) |
|
309 | 'of 2') % self._chunkcachesize) | |
310 |
|
310 | |||
311 | indexdata = '' |
|
311 | indexdata = '' | |
312 | self._initempty = True |
|
312 | self._initempty = True | |
313 | try: |
|
313 | try: | |
314 | f = self.opener(self.indexfile) |
|
314 | f = self.opener(self.indexfile) | |
315 | indexdata = f.read() |
|
315 | indexdata = f.read() | |
316 | f.close() |
|
316 | f.close() | |
317 | if len(indexdata) > 0: |
|
317 | if len(indexdata) > 0: | |
318 | v = struct.unpack(versionformat, indexdata[:4])[0] |
|
318 | v = struct.unpack(versionformat, indexdata[:4])[0] | |
319 | self._initempty = False |
|
319 | self._initempty = False | |
320 | except IOError as inst: |
|
320 | except IOError as inst: | |
321 | if inst.errno != errno.ENOENT: |
|
321 | if inst.errno != errno.ENOENT: | |
322 | raise |
|
322 | raise | |
323 |
|
323 | |||
324 | self.version = v |
|
324 | self.version = v | |
325 | self._inline = v & REVLOGNGINLINEDATA |
|
325 | self._inline = v & REVLOGNGINLINEDATA | |
326 | self._generaldelta = v & REVLOGGENERALDELTA |
|
326 | self._generaldelta = v & REVLOGGENERALDELTA | |
327 | flags = v & ~0xFFFF |
|
327 | flags = v & ~0xFFFF | |
328 | fmt = v & 0xFFFF |
|
328 | fmt = v & 0xFFFF | |
329 | if fmt == REVLOGV0 and flags: |
|
329 | if fmt == REVLOGV0 and flags: | |
330 | raise RevlogError(_("index %s unknown flags %#04x for format v0") |
|
330 | raise RevlogError(_("index %s unknown flags %#04x for format v0") | |
331 | % (self.indexfile, flags >> 16)) |
|
331 | % (self.indexfile, flags >> 16)) | |
332 | elif fmt == REVLOGNG and flags & ~REVLOGNG_FLAGS: |
|
332 | elif fmt == REVLOGNG and flags & ~REVLOGNG_FLAGS: | |
333 | raise RevlogError(_("index %s unknown flags %#04x for revlogng") |
|
333 | raise RevlogError(_("index %s unknown flags %#04x for revlogng") | |
334 | % (self.indexfile, flags >> 16)) |
|
334 | % (self.indexfile, flags >> 16)) | |
335 | elif fmt > REVLOGNG: |
|
335 | elif fmt > REVLOGNG: | |
336 | raise RevlogError(_("index %s unknown format %d") |
|
336 | raise RevlogError(_("index %s unknown format %d") | |
337 | % (self.indexfile, fmt)) |
|
337 | % (self.indexfile, fmt)) | |
338 |
|
338 | |||
339 | self.storedeltachains = True |
|
339 | self.storedeltachains = True | |
340 |
|
340 | |||
341 | self._io = revlogio() |
|
341 | self._io = revlogio() | |
342 | if self.version == REVLOGV0: |
|
342 | if self.version == REVLOGV0: | |
343 | self._io = revlogoldio() |
|
343 | self._io = revlogoldio() | |
344 | try: |
|
344 | try: | |
345 | d = self._io.parseindex(indexdata, self._inline) |
|
345 | d = self._io.parseindex(indexdata, self._inline) | |
346 | except (ValueError, IndexError): |
|
346 | except (ValueError, IndexError): | |
347 | raise RevlogError(_("index %s is corrupted") % (self.indexfile)) |
|
347 | raise RevlogError(_("index %s is corrupted") % (self.indexfile)) | |
348 | self.index, nodemap, self._chunkcache = d |
|
348 | self.index, nodemap, self._chunkcache = d | |
349 | if nodemap is not None: |
|
349 | if nodemap is not None: | |
350 | self.nodemap = self._nodecache = nodemap |
|
350 | self.nodemap = self._nodecache = nodemap | |
351 | if not self._chunkcache: |
|
351 | if not self._chunkcache: | |
352 | self._chunkclear() |
|
352 | self._chunkclear() | |
353 | # revnum -> (chain-length, sum-delta-length) |
|
353 | # revnum -> (chain-length, sum-delta-length) | |
354 | self._chaininfocache = {} |
|
354 | self._chaininfocache = {} | |
355 | # revlog header -> revlog compressor |
|
355 | # revlog header -> revlog compressor | |
356 | self._decompressors = {} |
|
356 | self._decompressors = {} | |
357 |
|
357 | |||
358 | @util.propertycache |
|
358 | @util.propertycache | |
359 | def _compressor(self): |
|
359 | def _compressor(self): | |
360 | return util.compengines[self._compengine].revlogcompressor() |
|
360 | return util.compengines[self._compengine].revlogcompressor() | |
361 |
|
361 | |||
362 | def tip(self): |
|
362 | def tip(self): | |
363 | return self.node(len(self.index) - 2) |
|
363 | return self.node(len(self.index) - 2) | |
364 | def __contains__(self, rev): |
|
364 | def __contains__(self, rev): | |
365 | return 0 <= rev < len(self) |
|
365 | return 0 <= rev < len(self) | |
366 | def __len__(self): |
|
366 | def __len__(self): | |
367 | return len(self.index) - 1 |
|
367 | return len(self.index) - 1 | |
368 | def __iter__(self): |
|
368 | def __iter__(self): | |
369 | return iter(xrange(len(self))) |
|
369 | return iter(xrange(len(self))) | |
370 | def revs(self, start=0, stop=None): |
|
370 | def revs(self, start=0, stop=None): | |
371 | """iterate over all rev in this revlog (from start to stop)""" |
|
371 | """iterate over all rev in this revlog (from start to stop)""" | |
372 | step = 1 |
|
372 | step = 1 | |
373 | if stop is not None: |
|
373 | if stop is not None: | |
374 | if start > stop: |
|
374 | if start > stop: | |
375 | step = -1 |
|
375 | step = -1 | |
376 | stop += step |
|
376 | stop += step | |
377 | else: |
|
377 | else: | |
378 | stop = len(self) |
|
378 | stop = len(self) | |
379 | return xrange(start, stop, step) |
|
379 | return xrange(start, stop, step) | |
380 |
|
380 | |||
381 | @util.propertycache |
|
381 | @util.propertycache | |
382 | def nodemap(self): |
|
382 | def nodemap(self): | |
383 | self.rev(self.node(0)) |
|
383 | self.rev(self.node(0)) | |
384 | return self._nodecache |
|
384 | return self._nodecache | |
385 |
|
385 | |||
386 | def hasnode(self, node): |
|
386 | def hasnode(self, node): | |
387 | try: |
|
387 | try: | |
388 | self.rev(node) |
|
388 | self.rev(node) | |
389 | return True |
|
389 | return True | |
390 | except KeyError: |
|
390 | except KeyError: | |
391 | return False |
|
391 | return False | |
392 |
|
392 | |||
393 | def clearcaches(self): |
|
393 | def clearcaches(self): | |
394 | self._cache = None |
|
394 | self._cache = None | |
395 | self._chainbasecache.clear() |
|
395 | self._chainbasecache.clear() | |
396 | self._chunkcache = (0, '') |
|
396 | self._chunkcache = (0, '') | |
397 | self._pcache = {} |
|
397 | self._pcache = {} | |
398 |
|
398 | |||
399 | try: |
|
399 | try: | |
400 | self._nodecache.clearcaches() |
|
400 | self._nodecache.clearcaches() | |
401 | except AttributeError: |
|
401 | except AttributeError: | |
402 | self._nodecache = {nullid: nullrev} |
|
402 | self._nodecache = {nullid: nullrev} | |
403 | self._nodepos = None |
|
403 | self._nodepos = None | |
404 |
|
404 | |||
405 | def rev(self, node): |
|
405 | def rev(self, node): | |
406 | try: |
|
406 | try: | |
407 | return self._nodecache[node] |
|
407 | return self._nodecache[node] | |
408 | except TypeError: |
|
408 | except TypeError: | |
409 | raise |
|
409 | raise | |
410 | except RevlogError: |
|
410 | except RevlogError: | |
411 | # parsers.c radix tree lookup failed |
|
411 | # parsers.c radix tree lookup failed | |
412 | raise LookupError(node, self.indexfile, _('no node')) |
|
412 | raise LookupError(node, self.indexfile, _('no node')) | |
413 | except KeyError: |
|
413 | except KeyError: | |
414 | # pure python cache lookup failed |
|
414 | # pure python cache lookup failed | |
415 | n = self._nodecache |
|
415 | n = self._nodecache | |
416 | i = self.index |
|
416 | i = self.index | |
417 | p = self._nodepos |
|
417 | p = self._nodepos | |
418 | if p is None: |
|
418 | if p is None: | |
419 | p = len(i) - 2 |
|
419 | p = len(i) - 2 | |
420 | for r in xrange(p, -1, -1): |
|
420 | for r in xrange(p, -1, -1): | |
421 | v = i[r][7] |
|
421 | v = i[r][7] | |
422 | n[v] = r |
|
422 | n[v] = r | |
423 | if v == node: |
|
423 | if v == node: | |
424 | self._nodepos = r - 1 |
|
424 | self._nodepos = r - 1 | |
425 | return r |
|
425 | return r | |
426 | raise LookupError(node, self.indexfile, _('no node')) |
|
426 | raise LookupError(node, self.indexfile, _('no node')) | |
427 |
|
427 | |||
428 | # Accessors for index entries. |
|
428 | # Accessors for index entries. | |
429 |
|
429 | |||
430 | # First tuple entry is 8 bytes. First 6 bytes are offset. Last 2 bytes |
|
430 | # First tuple entry is 8 bytes. First 6 bytes are offset. Last 2 bytes | |
431 | # are flags. |
|
431 | # are flags. | |
432 | def start(self, rev): |
|
432 | def start(self, rev): | |
433 | return int(self.index[rev][0] >> 16) |
|
433 | return int(self.index[rev][0] >> 16) | |
434 |
|
434 | |||
435 | def flags(self, rev): |
|
435 | def flags(self, rev): | |
436 | return self.index[rev][0] & 0xFFFF |
|
436 | return self.index[rev][0] & 0xFFFF | |
437 |
|
437 | |||
438 | def length(self, rev): |
|
438 | def length(self, rev): | |
439 | return self.index[rev][1] |
|
439 | return self.index[rev][1] | |
440 |
|
440 | |||
441 | def rawsize(self, rev): |
|
441 | def rawsize(self, rev): | |
442 | """return the length of the uncompressed text for a given revision""" |
|
442 | """return the length of the uncompressed text for a given revision""" | |
443 | l = self.index[rev][2] |
|
443 | l = self.index[rev][2] | |
444 | if l >= 0: |
|
444 | if l >= 0: | |
445 | return l |
|
445 | return l | |
446 |
|
446 | |||
447 | t = self.revision(rev) |
|
447 | t = self.revision(rev) | |
448 | return len(t) |
|
448 | return len(t) | |
449 | size = rawsize |
|
449 | size = rawsize | |
450 |
|
450 | |||
451 | def chainbase(self, rev): |
|
451 | def chainbase(self, rev): | |
452 | base = self._chainbasecache.get(rev) |
|
452 | base = self._chainbasecache.get(rev) | |
453 | if base is not None: |
|
453 | if base is not None: | |
454 | return base |
|
454 | return base | |
455 |
|
455 | |||
456 | index = self.index |
|
456 | index = self.index | |
457 | base = index[rev][3] |
|
457 | base = index[rev][3] | |
458 | while base != rev: |
|
458 | while base != rev: | |
459 | rev = base |
|
459 | rev = base | |
460 | base = index[rev][3] |
|
460 | base = index[rev][3] | |
461 |
|
461 | |||
462 | self._chainbasecache[rev] = base |
|
462 | self._chainbasecache[rev] = base | |
463 | return base |
|
463 | return base | |
464 |
|
464 | |||
465 | def linkrev(self, rev): |
|
465 | def linkrev(self, rev): | |
466 | return self.index[rev][4] |
|
466 | return self.index[rev][4] | |
467 |
|
467 | |||
468 | def parentrevs(self, rev): |
|
468 | def parentrevs(self, rev): | |
469 | return self.index[rev][5:7] |
|
469 | return self.index[rev][5:7] | |
470 |
|
470 | |||
471 | def node(self, rev): |
|
471 | def node(self, rev): | |
472 | return self.index[rev][7] |
|
472 | return self.index[rev][7] | |
473 |
|
473 | |||
474 | # Derived from index values. |
|
474 | # Derived from index values. | |
475 |
|
475 | |||
476 | def end(self, rev): |
|
476 | def end(self, rev): | |
477 | return self.start(rev) + self.length(rev) |
|
477 | return self.start(rev) + self.length(rev) | |
478 |
|
478 | |||
479 | def parents(self, node): |
|
479 | def parents(self, node): | |
480 | i = self.index |
|
480 | i = self.index | |
481 | d = i[self.rev(node)] |
|
481 | d = i[self.rev(node)] | |
482 | return i[d[5]][7], i[d[6]][7] # map revisions to nodes inline |
|
482 | return i[d[5]][7], i[d[6]][7] # map revisions to nodes inline | |
483 |
|
483 | |||
484 | def chainlen(self, rev): |
|
484 | def chainlen(self, rev): | |
485 | return self._chaininfo(rev)[0] |
|
485 | return self._chaininfo(rev)[0] | |
486 |
|
486 | |||
487 | def _chaininfo(self, rev): |
|
487 | def _chaininfo(self, rev): | |
488 | chaininfocache = self._chaininfocache |
|
488 | chaininfocache = self._chaininfocache | |
489 | if rev in chaininfocache: |
|
489 | if rev in chaininfocache: | |
490 | return chaininfocache[rev] |
|
490 | return chaininfocache[rev] | |
491 | index = self.index |
|
491 | index = self.index | |
492 | generaldelta = self._generaldelta |
|
492 | generaldelta = self._generaldelta | |
493 | iterrev = rev |
|
493 | iterrev = rev | |
494 | e = index[iterrev] |
|
494 | e = index[iterrev] | |
495 | clen = 0 |
|
495 | clen = 0 | |
496 | compresseddeltalen = 0 |
|
496 | compresseddeltalen = 0 | |
497 | while iterrev != e[3]: |
|
497 | while iterrev != e[3]: | |
498 | clen += 1 |
|
498 | clen += 1 | |
499 | compresseddeltalen += e[1] |
|
499 | compresseddeltalen += e[1] | |
500 | if generaldelta: |
|
500 | if generaldelta: | |
501 | iterrev = e[3] |
|
501 | iterrev = e[3] | |
502 | else: |
|
502 | else: | |
503 | iterrev -= 1 |
|
503 | iterrev -= 1 | |
504 | if iterrev in chaininfocache: |
|
504 | if iterrev in chaininfocache: | |
505 | t = chaininfocache[iterrev] |
|
505 | t = chaininfocache[iterrev] | |
506 | clen += t[0] |
|
506 | clen += t[0] | |
507 | compresseddeltalen += t[1] |
|
507 | compresseddeltalen += t[1] | |
508 | break |
|
508 | break | |
509 | e = index[iterrev] |
|
509 | e = index[iterrev] | |
510 | else: |
|
510 | else: | |
511 | # Add text length of base since decompressing that also takes |
|
511 | # Add text length of base since decompressing that also takes | |
512 | # work. For cache hits the length is already included. |
|
512 | # work. For cache hits the length is already included. | |
513 | compresseddeltalen += e[1] |
|
513 | compresseddeltalen += e[1] | |
514 | r = (clen, compresseddeltalen) |
|
514 | r = (clen, compresseddeltalen) | |
515 | chaininfocache[rev] = r |
|
515 | chaininfocache[rev] = r | |
516 | return r |
|
516 | return r | |
517 |
|
517 | |||
518 | def _deltachain(self, rev, stoprev=None): |
|
518 | def _deltachain(self, rev, stoprev=None): | |
519 | """Obtain the delta chain for a revision. |
|
519 | """Obtain the delta chain for a revision. | |
520 |
|
520 | |||
521 | ``stoprev`` specifies a revision to stop at. If not specified, we |
|
521 | ``stoprev`` specifies a revision to stop at. If not specified, we | |
522 | stop at the base of the chain. |
|
522 | stop at the base of the chain. | |
523 |
|
523 | |||
524 | Returns a 2-tuple of (chain, stopped) where ``chain`` is a list of |
|
524 | Returns a 2-tuple of (chain, stopped) where ``chain`` is a list of | |
525 | revs in ascending order and ``stopped`` is a bool indicating whether |
|
525 | revs in ascending order and ``stopped`` is a bool indicating whether | |
526 | ``stoprev`` was hit. |
|
526 | ``stoprev`` was hit. | |
527 | """ |
|
527 | """ | |
528 | chain = [] |
|
528 | chain = [] | |
529 |
|
529 | |||
530 | # Alias to prevent attribute lookup in tight loop. |
|
530 | # Alias to prevent attribute lookup in tight loop. | |
531 | index = self.index |
|
531 | index = self.index | |
532 | generaldelta = self._generaldelta |
|
532 | generaldelta = self._generaldelta | |
533 |
|
533 | |||
534 | iterrev = rev |
|
534 | iterrev = rev | |
535 | e = index[iterrev] |
|
535 | e = index[iterrev] | |
536 | while iterrev != e[3] and iterrev != stoprev: |
|
536 | while iterrev != e[3] and iterrev != stoprev: | |
537 | chain.append(iterrev) |
|
537 | chain.append(iterrev) | |
538 | if generaldelta: |
|
538 | if generaldelta: | |
539 | iterrev = e[3] |
|
539 | iterrev = e[3] | |
540 | else: |
|
540 | else: | |
541 | iterrev -= 1 |
|
541 | iterrev -= 1 | |
542 | e = index[iterrev] |
|
542 | e = index[iterrev] | |
543 |
|
543 | |||
544 | if iterrev == stoprev: |
|
544 | if iterrev == stoprev: | |
545 | stopped = True |
|
545 | stopped = True | |
546 | else: |
|
546 | else: | |
547 | chain.append(iterrev) |
|
547 | chain.append(iterrev) | |
548 | stopped = False |
|
548 | stopped = False | |
549 |
|
549 | |||
550 | chain.reverse() |
|
550 | chain.reverse() | |
551 | return chain, stopped |
|
551 | return chain, stopped | |
552 |
|
552 | |||
553 | def ancestors(self, revs, stoprev=0, inclusive=False): |
|
553 | def ancestors(self, revs, stoprev=0, inclusive=False): | |
554 | """Generate the ancestors of 'revs' in reverse topological order. |
|
554 | """Generate the ancestors of 'revs' in reverse topological order. | |
555 | Does not generate revs lower than stoprev. |
|
555 | Does not generate revs lower than stoprev. | |
556 |
|
556 | |||
557 | See the documentation for ancestor.lazyancestors for more details.""" |
|
557 | See the documentation for ancestor.lazyancestors for more details.""" | |
558 |
|
558 | |||
559 | return ancestor.lazyancestors(self.parentrevs, revs, stoprev=stoprev, |
|
559 | return ancestor.lazyancestors(self.parentrevs, revs, stoprev=stoprev, | |
560 | inclusive=inclusive) |
|
560 | inclusive=inclusive) | |
561 |
|
561 | |||
562 | def descendants(self, revs): |
|
562 | def descendants(self, revs): | |
563 | """Generate the descendants of 'revs' in revision order. |
|
563 | """Generate the descendants of 'revs' in revision order. | |
564 |
|
564 | |||
565 | Yield a sequence of revision numbers starting with a child of |
|
565 | Yield a sequence of revision numbers starting with a child of | |
566 | some rev in revs, i.e., each revision is *not* considered a |
|
566 | some rev in revs, i.e., each revision is *not* considered a | |
567 | descendant of itself. Results are ordered by revision number (a |
|
567 | descendant of itself. Results are ordered by revision number (a | |
568 | topological sort).""" |
|
568 | topological sort).""" | |
569 | first = min(revs) |
|
569 | first = min(revs) | |
570 | if first == nullrev: |
|
570 | if first == nullrev: | |
571 | for i in self: |
|
571 | for i in self: | |
572 | yield i |
|
572 | yield i | |
573 | return |
|
573 | return | |
574 |
|
574 | |||
575 | seen = set(revs) |
|
575 | seen = set(revs) | |
576 | for i in self.revs(start=first + 1): |
|
576 | for i in self.revs(start=first + 1): | |
577 | for x in self.parentrevs(i): |
|
577 | for x in self.parentrevs(i): | |
578 | if x != nullrev and x in seen: |
|
578 | if x != nullrev and x in seen: | |
579 | seen.add(i) |
|
579 | seen.add(i) | |
580 | yield i |
|
580 | yield i | |
581 | break |
|
581 | break | |
582 |
|
582 | |||
583 | def findcommonmissing(self, common=None, heads=None): |
|
583 | def findcommonmissing(self, common=None, heads=None): | |
584 | """Return a tuple of the ancestors of common and the ancestors of heads |
|
584 | """Return a tuple of the ancestors of common and the ancestors of heads | |
585 | that are not ancestors of common. In revset terminology, we return the |
|
585 | that are not ancestors of common. In revset terminology, we return the | |
586 | tuple: |
|
586 | tuple: | |
587 |
|
587 | |||
588 | ::common, (::heads) - (::common) |
|
588 | ::common, (::heads) - (::common) | |
589 |
|
589 | |||
590 | The list is sorted by revision number, meaning it is |
|
590 | The list is sorted by revision number, meaning it is | |
591 | topologically sorted. |
|
591 | topologically sorted. | |
592 |
|
592 | |||
593 | 'heads' and 'common' are both lists of node IDs. If heads is |
|
593 | 'heads' and 'common' are both lists of node IDs. If heads is | |
594 | not supplied, uses all of the revlog's heads. If common is not |
|
594 | not supplied, uses all of the revlog's heads. If common is not | |
595 | supplied, uses nullid.""" |
|
595 | supplied, uses nullid.""" | |
596 | if common is None: |
|
596 | if common is None: | |
597 | common = [nullid] |
|
597 | common = [nullid] | |
598 | if heads is None: |
|
598 | if heads is None: | |
599 | heads = self.heads() |
|
599 | heads = self.heads() | |
600 |
|
600 | |||
601 | common = [self.rev(n) for n in common] |
|
601 | common = [self.rev(n) for n in common] | |
602 | heads = [self.rev(n) for n in heads] |
|
602 | heads = [self.rev(n) for n in heads] | |
603 |
|
603 | |||
604 | # we want the ancestors, but inclusive |
|
604 | # we want the ancestors, but inclusive | |
605 | class lazyset(object): |
|
605 | class lazyset(object): | |
606 | def __init__(self, lazyvalues): |
|
606 | def __init__(self, lazyvalues): | |
607 | self.addedvalues = set() |
|
607 | self.addedvalues = set() | |
608 | self.lazyvalues = lazyvalues |
|
608 | self.lazyvalues = lazyvalues | |
609 |
|
609 | |||
610 | def __contains__(self, value): |
|
610 | def __contains__(self, value): | |
611 | return value in self.addedvalues or value in self.lazyvalues |
|
611 | return value in self.addedvalues or value in self.lazyvalues | |
612 |
|
612 | |||
613 | def __iter__(self): |
|
613 | def __iter__(self): | |
614 | added = self.addedvalues |
|
614 | added = self.addedvalues | |
615 | for r in added: |
|
615 | for r in added: | |
616 | yield r |
|
616 | yield r | |
617 | for r in self.lazyvalues: |
|
617 | for r in self.lazyvalues: | |
618 | if not r in added: |
|
618 | if not r in added: | |
619 | yield r |
|
619 | yield r | |
620 |
|
620 | |||
621 | def add(self, value): |
|
621 | def add(self, value): | |
622 | self.addedvalues.add(value) |
|
622 | self.addedvalues.add(value) | |
623 |
|
623 | |||
624 | def update(self, values): |
|
624 | def update(self, values): | |
625 | self.addedvalues.update(values) |
|
625 | self.addedvalues.update(values) | |
626 |
|
626 | |||
627 | has = lazyset(self.ancestors(common)) |
|
627 | has = lazyset(self.ancestors(common)) | |
628 | has.add(nullrev) |
|
628 | has.add(nullrev) | |
629 | has.update(common) |
|
629 | has.update(common) | |
630 |
|
630 | |||
631 | # take all ancestors from heads that aren't in has |
|
631 | # take all ancestors from heads that aren't in has | |
632 | missing = set() |
|
632 | missing = set() | |
633 | visit = collections.deque(r for r in heads if r not in has) |
|
633 | visit = collections.deque(r for r in heads if r not in has) | |
634 | while visit: |
|
634 | while visit: | |
635 | r = visit.popleft() |
|
635 | r = visit.popleft() | |
636 | if r in missing: |
|
636 | if r in missing: | |
637 | continue |
|
637 | continue | |
638 | else: |
|
638 | else: | |
639 | missing.add(r) |
|
639 | missing.add(r) | |
640 | for p in self.parentrevs(r): |
|
640 | for p in self.parentrevs(r): | |
641 | if p not in has: |
|
641 | if p not in has: | |
642 | visit.append(p) |
|
642 | visit.append(p) | |
643 | missing = list(missing) |
|
643 | missing = list(missing) | |
644 | missing.sort() |
|
644 | missing.sort() | |
645 | return has, [self.node(miss) for miss in missing] |
|
645 | return has, [self.node(miss) for miss in missing] | |
646 |
|
646 | |||
647 | def incrementalmissingrevs(self, common=None): |
|
647 | def incrementalmissingrevs(self, common=None): | |
648 | """Return an object that can be used to incrementally compute the |
|
648 | """Return an object that can be used to incrementally compute the | |
649 | revision numbers of the ancestors of arbitrary sets that are not |
|
649 | revision numbers of the ancestors of arbitrary sets that are not | |
650 | ancestors of common. This is an ancestor.incrementalmissingancestors |
|
650 | ancestors of common. This is an ancestor.incrementalmissingancestors | |
651 | object. |
|
651 | object. | |
652 |
|
652 | |||
653 | 'common' is a list of revision numbers. If common is not supplied, uses |
|
653 | 'common' is a list of revision numbers. If common is not supplied, uses | |
654 | nullrev. |
|
654 | nullrev. | |
655 | """ |
|
655 | """ | |
656 | if common is None: |
|
656 | if common is None: | |
657 | common = [nullrev] |
|
657 | common = [nullrev] | |
658 |
|
658 | |||
659 | return ancestor.incrementalmissingancestors(self.parentrevs, common) |
|
659 | return ancestor.incrementalmissingancestors(self.parentrevs, common) | |
660 |
|
660 | |||
661 | def findmissingrevs(self, common=None, heads=None): |
|
661 | def findmissingrevs(self, common=None, heads=None): | |
662 | """Return the revision numbers of the ancestors of heads that |
|
662 | """Return the revision numbers of the ancestors of heads that | |
663 | are not ancestors of common. |
|
663 | are not ancestors of common. | |
664 |
|
664 | |||
665 | More specifically, return a list of revision numbers corresponding to |
|
665 | More specifically, return a list of revision numbers corresponding to | |
666 | nodes N such that every N satisfies the following constraints: |
|
666 | nodes N such that every N satisfies the following constraints: | |
667 |
|
667 | |||
668 | 1. N is an ancestor of some node in 'heads' |
|
668 | 1. N is an ancestor of some node in 'heads' | |
669 | 2. N is not an ancestor of any node in 'common' |
|
669 | 2. N is not an ancestor of any node in 'common' | |
670 |
|
670 | |||
671 | The list is sorted by revision number, meaning it is |
|
671 | The list is sorted by revision number, meaning it is | |
672 | topologically sorted. |
|
672 | topologically sorted. | |
673 |
|
673 | |||
674 | 'heads' and 'common' are both lists of revision numbers. If heads is |
|
674 | 'heads' and 'common' are both lists of revision numbers. If heads is | |
675 | not supplied, uses all of the revlog's heads. If common is not |
|
675 | not supplied, uses all of the revlog's heads. If common is not | |
676 | supplied, uses nullid.""" |
|
676 | supplied, uses nullid.""" | |
677 | if common is None: |
|
677 | if common is None: | |
678 | common = [nullrev] |
|
678 | common = [nullrev] | |
679 | if heads is None: |
|
679 | if heads is None: | |
680 | heads = self.headrevs() |
|
680 | heads = self.headrevs() | |
681 |
|
681 | |||
682 | inc = self.incrementalmissingrevs(common=common) |
|
682 | inc = self.incrementalmissingrevs(common=common) | |
683 | return inc.missingancestors(heads) |
|
683 | return inc.missingancestors(heads) | |
684 |
|
684 | |||
685 | def findmissing(self, common=None, heads=None): |
|
685 | def findmissing(self, common=None, heads=None): | |
686 | """Return the ancestors of heads that are not ancestors of common. |
|
686 | """Return the ancestors of heads that are not ancestors of common. | |
687 |
|
687 | |||
688 | More specifically, return a list of nodes N such that every N |
|
688 | More specifically, return a list of nodes N such that every N | |
689 | satisfies the following constraints: |
|
689 | satisfies the following constraints: | |
690 |
|
690 | |||
691 | 1. N is an ancestor of some node in 'heads' |
|
691 | 1. N is an ancestor of some node in 'heads' | |
692 | 2. N is not an ancestor of any node in 'common' |
|
692 | 2. N is not an ancestor of any node in 'common' | |
693 |
|
693 | |||
694 | The list is sorted by revision number, meaning it is |
|
694 | The list is sorted by revision number, meaning it is | |
695 | topologically sorted. |
|
695 | topologically sorted. | |
696 |
|
696 | |||
697 | 'heads' and 'common' are both lists of node IDs. If heads is |
|
697 | 'heads' and 'common' are both lists of node IDs. If heads is | |
698 | not supplied, uses all of the revlog's heads. If common is not |
|
698 | not supplied, uses all of the revlog's heads. If common is not | |
699 | supplied, uses nullid.""" |
|
699 | supplied, uses nullid.""" | |
700 | if common is None: |
|
700 | if common is None: | |
701 | common = [nullid] |
|
701 | common = [nullid] | |
702 | if heads is None: |
|
702 | if heads is None: | |
703 | heads = self.heads() |
|
703 | heads = self.heads() | |
704 |
|
704 | |||
705 | common = [self.rev(n) for n in common] |
|
705 | common = [self.rev(n) for n in common] | |
706 | heads = [self.rev(n) for n in heads] |
|
706 | heads = [self.rev(n) for n in heads] | |
707 |
|
707 | |||
708 | inc = self.incrementalmissingrevs(common=common) |
|
708 | inc = self.incrementalmissingrevs(common=common) | |
709 | return [self.node(r) for r in inc.missingancestors(heads)] |
|
709 | return [self.node(r) for r in inc.missingancestors(heads)] | |
710 |
|
710 | |||
711 | def nodesbetween(self, roots=None, heads=None): |
|
711 | def nodesbetween(self, roots=None, heads=None): | |
712 | """Return a topological path from 'roots' to 'heads'. |
|
712 | """Return a topological path from 'roots' to 'heads'. | |
713 |
|
713 | |||
714 | Return a tuple (nodes, outroots, outheads) where 'nodes' is a |
|
714 | Return a tuple (nodes, outroots, outheads) where 'nodes' is a | |
715 | topologically sorted list of all nodes N that satisfy both of |
|
715 | topologically sorted list of all nodes N that satisfy both of | |
716 | these constraints: |
|
716 | these constraints: | |
717 |
|
717 | |||
718 | 1. N is a descendant of some node in 'roots' |
|
718 | 1. N is a descendant of some node in 'roots' | |
719 | 2. N is an ancestor of some node in 'heads' |
|
719 | 2. N is an ancestor of some node in 'heads' | |
720 |
|
720 | |||
721 | Every node is considered to be both a descendant and an ancestor |
|
721 | Every node is considered to be both a descendant and an ancestor | |
722 | of itself, so every reachable node in 'roots' and 'heads' will be |
|
722 | of itself, so every reachable node in 'roots' and 'heads' will be | |
723 | included in 'nodes'. |
|
723 | included in 'nodes'. | |
724 |
|
724 | |||
725 | 'outroots' is the list of reachable nodes in 'roots', i.e., the |
|
725 | 'outroots' is the list of reachable nodes in 'roots', i.e., the | |
726 | subset of 'roots' that is returned in 'nodes'. Likewise, |
|
726 | subset of 'roots' that is returned in 'nodes'. Likewise, | |
727 | 'outheads' is the subset of 'heads' that is also in 'nodes'. |
|
727 | 'outheads' is the subset of 'heads' that is also in 'nodes'. | |
728 |
|
728 | |||
729 | 'roots' and 'heads' are both lists of node IDs. If 'roots' is |
|
729 | 'roots' and 'heads' are both lists of node IDs. If 'roots' is | |
730 | unspecified, uses nullid as the only root. If 'heads' is |
|
730 | unspecified, uses nullid as the only root. If 'heads' is | |
731 | unspecified, uses list of all of the revlog's heads.""" |
|
731 | unspecified, uses list of all of the revlog's heads.""" | |
732 | nonodes = ([], [], []) |
|
732 | nonodes = ([], [], []) | |
733 | if roots is not None: |
|
733 | if roots is not None: | |
734 | roots = list(roots) |
|
734 | roots = list(roots) | |
735 | if not roots: |
|
735 | if not roots: | |
736 | return nonodes |
|
736 | return nonodes | |
737 | lowestrev = min([self.rev(n) for n in roots]) |
|
737 | lowestrev = min([self.rev(n) for n in roots]) | |
738 | else: |
|
738 | else: | |
739 | roots = [nullid] # Everybody's a descendant of nullid |
|
739 | roots = [nullid] # Everybody's a descendant of nullid | |
740 | lowestrev = nullrev |
|
740 | lowestrev = nullrev | |
741 | if (lowestrev == nullrev) and (heads is None): |
|
741 | if (lowestrev == nullrev) and (heads is None): | |
742 | # We want _all_ the nodes! |
|
742 | # We want _all_ the nodes! | |
743 | return ([self.node(r) for r in self], [nullid], list(self.heads())) |
|
743 | return ([self.node(r) for r in self], [nullid], list(self.heads())) | |
744 | if heads is None: |
|
744 | if heads is None: | |
745 | # All nodes are ancestors, so the latest ancestor is the last |
|
745 | # All nodes are ancestors, so the latest ancestor is the last | |
746 | # node. |
|
746 | # node. | |
747 | highestrev = len(self) - 1 |
|
747 | highestrev = len(self) - 1 | |
748 | # Set ancestors to None to signal that every node is an ancestor. |
|
748 | # Set ancestors to None to signal that every node is an ancestor. | |
749 | ancestors = None |
|
749 | ancestors = None | |
750 | # Set heads to an empty dictionary for later discovery of heads |
|
750 | # Set heads to an empty dictionary for later discovery of heads | |
751 | heads = {} |
|
751 | heads = {} | |
752 | else: |
|
752 | else: | |
753 | heads = list(heads) |
|
753 | heads = list(heads) | |
754 | if not heads: |
|
754 | if not heads: | |
755 | return nonodes |
|
755 | return nonodes | |
756 | ancestors = set() |
|
756 | ancestors = set() | |
757 | # Turn heads into a dictionary so we can remove 'fake' heads. |
|
757 | # Turn heads into a dictionary so we can remove 'fake' heads. | |
758 | # Also, later we will be using it to filter out the heads we can't |
|
758 | # Also, later we will be using it to filter out the heads we can't | |
759 | # find from roots. |
|
759 | # find from roots. | |
760 | heads = dict.fromkeys(heads, False) |
|
760 | heads = dict.fromkeys(heads, False) | |
761 | # Start at the top and keep marking parents until we're done. |
|
761 | # Start at the top and keep marking parents until we're done. | |
762 | nodestotag = set(heads) |
|
762 | nodestotag = set(heads) | |
763 | # Remember where the top was so we can use it as a limit later. |
|
763 | # Remember where the top was so we can use it as a limit later. | |
764 | highestrev = max([self.rev(n) for n in nodestotag]) |
|
764 | highestrev = max([self.rev(n) for n in nodestotag]) | |
765 | while nodestotag: |
|
765 | while nodestotag: | |
766 | # grab a node to tag |
|
766 | # grab a node to tag | |
767 | n = nodestotag.pop() |
|
767 | n = nodestotag.pop() | |
768 | # Never tag nullid |
|
768 | # Never tag nullid | |
769 | if n == nullid: |
|
769 | if n == nullid: | |
770 | continue |
|
770 | continue | |
771 | # A node's revision number represents its place in a |
|
771 | # A node's revision number represents its place in a | |
772 | # topologically sorted list of nodes. |
|
772 | # topologically sorted list of nodes. | |
773 | r = self.rev(n) |
|
773 | r = self.rev(n) | |
774 | if r >= lowestrev: |
|
774 | if r >= lowestrev: | |
775 | if n not in ancestors: |
|
775 | if n not in ancestors: | |
776 | # If we are possibly a descendant of one of the roots |
|
776 | # If we are possibly a descendant of one of the roots | |
777 | # and we haven't already been marked as an ancestor |
|
777 | # and we haven't already been marked as an ancestor | |
778 | ancestors.add(n) # Mark as ancestor |
|
778 | ancestors.add(n) # Mark as ancestor | |
779 | # Add non-nullid parents to list of nodes to tag. |
|
779 | # Add non-nullid parents to list of nodes to tag. | |
780 | nodestotag.update([p for p in self.parents(n) if |
|
780 | nodestotag.update([p for p in self.parents(n) if | |
781 | p != nullid]) |
|
781 | p != nullid]) | |
782 | elif n in heads: # We've seen it before, is it a fake head? |
|
782 | elif n in heads: # We've seen it before, is it a fake head? | |
783 | # So it is, real heads should not be the ancestors of |
|
783 | # So it is, real heads should not be the ancestors of | |
784 | # any other heads. |
|
784 | # any other heads. | |
785 | heads.pop(n) |
|
785 | heads.pop(n) | |
786 | if not ancestors: |
|
786 | if not ancestors: | |
787 | return nonodes |
|
787 | return nonodes | |
788 | # Now that we have our set of ancestors, we want to remove any |
|
788 | # Now that we have our set of ancestors, we want to remove any | |
789 | # roots that are not ancestors. |
|
789 | # roots that are not ancestors. | |
790 |
|
790 | |||
791 | # If one of the roots was nullid, everything is included anyway. |
|
791 | # If one of the roots was nullid, everything is included anyway. | |
792 | if lowestrev > nullrev: |
|
792 | if lowestrev > nullrev: | |
793 | # But, since we weren't, let's recompute the lowest rev to not |
|
793 | # But, since we weren't, let's recompute the lowest rev to not | |
794 | # include roots that aren't ancestors. |
|
794 | # include roots that aren't ancestors. | |
795 |
|
795 | |||
796 | # Filter out roots that aren't ancestors of heads |
|
796 | # Filter out roots that aren't ancestors of heads | |
797 | roots = [root for root in roots if root in ancestors] |
|
797 | roots = [root for root in roots if root in ancestors] | |
798 | # Recompute the lowest revision |
|
798 | # Recompute the lowest revision | |
799 | if roots: |
|
799 | if roots: | |
800 | lowestrev = min([self.rev(root) for root in roots]) |
|
800 | lowestrev = min([self.rev(root) for root in roots]) | |
801 | else: |
|
801 | else: | |
802 | # No more roots? Return empty list |
|
802 | # No more roots? Return empty list | |
803 | return nonodes |
|
803 | return nonodes | |
804 | else: |
|
804 | else: | |
805 | # We are descending from nullid, and don't need to care about |
|
805 | # We are descending from nullid, and don't need to care about | |
806 | # any other roots. |
|
806 | # any other roots. | |
807 | lowestrev = nullrev |
|
807 | lowestrev = nullrev | |
808 | roots = [nullid] |
|
808 | roots = [nullid] | |
809 | # Transform our roots list into a set. |
|
809 | # Transform our roots list into a set. | |
810 | descendants = set(roots) |
|
810 | descendants = set(roots) | |
811 | # Also, keep the original roots so we can filter out roots that aren't |
|
811 | # Also, keep the original roots so we can filter out roots that aren't | |
812 | # 'real' roots (i.e. are descended from other roots). |
|
812 | # 'real' roots (i.e. are descended from other roots). | |
813 | roots = descendants.copy() |
|
813 | roots = descendants.copy() | |
814 | # Our topologically sorted list of output nodes. |
|
814 | # Our topologically sorted list of output nodes. | |
815 | orderedout = [] |
|
815 | orderedout = [] | |
816 | # Don't start at nullid since we don't want nullid in our output list, |
|
816 | # Don't start at nullid since we don't want nullid in our output list, | |
817 | # and if nullid shows up in descendants, empty parents will look like |
|
817 | # and if nullid shows up in descendants, empty parents will look like | |
818 | # they're descendants. |
|
818 | # they're descendants. | |
819 | for r in self.revs(start=max(lowestrev, 0), stop=highestrev + 1): |
|
819 | for r in self.revs(start=max(lowestrev, 0), stop=highestrev + 1): | |
820 | n = self.node(r) |
|
820 | n = self.node(r) | |
821 | isdescendant = False |
|
821 | isdescendant = False | |
822 | if lowestrev == nullrev: # Everybody is a descendant of nullid |
|
822 | if lowestrev == nullrev: # Everybody is a descendant of nullid | |
823 | isdescendant = True |
|
823 | isdescendant = True | |
824 | elif n in descendants: |
|
824 | elif n in descendants: | |
825 | # n is already a descendant |
|
825 | # n is already a descendant | |
826 | isdescendant = True |
|
826 | isdescendant = True | |
827 | # This check only needs to be done here because all the roots |
|
827 | # This check only needs to be done here because all the roots | |
828 | # will start being marked is descendants before the loop. |
|
828 | # will start being marked is descendants before the loop. | |
829 | if n in roots: |
|
829 | if n in roots: | |
830 | # If n was a root, check if it's a 'real' root. |
|
830 | # If n was a root, check if it's a 'real' root. | |
831 | p = tuple(self.parents(n)) |
|
831 | p = tuple(self.parents(n)) | |
832 | # If any of its parents are descendants, it's not a root. |
|
832 | # If any of its parents are descendants, it's not a root. | |
833 | if (p[0] in descendants) or (p[1] in descendants): |
|
833 | if (p[0] in descendants) or (p[1] in descendants): | |
834 | roots.remove(n) |
|
834 | roots.remove(n) | |
835 | else: |
|
835 | else: | |
836 | p = tuple(self.parents(n)) |
|
836 | p = tuple(self.parents(n)) | |
837 | # A node is a descendant if either of its parents are |
|
837 | # A node is a descendant if either of its parents are | |
838 | # descendants. (We seeded the dependents list with the roots |
|
838 | # descendants. (We seeded the dependents list with the roots | |
839 | # up there, remember?) |
|
839 | # up there, remember?) | |
840 | if (p[0] in descendants) or (p[1] in descendants): |
|
840 | if (p[0] in descendants) or (p[1] in descendants): | |
841 | descendants.add(n) |
|
841 | descendants.add(n) | |
842 | isdescendant = True |
|
842 | isdescendant = True | |
843 | if isdescendant and ((ancestors is None) or (n in ancestors)): |
|
843 | if isdescendant and ((ancestors is None) or (n in ancestors)): | |
844 | # Only include nodes that are both descendants and ancestors. |
|
844 | # Only include nodes that are both descendants and ancestors. | |
845 | orderedout.append(n) |
|
845 | orderedout.append(n) | |
846 | if (ancestors is not None) and (n in heads): |
|
846 | if (ancestors is not None) and (n in heads): | |
847 | # We're trying to figure out which heads are reachable |
|
847 | # We're trying to figure out which heads are reachable | |
848 | # from roots. |
|
848 | # from roots. | |
849 | # Mark this head as having been reached |
|
849 | # Mark this head as having been reached | |
850 | heads[n] = True |
|
850 | heads[n] = True | |
851 | elif ancestors is None: |
|
851 | elif ancestors is None: | |
852 | # Otherwise, we're trying to discover the heads. |
|
852 | # Otherwise, we're trying to discover the heads. | |
853 | # Assume this is a head because if it isn't, the next step |
|
853 | # Assume this is a head because if it isn't, the next step | |
854 | # will eventually remove it. |
|
854 | # will eventually remove it. | |
855 | heads[n] = True |
|
855 | heads[n] = True | |
856 | # But, obviously its parents aren't. |
|
856 | # But, obviously its parents aren't. | |
857 | for p in self.parents(n): |
|
857 | for p in self.parents(n): | |
858 | heads.pop(p, None) |
|
858 | heads.pop(p, None) | |
859 | heads = [head for head, flag in heads.iteritems() if flag] |
|
859 | heads = [head for head, flag in heads.iteritems() if flag] | |
860 | roots = list(roots) |
|
860 | roots = list(roots) | |
861 | assert orderedout |
|
861 | assert orderedout | |
862 | assert roots |
|
862 | assert roots | |
863 | assert heads |
|
863 | assert heads | |
864 | return (orderedout, roots, heads) |
|
864 | return (orderedout, roots, heads) | |
865 |
|
865 | |||
866 | def headrevs(self): |
|
866 | def headrevs(self): | |
867 | try: |
|
867 | try: | |
868 | return self.index.headrevs() |
|
868 | return self.index.headrevs() | |
869 | except AttributeError: |
|
869 | except AttributeError: | |
870 | return self._headrevs() |
|
870 | return self._headrevs() | |
871 |
|
871 | |||
872 | def computephases(self, roots): |
|
872 | def computephases(self, roots): | |
873 | return self.index.computephasesmapsets(roots) |
|
873 | return self.index.computephasesmapsets(roots) | |
874 |
|
874 | |||
875 | def _headrevs(self): |
|
875 | def _headrevs(self): | |
876 | count = len(self) |
|
876 | count = len(self) | |
877 | if not count: |
|
877 | if not count: | |
878 | return [nullrev] |
|
878 | return [nullrev] | |
879 | # we won't iter over filtered rev so nobody is a head at start |
|
879 | # we won't iter over filtered rev so nobody is a head at start | |
880 | ishead = [0] * (count + 1) |
|
880 | ishead = [0] * (count + 1) | |
881 | index = self.index |
|
881 | index = self.index | |
882 | for r in self: |
|
882 | for r in self: | |
883 | ishead[r] = 1 # I may be an head |
|
883 | ishead[r] = 1 # I may be an head | |
884 | e = index[r] |
|
884 | e = index[r] | |
885 | ishead[e[5]] = ishead[e[6]] = 0 # my parent are not |
|
885 | ishead[e[5]] = ishead[e[6]] = 0 # my parent are not | |
886 | return [r for r, val in enumerate(ishead) if val] |
|
886 | return [r for r, val in enumerate(ishead) if val] | |
887 |
|
887 | |||
888 | def heads(self, start=None, stop=None): |
|
888 | def heads(self, start=None, stop=None): | |
889 | """return the list of all nodes that have no children |
|
889 | """return the list of all nodes that have no children | |
890 |
|
890 | |||
891 | if start is specified, only heads that are descendants of |
|
891 | if start is specified, only heads that are descendants of | |
892 | start will be returned |
|
892 | start will be returned | |
893 | if stop is specified, it will consider all the revs from stop |
|
893 | if stop is specified, it will consider all the revs from stop | |
894 | as if they had no children |
|
894 | as if they had no children | |
895 | """ |
|
895 | """ | |
896 | if start is None and stop is None: |
|
896 | if start is None and stop is None: | |
897 | if not len(self): |
|
897 | if not len(self): | |
898 | return [nullid] |
|
898 | return [nullid] | |
899 | return [self.node(r) for r in self.headrevs()] |
|
899 | return [self.node(r) for r in self.headrevs()] | |
900 |
|
900 | |||
901 | if start is None: |
|
901 | if start is None: | |
902 | start = nullid |
|
902 | start = nullid | |
903 | if stop is None: |
|
903 | if stop is None: | |
904 | stop = [] |
|
904 | stop = [] | |
905 | stoprevs = set([self.rev(n) for n in stop]) |
|
905 | stoprevs = set([self.rev(n) for n in stop]) | |
906 | startrev = self.rev(start) |
|
906 | startrev = self.rev(start) | |
907 | reachable = set((startrev,)) |
|
907 | reachable = set((startrev,)) | |
908 | heads = set((startrev,)) |
|
908 | heads = set((startrev,)) | |
909 |
|
909 | |||
910 | parentrevs = self.parentrevs |
|
910 | parentrevs = self.parentrevs | |
911 | for r in self.revs(start=startrev + 1): |
|
911 | for r in self.revs(start=startrev + 1): | |
912 | for p in parentrevs(r): |
|
912 | for p in parentrevs(r): | |
913 | if p in reachable: |
|
913 | if p in reachable: | |
914 | if r not in stoprevs: |
|
914 | if r not in stoprevs: | |
915 | reachable.add(r) |
|
915 | reachable.add(r) | |
916 | heads.add(r) |
|
916 | heads.add(r) | |
917 | if p in heads and p not in stoprevs: |
|
917 | if p in heads and p not in stoprevs: | |
918 | heads.remove(p) |
|
918 | heads.remove(p) | |
919 |
|
919 | |||
920 | return [self.node(r) for r in heads] |
|
920 | return [self.node(r) for r in heads] | |
921 |
|
921 | |||
922 | def children(self, node): |
|
922 | def children(self, node): | |
923 | """find the children of a given node""" |
|
923 | """find the children of a given node""" | |
924 | c = [] |
|
924 | c = [] | |
925 | p = self.rev(node) |
|
925 | p = self.rev(node) | |
926 | for r in self.revs(start=p + 1): |
|
926 | for r in self.revs(start=p + 1): | |
927 | prevs = [pr for pr in self.parentrevs(r) if pr != nullrev] |
|
927 | prevs = [pr for pr in self.parentrevs(r) if pr != nullrev] | |
928 | if prevs: |
|
928 | if prevs: | |
929 | for pr in prevs: |
|
929 | for pr in prevs: | |
930 | if pr == p: |
|
930 | if pr == p: | |
931 | c.append(self.node(r)) |
|
931 | c.append(self.node(r)) | |
932 | elif p == nullrev: |
|
932 | elif p == nullrev: | |
933 | c.append(self.node(r)) |
|
933 | c.append(self.node(r)) | |
934 | return c |
|
934 | return c | |
935 |
|
935 | |||
936 | def descendant(self, start, end): |
|
936 | def descendant(self, start, end): | |
937 | if start == nullrev: |
|
937 | if start == nullrev: | |
938 | return True |
|
938 | return True | |
939 | for i in self.descendants([start]): |
|
939 | for i in self.descendants([start]): | |
940 | if i == end: |
|
940 | if i == end: | |
941 | return True |
|
941 | return True | |
942 | elif i > end: |
|
942 | elif i > end: | |
943 | break |
|
943 | break | |
944 | return False |
|
944 | return False | |
945 |
|
945 | |||
946 | def commonancestorsheads(self, a, b): |
|
946 | def commonancestorsheads(self, a, b): | |
947 | """calculate all the heads of the common ancestors of nodes a and b""" |
|
947 | """calculate all the heads of the common ancestors of nodes a and b""" | |
948 | a, b = self.rev(a), self.rev(b) |
|
948 | a, b = self.rev(a), self.rev(b) | |
949 | try: |
|
949 | try: | |
950 | ancs = self.index.commonancestorsheads(a, b) |
|
950 | ancs = self.index.commonancestorsheads(a, b) | |
951 | except (AttributeError, OverflowError): # C implementation failed |
|
951 | except (AttributeError, OverflowError): # C implementation failed | |
952 | ancs = ancestor.commonancestorsheads(self.parentrevs, a, b) |
|
952 | ancs = ancestor.commonancestorsheads(self.parentrevs, a, b) | |
953 | return pycompat.maplist(self.node, ancs) |
|
953 | return pycompat.maplist(self.node, ancs) | |
954 |
|
954 | |||
955 | def isancestor(self, a, b): |
|
955 | def isancestor(self, a, b): | |
956 | """return True if node a is an ancestor of node b |
|
956 | """return True if node a is an ancestor of node b | |
957 |
|
957 | |||
958 | The implementation of this is trivial but the use of |
|
958 | The implementation of this is trivial but the use of | |
959 | commonancestorsheads is not.""" |
|
959 | commonancestorsheads is not.""" | |
960 | return a in self.commonancestorsheads(a, b) |
|
960 | return a in self.commonancestorsheads(a, b) | |
961 |
|
961 | |||
962 | def ancestor(self, a, b): |
|
962 | def ancestor(self, a, b): | |
963 | """calculate the "best" common ancestor of nodes a and b""" |
|
963 | """calculate the "best" common ancestor of nodes a and b""" | |
964 |
|
964 | |||
965 | a, b = self.rev(a), self.rev(b) |
|
965 | a, b = self.rev(a), self.rev(b) | |
966 | try: |
|
966 | try: | |
967 | ancs = self.index.ancestors(a, b) |
|
967 | ancs = self.index.ancestors(a, b) | |
968 | except (AttributeError, OverflowError): |
|
968 | except (AttributeError, OverflowError): | |
969 | ancs = ancestor.ancestors(self.parentrevs, a, b) |
|
969 | ancs = ancestor.ancestors(self.parentrevs, a, b) | |
970 | if ancs: |
|
970 | if ancs: | |
971 | # choose a consistent winner when there's a tie |
|
971 | # choose a consistent winner when there's a tie | |
972 | return min(map(self.node, ancs)) |
|
972 | return min(map(self.node, ancs)) | |
973 | return nullid |
|
973 | return nullid | |
974 |
|
974 | |||
975 | def _match(self, id): |
|
975 | def _match(self, id): | |
976 | if isinstance(id, int): |
|
976 | if isinstance(id, int): | |
977 | # rev |
|
977 | # rev | |
978 | return self.node(id) |
|
978 | return self.node(id) | |
979 | if len(id) == 20: |
|
979 | if len(id) == 20: | |
980 | # possibly a binary node |
|
980 | # possibly a binary node | |
981 | # odds of a binary node being all hex in ASCII are 1 in 10**25 |
|
981 | # odds of a binary node being all hex in ASCII are 1 in 10**25 | |
982 | try: |
|
982 | try: | |
983 | node = id |
|
983 | node = id | |
984 | self.rev(node) # quick search the index |
|
984 | self.rev(node) # quick search the index | |
985 | return node |
|
985 | return node | |
986 | except LookupError: |
|
986 | except LookupError: | |
987 | pass # may be partial hex id |
|
987 | pass # may be partial hex id | |
988 | try: |
|
988 | try: | |
989 | # str(rev) |
|
989 | # str(rev) | |
990 | rev = int(id) |
|
990 | rev = int(id) | |
991 | if str(rev) != id: |
|
991 | if str(rev) != id: | |
992 | raise ValueError |
|
992 | raise ValueError | |
993 | if rev < 0: |
|
993 | if rev < 0: | |
994 | rev = len(self) + rev |
|
994 | rev = len(self) + rev | |
995 | if rev < 0 or rev >= len(self): |
|
995 | if rev < 0 or rev >= len(self): | |
996 | raise ValueError |
|
996 | raise ValueError | |
997 | return self.node(rev) |
|
997 | return self.node(rev) | |
998 | except (ValueError, OverflowError): |
|
998 | except (ValueError, OverflowError): | |
999 | pass |
|
999 | pass | |
1000 | if len(id) == 40: |
|
1000 | if len(id) == 40: | |
1001 | try: |
|
1001 | try: | |
1002 | # a full hex nodeid? |
|
1002 | # a full hex nodeid? | |
1003 | node = bin(id) |
|
1003 | node = bin(id) | |
1004 | self.rev(node) |
|
1004 | self.rev(node) | |
1005 | return node |
|
1005 | return node | |
1006 | except (TypeError, LookupError): |
|
1006 | except (TypeError, LookupError): | |
1007 | pass |
|
1007 | pass | |
1008 |
|
1008 | |||
1009 | def _partialmatch(self, id): |
|
1009 | def _partialmatch(self, id): | |
1010 | try: |
|
1010 | try: | |
1011 | partial = self.index.partialmatch(id) |
|
1011 | partial = self.index.partialmatch(id) | |
1012 | if partial and self.hasnode(partial): |
|
1012 | if partial and self.hasnode(partial): | |
1013 | return partial |
|
1013 | return partial | |
1014 | return None |
|
1014 | return None | |
1015 | except RevlogError: |
|
1015 | except RevlogError: | |
1016 | # parsers.c radix tree lookup gave multiple matches |
|
1016 | # parsers.c radix tree lookup gave multiple matches | |
1017 | # fast path: for unfiltered changelog, radix tree is accurate |
|
1017 | # fast path: for unfiltered changelog, radix tree is accurate | |
1018 | if not getattr(self, 'filteredrevs', None): |
|
1018 | if not getattr(self, 'filteredrevs', None): | |
1019 | raise LookupError(id, self.indexfile, |
|
1019 | raise LookupError(id, self.indexfile, | |
1020 | _('ambiguous identifier')) |
|
1020 | _('ambiguous identifier')) | |
1021 | # fall through to slow path that filters hidden revisions |
|
1021 | # fall through to slow path that filters hidden revisions | |
1022 | except (AttributeError, ValueError): |
|
1022 | except (AttributeError, ValueError): | |
1023 | # we are pure python, or key was too short to search radix tree |
|
1023 | # we are pure python, or key was too short to search radix tree | |
1024 | pass |
|
1024 | pass | |
1025 |
|
1025 | |||
1026 | if id in self._pcache: |
|
1026 | if id in self._pcache: | |
1027 | return self._pcache[id] |
|
1027 | return self._pcache[id] | |
1028 |
|
1028 | |||
1029 | if len(id) < 40: |
|
1029 | if len(id) < 40: | |
1030 | try: |
|
1030 | try: | |
1031 | # hex(node)[:...] |
|
1031 | # hex(node)[:...] | |
1032 | l = len(id) // 2 # grab an even number of digits |
|
1032 | l = len(id) // 2 # grab an even number of digits | |
1033 | prefix = bin(id[:l * 2]) |
|
1033 | prefix = bin(id[:l * 2]) | |
1034 | nl = [e[7] for e in self.index if e[7].startswith(prefix)] |
|
1034 | nl = [e[7] for e in self.index if e[7].startswith(prefix)] | |
1035 | nl = [n for n in nl if hex(n).startswith(id) and |
|
1035 | nl = [n for n in nl if hex(n).startswith(id) and | |
1036 | self.hasnode(n)] |
|
1036 | self.hasnode(n)] | |
1037 | if len(nl) > 0: |
|
1037 | if len(nl) > 0: | |
1038 | if len(nl) == 1: |
|
1038 | if len(nl) == 1: | |
1039 | self._pcache[id] = nl[0] |
|
1039 | self._pcache[id] = nl[0] | |
1040 | return nl[0] |
|
1040 | return nl[0] | |
1041 | raise LookupError(id, self.indexfile, |
|
1041 | raise LookupError(id, self.indexfile, | |
1042 | _('ambiguous identifier')) |
|
1042 | _('ambiguous identifier')) | |
1043 | return None |
|
1043 | return None | |
1044 | except TypeError: |
|
1044 | except TypeError: | |
1045 | pass |
|
1045 | pass | |
1046 |
|
1046 | |||
1047 | def lookup(self, id): |
|
1047 | def lookup(self, id): | |
1048 | """locate a node based on: |
|
1048 | """locate a node based on: | |
1049 | - revision number or str(revision number) |
|
1049 | - revision number or str(revision number) | |
1050 | - nodeid or subset of hex nodeid |
|
1050 | - nodeid or subset of hex nodeid | |
1051 | """ |
|
1051 | """ | |
1052 | n = self._match(id) |
|
1052 | n = self._match(id) | |
1053 | if n is not None: |
|
1053 | if n is not None: | |
1054 | return n |
|
1054 | return n | |
1055 | n = self._partialmatch(id) |
|
1055 | n = self._partialmatch(id) | |
1056 | if n: |
|
1056 | if n: | |
1057 | return n |
|
1057 | return n | |
1058 |
|
1058 | |||
1059 | raise LookupError(id, self.indexfile, _('no match found')) |
|
1059 | raise LookupError(id, self.indexfile, _('no match found')) | |
1060 |
|
1060 | |||
1061 | def cmp(self, node, text): |
|
1061 | def cmp(self, node, text): | |
1062 | """compare text with a given file revision |
|
1062 | """compare text with a given file revision | |
1063 |
|
1063 | |||
1064 | returns True if text is different than what is stored. |
|
1064 | returns True if text is different than what is stored. | |
1065 | """ |
|
1065 | """ | |
1066 | p1, p2 = self.parents(node) |
|
1066 | p1, p2 = self.parents(node) | |
1067 | return hash(text, p1, p2) != node |
|
1067 | return hash(text, p1, p2) != node | |
1068 |
|
1068 | |||
1069 | def _addchunk(self, offset, data): |
|
1069 | def _addchunk(self, offset, data): | |
1070 | """Add a segment to the revlog cache. |
|
1070 | """Add a segment to the revlog cache. | |
1071 |
|
1071 | |||
1072 | Accepts an absolute offset and the data that is at that location. |
|
1072 | Accepts an absolute offset and the data that is at that location. | |
1073 | """ |
|
1073 | """ | |
1074 | o, d = self._chunkcache |
|
1074 | o, d = self._chunkcache | |
1075 | # try to add to existing cache |
|
1075 | # try to add to existing cache | |
1076 | if o + len(d) == offset and len(d) + len(data) < _chunksize: |
|
1076 | if o + len(d) == offset and len(d) + len(data) < _chunksize: | |
1077 | self._chunkcache = o, d + data |
|
1077 | self._chunkcache = o, d + data | |
1078 | else: |
|
1078 | else: | |
1079 | self._chunkcache = offset, data |
|
1079 | self._chunkcache = offset, data | |
1080 |
|
1080 | |||
1081 | def _loadchunk(self, offset, length, df=None): |
|
1081 | def _loadchunk(self, offset, length, df=None): | |
1082 | """Load a segment of raw data from the revlog. |
|
1082 | """Load a segment of raw data from the revlog. | |
1083 |
|
1083 | |||
1084 | Accepts an absolute offset, length to read, and an optional existing |
|
1084 | Accepts an absolute offset, length to read, and an optional existing | |
1085 | file handle to read from. |
|
1085 | file handle to read from. | |
1086 |
|
1086 | |||
1087 | If an existing file handle is passed, it will be seeked and the |
|
1087 | If an existing file handle is passed, it will be seeked and the | |
1088 | original seek position will NOT be restored. |
|
1088 | original seek position will NOT be restored. | |
1089 |
|
1089 | |||
1090 | Returns a str or buffer of raw byte data. |
|
1090 | Returns a str or buffer of raw byte data. | |
1091 | """ |
|
1091 | """ | |
1092 | if df is not None: |
|
1092 | if df is not None: | |
1093 | closehandle = False |
|
1093 | closehandle = False | |
1094 | else: |
|
1094 | else: | |
1095 | if self._inline: |
|
1095 | if self._inline: | |
1096 | df = self.opener(self.indexfile) |
|
1096 | df = self.opener(self.indexfile) | |
1097 | else: |
|
1097 | else: | |
1098 | df = self.opener(self.datafile) |
|
1098 | df = self.opener(self.datafile) | |
1099 | closehandle = True |
|
1099 | closehandle = True | |
1100 |
|
1100 | |||
1101 | # Cache data both forward and backward around the requested |
|
1101 | # Cache data both forward and backward around the requested | |
1102 | # data, in a fixed size window. This helps speed up operations |
|
1102 | # data, in a fixed size window. This helps speed up operations | |
1103 | # involving reading the revlog backwards. |
|
1103 | # involving reading the revlog backwards. | |
1104 | cachesize = self._chunkcachesize |
|
1104 | cachesize = self._chunkcachesize | |
1105 | realoffset = offset & ~(cachesize - 1) |
|
1105 | realoffset = offset & ~(cachesize - 1) | |
1106 | reallength = (((offset + length + cachesize) & ~(cachesize - 1)) |
|
1106 | reallength = (((offset + length + cachesize) & ~(cachesize - 1)) | |
1107 | - realoffset) |
|
1107 | - realoffset) | |
1108 | df.seek(realoffset) |
|
1108 | df.seek(realoffset) | |
1109 | d = df.read(reallength) |
|
1109 | d = df.read(reallength) | |
1110 | if closehandle: |
|
1110 | if closehandle: | |
1111 | df.close() |
|
1111 | df.close() | |
1112 | self._addchunk(realoffset, d) |
|
1112 | self._addchunk(realoffset, d) | |
1113 | if offset != realoffset or reallength != length: |
|
1113 | if offset != realoffset or reallength != length: | |
1114 | return util.buffer(d, offset - realoffset, length) |
|
1114 | return util.buffer(d, offset - realoffset, length) | |
1115 | return d |
|
1115 | return d | |
1116 |
|
1116 | |||
1117 | def _getchunk(self, offset, length, df=None): |
|
1117 | def _getchunk(self, offset, length, df=None): | |
1118 | """Obtain a segment of raw data from the revlog. |
|
1118 | """Obtain a segment of raw data from the revlog. | |
1119 |
|
1119 | |||
1120 | Accepts an absolute offset, length of bytes to obtain, and an |
|
1120 | Accepts an absolute offset, length of bytes to obtain, and an | |
1121 | optional file handle to the already-opened revlog. If the file |
|
1121 | optional file handle to the already-opened revlog. If the file | |
1122 | handle is used, it's original seek position will not be preserved. |
|
1122 | handle is used, it's original seek position will not be preserved. | |
1123 |
|
1123 | |||
1124 | Requests for data may be returned from a cache. |
|
1124 | Requests for data may be returned from a cache. | |
1125 |
|
1125 | |||
1126 | Returns a str or a buffer instance of raw byte data. |
|
1126 | Returns a str or a buffer instance of raw byte data. | |
1127 | """ |
|
1127 | """ | |
1128 | o, d = self._chunkcache |
|
1128 | o, d = self._chunkcache | |
1129 | l = len(d) |
|
1129 | l = len(d) | |
1130 |
|
1130 | |||
1131 | # is it in the cache? |
|
1131 | # is it in the cache? | |
1132 | cachestart = offset - o |
|
1132 | cachestart = offset - o | |
1133 | cacheend = cachestart + length |
|
1133 | cacheend = cachestart + length | |
1134 | if cachestart >= 0 and cacheend <= l: |
|
1134 | if cachestart >= 0 and cacheend <= l: | |
1135 | if cachestart == 0 and cacheend == l: |
|
1135 | if cachestart == 0 and cacheend == l: | |
1136 | return d # avoid a copy |
|
1136 | return d # avoid a copy | |
1137 | return util.buffer(d, cachestart, cacheend - cachestart) |
|
1137 | return util.buffer(d, cachestart, cacheend - cachestart) | |
1138 |
|
1138 | |||
1139 | return self._loadchunk(offset, length, df=df) |
|
1139 | return self._loadchunk(offset, length, df=df) | |
1140 |
|
1140 | |||
1141 | def _chunkraw(self, startrev, endrev, df=None): |
|
1141 | def _chunkraw(self, startrev, endrev, df=None): | |
1142 | """Obtain a segment of raw data corresponding to a range of revisions. |
|
1142 | """Obtain a segment of raw data corresponding to a range of revisions. | |
1143 |
|
1143 | |||
1144 | Accepts the start and end revisions and an optional already-open |
|
1144 | Accepts the start and end revisions and an optional already-open | |
1145 | file handle to be used for reading. If the file handle is read, its |
|
1145 | file handle to be used for reading. If the file handle is read, its | |
1146 | seek position will not be preserved. |
|
1146 | seek position will not be preserved. | |
1147 |
|
1147 | |||
1148 | Requests for data may be satisfied by a cache. |
|
1148 | Requests for data may be satisfied by a cache. | |
1149 |
|
1149 | |||
1150 | Returns a 2-tuple of (offset, data) for the requested range of |
|
1150 | Returns a 2-tuple of (offset, data) for the requested range of | |
1151 | revisions. Offset is the integer offset from the beginning of the |
|
1151 | revisions. Offset is the integer offset from the beginning of the | |
1152 | revlog and data is a str or buffer of the raw byte data. |
|
1152 | revlog and data is a str or buffer of the raw byte data. | |
1153 |
|
1153 | |||
1154 | Callers will need to call ``self.start(rev)`` and ``self.length(rev)`` |
|
1154 | Callers will need to call ``self.start(rev)`` and ``self.length(rev)`` | |
1155 | to determine where each revision's data begins and ends. |
|
1155 | to determine where each revision's data begins and ends. | |
1156 | """ |
|
1156 | """ | |
1157 | # Inlined self.start(startrev) & self.end(endrev) for perf reasons |
|
1157 | # Inlined self.start(startrev) & self.end(endrev) for perf reasons | |
1158 | # (functions are expensive). |
|
1158 | # (functions are expensive). | |
1159 | index = self.index |
|
1159 | index = self.index | |
1160 | istart = index[startrev] |
|
1160 | istart = index[startrev] | |
1161 | start = int(istart[0] >> 16) |
|
1161 | start = int(istart[0] >> 16) | |
1162 | if startrev == endrev: |
|
1162 | if startrev == endrev: | |
1163 | end = start + istart[1] |
|
1163 | end = start + istart[1] | |
1164 | else: |
|
1164 | else: | |
1165 | iend = index[endrev] |
|
1165 | iend = index[endrev] | |
1166 | end = int(iend[0] >> 16) + iend[1] |
|
1166 | end = int(iend[0] >> 16) + iend[1] | |
1167 |
|
1167 | |||
1168 | if self._inline: |
|
1168 | if self._inline: | |
1169 | start += (startrev + 1) * self._io.size |
|
1169 | start += (startrev + 1) * self._io.size | |
1170 | end += (endrev + 1) * self._io.size |
|
1170 | end += (endrev + 1) * self._io.size | |
1171 | length = end - start |
|
1171 | length = end - start | |
1172 |
|
1172 | |||
1173 | return start, self._getchunk(start, length, df=df) |
|
1173 | return start, self._getchunk(start, length, df=df) | |
1174 |
|
1174 | |||
1175 | def _chunk(self, rev, df=None): |
|
1175 | def _chunk(self, rev, df=None): | |
1176 | """Obtain a single decompressed chunk for a revision. |
|
1176 | """Obtain a single decompressed chunk for a revision. | |
1177 |
|
1177 | |||
1178 | Accepts an integer revision and an optional already-open file handle |
|
1178 | Accepts an integer revision and an optional already-open file handle | |
1179 | to be used for reading. If used, the seek position of the file will not |
|
1179 | to be used for reading. If used, the seek position of the file will not | |
1180 | be preserved. |
|
1180 | be preserved. | |
1181 |
|
1181 | |||
1182 | Returns a str holding uncompressed data for the requested revision. |
|
1182 | Returns a str holding uncompressed data for the requested revision. | |
1183 | """ |
|
1183 | """ | |
1184 | return self.decompress(self._chunkraw(rev, rev, df=df)[1]) |
|
1184 | return self.decompress(self._chunkraw(rev, rev, df=df)[1]) | |
1185 |
|
1185 | |||
1186 | def _chunks(self, revs, df=None): |
|
1186 | def _chunks(self, revs, df=None): | |
1187 | """Obtain decompressed chunks for the specified revisions. |
|
1187 | """Obtain decompressed chunks for the specified revisions. | |
1188 |
|
1188 | |||
1189 | Accepts an iterable of numeric revisions that are assumed to be in |
|
1189 | Accepts an iterable of numeric revisions that are assumed to be in | |
1190 | ascending order. Also accepts an optional already-open file handle |
|
1190 | ascending order. Also accepts an optional already-open file handle | |
1191 | to be used for reading. If used, the seek position of the file will |
|
1191 | to be used for reading. If used, the seek position of the file will | |
1192 | not be preserved. |
|
1192 | not be preserved. | |
1193 |
|
1193 | |||
1194 | This function is similar to calling ``self._chunk()`` multiple times, |
|
1194 | This function is similar to calling ``self._chunk()`` multiple times, | |
1195 | but is faster. |
|
1195 | but is faster. | |
1196 |
|
1196 | |||
1197 | Returns a list with decompressed data for each requested revision. |
|
1197 | Returns a list with decompressed data for each requested revision. | |
1198 | """ |
|
1198 | """ | |
1199 | if not revs: |
|
1199 | if not revs: | |
1200 | return [] |
|
1200 | return [] | |
1201 | start = self.start |
|
1201 | start = self.start | |
1202 | length = self.length |
|
1202 | length = self.length | |
1203 | inline = self._inline |
|
1203 | inline = self._inline | |
1204 | iosize = self._io.size |
|
1204 | iosize = self._io.size | |
1205 | buffer = util.buffer |
|
1205 | buffer = util.buffer | |
1206 |
|
1206 | |||
1207 | l = [] |
|
1207 | l = [] | |
1208 | ladd = l.append |
|
1208 | ladd = l.append | |
1209 |
|
1209 | |||
1210 | try: |
|
1210 | try: | |
1211 | offset, data = self._chunkraw(revs[0], revs[-1], df=df) |
|
1211 | offset, data = self._chunkraw(revs[0], revs[-1], df=df) | |
1212 | except OverflowError: |
|
1212 | except OverflowError: | |
1213 | # issue4215 - we can't cache a run of chunks greater than |
|
1213 | # issue4215 - we can't cache a run of chunks greater than | |
1214 | # 2G on Windows |
|
1214 | # 2G on Windows | |
1215 | return [self._chunk(rev, df=df) for rev in revs] |
|
1215 | return [self._chunk(rev, df=df) for rev in revs] | |
1216 |
|
1216 | |||
1217 | decomp = self.decompress |
|
1217 | decomp = self.decompress | |
1218 | for rev in revs: |
|
1218 | for rev in revs: | |
1219 | chunkstart = start(rev) |
|
1219 | chunkstart = start(rev) | |
1220 | if inline: |
|
1220 | if inline: | |
1221 | chunkstart += (rev + 1) * iosize |
|
1221 | chunkstart += (rev + 1) * iosize | |
1222 | chunklength = length(rev) |
|
1222 | chunklength = length(rev) | |
1223 | ladd(decomp(buffer(data, chunkstart - offset, chunklength))) |
|
1223 | ladd(decomp(buffer(data, chunkstart - offset, chunklength))) | |
1224 |
|
1224 | |||
1225 | return l |
|
1225 | return l | |
1226 |
|
1226 | |||
1227 | def _chunkclear(self): |
|
1227 | def _chunkclear(self): | |
1228 | """Clear the raw chunk cache.""" |
|
1228 | """Clear the raw chunk cache.""" | |
1229 | self._chunkcache = (0, '') |
|
1229 | self._chunkcache = (0, '') | |
1230 |
|
1230 | |||
1231 | def deltaparent(self, rev): |
|
1231 | def deltaparent(self, rev): | |
1232 | """return deltaparent of the given revision""" |
|
1232 | """return deltaparent of the given revision""" | |
1233 | base = self.index[rev][3] |
|
1233 | base = self.index[rev][3] | |
1234 | if base == rev: |
|
1234 | if base == rev: | |
1235 | return nullrev |
|
1235 | return nullrev | |
1236 | elif self._generaldelta: |
|
1236 | elif self._generaldelta: | |
1237 | return base |
|
1237 | return base | |
1238 | else: |
|
1238 | else: | |
1239 | return rev - 1 |
|
1239 | return rev - 1 | |
1240 |
|
1240 | |||
1241 | def revdiff(self, rev1, rev2): |
|
1241 | def revdiff(self, rev1, rev2): | |
1242 | """return or calculate a delta between two revisions""" |
|
1242 | """return or calculate a delta between two revisions""" | |
1243 | if rev1 != nullrev and self.deltaparent(rev2) == rev1: |
|
1243 | if rev1 != nullrev and self.deltaparent(rev2) == rev1: | |
1244 | return bytes(self._chunk(rev2)) |
|
1244 | return bytes(self._chunk(rev2)) | |
1245 |
|
1245 | |||
1246 | return mdiff.textdiff(self.revision(rev1), |
|
1246 | return mdiff.textdiff(self.revision(rev1), | |
1247 | self.revision(rev2)) |
|
1247 | self.revision(rev2)) | |
1248 |
|
1248 | |||
1249 | def revision(self, nodeorrev, _df=None, raw=False): |
|
1249 | def revision(self, nodeorrev, _df=None, raw=False): | |
1250 | """return an uncompressed revision of a given node or revision |
|
1250 | """return an uncompressed revision of a given node or revision | |
1251 | number. |
|
1251 | number. | |
1252 |
|
1252 | |||
1253 | _df - an existing file handle to read from. (internal-only) |
|
1253 | _df - an existing file handle to read from. (internal-only) | |
1254 | raw - an optional argument specifying if the revision data is to be |
|
1254 | raw - an optional argument specifying if the revision data is to be | |
1255 | treated as raw data when applying flag transforms. 'raw' should be set |
|
1255 | treated as raw data when applying flag transforms. 'raw' should be set | |
1256 | to True when generating changegroups or in debug commands. |
|
1256 | to True when generating changegroups or in debug commands. | |
1257 | """ |
|
1257 | """ | |
1258 | if isinstance(nodeorrev, int): |
|
1258 | if isinstance(nodeorrev, int): | |
1259 | rev = nodeorrev |
|
1259 | rev = nodeorrev | |
1260 | node = self.node(rev) |
|
1260 | node = self.node(rev) | |
1261 | else: |
|
1261 | else: | |
1262 | node = nodeorrev |
|
1262 | node = nodeorrev | |
1263 | rev = None |
|
1263 | rev = None | |
1264 |
|
1264 | |||
1265 | cachedrev = None |
|
1265 | cachedrev = None | |
1266 | if node == nullid: |
|
1266 | if node == nullid: | |
1267 | return "" |
|
1267 | return "" | |
1268 | if self._cache: |
|
1268 | if self._cache: | |
1269 | if self._cache[0] == node: |
|
1269 | if self._cache[0] == node: | |
1270 | return self._cache[2] |
|
1270 | # _cache only stores rawtext | |
|
1271 | if raw: | |||
|
1272 | return self._cache[2] | |||
1271 | cachedrev = self._cache[1] |
|
1273 | cachedrev = self._cache[1] | |
1272 |
|
1274 | |||
1273 | # look up what we need to read |
|
1275 | # look up what we need to read | |
1274 | rawtext = None |
|
1276 | rawtext = None | |
1275 | if rev is None: |
|
1277 | if rev is None: | |
1276 | rev = self.rev(node) |
|
1278 | rev = self.rev(node) | |
1277 |
|
1279 | |||
1278 | chain, stopped = self._deltachain(rev, stoprev=cachedrev) |
|
1280 | chain, stopped = self._deltachain(rev, stoprev=cachedrev) | |
1279 | if stopped: |
|
1281 | if stopped: | |
1280 | rawtext = self._cache[2] |
|
1282 | rawtext = self._cache[2] | |
1281 |
|
1283 | |||
1282 | # drop cache to save memory |
|
1284 | # drop cache to save memory | |
1283 | self._cache = None |
|
1285 | self._cache = None | |
1284 |
|
1286 | |||
1285 | bins = self._chunks(chain, df=_df) |
|
1287 | bins = self._chunks(chain, df=_df) | |
1286 | if rawtext is None: |
|
1288 | if rawtext is None: | |
1287 | rawtext = bytes(bins[0]) |
|
1289 | rawtext = bytes(bins[0]) | |
1288 | bins = bins[1:] |
|
1290 | bins = bins[1:] | |
1289 |
|
1291 | |||
1290 | rawtext = mdiff.patches(rawtext, bins) |
|
1292 | rawtext = mdiff.patches(rawtext, bins) | |
1291 |
|
1293 | |||
1292 | text, validatehash = self._processflags(rawtext, self.flags(rev), |
|
1294 | text, validatehash = self._processflags(rawtext, self.flags(rev), | |
1293 | 'read', raw=raw) |
|
1295 | 'read', raw=raw) | |
1294 | if validatehash: |
|
1296 | if validatehash: | |
1295 | self.checkhash(text, node, rev=rev) |
|
1297 | self.checkhash(text, node, rev=rev) | |
1296 |
|
1298 | |||
1297 | self._cache = (node, rev, text) |
|
1299 | self._cache = (node, rev, rawtext) | |
1298 | return text |
|
1300 | return text | |
1299 |
|
1301 | |||
1300 | def hash(self, text, p1, p2): |
|
1302 | def hash(self, text, p1, p2): | |
1301 | """Compute a node hash. |
|
1303 | """Compute a node hash. | |
1302 |
|
1304 | |||
1303 | Available as a function so that subclasses can replace the hash |
|
1305 | Available as a function so that subclasses can replace the hash | |
1304 | as needed. |
|
1306 | as needed. | |
1305 | """ |
|
1307 | """ | |
1306 | return hash(text, p1, p2) |
|
1308 | return hash(text, p1, p2) | |
1307 |
|
1309 | |||
1308 | def _processflags(self, text, flags, operation, raw=False): |
|
1310 | def _processflags(self, text, flags, operation, raw=False): | |
1309 | """Inspect revision data flags and applies transforms defined by |
|
1311 | """Inspect revision data flags and applies transforms defined by | |
1310 | registered flag processors. |
|
1312 | registered flag processors. | |
1311 |
|
1313 | |||
1312 | ``text`` - the revision data to process |
|
1314 | ``text`` - the revision data to process | |
1313 | ``flags`` - the revision flags |
|
1315 | ``flags`` - the revision flags | |
1314 | ``operation`` - the operation being performed (read or write) |
|
1316 | ``operation`` - the operation being performed (read or write) | |
1315 | ``raw`` - an optional argument describing if the raw transform should be |
|
1317 | ``raw`` - an optional argument describing if the raw transform should be | |
1316 | applied. |
|
1318 | applied. | |
1317 |
|
1319 | |||
1318 | This method processes the flags in the order (or reverse order if |
|
1320 | This method processes the flags in the order (or reverse order if | |
1319 | ``operation`` is 'write') defined by REVIDX_FLAGS_ORDER, applying the |
|
1321 | ``operation`` is 'write') defined by REVIDX_FLAGS_ORDER, applying the | |
1320 | flag processors registered for present flags. The order of flags defined |
|
1322 | flag processors registered for present flags. The order of flags defined | |
1321 | in REVIDX_FLAGS_ORDER needs to be stable to allow non-commutativity. |
|
1323 | in REVIDX_FLAGS_ORDER needs to be stable to allow non-commutativity. | |
1322 |
|
1324 | |||
1323 | Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the |
|
1325 | Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the | |
1324 | processed text and ``validatehash`` is a bool indicating whether the |
|
1326 | processed text and ``validatehash`` is a bool indicating whether the | |
1325 | returned text should be checked for hash integrity. |
|
1327 | returned text should be checked for hash integrity. | |
1326 |
|
1328 | |||
1327 | Note: If the ``raw`` argument is set, it has precedence over the |
|
1329 | Note: If the ``raw`` argument is set, it has precedence over the | |
1328 | operation and will only update the value of ``validatehash``. |
|
1330 | operation and will only update the value of ``validatehash``. | |
1329 | """ |
|
1331 | """ | |
1330 | if not operation in ('read', 'write'): |
|
1332 | if not operation in ('read', 'write'): | |
1331 | raise ProgrammingError(_("invalid '%s' operation ") % (operation)) |
|
1333 | raise ProgrammingError(_("invalid '%s' operation ") % (operation)) | |
1332 | # Check all flags are known. |
|
1334 | # Check all flags are known. | |
1333 | if flags & ~REVIDX_KNOWN_FLAGS: |
|
1335 | if flags & ~REVIDX_KNOWN_FLAGS: | |
1334 | raise RevlogError(_("incompatible revision flag '%#x'") % |
|
1336 | raise RevlogError(_("incompatible revision flag '%#x'") % | |
1335 | (flags & ~REVIDX_KNOWN_FLAGS)) |
|
1337 | (flags & ~REVIDX_KNOWN_FLAGS)) | |
1336 | validatehash = True |
|
1338 | validatehash = True | |
1337 | # Depending on the operation (read or write), the order might be |
|
1339 | # Depending on the operation (read or write), the order might be | |
1338 | # reversed due to non-commutative transforms. |
|
1340 | # reversed due to non-commutative transforms. | |
1339 | orderedflags = REVIDX_FLAGS_ORDER |
|
1341 | orderedflags = REVIDX_FLAGS_ORDER | |
1340 | if operation == 'write': |
|
1342 | if operation == 'write': | |
1341 | orderedflags = reversed(orderedflags) |
|
1343 | orderedflags = reversed(orderedflags) | |
1342 |
|
1344 | |||
1343 | for flag in orderedflags: |
|
1345 | for flag in orderedflags: | |
1344 | # If a flagprocessor has been registered for a known flag, apply the |
|
1346 | # If a flagprocessor has been registered for a known flag, apply the | |
1345 | # related operation transform and update result tuple. |
|
1347 | # related operation transform and update result tuple. | |
1346 | if flag & flags: |
|
1348 | if flag & flags: | |
1347 | vhash = True |
|
1349 | vhash = True | |
1348 |
|
1350 | |||
1349 | if flag not in _flagprocessors: |
|
1351 | if flag not in _flagprocessors: | |
1350 | message = _("missing processor for flag '%#x'") % (flag) |
|
1352 | message = _("missing processor for flag '%#x'") % (flag) | |
1351 | raise RevlogError(message) |
|
1353 | raise RevlogError(message) | |
1352 |
|
1354 | |||
1353 | processor = _flagprocessors[flag] |
|
1355 | processor = _flagprocessors[flag] | |
1354 | if processor is not None: |
|
1356 | if processor is not None: | |
1355 | readtransform, writetransform, rawtransform = processor |
|
1357 | readtransform, writetransform, rawtransform = processor | |
1356 |
|
1358 | |||
1357 | if raw: |
|
1359 | if raw: | |
1358 | vhash = rawtransform(self, text) |
|
1360 | vhash = rawtransform(self, text) | |
1359 | elif operation == 'read': |
|
1361 | elif operation == 'read': | |
1360 | text, vhash = readtransform(self, text) |
|
1362 | text, vhash = readtransform(self, text) | |
1361 | else: # write operation |
|
1363 | else: # write operation | |
1362 | text, vhash = writetransform(self, text) |
|
1364 | text, vhash = writetransform(self, text) | |
1363 | validatehash = validatehash and vhash |
|
1365 | validatehash = validatehash and vhash | |
1364 |
|
1366 | |||
1365 | return text, validatehash |
|
1367 | return text, validatehash | |
1366 |
|
1368 | |||
1367 | def checkhash(self, text, node, p1=None, p2=None, rev=None): |
|
1369 | def checkhash(self, text, node, p1=None, p2=None, rev=None): | |
1368 | """Check node hash integrity. |
|
1370 | """Check node hash integrity. | |
1369 |
|
1371 | |||
1370 | Available as a function so that subclasses can extend hash mismatch |
|
1372 | Available as a function so that subclasses can extend hash mismatch | |
1371 | behaviors as needed. |
|
1373 | behaviors as needed. | |
1372 | """ |
|
1374 | """ | |
1373 | if p1 is None and p2 is None: |
|
1375 | if p1 is None and p2 is None: | |
1374 | p1, p2 = self.parents(node) |
|
1376 | p1, p2 = self.parents(node) | |
1375 | if node != self.hash(text, p1, p2): |
|
1377 | if node != self.hash(text, p1, p2): | |
1376 | revornode = rev |
|
1378 | revornode = rev | |
1377 | if revornode is None: |
|
1379 | if revornode is None: | |
1378 | revornode = templatefilters.short(hex(node)) |
|
1380 | revornode = templatefilters.short(hex(node)) | |
1379 | raise RevlogError(_("integrity check failed on %s:%s") |
|
1381 | raise RevlogError(_("integrity check failed on %s:%s") | |
1380 | % (self.indexfile, revornode)) |
|
1382 | % (self.indexfile, revornode)) | |
1381 |
|
1383 | |||
1382 | def checkinlinesize(self, tr, fp=None): |
|
1384 | def checkinlinesize(self, tr, fp=None): | |
1383 | """Check if the revlog is too big for inline and convert if so. |
|
1385 | """Check if the revlog is too big for inline and convert if so. | |
1384 |
|
1386 | |||
1385 | This should be called after revisions are added to the revlog. If the |
|
1387 | This should be called after revisions are added to the revlog. If the | |
1386 | revlog has grown too large to be an inline revlog, it will convert it |
|
1388 | revlog has grown too large to be an inline revlog, it will convert it | |
1387 | to use multiple index and data files. |
|
1389 | to use multiple index and data files. | |
1388 | """ |
|
1390 | """ | |
1389 | if not self._inline or (self.start(-2) + self.length(-2)) < _maxinline: |
|
1391 | if not self._inline or (self.start(-2) + self.length(-2)) < _maxinline: | |
1390 | return |
|
1392 | return | |
1391 |
|
1393 | |||
1392 | trinfo = tr.find(self.indexfile) |
|
1394 | trinfo = tr.find(self.indexfile) | |
1393 | if trinfo is None: |
|
1395 | if trinfo is None: | |
1394 | raise RevlogError(_("%s not found in the transaction") |
|
1396 | raise RevlogError(_("%s not found in the transaction") | |
1395 | % self.indexfile) |
|
1397 | % self.indexfile) | |
1396 |
|
1398 | |||
1397 | trindex = trinfo[2] |
|
1399 | trindex = trinfo[2] | |
1398 | if trindex is not None: |
|
1400 | if trindex is not None: | |
1399 | dataoff = self.start(trindex) |
|
1401 | dataoff = self.start(trindex) | |
1400 | else: |
|
1402 | else: | |
1401 | # revlog was stripped at start of transaction, use all leftover data |
|
1403 | # revlog was stripped at start of transaction, use all leftover data | |
1402 | trindex = len(self) - 1 |
|
1404 | trindex = len(self) - 1 | |
1403 | dataoff = self.end(-2) |
|
1405 | dataoff = self.end(-2) | |
1404 |
|
1406 | |||
1405 | tr.add(self.datafile, dataoff) |
|
1407 | tr.add(self.datafile, dataoff) | |
1406 |
|
1408 | |||
1407 | if fp: |
|
1409 | if fp: | |
1408 | fp.flush() |
|
1410 | fp.flush() | |
1409 | fp.close() |
|
1411 | fp.close() | |
1410 |
|
1412 | |||
1411 | df = self.opener(self.datafile, 'w') |
|
1413 | df = self.opener(self.datafile, 'w') | |
1412 | try: |
|
1414 | try: | |
1413 | for r in self: |
|
1415 | for r in self: | |
1414 | df.write(self._chunkraw(r, r)[1]) |
|
1416 | df.write(self._chunkraw(r, r)[1]) | |
1415 | finally: |
|
1417 | finally: | |
1416 | df.close() |
|
1418 | df.close() | |
1417 |
|
1419 | |||
1418 | fp = self.opener(self.indexfile, 'w', atomictemp=True, |
|
1420 | fp = self.opener(self.indexfile, 'w', atomictemp=True, | |
1419 | checkambig=self._checkambig) |
|
1421 | checkambig=self._checkambig) | |
1420 | self.version &= ~(REVLOGNGINLINEDATA) |
|
1422 | self.version &= ~(REVLOGNGINLINEDATA) | |
1421 | self._inline = False |
|
1423 | self._inline = False | |
1422 | for i in self: |
|
1424 | for i in self: | |
1423 | e = self._io.packentry(self.index[i], self.node, self.version, i) |
|
1425 | e = self._io.packentry(self.index[i], self.node, self.version, i) | |
1424 | fp.write(e) |
|
1426 | fp.write(e) | |
1425 |
|
1427 | |||
1426 | # if we don't call close, the temp file will never replace the |
|
1428 | # if we don't call close, the temp file will never replace the | |
1427 | # real index |
|
1429 | # real index | |
1428 | fp.close() |
|
1430 | fp.close() | |
1429 |
|
1431 | |||
1430 | tr.replace(self.indexfile, trindex * self._io.size) |
|
1432 | tr.replace(self.indexfile, trindex * self._io.size) | |
1431 | self._chunkclear() |
|
1433 | self._chunkclear() | |
1432 |
|
1434 | |||
1433 | def addrevision(self, text, transaction, link, p1, p2, cachedelta=None, |
|
1435 | def addrevision(self, text, transaction, link, p1, p2, cachedelta=None, | |
1434 | node=None, flags=REVIDX_DEFAULT_FLAGS): |
|
1436 | node=None, flags=REVIDX_DEFAULT_FLAGS): | |
1435 | """add a revision to the log |
|
1437 | """add a revision to the log | |
1436 |
|
1438 | |||
1437 | text - the revision data to add |
|
1439 | text - the revision data to add | |
1438 | transaction - the transaction object used for rollback |
|
1440 | transaction - the transaction object used for rollback | |
1439 | link - the linkrev data to add |
|
1441 | link - the linkrev data to add | |
1440 | p1, p2 - the parent nodeids of the revision |
|
1442 | p1, p2 - the parent nodeids of the revision | |
1441 | cachedelta - an optional precomputed delta |
|
1443 | cachedelta - an optional precomputed delta | |
1442 | node - nodeid of revision; typically node is not specified, and it is |
|
1444 | node - nodeid of revision; typically node is not specified, and it is | |
1443 | computed by default as hash(text, p1, p2), however subclasses might |
|
1445 | computed by default as hash(text, p1, p2), however subclasses might | |
1444 | use different hashing method (and override checkhash() in such case) |
|
1446 | use different hashing method (and override checkhash() in such case) | |
1445 | flags - the known flags to set on the revision |
|
1447 | flags - the known flags to set on the revision | |
1446 | """ |
|
1448 | """ | |
1447 | if link == nullrev: |
|
1449 | if link == nullrev: | |
1448 | raise RevlogError(_("attempted to add linkrev -1 to %s") |
|
1450 | raise RevlogError(_("attempted to add linkrev -1 to %s") | |
1449 | % self.indexfile) |
|
1451 | % self.indexfile) | |
1450 |
|
1452 | |||
1451 | if flags: |
|
1453 | if flags: | |
1452 | node = node or self.hash(text, p1, p2) |
|
1454 | node = node or self.hash(text, p1, p2) | |
1453 |
|
1455 | |||
1454 | rawtext, validatehash = self._processflags(text, flags, 'write') |
|
1456 | rawtext, validatehash = self._processflags(text, flags, 'write') | |
1455 |
|
1457 | |||
1456 | # If the flag processor modifies the revision data, ignore any provided |
|
1458 | # If the flag processor modifies the revision data, ignore any provided | |
1457 | # cachedelta. |
|
1459 | # cachedelta. | |
1458 | if rawtext != text: |
|
1460 | if rawtext != text: | |
1459 | cachedelta = None |
|
1461 | cachedelta = None | |
1460 |
|
1462 | |||
1461 | if len(rawtext) > _maxentrysize: |
|
1463 | if len(rawtext) > _maxentrysize: | |
1462 | raise RevlogError( |
|
1464 | raise RevlogError( | |
1463 | _("%s: size of %d bytes exceeds maximum revlog storage of 2GiB") |
|
1465 | _("%s: size of %d bytes exceeds maximum revlog storage of 2GiB") | |
1464 | % (self.indexfile, len(rawtext))) |
|
1466 | % (self.indexfile, len(rawtext))) | |
1465 |
|
1467 | |||
1466 | node = node or self.hash(rawtext, p1, p2) |
|
1468 | node = node or self.hash(rawtext, p1, p2) | |
1467 | if node in self.nodemap: |
|
1469 | if node in self.nodemap: | |
1468 | return node |
|
1470 | return node | |
1469 |
|
1471 | |||
1470 | if validatehash: |
|
1472 | if validatehash: | |
1471 | self.checkhash(rawtext, node, p1=p1, p2=p2) |
|
1473 | self.checkhash(rawtext, node, p1=p1, p2=p2) | |
1472 |
|
1474 | |||
1473 | dfh = None |
|
1475 | dfh = None | |
1474 | if not self._inline: |
|
1476 | if not self._inline: | |
1475 | dfh = self.opener(self.datafile, "a+") |
|
1477 | dfh = self.opener(self.datafile, "a+") | |
1476 | ifh = self.opener(self.indexfile, "a+", checkambig=self._checkambig) |
|
1478 | ifh = self.opener(self.indexfile, "a+", checkambig=self._checkambig) | |
1477 | try: |
|
1479 | try: | |
1478 | return self._addrevision(node, rawtext, transaction, link, p1, p2, |
|
1480 | return self._addrevision(node, rawtext, transaction, link, p1, p2, | |
1479 | flags, cachedelta, ifh, dfh) |
|
1481 | flags, cachedelta, ifh, dfh) | |
1480 | finally: |
|
1482 | finally: | |
1481 | if dfh: |
|
1483 | if dfh: | |
1482 | dfh.close() |
|
1484 | dfh.close() | |
1483 | ifh.close() |
|
1485 | ifh.close() | |
1484 |
|
1486 | |||
1485 | def compress(self, data): |
|
1487 | def compress(self, data): | |
1486 | """Generate a possibly-compressed representation of data.""" |
|
1488 | """Generate a possibly-compressed representation of data.""" | |
1487 | if not data: |
|
1489 | if not data: | |
1488 | return '', data |
|
1490 | return '', data | |
1489 |
|
1491 | |||
1490 | compressed = self._compressor.compress(data) |
|
1492 | compressed = self._compressor.compress(data) | |
1491 |
|
1493 | |||
1492 | if compressed: |
|
1494 | if compressed: | |
1493 | # The revlog compressor added the header in the returned data. |
|
1495 | # The revlog compressor added the header in the returned data. | |
1494 | return '', compressed |
|
1496 | return '', compressed | |
1495 |
|
1497 | |||
1496 | if data[0:1] == '\0': |
|
1498 | if data[0:1] == '\0': | |
1497 | return '', data |
|
1499 | return '', data | |
1498 | return 'u', data |
|
1500 | return 'u', data | |
1499 |
|
1501 | |||
1500 | def decompress(self, data): |
|
1502 | def decompress(self, data): | |
1501 | """Decompress a revlog chunk. |
|
1503 | """Decompress a revlog chunk. | |
1502 |
|
1504 | |||
1503 | The chunk is expected to begin with a header identifying the |
|
1505 | The chunk is expected to begin with a header identifying the | |
1504 | format type so it can be routed to an appropriate decompressor. |
|
1506 | format type so it can be routed to an appropriate decompressor. | |
1505 | """ |
|
1507 | """ | |
1506 | if not data: |
|
1508 | if not data: | |
1507 | return data |
|
1509 | return data | |
1508 |
|
1510 | |||
1509 | # Revlogs are read much more frequently than they are written and many |
|
1511 | # Revlogs are read much more frequently than they are written and many | |
1510 | # chunks only take microseconds to decompress, so performance is |
|
1512 | # chunks only take microseconds to decompress, so performance is | |
1511 | # important here. |
|
1513 | # important here. | |
1512 | # |
|
1514 | # | |
1513 | # We can make a few assumptions about revlogs: |
|
1515 | # We can make a few assumptions about revlogs: | |
1514 | # |
|
1516 | # | |
1515 | # 1) the majority of chunks will be compressed (as opposed to inline |
|
1517 | # 1) the majority of chunks will be compressed (as opposed to inline | |
1516 | # raw data). |
|
1518 | # raw data). | |
1517 | # 2) decompressing *any* data will likely by at least 10x slower than |
|
1519 | # 2) decompressing *any* data will likely by at least 10x slower than | |
1518 | # returning raw inline data. |
|
1520 | # returning raw inline data. | |
1519 | # 3) we want to prioritize common and officially supported compression |
|
1521 | # 3) we want to prioritize common and officially supported compression | |
1520 | # engines |
|
1522 | # engines | |
1521 | # |
|
1523 | # | |
1522 | # It follows that we want to optimize for "decompress compressed data |
|
1524 | # It follows that we want to optimize for "decompress compressed data | |
1523 | # when encoded with common and officially supported compression engines" |
|
1525 | # when encoded with common and officially supported compression engines" | |
1524 | # case over "raw data" and "data encoded by less common or non-official |
|
1526 | # case over "raw data" and "data encoded by less common or non-official | |
1525 | # compression engines." That is why we have the inline lookup first |
|
1527 | # compression engines." That is why we have the inline lookup first | |
1526 | # followed by the compengines lookup. |
|
1528 | # followed by the compengines lookup. | |
1527 | # |
|
1529 | # | |
1528 | # According to `hg perfrevlogchunks`, this is ~0.5% faster for zlib |
|
1530 | # According to `hg perfrevlogchunks`, this is ~0.5% faster for zlib | |
1529 | # compressed chunks. And this matters for changelog and manifest reads. |
|
1531 | # compressed chunks. And this matters for changelog and manifest reads. | |
1530 | t = data[0:1] |
|
1532 | t = data[0:1] | |
1531 |
|
1533 | |||
1532 | if t == 'x': |
|
1534 | if t == 'x': | |
1533 | try: |
|
1535 | try: | |
1534 | return _zlibdecompress(data) |
|
1536 | return _zlibdecompress(data) | |
1535 | except zlib.error as e: |
|
1537 | except zlib.error as e: | |
1536 | raise RevlogError(_('revlog decompress error: %s') % str(e)) |
|
1538 | raise RevlogError(_('revlog decompress error: %s') % str(e)) | |
1537 | # '\0' is more common than 'u' so it goes first. |
|
1539 | # '\0' is more common than 'u' so it goes first. | |
1538 | elif t == '\0': |
|
1540 | elif t == '\0': | |
1539 | return data |
|
1541 | return data | |
1540 | elif t == 'u': |
|
1542 | elif t == 'u': | |
1541 | return util.buffer(data, 1) |
|
1543 | return util.buffer(data, 1) | |
1542 |
|
1544 | |||
1543 | try: |
|
1545 | try: | |
1544 | compressor = self._decompressors[t] |
|
1546 | compressor = self._decompressors[t] | |
1545 | except KeyError: |
|
1547 | except KeyError: | |
1546 | try: |
|
1548 | try: | |
1547 | engine = util.compengines.forrevlogheader(t) |
|
1549 | engine = util.compengines.forrevlogheader(t) | |
1548 | compressor = engine.revlogcompressor() |
|
1550 | compressor = engine.revlogcompressor() | |
1549 | self._decompressors[t] = compressor |
|
1551 | self._decompressors[t] = compressor | |
1550 | except KeyError: |
|
1552 | except KeyError: | |
1551 | raise RevlogError(_('unknown compression type %r') % t) |
|
1553 | raise RevlogError(_('unknown compression type %r') % t) | |
1552 |
|
1554 | |||
1553 | return compressor.decompress(data) |
|
1555 | return compressor.decompress(data) | |
1554 |
|
1556 | |||
1555 | def _isgooddelta(self, d, textlen): |
|
1557 | def _isgooddelta(self, d, textlen): | |
1556 | """Returns True if the given delta is good. Good means that it is within |
|
1558 | """Returns True if the given delta is good. Good means that it is within | |
1557 | the disk span, disk size, and chain length bounds that we know to be |
|
1559 | the disk span, disk size, and chain length bounds that we know to be | |
1558 | performant.""" |
|
1560 | performant.""" | |
1559 | if d is None: |
|
1561 | if d is None: | |
1560 | return False |
|
1562 | return False | |
1561 |
|
1563 | |||
1562 | # - 'dist' is the distance from the base revision -- bounding it limits |
|
1564 | # - 'dist' is the distance from the base revision -- bounding it limits | |
1563 | # the amount of I/O we need to do. |
|
1565 | # the amount of I/O we need to do. | |
1564 | # - 'compresseddeltalen' is the sum of the total size of deltas we need |
|
1566 | # - 'compresseddeltalen' is the sum of the total size of deltas we need | |
1565 | # to apply -- bounding it limits the amount of CPU we consume. |
|
1567 | # to apply -- bounding it limits the amount of CPU we consume. | |
1566 | dist, l, data, base, chainbase, chainlen, compresseddeltalen = d |
|
1568 | dist, l, data, base, chainbase, chainlen, compresseddeltalen = d | |
1567 | if (dist > textlen * 4 or l > textlen or |
|
1569 | if (dist > textlen * 4 or l > textlen or | |
1568 | compresseddeltalen > textlen * 2 or |
|
1570 | compresseddeltalen > textlen * 2 or | |
1569 | (self._maxchainlen and chainlen > self._maxchainlen)): |
|
1571 | (self._maxchainlen and chainlen > self._maxchainlen)): | |
1570 | return False |
|
1572 | return False | |
1571 |
|
1573 | |||
1572 | return True |
|
1574 | return True | |
1573 |
|
1575 | |||
1574 | def _addrevision(self, node, text, transaction, link, p1, p2, flags, |
|
1576 | def _addrevision(self, node, text, transaction, link, p1, p2, flags, | |
1575 | cachedelta, ifh, dfh, alwayscache=False, raw=False): |
|
1577 | cachedelta, ifh, dfh, alwayscache=False, raw=False): | |
1576 | """internal function to add revisions to the log |
|
1578 | """internal function to add revisions to the log | |
1577 |
|
1579 | |||
1578 | see addrevision for argument descriptions. |
|
1580 | see addrevision for argument descriptions. | |
1579 | invariants: |
|
1581 | invariants: | |
1580 | - text is optional (can be None); if not set, cachedelta must be set. |
|
1582 | - text is optional (can be None); if not set, cachedelta must be set. | |
1581 | if both are set, they must correspond to each other. |
|
1583 | if both are set, they must correspond to each other. | |
1582 | - raw is optional; if set to True, it indicates the revision data is to |
|
1584 | - raw is optional; if set to True, it indicates the revision data is to | |
1583 | be treated by _processflags() as raw. It is usually set by changegroup |
|
1585 | be treated by _processflags() as raw. It is usually set by changegroup | |
1584 | generation and debug commands. |
|
1586 | generation and debug commands. | |
1585 | """ |
|
1587 | """ | |
1586 | btext = [text] |
|
1588 | btext = [text] | |
1587 | def buildtext(): |
|
1589 | def buildtext(): | |
1588 | if btext[0] is not None: |
|
1590 | if btext[0] is not None: | |
1589 | return btext[0] |
|
1591 | return btext[0] | |
1590 | baserev = cachedelta[0] |
|
1592 | baserev = cachedelta[0] | |
1591 | delta = cachedelta[1] |
|
1593 | delta = cachedelta[1] | |
1592 | # special case deltas which replace entire base; no need to decode |
|
1594 | # special case deltas which replace entire base; no need to decode | |
1593 | # base revision. this neatly avoids censored bases, which throw when |
|
1595 | # base revision. this neatly avoids censored bases, which throw when | |
1594 | # they're decoded. |
|
1596 | # they're decoded. | |
1595 | hlen = struct.calcsize(">lll") |
|
1597 | hlen = struct.calcsize(">lll") | |
1596 | if delta[:hlen] == mdiff.replacediffheader(self.rawsize(baserev), |
|
1598 | if delta[:hlen] == mdiff.replacediffheader(self.rawsize(baserev), | |
1597 | len(delta) - hlen): |
|
1599 | len(delta) - hlen): | |
1598 | btext[0] = delta[hlen:] |
|
1600 | btext[0] = delta[hlen:] | |
1599 | else: |
|
1601 | else: | |
1600 | if self._inline: |
|
1602 | if self._inline: | |
1601 | fh = ifh |
|
1603 | fh = ifh | |
1602 | else: |
|
1604 | else: | |
1603 | fh = dfh |
|
1605 | fh = dfh | |
1604 | basetext = self.revision(baserev, _df=fh, raw=raw) |
|
1606 | basetext = self.revision(baserev, _df=fh, raw=raw) | |
1605 | btext[0] = mdiff.patch(basetext, delta) |
|
1607 | btext[0] = mdiff.patch(basetext, delta) | |
1606 |
|
1608 | |||
1607 | try: |
|
1609 | try: | |
1608 | res = self._processflags(btext[0], flags, 'read', raw=raw) |
|
1610 | res = self._processflags(btext[0], flags, 'read', raw=raw) | |
1609 | btext[0], validatehash = res |
|
1611 | btext[0], validatehash = res | |
1610 | if validatehash: |
|
1612 | if validatehash: | |
1611 | self.checkhash(btext[0], node, p1=p1, p2=p2) |
|
1613 | self.checkhash(btext[0], node, p1=p1, p2=p2) | |
1612 | if flags & REVIDX_ISCENSORED: |
|
1614 | if flags & REVIDX_ISCENSORED: | |
1613 | raise RevlogError(_('node %s is not censored') % node) |
|
1615 | raise RevlogError(_('node %s is not censored') % node) | |
1614 | except CensoredNodeError: |
|
1616 | except CensoredNodeError: | |
1615 | # must pass the censored index flag to add censored revisions |
|
1617 | # must pass the censored index flag to add censored revisions | |
1616 | if not flags & REVIDX_ISCENSORED: |
|
1618 | if not flags & REVIDX_ISCENSORED: | |
1617 | raise |
|
1619 | raise | |
1618 | return btext[0] |
|
1620 | return btext[0] | |
1619 |
|
1621 | |||
1620 | def builddelta(rev): |
|
1622 | def builddelta(rev): | |
1621 | # can we use the cached delta? |
|
1623 | # can we use the cached delta? | |
1622 | if cachedelta and cachedelta[0] == rev: |
|
1624 | if cachedelta and cachedelta[0] == rev: | |
1623 | delta = cachedelta[1] |
|
1625 | delta = cachedelta[1] | |
1624 | else: |
|
1626 | else: | |
1625 | t = buildtext() |
|
1627 | t = buildtext() | |
1626 | if self.iscensored(rev): |
|
1628 | if self.iscensored(rev): | |
1627 | # deltas based on a censored revision must replace the |
|
1629 | # deltas based on a censored revision must replace the | |
1628 | # full content in one patch, so delta works everywhere |
|
1630 | # full content in one patch, so delta works everywhere | |
1629 | header = mdiff.replacediffheader(self.rawsize(rev), len(t)) |
|
1631 | header = mdiff.replacediffheader(self.rawsize(rev), len(t)) | |
1630 | delta = header + t |
|
1632 | delta = header + t | |
1631 | else: |
|
1633 | else: | |
1632 | if self._inline: |
|
1634 | if self._inline: | |
1633 | fh = ifh |
|
1635 | fh = ifh | |
1634 | else: |
|
1636 | else: | |
1635 | fh = dfh |
|
1637 | fh = dfh | |
1636 | ptext = self.revision(rev, _df=fh) |
|
1638 | ptext = self.revision(rev, _df=fh) | |
1637 | delta = mdiff.textdiff(ptext, t) |
|
1639 | delta = mdiff.textdiff(ptext, t) | |
1638 | header, data = self.compress(delta) |
|
1640 | header, data = self.compress(delta) | |
1639 | deltalen = len(header) + len(data) |
|
1641 | deltalen = len(header) + len(data) | |
1640 | chainbase = self.chainbase(rev) |
|
1642 | chainbase = self.chainbase(rev) | |
1641 | dist = deltalen + offset - self.start(chainbase) |
|
1643 | dist = deltalen + offset - self.start(chainbase) | |
1642 | if self._generaldelta: |
|
1644 | if self._generaldelta: | |
1643 | base = rev |
|
1645 | base = rev | |
1644 | else: |
|
1646 | else: | |
1645 | base = chainbase |
|
1647 | base = chainbase | |
1646 | chainlen, compresseddeltalen = self._chaininfo(rev) |
|
1648 | chainlen, compresseddeltalen = self._chaininfo(rev) | |
1647 | chainlen += 1 |
|
1649 | chainlen += 1 | |
1648 | compresseddeltalen += deltalen |
|
1650 | compresseddeltalen += deltalen | |
1649 | return (dist, deltalen, (header, data), base, |
|
1651 | return (dist, deltalen, (header, data), base, | |
1650 | chainbase, chainlen, compresseddeltalen) |
|
1652 | chainbase, chainlen, compresseddeltalen) | |
1651 |
|
1653 | |||
1652 | curr = len(self) |
|
1654 | curr = len(self) | |
1653 | prev = curr - 1 |
|
1655 | prev = curr - 1 | |
1654 | offset = self.end(prev) |
|
1656 | offset = self.end(prev) | |
1655 | delta = None |
|
1657 | delta = None | |
1656 | p1r, p2r = self.rev(p1), self.rev(p2) |
|
1658 | p1r, p2r = self.rev(p1), self.rev(p2) | |
1657 |
|
1659 | |||
1658 | # full versions are inserted when the needed deltas |
|
1660 | # full versions are inserted when the needed deltas | |
1659 | # become comparable to the uncompressed text |
|
1661 | # become comparable to the uncompressed text | |
1660 | if text is None: |
|
1662 | if text is None: | |
1661 | textlen = mdiff.patchedsize(self.rawsize(cachedelta[0]), |
|
1663 | textlen = mdiff.patchedsize(self.rawsize(cachedelta[0]), | |
1662 | cachedelta[1]) |
|
1664 | cachedelta[1]) | |
1663 | else: |
|
1665 | else: | |
1664 | textlen = len(text) |
|
1666 | textlen = len(text) | |
1665 |
|
1667 | |||
1666 | # should we try to build a delta? |
|
1668 | # should we try to build a delta? | |
1667 | if prev != nullrev and self.storedeltachains: |
|
1669 | if prev != nullrev and self.storedeltachains: | |
1668 | tested = set() |
|
1670 | tested = set() | |
1669 | # This condition is true most of the time when processing |
|
1671 | # This condition is true most of the time when processing | |
1670 | # changegroup data into a generaldelta repo. The only time it |
|
1672 | # changegroup data into a generaldelta repo. The only time it | |
1671 | # isn't true is if this is the first revision in a delta chain |
|
1673 | # isn't true is if this is the first revision in a delta chain | |
1672 | # or if ``format.generaldelta=true`` disabled ``lazydeltabase``. |
|
1674 | # or if ``format.generaldelta=true`` disabled ``lazydeltabase``. | |
1673 | if cachedelta and self._generaldelta and self._lazydeltabase: |
|
1675 | if cachedelta and self._generaldelta and self._lazydeltabase: | |
1674 | # Assume what we received from the server is a good choice |
|
1676 | # Assume what we received from the server is a good choice | |
1675 | # build delta will reuse the cache |
|
1677 | # build delta will reuse the cache | |
1676 | candidatedelta = builddelta(cachedelta[0]) |
|
1678 | candidatedelta = builddelta(cachedelta[0]) | |
1677 | tested.add(cachedelta[0]) |
|
1679 | tested.add(cachedelta[0]) | |
1678 | if self._isgooddelta(candidatedelta, textlen): |
|
1680 | if self._isgooddelta(candidatedelta, textlen): | |
1679 | delta = candidatedelta |
|
1681 | delta = candidatedelta | |
1680 | if delta is None and self._generaldelta: |
|
1682 | if delta is None and self._generaldelta: | |
1681 | # exclude already lazy tested base if any |
|
1683 | # exclude already lazy tested base if any | |
1682 | parents = [p for p in (p1r, p2r) |
|
1684 | parents = [p for p in (p1r, p2r) | |
1683 | if p != nullrev and p not in tested] |
|
1685 | if p != nullrev and p not in tested] | |
1684 | if parents and not self._aggressivemergedeltas: |
|
1686 | if parents and not self._aggressivemergedeltas: | |
1685 | # Pick whichever parent is closer to us (to minimize the |
|
1687 | # Pick whichever parent is closer to us (to minimize the | |
1686 | # chance of having to build a fulltext). |
|
1688 | # chance of having to build a fulltext). | |
1687 | parents = [max(parents)] |
|
1689 | parents = [max(parents)] | |
1688 | tested.update(parents) |
|
1690 | tested.update(parents) | |
1689 | pdeltas = [] |
|
1691 | pdeltas = [] | |
1690 | for p in parents: |
|
1692 | for p in parents: | |
1691 | pd = builddelta(p) |
|
1693 | pd = builddelta(p) | |
1692 | if self._isgooddelta(pd, textlen): |
|
1694 | if self._isgooddelta(pd, textlen): | |
1693 | pdeltas.append(pd) |
|
1695 | pdeltas.append(pd) | |
1694 | if pdeltas: |
|
1696 | if pdeltas: | |
1695 | delta = min(pdeltas, key=lambda x: x[1]) |
|
1697 | delta = min(pdeltas, key=lambda x: x[1]) | |
1696 | if delta is None and prev not in tested: |
|
1698 | if delta is None and prev not in tested: | |
1697 | # other approach failed try against prev to hopefully save us a |
|
1699 | # other approach failed try against prev to hopefully save us a | |
1698 | # fulltext. |
|
1700 | # fulltext. | |
1699 | candidatedelta = builddelta(prev) |
|
1701 | candidatedelta = builddelta(prev) | |
1700 | if self._isgooddelta(candidatedelta, textlen): |
|
1702 | if self._isgooddelta(candidatedelta, textlen): | |
1701 | delta = candidatedelta |
|
1703 | delta = candidatedelta | |
1702 | if delta is not None: |
|
1704 | if delta is not None: | |
1703 | dist, l, data, base, chainbase, chainlen, compresseddeltalen = delta |
|
1705 | dist, l, data, base, chainbase, chainlen, compresseddeltalen = delta | |
1704 | else: |
|
1706 | else: | |
1705 | text = buildtext() |
|
1707 | text = buildtext() | |
1706 | data = self.compress(text) |
|
1708 | data = self.compress(text) | |
1707 | l = len(data[1]) + len(data[0]) |
|
1709 | l = len(data[1]) + len(data[0]) | |
1708 | base = chainbase = curr |
|
1710 | base = chainbase = curr | |
1709 |
|
1711 | |||
1710 | e = (offset_type(offset, flags), l, textlen, |
|
1712 | e = (offset_type(offset, flags), l, textlen, | |
1711 | base, link, p1r, p2r, node) |
|
1713 | base, link, p1r, p2r, node) | |
1712 | self.index.insert(-1, e) |
|
1714 | self.index.insert(-1, e) | |
1713 | self.nodemap[node] = curr |
|
1715 | self.nodemap[node] = curr | |
1714 |
|
1716 | |||
1715 | entry = self._io.packentry(e, self.node, self.version, curr) |
|
1717 | entry = self._io.packentry(e, self.node, self.version, curr) | |
1716 | self._writeentry(transaction, ifh, dfh, entry, data, link, offset) |
|
1718 | self._writeentry(transaction, ifh, dfh, entry, data, link, offset) | |
1717 |
|
1719 | |||
1718 | if alwayscache and text is None: |
|
1720 | if alwayscache and text is None: | |
1719 | text = buildtext() |
|
1721 | text = buildtext() | |
1720 |
|
1722 | |||
1721 | if type(text) == str: # only accept immutable objects |
|
1723 | if type(text) == str: # only accept immutable objects | |
1722 | self._cache = (node, curr, text) |
|
1724 | self._cache = (node, curr, text) | |
1723 | self._chainbasecache[curr] = chainbase |
|
1725 | self._chainbasecache[curr] = chainbase | |
1724 | return node |
|
1726 | return node | |
1725 |
|
1727 | |||
1726 | def _writeentry(self, transaction, ifh, dfh, entry, data, link, offset): |
|
1728 | def _writeentry(self, transaction, ifh, dfh, entry, data, link, offset): | |
1727 | # Files opened in a+ mode have inconsistent behavior on various |
|
1729 | # Files opened in a+ mode have inconsistent behavior on various | |
1728 | # platforms. Windows requires that a file positioning call be made |
|
1730 | # platforms. Windows requires that a file positioning call be made | |
1729 | # when the file handle transitions between reads and writes. See |
|
1731 | # when the file handle transitions between reads and writes. See | |
1730 | # 3686fa2b8eee and the mixedfilemodewrapper in windows.py. On other |
|
1732 | # 3686fa2b8eee and the mixedfilemodewrapper in windows.py. On other | |
1731 | # platforms, Python or the platform itself can be buggy. Some versions |
|
1733 | # platforms, Python or the platform itself can be buggy. Some versions | |
1732 | # of Solaris have been observed to not append at the end of the file |
|
1734 | # of Solaris have been observed to not append at the end of the file | |
1733 | # if the file was seeked to before the end. See issue4943 for more. |
|
1735 | # if the file was seeked to before the end. See issue4943 for more. | |
1734 | # |
|
1736 | # | |
1735 | # We work around this issue by inserting a seek() before writing. |
|
1737 | # We work around this issue by inserting a seek() before writing. | |
1736 | # Note: This is likely not necessary on Python 3. |
|
1738 | # Note: This is likely not necessary on Python 3. | |
1737 | ifh.seek(0, os.SEEK_END) |
|
1739 | ifh.seek(0, os.SEEK_END) | |
1738 | if dfh: |
|
1740 | if dfh: | |
1739 | dfh.seek(0, os.SEEK_END) |
|
1741 | dfh.seek(0, os.SEEK_END) | |
1740 |
|
1742 | |||
1741 | curr = len(self) - 1 |
|
1743 | curr = len(self) - 1 | |
1742 | if not self._inline: |
|
1744 | if not self._inline: | |
1743 | transaction.add(self.datafile, offset) |
|
1745 | transaction.add(self.datafile, offset) | |
1744 | transaction.add(self.indexfile, curr * len(entry)) |
|
1746 | transaction.add(self.indexfile, curr * len(entry)) | |
1745 | if data[0]: |
|
1747 | if data[0]: | |
1746 | dfh.write(data[0]) |
|
1748 | dfh.write(data[0]) | |
1747 | dfh.write(data[1]) |
|
1749 | dfh.write(data[1]) | |
1748 | ifh.write(entry) |
|
1750 | ifh.write(entry) | |
1749 | else: |
|
1751 | else: | |
1750 | offset += curr * self._io.size |
|
1752 | offset += curr * self._io.size | |
1751 | transaction.add(self.indexfile, offset, curr) |
|
1753 | transaction.add(self.indexfile, offset, curr) | |
1752 | ifh.write(entry) |
|
1754 | ifh.write(entry) | |
1753 | ifh.write(data[0]) |
|
1755 | ifh.write(data[0]) | |
1754 | ifh.write(data[1]) |
|
1756 | ifh.write(data[1]) | |
1755 | self.checkinlinesize(transaction, ifh) |
|
1757 | self.checkinlinesize(transaction, ifh) | |
1756 |
|
1758 | |||
1757 | def addgroup(self, cg, linkmapper, transaction, addrevisioncb=None): |
|
1759 | def addgroup(self, cg, linkmapper, transaction, addrevisioncb=None): | |
1758 | """ |
|
1760 | """ | |
1759 | add a delta group |
|
1761 | add a delta group | |
1760 |
|
1762 | |||
1761 | given a set of deltas, add them to the revision log. the |
|
1763 | given a set of deltas, add them to the revision log. the | |
1762 | first delta is against its parent, which should be in our |
|
1764 | first delta is against its parent, which should be in our | |
1763 | log, the rest are against the previous delta. |
|
1765 | log, the rest are against the previous delta. | |
1764 |
|
1766 | |||
1765 | If ``addrevisioncb`` is defined, it will be called with arguments of |
|
1767 | If ``addrevisioncb`` is defined, it will be called with arguments of | |
1766 | this revlog and the node that was added. |
|
1768 | this revlog and the node that was added. | |
1767 | """ |
|
1769 | """ | |
1768 |
|
1770 | |||
1769 | # track the base of the current delta log |
|
1771 | # track the base of the current delta log | |
1770 | content = [] |
|
1772 | content = [] | |
1771 | node = None |
|
1773 | node = None | |
1772 |
|
1774 | |||
1773 | r = len(self) |
|
1775 | r = len(self) | |
1774 | end = 0 |
|
1776 | end = 0 | |
1775 | if r: |
|
1777 | if r: | |
1776 | end = self.end(r - 1) |
|
1778 | end = self.end(r - 1) | |
1777 | ifh = self.opener(self.indexfile, "a+", checkambig=self._checkambig) |
|
1779 | ifh = self.opener(self.indexfile, "a+", checkambig=self._checkambig) | |
1778 | isize = r * self._io.size |
|
1780 | isize = r * self._io.size | |
1779 | if self._inline: |
|
1781 | if self._inline: | |
1780 | transaction.add(self.indexfile, end + isize, r) |
|
1782 | transaction.add(self.indexfile, end + isize, r) | |
1781 | dfh = None |
|
1783 | dfh = None | |
1782 | else: |
|
1784 | else: | |
1783 | transaction.add(self.indexfile, isize, r) |
|
1785 | transaction.add(self.indexfile, isize, r) | |
1784 | transaction.add(self.datafile, end) |
|
1786 | transaction.add(self.datafile, end) | |
1785 | dfh = self.opener(self.datafile, "a+") |
|
1787 | dfh = self.opener(self.datafile, "a+") | |
1786 | def flush(): |
|
1788 | def flush(): | |
1787 | if dfh: |
|
1789 | if dfh: | |
1788 | dfh.flush() |
|
1790 | dfh.flush() | |
1789 | ifh.flush() |
|
1791 | ifh.flush() | |
1790 | try: |
|
1792 | try: | |
1791 | # loop through our set of deltas |
|
1793 | # loop through our set of deltas | |
1792 | chain = None |
|
1794 | chain = None | |
1793 | for chunkdata in iter(lambda: cg.deltachunk(chain), {}): |
|
1795 | for chunkdata in iter(lambda: cg.deltachunk(chain), {}): | |
1794 | node = chunkdata['node'] |
|
1796 | node = chunkdata['node'] | |
1795 | p1 = chunkdata['p1'] |
|
1797 | p1 = chunkdata['p1'] | |
1796 | p2 = chunkdata['p2'] |
|
1798 | p2 = chunkdata['p2'] | |
1797 | cs = chunkdata['cs'] |
|
1799 | cs = chunkdata['cs'] | |
1798 | deltabase = chunkdata['deltabase'] |
|
1800 | deltabase = chunkdata['deltabase'] | |
1799 | delta = chunkdata['delta'] |
|
1801 | delta = chunkdata['delta'] | |
1800 | flags = chunkdata['flags'] or REVIDX_DEFAULT_FLAGS |
|
1802 | flags = chunkdata['flags'] or REVIDX_DEFAULT_FLAGS | |
1801 |
|
1803 | |||
1802 | content.append(node) |
|
1804 | content.append(node) | |
1803 |
|
1805 | |||
1804 | link = linkmapper(cs) |
|
1806 | link = linkmapper(cs) | |
1805 | if node in self.nodemap: |
|
1807 | if node in self.nodemap: | |
1806 | # this can happen if two branches make the same change |
|
1808 | # this can happen if two branches make the same change | |
1807 | chain = node |
|
1809 | chain = node | |
1808 | continue |
|
1810 | continue | |
1809 |
|
1811 | |||
1810 | for p in (p1, p2): |
|
1812 | for p in (p1, p2): | |
1811 | if p not in self.nodemap: |
|
1813 | if p not in self.nodemap: | |
1812 | raise LookupError(p, self.indexfile, |
|
1814 | raise LookupError(p, self.indexfile, | |
1813 | _('unknown parent')) |
|
1815 | _('unknown parent')) | |
1814 |
|
1816 | |||
1815 | if deltabase not in self.nodemap: |
|
1817 | if deltabase not in self.nodemap: | |
1816 | raise LookupError(deltabase, self.indexfile, |
|
1818 | raise LookupError(deltabase, self.indexfile, | |
1817 | _('unknown delta base')) |
|
1819 | _('unknown delta base')) | |
1818 |
|
1820 | |||
1819 | baserev = self.rev(deltabase) |
|
1821 | baserev = self.rev(deltabase) | |
1820 |
|
1822 | |||
1821 | if baserev != nullrev and self.iscensored(baserev): |
|
1823 | if baserev != nullrev and self.iscensored(baserev): | |
1822 | # if base is censored, delta must be full replacement in a |
|
1824 | # if base is censored, delta must be full replacement in a | |
1823 | # single patch operation |
|
1825 | # single patch operation | |
1824 | hlen = struct.calcsize(">lll") |
|
1826 | hlen = struct.calcsize(">lll") | |
1825 | oldlen = self.rawsize(baserev) |
|
1827 | oldlen = self.rawsize(baserev) | |
1826 | newlen = len(delta) - hlen |
|
1828 | newlen = len(delta) - hlen | |
1827 | if delta[:hlen] != mdiff.replacediffheader(oldlen, newlen): |
|
1829 | if delta[:hlen] != mdiff.replacediffheader(oldlen, newlen): | |
1828 | raise error.CensoredBaseError(self.indexfile, |
|
1830 | raise error.CensoredBaseError(self.indexfile, | |
1829 | self.node(baserev)) |
|
1831 | self.node(baserev)) | |
1830 |
|
1832 | |||
1831 | if not flags and self._peek_iscensored(baserev, delta, flush): |
|
1833 | if not flags and self._peek_iscensored(baserev, delta, flush): | |
1832 | flags |= REVIDX_ISCENSORED |
|
1834 | flags |= REVIDX_ISCENSORED | |
1833 |
|
1835 | |||
1834 | # We assume consumers of addrevisioncb will want to retrieve |
|
1836 | # We assume consumers of addrevisioncb will want to retrieve | |
1835 | # the added revision, which will require a call to |
|
1837 | # the added revision, which will require a call to | |
1836 | # revision(). revision() will fast path if there is a cache |
|
1838 | # revision(). revision() will fast path if there is a cache | |
1837 | # hit. So, we tell _addrevision() to always cache in this case. |
|
1839 | # hit. So, we tell _addrevision() to always cache in this case. | |
1838 | # We're only using addgroup() in the context of changegroup |
|
1840 | # We're only using addgroup() in the context of changegroup | |
1839 | # generation so the revision data can always be handled as raw |
|
1841 | # generation so the revision data can always be handled as raw | |
1840 | # by the flagprocessor. |
|
1842 | # by the flagprocessor. | |
1841 | chain = self._addrevision(node, None, transaction, link, |
|
1843 | chain = self._addrevision(node, None, transaction, link, | |
1842 | p1, p2, flags, (baserev, delta), |
|
1844 | p1, p2, flags, (baserev, delta), | |
1843 | ifh, dfh, |
|
1845 | ifh, dfh, | |
1844 | alwayscache=bool(addrevisioncb), |
|
1846 | alwayscache=bool(addrevisioncb), | |
1845 | raw=True) |
|
1847 | raw=True) | |
1846 |
|
1848 | |||
1847 | if addrevisioncb: |
|
1849 | if addrevisioncb: | |
1848 | addrevisioncb(self, chain) |
|
1850 | addrevisioncb(self, chain) | |
1849 |
|
1851 | |||
1850 | if not dfh and not self._inline: |
|
1852 | if not dfh and not self._inline: | |
1851 | # addrevision switched from inline to conventional |
|
1853 | # addrevision switched from inline to conventional | |
1852 | # reopen the index |
|
1854 | # reopen the index | |
1853 | ifh.close() |
|
1855 | ifh.close() | |
1854 | dfh = self.opener(self.datafile, "a+") |
|
1856 | dfh = self.opener(self.datafile, "a+") | |
1855 | ifh = self.opener(self.indexfile, "a+", |
|
1857 | ifh = self.opener(self.indexfile, "a+", | |
1856 | checkambig=self._checkambig) |
|
1858 | checkambig=self._checkambig) | |
1857 | finally: |
|
1859 | finally: | |
1858 | if dfh: |
|
1860 | if dfh: | |
1859 | dfh.close() |
|
1861 | dfh.close() | |
1860 | ifh.close() |
|
1862 | ifh.close() | |
1861 |
|
1863 | |||
1862 | return content |
|
1864 | return content | |
1863 |
|
1865 | |||
1864 | def iscensored(self, rev): |
|
1866 | def iscensored(self, rev): | |
1865 | """Check if a file revision is censored.""" |
|
1867 | """Check if a file revision is censored.""" | |
1866 | return False |
|
1868 | return False | |
1867 |
|
1869 | |||
1868 | def _peek_iscensored(self, baserev, delta, flush): |
|
1870 | def _peek_iscensored(self, baserev, delta, flush): | |
1869 | """Quickly check if a delta produces a censored revision.""" |
|
1871 | """Quickly check if a delta produces a censored revision.""" | |
1870 | return False |
|
1872 | return False | |
1871 |
|
1873 | |||
1872 | def getstrippoint(self, minlink): |
|
1874 | def getstrippoint(self, minlink): | |
1873 | """find the minimum rev that must be stripped to strip the linkrev |
|
1875 | """find the minimum rev that must be stripped to strip the linkrev | |
1874 |
|
1876 | |||
1875 | Returns a tuple containing the minimum rev and a set of all revs that |
|
1877 | Returns a tuple containing the minimum rev and a set of all revs that | |
1876 | have linkrevs that will be broken by this strip. |
|
1878 | have linkrevs that will be broken by this strip. | |
1877 | """ |
|
1879 | """ | |
1878 | brokenrevs = set() |
|
1880 | brokenrevs = set() | |
1879 | strippoint = len(self) |
|
1881 | strippoint = len(self) | |
1880 |
|
1882 | |||
1881 | heads = {} |
|
1883 | heads = {} | |
1882 | futurelargelinkrevs = set() |
|
1884 | futurelargelinkrevs = set() | |
1883 | for head in self.headrevs(): |
|
1885 | for head in self.headrevs(): | |
1884 | headlinkrev = self.linkrev(head) |
|
1886 | headlinkrev = self.linkrev(head) | |
1885 | heads[head] = headlinkrev |
|
1887 | heads[head] = headlinkrev | |
1886 | if headlinkrev >= minlink: |
|
1888 | if headlinkrev >= minlink: | |
1887 | futurelargelinkrevs.add(headlinkrev) |
|
1889 | futurelargelinkrevs.add(headlinkrev) | |
1888 |
|
1890 | |||
1889 | # This algorithm involves walking down the rev graph, starting at the |
|
1891 | # This algorithm involves walking down the rev graph, starting at the | |
1890 | # heads. Since the revs are topologically sorted according to linkrev, |
|
1892 | # heads. Since the revs are topologically sorted according to linkrev, | |
1891 | # once all head linkrevs are below the minlink, we know there are |
|
1893 | # once all head linkrevs are below the minlink, we know there are | |
1892 | # no more revs that could have a linkrev greater than minlink. |
|
1894 | # no more revs that could have a linkrev greater than minlink. | |
1893 | # So we can stop walking. |
|
1895 | # So we can stop walking. | |
1894 | while futurelargelinkrevs: |
|
1896 | while futurelargelinkrevs: | |
1895 | strippoint -= 1 |
|
1897 | strippoint -= 1 | |
1896 | linkrev = heads.pop(strippoint) |
|
1898 | linkrev = heads.pop(strippoint) | |
1897 |
|
1899 | |||
1898 | if linkrev < minlink: |
|
1900 | if linkrev < minlink: | |
1899 | brokenrevs.add(strippoint) |
|
1901 | brokenrevs.add(strippoint) | |
1900 | else: |
|
1902 | else: | |
1901 | futurelargelinkrevs.remove(linkrev) |
|
1903 | futurelargelinkrevs.remove(linkrev) | |
1902 |
|
1904 | |||
1903 | for p in self.parentrevs(strippoint): |
|
1905 | for p in self.parentrevs(strippoint): | |
1904 | if p != nullrev: |
|
1906 | if p != nullrev: | |
1905 | plinkrev = self.linkrev(p) |
|
1907 | plinkrev = self.linkrev(p) | |
1906 | heads[p] = plinkrev |
|
1908 | heads[p] = plinkrev | |
1907 | if plinkrev >= minlink: |
|
1909 | if plinkrev >= minlink: | |
1908 | futurelargelinkrevs.add(plinkrev) |
|
1910 | futurelargelinkrevs.add(plinkrev) | |
1909 |
|
1911 | |||
1910 | return strippoint, brokenrevs |
|
1912 | return strippoint, brokenrevs | |
1911 |
|
1913 | |||
1912 | def strip(self, minlink, transaction): |
|
1914 | def strip(self, minlink, transaction): | |
1913 | """truncate the revlog on the first revision with a linkrev >= minlink |
|
1915 | """truncate the revlog on the first revision with a linkrev >= minlink | |
1914 |
|
1916 | |||
1915 | This function is called when we're stripping revision minlink and |
|
1917 | This function is called when we're stripping revision minlink and | |
1916 | its descendants from the repository. |
|
1918 | its descendants from the repository. | |
1917 |
|
1919 | |||
1918 | We have to remove all revisions with linkrev >= minlink, because |
|
1920 | We have to remove all revisions with linkrev >= minlink, because | |
1919 | the equivalent changelog revisions will be renumbered after the |
|
1921 | the equivalent changelog revisions will be renumbered after the | |
1920 | strip. |
|
1922 | strip. | |
1921 |
|
1923 | |||
1922 | So we truncate the revlog on the first of these revisions, and |
|
1924 | So we truncate the revlog on the first of these revisions, and | |
1923 | trust that the caller has saved the revisions that shouldn't be |
|
1925 | trust that the caller has saved the revisions that shouldn't be | |
1924 | removed and that it'll re-add them after this truncation. |
|
1926 | removed and that it'll re-add them after this truncation. | |
1925 | """ |
|
1927 | """ | |
1926 | if len(self) == 0: |
|
1928 | if len(self) == 0: | |
1927 | return |
|
1929 | return | |
1928 |
|
1930 | |||
1929 | rev, _ = self.getstrippoint(minlink) |
|
1931 | rev, _ = self.getstrippoint(minlink) | |
1930 | if rev == len(self): |
|
1932 | if rev == len(self): | |
1931 | return |
|
1933 | return | |
1932 |
|
1934 | |||
1933 | # first truncate the files on disk |
|
1935 | # first truncate the files on disk | |
1934 | end = self.start(rev) |
|
1936 | end = self.start(rev) | |
1935 | if not self._inline: |
|
1937 | if not self._inline: | |
1936 | transaction.add(self.datafile, end) |
|
1938 | transaction.add(self.datafile, end) | |
1937 | end = rev * self._io.size |
|
1939 | end = rev * self._io.size | |
1938 | else: |
|
1940 | else: | |
1939 | end += rev * self._io.size |
|
1941 | end += rev * self._io.size | |
1940 |
|
1942 | |||
1941 | transaction.add(self.indexfile, end) |
|
1943 | transaction.add(self.indexfile, end) | |
1942 |
|
1944 | |||
1943 | # then reset internal state in memory to forget those revisions |
|
1945 | # then reset internal state in memory to forget those revisions | |
1944 | self._cache = None |
|
1946 | self._cache = None | |
1945 | self._chaininfocache = {} |
|
1947 | self._chaininfocache = {} | |
1946 | self._chunkclear() |
|
1948 | self._chunkclear() | |
1947 | for x in xrange(rev, len(self)): |
|
1949 | for x in xrange(rev, len(self)): | |
1948 | del self.nodemap[self.node(x)] |
|
1950 | del self.nodemap[self.node(x)] | |
1949 |
|
1951 | |||
1950 | del self.index[rev:-1] |
|
1952 | del self.index[rev:-1] | |
1951 |
|
1953 | |||
1952 | def checksize(self): |
|
1954 | def checksize(self): | |
1953 | expected = 0 |
|
1955 | expected = 0 | |
1954 | if len(self): |
|
1956 | if len(self): | |
1955 | expected = max(0, self.end(len(self) - 1)) |
|
1957 | expected = max(0, self.end(len(self) - 1)) | |
1956 |
|
1958 | |||
1957 | try: |
|
1959 | try: | |
1958 | f = self.opener(self.datafile) |
|
1960 | f = self.opener(self.datafile) | |
1959 | f.seek(0, 2) |
|
1961 | f.seek(0, 2) | |
1960 | actual = f.tell() |
|
1962 | actual = f.tell() | |
1961 | f.close() |
|
1963 | f.close() | |
1962 | dd = actual - expected |
|
1964 | dd = actual - expected | |
1963 | except IOError as inst: |
|
1965 | except IOError as inst: | |
1964 | if inst.errno != errno.ENOENT: |
|
1966 | if inst.errno != errno.ENOENT: | |
1965 | raise |
|
1967 | raise | |
1966 | dd = 0 |
|
1968 | dd = 0 | |
1967 |
|
1969 | |||
1968 | try: |
|
1970 | try: | |
1969 | f = self.opener(self.indexfile) |
|
1971 | f = self.opener(self.indexfile) | |
1970 | f.seek(0, 2) |
|
1972 | f.seek(0, 2) | |
1971 | actual = f.tell() |
|
1973 | actual = f.tell() | |
1972 | f.close() |
|
1974 | f.close() | |
1973 | s = self._io.size |
|
1975 | s = self._io.size | |
1974 | i = max(0, actual // s) |
|
1976 | i = max(0, actual // s) | |
1975 | di = actual - (i * s) |
|
1977 | di = actual - (i * s) | |
1976 | if self._inline: |
|
1978 | if self._inline: | |
1977 | databytes = 0 |
|
1979 | databytes = 0 | |
1978 | for r in self: |
|
1980 | for r in self: | |
1979 | databytes += max(0, self.length(r)) |
|
1981 | databytes += max(0, self.length(r)) | |
1980 | dd = 0 |
|
1982 | dd = 0 | |
1981 | di = actual - len(self) * s - databytes |
|
1983 | di = actual - len(self) * s - databytes | |
1982 | except IOError as inst: |
|
1984 | except IOError as inst: | |
1983 | if inst.errno != errno.ENOENT: |
|
1985 | if inst.errno != errno.ENOENT: | |
1984 | raise |
|
1986 | raise | |
1985 | di = 0 |
|
1987 | di = 0 | |
1986 |
|
1988 | |||
1987 | return (dd, di) |
|
1989 | return (dd, di) | |
1988 |
|
1990 | |||
1989 | def files(self): |
|
1991 | def files(self): | |
1990 | res = [self.indexfile] |
|
1992 | res = [self.indexfile] | |
1991 | if not self._inline: |
|
1993 | if not self._inline: | |
1992 | res.append(self.datafile) |
|
1994 | res.append(self.datafile) | |
1993 | return res |
|
1995 | return res | |
1994 |
|
1996 | |||
1995 | DELTAREUSEALWAYS = 'always' |
|
1997 | DELTAREUSEALWAYS = 'always' | |
1996 | DELTAREUSESAMEREVS = 'samerevs' |
|
1998 | DELTAREUSESAMEREVS = 'samerevs' | |
1997 | DELTAREUSENEVER = 'never' |
|
1999 | DELTAREUSENEVER = 'never' | |
1998 |
|
2000 | |||
1999 | DELTAREUSEALL = set(['always', 'samerevs', 'never']) |
|
2001 | DELTAREUSEALL = set(['always', 'samerevs', 'never']) | |
2000 |
|
2002 | |||
2001 | def clone(self, tr, destrevlog, addrevisioncb=None, |
|
2003 | def clone(self, tr, destrevlog, addrevisioncb=None, | |
2002 | deltareuse=DELTAREUSESAMEREVS, aggressivemergedeltas=None): |
|
2004 | deltareuse=DELTAREUSESAMEREVS, aggressivemergedeltas=None): | |
2003 | """Copy this revlog to another, possibly with format changes. |
|
2005 | """Copy this revlog to another, possibly with format changes. | |
2004 |
|
2006 | |||
2005 | The destination revlog will contain the same revisions and nodes. |
|
2007 | The destination revlog will contain the same revisions and nodes. | |
2006 | However, it may not be bit-for-bit identical due to e.g. delta encoding |
|
2008 | However, it may not be bit-for-bit identical due to e.g. delta encoding | |
2007 | differences. |
|
2009 | differences. | |
2008 |
|
2010 | |||
2009 | The ``deltareuse`` argument control how deltas from the existing revlog |
|
2011 | The ``deltareuse`` argument control how deltas from the existing revlog | |
2010 | are preserved in the destination revlog. The argument can have the |
|
2012 | are preserved in the destination revlog. The argument can have the | |
2011 | following values: |
|
2013 | following values: | |
2012 |
|
2014 | |||
2013 | DELTAREUSEALWAYS |
|
2015 | DELTAREUSEALWAYS | |
2014 | Deltas will always be reused (if possible), even if the destination |
|
2016 | Deltas will always be reused (if possible), even if the destination | |
2015 | revlog would not select the same revisions for the delta. This is the |
|
2017 | revlog would not select the same revisions for the delta. This is the | |
2016 | fastest mode of operation. |
|
2018 | fastest mode of operation. | |
2017 | DELTAREUSESAMEREVS |
|
2019 | DELTAREUSESAMEREVS | |
2018 | Deltas will be reused if the destination revlog would pick the same |
|
2020 | Deltas will be reused if the destination revlog would pick the same | |
2019 | revisions for the delta. This mode strikes a balance between speed |
|
2021 | revisions for the delta. This mode strikes a balance between speed | |
2020 | and optimization. |
|
2022 | and optimization. | |
2021 | DELTAREUSENEVER |
|
2023 | DELTAREUSENEVER | |
2022 | Deltas will never be reused. This is the slowest mode of execution. |
|
2024 | Deltas will never be reused. This is the slowest mode of execution. | |
2023 | This mode can be used to recompute deltas (e.g. if the diff/delta |
|
2025 | This mode can be used to recompute deltas (e.g. if the diff/delta | |
2024 | algorithm changes). |
|
2026 | algorithm changes). | |
2025 |
|
2027 | |||
2026 | Delta computation can be slow, so the choice of delta reuse policy can |
|
2028 | Delta computation can be slow, so the choice of delta reuse policy can | |
2027 | significantly affect run time. |
|
2029 | significantly affect run time. | |
2028 |
|
2030 | |||
2029 | The default policy (``DELTAREUSESAMEREVS``) strikes a balance between |
|
2031 | The default policy (``DELTAREUSESAMEREVS``) strikes a balance between | |
2030 | two extremes. Deltas will be reused if they are appropriate. But if the |
|
2032 | two extremes. Deltas will be reused if they are appropriate. But if the | |
2031 | delta could choose a better revision, it will do so. This means if you |
|
2033 | delta could choose a better revision, it will do so. This means if you | |
2032 | are converting a non-generaldelta revlog to a generaldelta revlog, |
|
2034 | are converting a non-generaldelta revlog to a generaldelta revlog, | |
2033 | deltas will be recomputed if the delta's parent isn't a parent of the |
|
2035 | deltas will be recomputed if the delta's parent isn't a parent of the | |
2034 | revision. |
|
2036 | revision. | |
2035 |
|
2037 | |||
2036 | In addition to the delta policy, the ``aggressivemergedeltas`` argument |
|
2038 | In addition to the delta policy, the ``aggressivemergedeltas`` argument | |
2037 | controls whether to compute deltas against both parents for merges. |
|
2039 | controls whether to compute deltas against both parents for merges. | |
2038 | By default, the current default is used. |
|
2040 | By default, the current default is used. | |
2039 | """ |
|
2041 | """ | |
2040 | if deltareuse not in self.DELTAREUSEALL: |
|
2042 | if deltareuse not in self.DELTAREUSEALL: | |
2041 | raise ValueError(_('value for deltareuse invalid: %s') % deltareuse) |
|
2043 | raise ValueError(_('value for deltareuse invalid: %s') % deltareuse) | |
2042 |
|
2044 | |||
2043 | if len(destrevlog): |
|
2045 | if len(destrevlog): | |
2044 | raise ValueError(_('destination revlog is not empty')) |
|
2046 | raise ValueError(_('destination revlog is not empty')) | |
2045 |
|
2047 | |||
2046 | if getattr(self, 'filteredrevs', None): |
|
2048 | if getattr(self, 'filteredrevs', None): | |
2047 | raise ValueError(_('source revlog has filtered revisions')) |
|
2049 | raise ValueError(_('source revlog has filtered revisions')) | |
2048 | if getattr(destrevlog, 'filteredrevs', None): |
|
2050 | if getattr(destrevlog, 'filteredrevs', None): | |
2049 | raise ValueError(_('destination revlog has filtered revisions')) |
|
2051 | raise ValueError(_('destination revlog has filtered revisions')) | |
2050 |
|
2052 | |||
2051 | # lazydeltabase controls whether to reuse a cached delta, if possible. |
|
2053 | # lazydeltabase controls whether to reuse a cached delta, if possible. | |
2052 | oldlazydeltabase = destrevlog._lazydeltabase |
|
2054 | oldlazydeltabase = destrevlog._lazydeltabase | |
2053 | oldamd = destrevlog._aggressivemergedeltas |
|
2055 | oldamd = destrevlog._aggressivemergedeltas | |
2054 |
|
2056 | |||
2055 | try: |
|
2057 | try: | |
2056 | if deltareuse == self.DELTAREUSEALWAYS: |
|
2058 | if deltareuse == self.DELTAREUSEALWAYS: | |
2057 | destrevlog._lazydeltabase = True |
|
2059 | destrevlog._lazydeltabase = True | |
2058 | elif deltareuse == self.DELTAREUSESAMEREVS: |
|
2060 | elif deltareuse == self.DELTAREUSESAMEREVS: | |
2059 | destrevlog._lazydeltabase = False |
|
2061 | destrevlog._lazydeltabase = False | |
2060 |
|
2062 | |||
2061 | destrevlog._aggressivemergedeltas = aggressivemergedeltas or oldamd |
|
2063 | destrevlog._aggressivemergedeltas = aggressivemergedeltas or oldamd | |
2062 |
|
2064 | |||
2063 | populatecachedelta = deltareuse in (self.DELTAREUSEALWAYS, |
|
2065 | populatecachedelta = deltareuse in (self.DELTAREUSEALWAYS, | |
2064 | self.DELTAREUSESAMEREVS) |
|
2066 | self.DELTAREUSESAMEREVS) | |
2065 |
|
2067 | |||
2066 | index = self.index |
|
2068 | index = self.index | |
2067 | for rev in self: |
|
2069 | for rev in self: | |
2068 | entry = index[rev] |
|
2070 | entry = index[rev] | |
2069 |
|
2071 | |||
2070 | # Some classes override linkrev to take filtered revs into |
|
2072 | # Some classes override linkrev to take filtered revs into | |
2071 | # account. Use raw entry from index. |
|
2073 | # account. Use raw entry from index. | |
2072 | flags = entry[0] & 0xffff |
|
2074 | flags = entry[0] & 0xffff | |
2073 | linkrev = entry[4] |
|
2075 | linkrev = entry[4] | |
2074 | p1 = index[entry[5]][7] |
|
2076 | p1 = index[entry[5]][7] | |
2075 | p2 = index[entry[6]][7] |
|
2077 | p2 = index[entry[6]][7] | |
2076 | node = entry[7] |
|
2078 | node = entry[7] | |
2077 |
|
2079 | |||
2078 | # (Possibly) reuse the delta from the revlog if allowed and |
|
2080 | # (Possibly) reuse the delta from the revlog if allowed and | |
2079 | # the revlog chunk is a delta. |
|
2081 | # the revlog chunk is a delta. | |
2080 | cachedelta = None |
|
2082 | cachedelta = None | |
2081 | text = None |
|
2083 | text = None | |
2082 | if populatecachedelta: |
|
2084 | if populatecachedelta: | |
2083 | dp = self.deltaparent(rev) |
|
2085 | dp = self.deltaparent(rev) | |
2084 | if dp != nullrev: |
|
2086 | if dp != nullrev: | |
2085 | cachedelta = (dp, str(self._chunk(rev))) |
|
2087 | cachedelta = (dp, str(self._chunk(rev))) | |
2086 |
|
2088 | |||
2087 | if not cachedelta: |
|
2089 | if not cachedelta: | |
2088 | text = self.revision(rev) |
|
2090 | text = self.revision(rev) | |
2089 |
|
2091 | |||
2090 | ifh = destrevlog.opener(destrevlog.indexfile, 'a+', |
|
2092 | ifh = destrevlog.opener(destrevlog.indexfile, 'a+', | |
2091 | checkambig=False) |
|
2093 | checkambig=False) | |
2092 | dfh = None |
|
2094 | dfh = None | |
2093 | if not destrevlog._inline: |
|
2095 | if not destrevlog._inline: | |
2094 | dfh = destrevlog.opener(destrevlog.datafile, 'a+') |
|
2096 | dfh = destrevlog.opener(destrevlog.datafile, 'a+') | |
2095 | try: |
|
2097 | try: | |
2096 | destrevlog._addrevision(node, text, tr, linkrev, p1, p2, |
|
2098 | destrevlog._addrevision(node, text, tr, linkrev, p1, p2, | |
2097 | flags, cachedelta, ifh, dfh) |
|
2099 | flags, cachedelta, ifh, dfh) | |
2098 | finally: |
|
2100 | finally: | |
2099 | if dfh: |
|
2101 | if dfh: | |
2100 | dfh.close() |
|
2102 | dfh.close() | |
2101 | ifh.close() |
|
2103 | ifh.close() | |
2102 |
|
2104 | |||
2103 | if addrevisioncb: |
|
2105 | if addrevisioncb: | |
2104 | addrevisioncb(self, rev, node) |
|
2106 | addrevisioncb(self, rev, node) | |
2105 | finally: |
|
2107 | finally: | |
2106 | destrevlog._lazydeltabase = oldlazydeltabase |
|
2108 | destrevlog._lazydeltabase = oldlazydeltabase | |
2107 | destrevlog._aggressivemergedeltas = oldamd |
|
2109 | destrevlog._aggressivemergedeltas = oldamd |
General Comments 0
You need to be logged in to leave comments.
Login now