Show More
@@ -1,2691 +1,2691 b'' | |||||
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 contextlib |
|
17 | import contextlib | |
18 | import errno |
|
18 | import errno | |
19 | import io |
|
19 | import io | |
20 | import os |
|
20 | import os | |
21 | import struct |
|
21 | import struct | |
22 | import zlib |
|
22 | import zlib | |
23 |
|
23 | |||
24 | # import stuff from node for others to import from revlog |
|
24 | # import stuff from node for others to import from revlog | |
25 | from .node import ( |
|
25 | from .node import ( | |
26 | bin, |
|
26 | bin, | |
27 | hex, |
|
27 | hex, | |
28 | nullhex, |
|
28 | nullhex, | |
29 | nullid, |
|
29 | nullid, | |
30 | nullrev, |
|
30 | nullrev, | |
31 | short, |
|
31 | short, | |
32 | wdirfilenodeids, |
|
32 | wdirfilenodeids, | |
33 | wdirhex, |
|
33 | wdirhex, | |
34 | wdirid, |
|
34 | wdirid, | |
35 | wdirrev, |
|
35 | wdirrev, | |
36 | ) |
|
36 | ) | |
37 | from .i18n import _ |
|
37 | from .i18n import _ | |
38 | from .revlogutils.constants import ( |
|
38 | from .revlogutils.constants import ( | |
39 | FLAG_GENERALDELTA, |
|
39 | FLAG_GENERALDELTA, | |
40 | FLAG_INLINE_DATA, |
|
40 | FLAG_INLINE_DATA, | |
41 | REVIDX_DEFAULT_FLAGS, |
|
41 | REVIDX_DEFAULT_FLAGS, | |
42 | REVIDX_ELLIPSIS, |
|
42 | REVIDX_ELLIPSIS, | |
43 | REVIDX_EXTSTORED, |
|
43 | REVIDX_EXTSTORED, | |
44 | REVIDX_FLAGS_ORDER, |
|
44 | REVIDX_FLAGS_ORDER, | |
45 | REVIDX_ISCENSORED, |
|
45 | REVIDX_ISCENSORED, | |
46 | REVIDX_KNOWN_FLAGS, |
|
46 | REVIDX_KNOWN_FLAGS, | |
47 | REVIDX_RAWTEXT_CHANGING_FLAGS, |
|
47 | REVIDX_RAWTEXT_CHANGING_FLAGS, | |
48 | REVLOGV0, |
|
48 | REVLOGV0, | |
49 | REVLOGV1, |
|
49 | REVLOGV1, | |
50 | REVLOGV1_FLAGS, |
|
50 | REVLOGV1_FLAGS, | |
51 | REVLOGV2, |
|
51 | REVLOGV2, | |
52 | REVLOGV2_FLAGS, |
|
52 | REVLOGV2_FLAGS, | |
53 | REVLOG_DEFAULT_FLAGS, |
|
53 | REVLOG_DEFAULT_FLAGS, | |
54 | REVLOG_DEFAULT_FORMAT, |
|
54 | REVLOG_DEFAULT_FORMAT, | |
55 | REVLOG_DEFAULT_VERSION, |
|
55 | REVLOG_DEFAULT_VERSION, | |
56 | ) |
|
56 | ) | |
57 | from .thirdparty import ( |
|
57 | from .thirdparty import ( | |
58 | attr, |
|
58 | attr, | |
59 | ) |
|
59 | ) | |
60 | from . import ( |
|
60 | from . import ( | |
61 | ancestor, |
|
61 | ancestor, | |
62 | dagop, |
|
62 | dagop, | |
63 | error, |
|
63 | error, | |
64 | mdiff, |
|
64 | mdiff, | |
65 | policy, |
|
65 | policy, | |
66 | pycompat, |
|
66 | pycompat, | |
67 | repository, |
|
67 | repository, | |
68 | templatefilters, |
|
68 | templatefilters, | |
69 | util, |
|
69 | util, | |
70 | ) |
|
70 | ) | |
71 | from .revlogutils import ( |
|
71 | from .revlogutils import ( | |
72 | deltas as deltautil, |
|
72 | deltas as deltautil, | |
73 | ) |
|
73 | ) | |
74 | from .utils import ( |
|
74 | from .utils import ( | |
75 | interfaceutil, |
|
75 | interfaceutil, | |
76 | storageutil, |
|
76 | storageutil, | |
77 | stringutil, |
|
77 | stringutil, | |
78 | ) |
|
78 | ) | |
79 |
|
79 | |||
80 | # blanked usage of all the name to prevent pyflakes constraints |
|
80 | # blanked usage of all the name to prevent pyflakes constraints | |
81 | # We need these name available in the module for extensions. |
|
81 | # We need these name available in the module for extensions. | |
82 | REVLOGV0 |
|
82 | REVLOGV0 | |
83 | REVLOGV1 |
|
83 | REVLOGV1 | |
84 | REVLOGV2 |
|
84 | REVLOGV2 | |
85 | FLAG_INLINE_DATA |
|
85 | FLAG_INLINE_DATA | |
86 | FLAG_GENERALDELTA |
|
86 | FLAG_GENERALDELTA | |
87 | REVLOG_DEFAULT_FLAGS |
|
87 | REVLOG_DEFAULT_FLAGS | |
88 | REVLOG_DEFAULT_FORMAT |
|
88 | REVLOG_DEFAULT_FORMAT | |
89 | REVLOG_DEFAULT_VERSION |
|
89 | REVLOG_DEFAULT_VERSION | |
90 | REVLOGV1_FLAGS |
|
90 | REVLOGV1_FLAGS | |
91 | REVLOGV2_FLAGS |
|
91 | REVLOGV2_FLAGS | |
92 | REVIDX_ISCENSORED |
|
92 | REVIDX_ISCENSORED | |
93 | REVIDX_ELLIPSIS |
|
93 | REVIDX_ELLIPSIS | |
94 | REVIDX_EXTSTORED |
|
94 | REVIDX_EXTSTORED | |
95 | REVIDX_DEFAULT_FLAGS |
|
95 | REVIDX_DEFAULT_FLAGS | |
96 | REVIDX_FLAGS_ORDER |
|
96 | REVIDX_FLAGS_ORDER | |
97 | REVIDX_KNOWN_FLAGS |
|
97 | REVIDX_KNOWN_FLAGS | |
98 | REVIDX_RAWTEXT_CHANGING_FLAGS |
|
98 | REVIDX_RAWTEXT_CHANGING_FLAGS | |
99 |
|
99 | |||
100 | parsers = policy.importmod(r'parsers') |
|
100 | parsers = policy.importmod(r'parsers') | |
101 | rustancestor = policy.importrust(r'ancestor') |
|
101 | rustancestor = policy.importrust(r'ancestor') | |
102 | rustdagop = policy.importrust(r'dagop') |
|
102 | rustdagop = policy.importrust(r'dagop') | |
103 |
|
103 | |||
104 | # Aliased for performance. |
|
104 | # Aliased for performance. | |
105 | _zlibdecompress = zlib.decompress |
|
105 | _zlibdecompress = zlib.decompress | |
106 |
|
106 | |||
107 | # max size of revlog with inline data |
|
107 | # max size of revlog with inline data | |
108 | _maxinline = 131072 |
|
108 | _maxinline = 131072 | |
109 | _chunksize = 1048576 |
|
109 | _chunksize = 1048576 | |
110 |
|
110 | |||
111 | # Store flag processors (cf. 'addflagprocessor()' to register) |
|
111 | # Store flag processors (cf. 'addflagprocessor()' to register) | |
112 | _flagprocessors = { |
|
112 | _flagprocessors = { | |
113 | REVIDX_ISCENSORED: None, |
|
113 | REVIDX_ISCENSORED: None, | |
114 | } |
|
114 | } | |
115 |
|
115 | |||
116 | # Flag processors for REVIDX_ELLIPSIS. |
|
116 | # Flag processors for REVIDX_ELLIPSIS. | |
117 | def ellipsisreadprocessor(rl, text): |
|
117 | def ellipsisreadprocessor(rl, text): | |
118 | return text, False |
|
118 | return text, False | |
119 |
|
119 | |||
120 | def ellipsiswriteprocessor(rl, text): |
|
120 | def ellipsiswriteprocessor(rl, text): | |
121 | return text, False |
|
121 | return text, False | |
122 |
|
122 | |||
123 | def ellipsisrawprocessor(rl, text): |
|
123 | def ellipsisrawprocessor(rl, text): | |
124 | return False |
|
124 | return False | |
125 |
|
125 | |||
126 | ellipsisprocessor = ( |
|
126 | ellipsisprocessor = ( | |
127 | ellipsisreadprocessor, |
|
127 | ellipsisreadprocessor, | |
128 | ellipsiswriteprocessor, |
|
128 | ellipsiswriteprocessor, | |
129 | ellipsisrawprocessor, |
|
129 | ellipsisrawprocessor, | |
130 | ) |
|
130 | ) | |
131 |
|
131 | |||
132 | def addflagprocessor(flag, processor): |
|
132 | def addflagprocessor(flag, processor): | |
133 | """Register a flag processor on a revision data flag. |
|
133 | """Register a flag processor on a revision data flag. | |
134 |
|
134 | |||
135 | Invariant: |
|
135 | Invariant: | |
136 | - Flags need to be defined in REVIDX_KNOWN_FLAGS and REVIDX_FLAGS_ORDER, |
|
136 | - Flags need to be defined in REVIDX_KNOWN_FLAGS and REVIDX_FLAGS_ORDER, | |
137 | and REVIDX_RAWTEXT_CHANGING_FLAGS if they can alter rawtext. |
|
137 | and REVIDX_RAWTEXT_CHANGING_FLAGS if they can alter rawtext. | |
138 | - Only one flag processor can be registered on a specific flag. |
|
138 | - Only one flag processor can be registered on a specific flag. | |
139 | - flagprocessors must be 3-tuples of functions (read, write, raw) with the |
|
139 | - flagprocessors must be 3-tuples of functions (read, write, raw) with the | |
140 | following signatures: |
|
140 | following signatures: | |
141 | - (read) f(self, rawtext) -> text, bool |
|
141 | - (read) f(self, rawtext) -> text, bool | |
142 | - (write) f(self, text) -> rawtext, bool |
|
142 | - (write) f(self, text) -> rawtext, bool | |
143 | - (raw) f(self, rawtext) -> bool |
|
143 | - (raw) f(self, rawtext) -> bool | |
144 | "text" is presented to the user. "rawtext" is stored in revlog data, not |
|
144 | "text" is presented to the user. "rawtext" is stored in revlog data, not | |
145 | directly visible to the user. |
|
145 | directly visible to the user. | |
146 | The boolean returned by these transforms is used to determine whether |
|
146 | The boolean returned by these transforms is used to determine whether | |
147 | the returned text can be used for hash integrity checking. For example, |
|
147 | the returned text can be used for hash integrity checking. For example, | |
148 | if "write" returns False, then "text" is used to generate hash. If |
|
148 | if "write" returns False, then "text" is used to generate hash. If | |
149 | "write" returns True, that basically means "rawtext" returned by "write" |
|
149 | "write" returns True, that basically means "rawtext" returned by "write" | |
150 | should be used to generate hash. Usually, "write" and "read" return |
|
150 | should be used to generate hash. Usually, "write" and "read" return | |
151 | different booleans. And "raw" returns a same boolean as "write". |
|
151 | different booleans. And "raw" returns a same boolean as "write". | |
152 |
|
152 | |||
153 | Note: The 'raw' transform is used for changegroup generation and in some |
|
153 | Note: The 'raw' transform is used for changegroup generation and in some | |
154 | debug commands. In this case the transform only indicates whether the |
|
154 | debug commands. In this case the transform only indicates whether the | |
155 | contents can be used for hash integrity checks. |
|
155 | contents can be used for hash integrity checks. | |
156 | """ |
|
156 | """ | |
157 | _insertflagprocessor(flag, processor, _flagprocessors) |
|
157 | _insertflagprocessor(flag, processor, _flagprocessors) | |
158 |
|
158 | |||
159 | def _insertflagprocessor(flag, processor, flagprocessors): |
|
159 | def _insertflagprocessor(flag, processor, flagprocessors): | |
160 | if not flag & REVIDX_KNOWN_FLAGS: |
|
160 | if not flag & REVIDX_KNOWN_FLAGS: | |
161 | msg = _("cannot register processor on unknown flag '%#x'.") % (flag) |
|
161 | msg = _("cannot register processor on unknown flag '%#x'.") % (flag) | |
162 | raise error.ProgrammingError(msg) |
|
162 | raise error.ProgrammingError(msg) | |
163 | if flag not in REVIDX_FLAGS_ORDER: |
|
163 | if flag not in REVIDX_FLAGS_ORDER: | |
164 | msg = _("flag '%#x' undefined in REVIDX_FLAGS_ORDER.") % (flag) |
|
164 | msg = _("flag '%#x' undefined in REVIDX_FLAGS_ORDER.") % (flag) | |
165 | raise error.ProgrammingError(msg) |
|
165 | raise error.ProgrammingError(msg) | |
166 | if flag in flagprocessors: |
|
166 | if flag in flagprocessors: | |
167 | msg = _("cannot register multiple processors on flag '%#x'.") % (flag) |
|
167 | msg = _("cannot register multiple processors on flag '%#x'.") % (flag) | |
168 | raise error.Abort(msg) |
|
168 | raise error.Abort(msg) | |
169 | flagprocessors[flag] = processor |
|
169 | flagprocessors[flag] = processor | |
170 |
|
170 | |||
171 | def getoffset(q): |
|
171 | def getoffset(q): | |
172 | return int(q >> 16) |
|
172 | return int(q >> 16) | |
173 |
|
173 | |||
174 | def gettype(q): |
|
174 | def gettype(q): | |
175 | return int(q & 0xFFFF) |
|
175 | return int(q & 0xFFFF) | |
176 |
|
176 | |||
177 | def offset_type(offset, type): |
|
177 | def offset_type(offset, type): | |
178 | if (type & ~REVIDX_KNOWN_FLAGS) != 0: |
|
178 | if (type & ~REVIDX_KNOWN_FLAGS) != 0: | |
179 | raise ValueError('unknown revlog index flags') |
|
179 | raise ValueError('unknown revlog index flags') | |
180 | return int(int(offset) << 16 | type) |
|
180 | return int(int(offset) << 16 | type) | |
181 |
|
181 | |||
182 | @attr.s(slots=True, frozen=True) |
|
182 | @attr.s(slots=True, frozen=True) | |
183 | class _revisioninfo(object): |
|
183 | class _revisioninfo(object): | |
184 | """Information about a revision that allows building its fulltext |
|
184 | """Information about a revision that allows building its fulltext | |
185 | node: expected hash of the revision |
|
185 | node: expected hash of the revision | |
186 | p1, p2: parent revs of the revision |
|
186 | p1, p2: parent revs of the revision | |
187 | btext: built text cache consisting of a one-element list |
|
187 | btext: built text cache consisting of a one-element list | |
188 | cachedelta: (baserev, uncompressed_delta) or None |
|
188 | cachedelta: (baserev, uncompressed_delta) or None | |
189 | flags: flags associated to the revision storage |
|
189 | flags: flags associated to the revision storage | |
190 |
|
190 | |||
191 | One of btext[0] or cachedelta must be set. |
|
191 | One of btext[0] or cachedelta must be set. | |
192 | """ |
|
192 | """ | |
193 | node = attr.ib() |
|
193 | node = attr.ib() | |
194 | p1 = attr.ib() |
|
194 | p1 = attr.ib() | |
195 | p2 = attr.ib() |
|
195 | p2 = attr.ib() | |
196 | btext = attr.ib() |
|
196 | btext = attr.ib() | |
197 | textlen = attr.ib() |
|
197 | textlen = attr.ib() | |
198 | cachedelta = attr.ib() |
|
198 | cachedelta = attr.ib() | |
199 | flags = attr.ib() |
|
199 | flags = attr.ib() | |
200 |
|
200 | |||
201 | @interfaceutil.implementer(repository.irevisiondelta) |
|
201 | @interfaceutil.implementer(repository.irevisiondelta) | |
202 | @attr.s(slots=True) |
|
202 | @attr.s(slots=True) | |
203 | class revlogrevisiondelta(object): |
|
203 | class revlogrevisiondelta(object): | |
204 | node = attr.ib() |
|
204 | node = attr.ib() | |
205 | p1node = attr.ib() |
|
205 | p1node = attr.ib() | |
206 | p2node = attr.ib() |
|
206 | p2node = attr.ib() | |
207 | basenode = attr.ib() |
|
207 | basenode = attr.ib() | |
208 | flags = attr.ib() |
|
208 | flags = attr.ib() | |
209 | baserevisionsize = attr.ib() |
|
209 | baserevisionsize = attr.ib() | |
210 | revision = attr.ib() |
|
210 | revision = attr.ib() | |
211 | delta = attr.ib() |
|
211 | delta = attr.ib() | |
212 | linknode = attr.ib(default=None) |
|
212 | linknode = attr.ib(default=None) | |
213 |
|
213 | |||
214 | @interfaceutil.implementer(repository.iverifyproblem) |
|
214 | @interfaceutil.implementer(repository.iverifyproblem) | |
215 | @attr.s(frozen=True) |
|
215 | @attr.s(frozen=True) | |
216 | class revlogproblem(object): |
|
216 | class revlogproblem(object): | |
217 | warning = attr.ib(default=None) |
|
217 | warning = attr.ib(default=None) | |
218 | error = attr.ib(default=None) |
|
218 | error = attr.ib(default=None) | |
219 | node = attr.ib(default=None) |
|
219 | node = attr.ib(default=None) | |
220 |
|
220 | |||
221 | # index v0: |
|
221 | # index v0: | |
222 | # 4 bytes: offset |
|
222 | # 4 bytes: offset | |
223 | # 4 bytes: compressed length |
|
223 | # 4 bytes: compressed length | |
224 | # 4 bytes: base rev |
|
224 | # 4 bytes: base rev | |
225 | # 4 bytes: link rev |
|
225 | # 4 bytes: link rev | |
226 | # 20 bytes: parent 1 nodeid |
|
226 | # 20 bytes: parent 1 nodeid | |
227 | # 20 bytes: parent 2 nodeid |
|
227 | # 20 bytes: parent 2 nodeid | |
228 | # 20 bytes: nodeid |
|
228 | # 20 bytes: nodeid | |
229 | indexformatv0 = struct.Struct(">4l20s20s20s") |
|
229 | indexformatv0 = struct.Struct(">4l20s20s20s") | |
230 | indexformatv0_pack = indexformatv0.pack |
|
230 | indexformatv0_pack = indexformatv0.pack | |
231 | indexformatv0_unpack = indexformatv0.unpack |
|
231 | indexformatv0_unpack = indexformatv0.unpack | |
232 |
|
232 | |||
233 | class revlogoldindex(list): |
|
233 | class revlogoldindex(list): | |
234 | def __getitem__(self, i): |
|
234 | def __getitem__(self, i): | |
235 | if i == -1: |
|
235 | if i == -1: | |
236 | return (0, 0, 0, -1, -1, -1, -1, nullid) |
|
236 | return (0, 0, 0, -1, -1, -1, -1, nullid) | |
237 | return list.__getitem__(self, i) |
|
237 | return list.__getitem__(self, i) | |
238 |
|
238 | |||
239 | class revlogoldio(object): |
|
239 | class revlogoldio(object): | |
240 | def __init__(self): |
|
240 | def __init__(self): | |
241 | self.size = indexformatv0.size |
|
241 | self.size = indexformatv0.size | |
242 |
|
242 | |||
243 | def parseindex(self, data, inline): |
|
243 | def parseindex(self, data, inline): | |
244 | s = self.size |
|
244 | s = self.size | |
245 | index = [] |
|
245 | index = [] | |
246 | nodemap = {nullid: nullrev} |
|
246 | nodemap = {nullid: nullrev} | |
247 | n = off = 0 |
|
247 | n = off = 0 | |
248 | l = len(data) |
|
248 | l = len(data) | |
249 | while off + s <= l: |
|
249 | while off + s <= l: | |
250 | cur = data[off:off + s] |
|
250 | cur = data[off:off + s] | |
251 | off += s |
|
251 | off += s | |
252 | e = indexformatv0_unpack(cur) |
|
252 | e = indexformatv0_unpack(cur) | |
253 | # transform to revlogv1 format |
|
253 | # transform to revlogv1 format | |
254 | e2 = (offset_type(e[0], 0), e[1], -1, e[2], e[3], |
|
254 | e2 = (offset_type(e[0], 0), e[1], -1, e[2], e[3], | |
255 | nodemap.get(e[4], nullrev), nodemap.get(e[5], nullrev), e[6]) |
|
255 | nodemap.get(e[4], nullrev), nodemap.get(e[5], nullrev), e[6]) | |
256 | index.append(e2) |
|
256 | index.append(e2) | |
257 | nodemap[e[6]] = n |
|
257 | nodemap[e[6]] = n | |
258 | n += 1 |
|
258 | n += 1 | |
259 |
|
259 | |||
260 | return revlogoldindex(index), nodemap, None |
|
260 | return revlogoldindex(index), nodemap, None | |
261 |
|
261 | |||
262 | def packentry(self, entry, node, version, rev): |
|
262 | def packentry(self, entry, node, version, rev): | |
263 | if gettype(entry[0]): |
|
263 | if gettype(entry[0]): | |
264 | raise error.RevlogError(_('index entry flags need revlog ' |
|
264 | raise error.RevlogError(_('index entry flags need revlog ' | |
265 | 'version 1')) |
|
265 | 'version 1')) | |
266 | e2 = (getoffset(entry[0]), entry[1], entry[3], entry[4], |
|
266 | e2 = (getoffset(entry[0]), entry[1], entry[3], entry[4], | |
267 | node(entry[5]), node(entry[6]), entry[7]) |
|
267 | node(entry[5]), node(entry[6]), entry[7]) | |
268 | return indexformatv0_pack(*e2) |
|
268 | return indexformatv0_pack(*e2) | |
269 |
|
269 | |||
270 | # index ng: |
|
270 | # index ng: | |
271 | # 6 bytes: offset |
|
271 | # 6 bytes: offset | |
272 | # 2 bytes: flags |
|
272 | # 2 bytes: flags | |
273 | # 4 bytes: compressed length |
|
273 | # 4 bytes: compressed length | |
274 | # 4 bytes: uncompressed length |
|
274 | # 4 bytes: uncompressed length | |
275 | # 4 bytes: base rev |
|
275 | # 4 bytes: base rev | |
276 | # 4 bytes: link rev |
|
276 | # 4 bytes: link rev | |
277 | # 4 bytes: parent 1 rev |
|
277 | # 4 bytes: parent 1 rev | |
278 | # 4 bytes: parent 2 rev |
|
278 | # 4 bytes: parent 2 rev | |
279 | # 32 bytes: nodeid |
|
279 | # 32 bytes: nodeid | |
280 | indexformatng = struct.Struct(">Qiiiiii20s12x") |
|
280 | indexformatng = struct.Struct(">Qiiiiii20s12x") | |
281 | indexformatng_pack = indexformatng.pack |
|
281 | indexformatng_pack = indexformatng.pack | |
282 | versionformat = struct.Struct(">I") |
|
282 | versionformat = struct.Struct(">I") | |
283 | versionformat_pack = versionformat.pack |
|
283 | versionformat_pack = versionformat.pack | |
284 | versionformat_unpack = versionformat.unpack |
|
284 | versionformat_unpack = versionformat.unpack | |
285 |
|
285 | |||
286 | # corresponds to uncompressed length of indexformatng (2 gigs, 4-byte |
|
286 | # corresponds to uncompressed length of indexformatng (2 gigs, 4-byte | |
287 | # signed integer) |
|
287 | # signed integer) | |
288 | _maxentrysize = 0x7fffffff |
|
288 | _maxentrysize = 0x7fffffff | |
289 |
|
289 | |||
290 | class revlogio(object): |
|
290 | class revlogio(object): | |
291 | def __init__(self): |
|
291 | def __init__(self): | |
292 | self.size = indexformatng.size |
|
292 | self.size = indexformatng.size | |
293 |
|
293 | |||
294 | def parseindex(self, data, inline): |
|
294 | def parseindex(self, data, inline): | |
295 | # call the C implementation to parse the index data |
|
295 | # call the C implementation to parse the index data | |
296 | index, cache = parsers.parse_index2(data, inline) |
|
296 | index, cache = parsers.parse_index2(data, inline) | |
297 | return index, getattr(index, 'nodemap', None), cache |
|
297 | return index, getattr(index, 'nodemap', None), cache | |
298 |
|
298 | |||
299 | def packentry(self, entry, node, version, rev): |
|
299 | def packentry(self, entry, node, version, rev): | |
300 | p = indexformatng_pack(*entry) |
|
300 | p = indexformatng_pack(*entry) | |
301 | if rev == 0: |
|
301 | if rev == 0: | |
302 | p = versionformat_pack(version) + p[4:] |
|
302 | p = versionformat_pack(version) + p[4:] | |
303 | return p |
|
303 | return p | |
304 |
|
304 | |||
305 | class revlog(object): |
|
305 | class revlog(object): | |
306 | """ |
|
306 | """ | |
307 | the underlying revision storage object |
|
307 | the underlying revision storage object | |
308 |
|
308 | |||
309 | A revlog consists of two parts, an index and the revision data. |
|
309 | A revlog consists of two parts, an index and the revision data. | |
310 |
|
310 | |||
311 | The index is a file with a fixed record size containing |
|
311 | The index is a file with a fixed record size containing | |
312 | information on each revision, including its nodeid (hash), the |
|
312 | information on each revision, including its nodeid (hash), the | |
313 | nodeids of its parents, the position and offset of its data within |
|
313 | nodeids of its parents, the position and offset of its data within | |
314 | the data file, and the revision it's based on. Finally, each entry |
|
314 | the data file, and the revision it's based on. Finally, each entry | |
315 | contains a linkrev entry that can serve as a pointer to external |
|
315 | contains a linkrev entry that can serve as a pointer to external | |
316 | data. |
|
316 | data. | |
317 |
|
317 | |||
318 | The revision data itself is a linear collection of data chunks. |
|
318 | The revision data itself is a linear collection of data chunks. | |
319 | Each chunk represents a revision and is usually represented as a |
|
319 | Each chunk represents a revision and is usually represented as a | |
320 | delta against the previous chunk. To bound lookup time, runs of |
|
320 | delta against the previous chunk. To bound lookup time, runs of | |
321 | deltas are limited to about 2 times the length of the original |
|
321 | deltas are limited to about 2 times the length of the original | |
322 | version data. This makes retrieval of a version proportional to |
|
322 | version data. This makes retrieval of a version proportional to | |
323 | its size, or O(1) relative to the number of revisions. |
|
323 | its size, or O(1) relative to the number of revisions. | |
324 |
|
324 | |||
325 | Both pieces of the revlog are written to in an append-only |
|
325 | Both pieces of the revlog are written to in an append-only | |
326 | fashion, which means we never need to rewrite a file to insert or |
|
326 | fashion, which means we never need to rewrite a file to insert or | |
327 | remove data, and can use some simple techniques to avoid the need |
|
327 | remove data, and can use some simple techniques to avoid the need | |
328 | for locking while reading. |
|
328 | for locking while reading. | |
329 |
|
329 | |||
330 | If checkambig, indexfile is opened with checkambig=True at |
|
330 | If checkambig, indexfile is opened with checkambig=True at | |
331 | writing, to avoid file stat ambiguity. |
|
331 | writing, to avoid file stat ambiguity. | |
332 |
|
332 | |||
333 | If mmaplargeindex is True, and an mmapindexthreshold is set, the |
|
333 | If mmaplargeindex is True, and an mmapindexthreshold is set, the | |
334 | index will be mmapped rather than read if it is larger than the |
|
334 | index will be mmapped rather than read if it is larger than the | |
335 | configured threshold. |
|
335 | configured threshold. | |
336 |
|
336 | |||
337 | If censorable is True, the revlog can have censored revisions. |
|
337 | If censorable is True, the revlog can have censored revisions. | |
338 |
|
338 | |||
339 | If `upperboundcomp` is not None, this is the expected maximal gain from |
|
339 | If `upperboundcomp` is not None, this is the expected maximal gain from | |
340 | compression for the data content. |
|
340 | compression for the data content. | |
341 | """ |
|
341 | """ | |
342 | def __init__(self, opener, indexfile, datafile=None, checkambig=False, |
|
342 | def __init__(self, opener, indexfile, datafile=None, checkambig=False, | |
343 | mmaplargeindex=False, censorable=False, |
|
343 | mmaplargeindex=False, censorable=False, | |
344 | upperboundcomp=None): |
|
344 | upperboundcomp=None): | |
345 | """ |
|
345 | """ | |
346 | create a revlog object |
|
346 | create a revlog object | |
347 |
|
347 | |||
348 | opener is a function that abstracts the file opening operation |
|
348 | opener is a function that abstracts the file opening operation | |
349 | and can be used to implement COW semantics or the like. |
|
349 | and can be used to implement COW semantics or the like. | |
350 |
|
350 | |||
351 | """ |
|
351 | """ | |
352 | self.upperboundcomp = upperboundcomp |
|
352 | self.upperboundcomp = upperboundcomp | |
353 | self.indexfile = indexfile |
|
353 | self.indexfile = indexfile | |
354 | self.datafile = datafile or (indexfile[:-2] + ".d") |
|
354 | self.datafile = datafile or (indexfile[:-2] + ".d") | |
355 | self.opener = opener |
|
355 | self.opener = opener | |
356 | # When True, indexfile is opened with checkambig=True at writing, to |
|
356 | # When True, indexfile is opened with checkambig=True at writing, to | |
357 | # avoid file stat ambiguity. |
|
357 | # avoid file stat ambiguity. | |
358 | self._checkambig = checkambig |
|
358 | self._checkambig = checkambig | |
359 | self._mmaplargeindex = mmaplargeindex |
|
359 | self._mmaplargeindex = mmaplargeindex | |
360 | self._censorable = censorable |
|
360 | self._censorable = censorable | |
361 | # 3-tuple of (node, rev, text) for a raw revision. |
|
361 | # 3-tuple of (node, rev, text) for a raw revision. | |
362 | self._revisioncache = None |
|
362 | self._revisioncache = None | |
363 | # Maps rev to chain base rev. |
|
363 | # Maps rev to chain base rev. | |
364 | self._chainbasecache = util.lrucachedict(100) |
|
364 | self._chainbasecache = util.lrucachedict(100) | |
365 | # 2-tuple of (offset, data) of raw data from the revlog at an offset. |
|
365 | # 2-tuple of (offset, data) of raw data from the revlog at an offset. | |
366 | self._chunkcache = (0, '') |
|
366 | self._chunkcache = (0, '') | |
367 | # How much data to read and cache into the raw revlog data cache. |
|
367 | # How much data to read and cache into the raw revlog data cache. | |
368 | self._chunkcachesize = 65536 |
|
368 | self._chunkcachesize = 65536 | |
369 | self._maxchainlen = None |
|
369 | self._maxchainlen = None | |
370 | self._deltabothparents = True |
|
370 | self._deltabothparents = True | |
371 | self.index = [] |
|
371 | self.index = [] | |
372 | # Mapping of partial identifiers to full nodes. |
|
372 | # Mapping of partial identifiers to full nodes. | |
373 | self._pcache = {} |
|
373 | self._pcache = {} | |
374 | # Mapping of revision integer to full node. |
|
374 | # Mapping of revision integer to full node. | |
375 | self._nodecache = {nullid: nullrev} |
|
375 | self._nodecache = {nullid: nullrev} | |
376 | self._nodepos = None |
|
376 | self._nodepos = None | |
377 | self._compengine = 'zlib' |
|
377 | self._compengine = 'zlib' | |
378 | self._compengineopts = {} |
|
378 | self._compengineopts = {} | |
379 | self._maxdeltachainspan = -1 |
|
379 | self._maxdeltachainspan = -1 | |
380 | self._withsparseread = False |
|
380 | self._withsparseread = False | |
381 | self._sparserevlog = False |
|
381 | self._sparserevlog = False | |
382 | self._srdensitythreshold = 0.50 |
|
382 | self._srdensitythreshold = 0.50 | |
383 | self._srmingapsize = 262144 |
|
383 | self._srmingapsize = 262144 | |
384 |
|
384 | |||
385 | # Make copy of flag processors so each revlog instance can support |
|
385 | # Make copy of flag processors so each revlog instance can support | |
386 | # custom flags. |
|
386 | # custom flags. | |
387 | self._flagprocessors = dict(_flagprocessors) |
|
387 | self._flagprocessors = dict(_flagprocessors) | |
388 |
|
388 | |||
389 | # 2-tuple of file handles being used for active writing. |
|
389 | # 2-tuple of file handles being used for active writing. | |
390 | self._writinghandles = None |
|
390 | self._writinghandles = None | |
391 |
|
391 | |||
392 | self._loadindex() |
|
392 | self._loadindex() | |
393 |
|
393 | |||
394 | def _loadindex(self): |
|
394 | def _loadindex(self): | |
395 | mmapindexthreshold = None |
|
395 | mmapindexthreshold = None | |
396 | opts = getattr(self.opener, 'options', {}) or {} |
|
396 | opts = getattr(self.opener, 'options', {}) or {} | |
397 |
|
397 | |||
398 | if 'revlogv2' in opts: |
|
398 | if 'revlogv2' in opts: | |
399 | newversionflags = REVLOGV2 | FLAG_INLINE_DATA |
|
399 | newversionflags = REVLOGV2 | FLAG_INLINE_DATA | |
400 | elif 'revlogv1' in opts: |
|
400 | elif 'revlogv1' in opts: | |
401 | newversionflags = REVLOGV1 | FLAG_INLINE_DATA |
|
401 | newversionflags = REVLOGV1 | FLAG_INLINE_DATA | |
402 | if 'generaldelta' in opts: |
|
402 | if 'generaldelta' in opts: | |
403 | newversionflags |= FLAG_GENERALDELTA |
|
403 | newversionflags |= FLAG_GENERALDELTA | |
404 | elif getattr(self.opener, 'options', None) is not None: |
|
404 | elif getattr(self.opener, 'options', None) is not None: | |
405 | # If options provided but no 'revlog*' found, the repository |
|
405 | # If options provided but no 'revlog*' found, the repository | |
406 | # would have no 'requires' file in it, which means we have to |
|
406 | # would have no 'requires' file in it, which means we have to | |
407 | # stick to the old format. |
|
407 | # stick to the old format. | |
408 | newversionflags = REVLOGV0 |
|
408 | newversionflags = REVLOGV0 | |
409 | else: |
|
409 | else: | |
410 | newversionflags = REVLOG_DEFAULT_VERSION |
|
410 | newversionflags = REVLOG_DEFAULT_VERSION | |
411 |
|
411 | |||
412 | if 'chunkcachesize' in opts: |
|
412 | if 'chunkcachesize' in opts: | |
413 | self._chunkcachesize = opts['chunkcachesize'] |
|
413 | self._chunkcachesize = opts['chunkcachesize'] | |
414 | if 'maxchainlen' in opts: |
|
414 | if 'maxchainlen' in opts: | |
415 | self._maxchainlen = opts['maxchainlen'] |
|
415 | self._maxchainlen = opts['maxchainlen'] | |
416 | if 'deltabothparents' in opts: |
|
416 | if 'deltabothparents' in opts: | |
417 | self._deltabothparents = opts['deltabothparents'] |
|
417 | self._deltabothparents = opts['deltabothparents'] | |
418 | self._lazydelta = bool(opts.get('lazydelta', True)) |
|
418 | self._lazydelta = bool(opts.get('lazydelta', True)) | |
419 | self._lazydeltabase = False |
|
419 | self._lazydeltabase = False | |
420 | if self._lazydelta: |
|
420 | if self._lazydelta: | |
421 | self._lazydeltabase = bool(opts.get('lazydeltabase', False)) |
|
421 | self._lazydeltabase = bool(opts.get('lazydeltabase', False)) | |
422 | if 'compengine' in opts: |
|
422 | if 'compengine' in opts: | |
423 | self._compengine = opts['compengine'] |
|
423 | self._compengine = opts['compengine'] | |
424 | if 'zlib.level' in opts: |
|
424 | if 'zlib.level' in opts: | |
425 | self._compengineopts['zlib.level'] = opts['zlib.level'] |
|
425 | self._compengineopts['zlib.level'] = opts['zlib.level'] | |
426 | if 'zstd.level' in opts: |
|
426 | if 'zstd.level' in opts: | |
427 | self._compengineopts['zstd.level'] = opts['zstd.level'] |
|
427 | self._compengineopts['zstd.level'] = opts['zstd.level'] | |
428 | if 'maxdeltachainspan' in opts: |
|
428 | if 'maxdeltachainspan' in opts: | |
429 | self._maxdeltachainspan = opts['maxdeltachainspan'] |
|
429 | self._maxdeltachainspan = opts['maxdeltachainspan'] | |
430 | if self._mmaplargeindex and 'mmapindexthreshold' in opts: |
|
430 | if self._mmaplargeindex and 'mmapindexthreshold' in opts: | |
431 | mmapindexthreshold = opts['mmapindexthreshold'] |
|
431 | mmapindexthreshold = opts['mmapindexthreshold'] | |
432 | self._sparserevlog = bool(opts.get('sparse-revlog', False)) |
|
432 | self._sparserevlog = bool(opts.get('sparse-revlog', False)) | |
433 | withsparseread = bool(opts.get('with-sparse-read', False)) |
|
433 | withsparseread = bool(opts.get('with-sparse-read', False)) | |
434 | # sparse-revlog forces sparse-read |
|
434 | # sparse-revlog forces sparse-read | |
435 | self._withsparseread = self._sparserevlog or withsparseread |
|
435 | self._withsparseread = self._sparserevlog or withsparseread | |
436 | if 'sparse-read-density-threshold' in opts: |
|
436 | if 'sparse-read-density-threshold' in opts: | |
437 | self._srdensitythreshold = opts['sparse-read-density-threshold'] |
|
437 | self._srdensitythreshold = opts['sparse-read-density-threshold'] | |
438 | if 'sparse-read-min-gap-size' in opts: |
|
438 | if 'sparse-read-min-gap-size' in opts: | |
439 | self._srmingapsize = opts['sparse-read-min-gap-size'] |
|
439 | self._srmingapsize = opts['sparse-read-min-gap-size'] | |
440 | if opts.get('enableellipsis'): |
|
440 | if opts.get('enableellipsis'): | |
441 | self._flagprocessors[REVIDX_ELLIPSIS] = ellipsisprocessor |
|
441 | self._flagprocessors[REVIDX_ELLIPSIS] = ellipsisprocessor | |
442 |
|
442 | |||
443 | # revlog v0 doesn't have flag processors |
|
443 | # revlog v0 doesn't have flag processors | |
444 | for flag, processor in opts.get(b'flagprocessors', {}).iteritems(): |
|
444 | for flag, processor in opts.get(b'flagprocessors', {}).iteritems(): | |
445 | _insertflagprocessor(flag, processor, self._flagprocessors) |
|
445 | _insertflagprocessor(flag, processor, self._flagprocessors) | |
446 |
|
446 | |||
447 | if self._chunkcachesize <= 0: |
|
447 | if self._chunkcachesize <= 0: | |
448 | raise error.RevlogError(_('revlog chunk cache size %r is not ' |
|
448 | raise error.RevlogError(_('revlog chunk cache size %r is not ' | |
449 | 'greater than 0') % self._chunkcachesize) |
|
449 | 'greater than 0') % self._chunkcachesize) | |
450 | elif self._chunkcachesize & (self._chunkcachesize - 1): |
|
450 | elif self._chunkcachesize & (self._chunkcachesize - 1): | |
451 | raise error.RevlogError(_('revlog chunk cache size %r is not a ' |
|
451 | raise error.RevlogError(_('revlog chunk cache size %r is not a ' | |
452 | 'power of 2') % self._chunkcachesize) |
|
452 | 'power of 2') % self._chunkcachesize) | |
453 |
|
453 | |||
454 | indexdata = '' |
|
454 | indexdata = '' | |
455 | self._initempty = True |
|
455 | self._initempty = True | |
456 | try: |
|
456 | try: | |
457 | with self._indexfp() as f: |
|
457 | with self._indexfp() as f: | |
458 | if (mmapindexthreshold is not None and |
|
458 | if (mmapindexthreshold is not None and | |
459 | self.opener.fstat(f).st_size >= mmapindexthreshold): |
|
459 | self.opener.fstat(f).st_size >= mmapindexthreshold): | |
460 | # TODO: should .close() to release resources without |
|
460 | # TODO: should .close() to release resources without | |
461 | # relying on Python GC |
|
461 | # relying on Python GC | |
462 | indexdata = util.buffer(util.mmapread(f)) |
|
462 | indexdata = util.buffer(util.mmapread(f)) | |
463 | else: |
|
463 | else: | |
464 | indexdata = f.read() |
|
464 | indexdata = f.read() | |
465 | if len(indexdata) > 0: |
|
465 | if len(indexdata) > 0: | |
466 | versionflags = versionformat_unpack(indexdata[:4])[0] |
|
466 | versionflags = versionformat_unpack(indexdata[:4])[0] | |
467 | self._initempty = False |
|
467 | self._initempty = False | |
468 | else: |
|
468 | else: | |
469 | versionflags = newversionflags |
|
469 | versionflags = newversionflags | |
470 | except IOError as inst: |
|
470 | except IOError as inst: | |
471 | if inst.errno != errno.ENOENT: |
|
471 | if inst.errno != errno.ENOENT: | |
472 | raise |
|
472 | raise | |
473 |
|
473 | |||
474 | versionflags = newversionflags |
|
474 | versionflags = newversionflags | |
475 |
|
475 | |||
476 | self.version = versionflags |
|
476 | self.version = versionflags | |
477 |
|
477 | |||
478 | flags = versionflags & ~0xFFFF |
|
478 | flags = versionflags & ~0xFFFF | |
479 | fmt = versionflags & 0xFFFF |
|
479 | fmt = versionflags & 0xFFFF | |
480 |
|
480 | |||
481 | if fmt == REVLOGV0: |
|
481 | if fmt == REVLOGV0: | |
482 | if flags: |
|
482 | if flags: | |
483 | raise error.RevlogError(_('unknown flags (%#04x) in version %d ' |
|
483 | raise error.RevlogError(_('unknown flags (%#04x) in version %d ' | |
484 | 'revlog %s') % |
|
484 | 'revlog %s') % | |
485 | (flags >> 16, fmt, self.indexfile)) |
|
485 | (flags >> 16, fmt, self.indexfile)) | |
486 |
|
486 | |||
487 | self._inline = False |
|
487 | self._inline = False | |
488 | self._generaldelta = False |
|
488 | self._generaldelta = False | |
489 |
|
489 | |||
490 | elif fmt == REVLOGV1: |
|
490 | elif fmt == REVLOGV1: | |
491 | if flags & ~REVLOGV1_FLAGS: |
|
491 | if flags & ~REVLOGV1_FLAGS: | |
492 | raise error.RevlogError(_('unknown flags (%#04x) in version %d ' |
|
492 | raise error.RevlogError(_('unknown flags (%#04x) in version %d ' | |
493 | 'revlog %s') % |
|
493 | 'revlog %s') % | |
494 | (flags >> 16, fmt, self.indexfile)) |
|
494 | (flags >> 16, fmt, self.indexfile)) | |
495 |
|
495 | |||
496 | self._inline = versionflags & FLAG_INLINE_DATA |
|
496 | self._inline = versionflags & FLAG_INLINE_DATA | |
497 | self._generaldelta = versionflags & FLAG_GENERALDELTA |
|
497 | self._generaldelta = versionflags & FLAG_GENERALDELTA | |
498 |
|
498 | |||
499 | elif fmt == REVLOGV2: |
|
499 | elif fmt == REVLOGV2: | |
500 | if flags & ~REVLOGV2_FLAGS: |
|
500 | if flags & ~REVLOGV2_FLAGS: | |
501 | raise error.RevlogError(_('unknown flags (%#04x) in version %d ' |
|
501 | raise error.RevlogError(_('unknown flags (%#04x) in version %d ' | |
502 | 'revlog %s') % |
|
502 | 'revlog %s') % | |
503 | (flags >> 16, fmt, self.indexfile)) |
|
503 | (flags >> 16, fmt, self.indexfile)) | |
504 |
|
504 | |||
505 | self._inline = versionflags & FLAG_INLINE_DATA |
|
505 | self._inline = versionflags & FLAG_INLINE_DATA | |
506 | # generaldelta implied by version 2 revlogs. |
|
506 | # generaldelta implied by version 2 revlogs. | |
507 | self._generaldelta = True |
|
507 | self._generaldelta = True | |
508 |
|
508 | |||
509 | else: |
|
509 | else: | |
510 | raise error.RevlogError(_('unknown version (%d) in revlog %s') % |
|
510 | raise error.RevlogError(_('unknown version (%d) in revlog %s') % | |
511 | (fmt, self.indexfile)) |
|
511 | (fmt, self.indexfile)) | |
512 | # sparse-revlog can't be on without general-delta (issue6056) |
|
512 | # sparse-revlog can't be on without general-delta (issue6056) | |
513 | if not self._generaldelta: |
|
513 | if not self._generaldelta: | |
514 | self._sparserevlog = False |
|
514 | self._sparserevlog = False | |
515 |
|
515 | |||
516 | self._storedeltachains = True |
|
516 | self._storedeltachains = True | |
517 |
|
517 | |||
518 | self._io = revlogio() |
|
518 | self._io = revlogio() | |
519 | if self.version == REVLOGV0: |
|
519 | if self.version == REVLOGV0: | |
520 | self._io = revlogoldio() |
|
520 | self._io = revlogoldio() | |
521 | try: |
|
521 | try: | |
522 | d = self._io.parseindex(indexdata, self._inline) |
|
522 | d = self._io.parseindex(indexdata, self._inline) | |
523 | except (ValueError, IndexError): |
|
523 | except (ValueError, IndexError): | |
524 | raise error.RevlogError(_("index %s is corrupted") % |
|
524 | raise error.RevlogError(_("index %s is corrupted") % | |
525 | self.indexfile) |
|
525 | self.indexfile) | |
526 | self.index, nodemap, self._chunkcache = d |
|
526 | self.index, nodemap, self._chunkcache = d | |
527 | if nodemap is not None: |
|
527 | if nodemap is not None: | |
528 | self.nodemap = self._nodecache = nodemap |
|
528 | self.nodemap = self._nodecache = nodemap | |
529 | if not self._chunkcache: |
|
529 | if not self._chunkcache: | |
530 | self._chunkclear() |
|
530 | self._chunkclear() | |
531 | # revnum -> (chain-length, sum-delta-length) |
|
531 | # revnum -> (chain-length, sum-delta-length) | |
532 | self._chaininfocache = {} |
|
532 | self._chaininfocache = {} | |
533 | # revlog header -> revlog compressor |
|
533 | # revlog header -> revlog compressor | |
534 | self._decompressors = {} |
|
534 | self._decompressors = {} | |
535 |
|
535 | |||
536 | @util.propertycache |
|
536 | @util.propertycache | |
537 | def _compressor(self): |
|
537 | def _compressor(self): | |
538 | engine = util.compengines[self._compengine] |
|
538 | engine = util.compengines[self._compengine] | |
539 | return engine.revlogcompressor(self._compengineopts) |
|
539 | return engine.revlogcompressor(self._compengineopts) | |
540 |
|
540 | |||
541 | def _indexfp(self, mode='r'): |
|
541 | def _indexfp(self, mode='r'): | |
542 | """file object for the revlog's index file""" |
|
542 | """file object for the revlog's index file""" | |
543 | args = {r'mode': mode} |
|
543 | args = {r'mode': mode} | |
544 | if mode != 'r': |
|
544 | if mode != 'r': | |
545 | args[r'checkambig'] = self._checkambig |
|
545 | args[r'checkambig'] = self._checkambig | |
546 | if mode == 'w': |
|
546 | if mode == 'w': | |
547 | args[r'atomictemp'] = True |
|
547 | args[r'atomictemp'] = True | |
548 | return self.opener(self.indexfile, **args) |
|
548 | return self.opener(self.indexfile, **args) | |
549 |
|
549 | |||
550 | def _datafp(self, mode='r'): |
|
550 | def _datafp(self, mode='r'): | |
551 | """file object for the revlog's data file""" |
|
551 | """file object for the revlog's data file""" | |
552 | return self.opener(self.datafile, mode=mode) |
|
552 | return self.opener(self.datafile, mode=mode) | |
553 |
|
553 | |||
554 | @contextlib.contextmanager |
|
554 | @contextlib.contextmanager | |
555 | def _datareadfp(self, existingfp=None): |
|
555 | def _datareadfp(self, existingfp=None): | |
556 | """file object suitable to read data""" |
|
556 | """file object suitable to read data""" | |
557 | # Use explicit file handle, if given. |
|
557 | # Use explicit file handle, if given. | |
558 | if existingfp is not None: |
|
558 | if existingfp is not None: | |
559 | yield existingfp |
|
559 | yield existingfp | |
560 |
|
560 | |||
561 | # Use a file handle being actively used for writes, if available. |
|
561 | # Use a file handle being actively used for writes, if available. | |
562 | # There is some danger to doing this because reads will seek the |
|
562 | # There is some danger to doing this because reads will seek the | |
563 | # file. However, _writeentry() performs a SEEK_END before all writes, |
|
563 | # file. However, _writeentry() performs a SEEK_END before all writes, | |
564 | # so we should be safe. |
|
564 | # so we should be safe. | |
565 | elif self._writinghandles: |
|
565 | elif self._writinghandles: | |
566 | if self._inline: |
|
566 | if self._inline: | |
567 | yield self._writinghandles[0] |
|
567 | yield self._writinghandles[0] | |
568 | else: |
|
568 | else: | |
569 | yield self._writinghandles[1] |
|
569 | yield self._writinghandles[1] | |
570 |
|
570 | |||
571 | # Otherwise open a new file handle. |
|
571 | # Otherwise open a new file handle. | |
572 | else: |
|
572 | else: | |
573 | if self._inline: |
|
573 | if self._inline: | |
574 | func = self._indexfp |
|
574 | func = self._indexfp | |
575 | else: |
|
575 | else: | |
576 | func = self._datafp |
|
576 | func = self._datafp | |
577 | with func() as fp: |
|
577 | with func() as fp: | |
578 | yield fp |
|
578 | yield fp | |
579 |
|
579 | |||
580 | def tip(self): |
|
580 | def tip(self): | |
581 | return self.node(len(self.index) - 1) |
|
581 | return self.node(len(self.index) - 1) | |
582 | def __contains__(self, rev): |
|
582 | def __contains__(self, rev): | |
583 | return 0 <= rev < len(self) |
|
583 | return 0 <= rev < len(self) | |
584 | def __len__(self): |
|
584 | def __len__(self): | |
585 | return len(self.index) |
|
585 | return len(self.index) | |
586 | def __iter__(self): |
|
586 | def __iter__(self): | |
587 | return iter(pycompat.xrange(len(self))) |
|
587 | return iter(pycompat.xrange(len(self))) | |
588 | def revs(self, start=0, stop=None): |
|
588 | def revs(self, start=0, stop=None): | |
589 | """iterate over all rev in this revlog (from start to stop)""" |
|
589 | """iterate over all rev in this revlog (from start to stop)""" | |
590 | return storageutil.iterrevs(len(self), start=start, stop=stop) |
|
590 | return storageutil.iterrevs(len(self), start=start, stop=stop) | |
591 |
|
591 | |||
592 | @util.propertycache |
|
592 | @util.propertycache | |
593 | def nodemap(self): |
|
593 | def nodemap(self): | |
594 | if self.index: |
|
594 | if self.index: | |
595 | # populate mapping down to the initial node |
|
595 | # populate mapping down to the initial node | |
596 | node0 = self.index[0][7] # get around changelog filtering |
|
596 | node0 = self.index[0][7] # get around changelog filtering | |
597 | self.rev(node0) |
|
597 | self.rev(node0) | |
598 | return self._nodecache |
|
598 | return self._nodecache | |
599 |
|
599 | |||
600 | def hasnode(self, node): |
|
600 | def hasnode(self, node): | |
601 | try: |
|
601 | try: | |
602 | self.rev(node) |
|
602 | self.rev(node) | |
603 | return True |
|
603 | return True | |
604 | except KeyError: |
|
604 | except KeyError: | |
605 | return False |
|
605 | return False | |
606 |
|
606 | |||
607 | def candelta(self, baserev, rev): |
|
607 | def candelta(self, baserev, rev): | |
608 | """whether two revisions (baserev, rev) can be delta-ed or not""" |
|
608 | """whether two revisions (baserev, rev) can be delta-ed or not""" | |
609 | # Disable delta if either rev requires a content-changing flag |
|
609 | # Disable delta if either rev requires a content-changing flag | |
610 | # processor (ex. LFS). This is because such flag processor can alter |
|
610 | # processor (ex. LFS). This is because such flag processor can alter | |
611 | # the rawtext content that the delta will be based on, and two clients |
|
611 | # the rawtext content that the delta will be based on, and two clients | |
612 | # could have a same revlog node with different flags (i.e. different |
|
612 | # could have a same revlog node with different flags (i.e. different | |
613 | # rawtext contents) and the delta could be incompatible. |
|
613 | # rawtext contents) and the delta could be incompatible. | |
614 | if ((self.flags(baserev) & REVIDX_RAWTEXT_CHANGING_FLAGS) |
|
614 | if ((self.flags(baserev) & REVIDX_RAWTEXT_CHANGING_FLAGS) | |
615 | or (self.flags(rev) & REVIDX_RAWTEXT_CHANGING_FLAGS)): |
|
615 | or (self.flags(rev) & REVIDX_RAWTEXT_CHANGING_FLAGS)): | |
616 | return False |
|
616 | return False | |
617 | return True |
|
617 | return True | |
618 |
|
618 | |||
619 | def clearcaches(self): |
|
619 | def clearcaches(self): | |
620 | self._revisioncache = None |
|
620 | self._revisioncache = None | |
621 | self._chainbasecache.clear() |
|
621 | self._chainbasecache.clear() | |
622 | self._chunkcache = (0, '') |
|
622 | self._chunkcache = (0, '') | |
623 | self._pcache = {} |
|
623 | self._pcache = {} | |
624 |
|
624 | |||
625 | try: |
|
625 | try: | |
626 | # If we are using the native C version, you are in a fun case |
|
626 | # If we are using the native C version, you are in a fun case | |
627 | # where self.index, self.nodemap and self._nodecaches is the same |
|
627 | # where self.index, self.nodemap and self._nodecaches is the same | |
628 | # object. |
|
628 | # object. | |
629 | self._nodecache.clearcaches() |
|
629 | self._nodecache.clearcaches() | |
630 | except AttributeError: |
|
630 | except AttributeError: | |
631 | self._nodecache = {nullid: nullrev} |
|
631 | self._nodecache = {nullid: nullrev} | |
632 | self._nodepos = None |
|
632 | self._nodepos = None | |
633 |
|
633 | |||
634 | def rev(self, node): |
|
634 | def rev(self, node): | |
635 | try: |
|
635 | try: | |
636 | return self._nodecache[node] |
|
636 | return self._nodecache[node] | |
637 | except TypeError: |
|
637 | except TypeError: | |
638 | raise |
|
638 | raise | |
639 | except error.RevlogError: |
|
639 | except error.RevlogError: | |
640 | # parsers.c radix tree lookup failed |
|
640 | # parsers.c radix tree lookup failed | |
641 | if node == wdirid or node in wdirfilenodeids: |
|
641 | if node == wdirid or node in wdirfilenodeids: | |
642 | raise error.WdirUnsupported |
|
642 | raise error.WdirUnsupported | |
643 | raise error.LookupError(node, self.indexfile, _('no node')) |
|
643 | raise error.LookupError(node, self.indexfile, _('no node')) | |
644 | except KeyError: |
|
644 | except KeyError: | |
645 | # pure python cache lookup failed |
|
645 | # pure python cache lookup failed | |
646 | n = self._nodecache |
|
646 | n = self._nodecache | |
647 | i = self.index |
|
647 | i = self.index | |
648 | p = self._nodepos |
|
648 | p = self._nodepos | |
649 | if p is None: |
|
649 | if p is None: | |
650 | p = len(i) - 1 |
|
650 | p = len(i) - 1 | |
651 | else: |
|
651 | else: | |
652 | assert p < len(i) |
|
652 | assert p < len(i) | |
653 | for r in pycompat.xrange(p, -1, -1): |
|
653 | for r in pycompat.xrange(p, -1, -1): | |
654 | v = i[r][7] |
|
654 | v = i[r][7] | |
655 | n[v] = r |
|
655 | n[v] = r | |
656 | if v == node: |
|
656 | if v == node: | |
657 | self._nodepos = r - 1 |
|
657 | self._nodepos = r - 1 | |
658 | return r |
|
658 | return r | |
659 | if node == wdirid or node in wdirfilenodeids: |
|
659 | if node == wdirid or node in wdirfilenodeids: | |
660 | raise error.WdirUnsupported |
|
660 | raise error.WdirUnsupported | |
661 | raise error.LookupError(node, self.indexfile, _('no node')) |
|
661 | raise error.LookupError(node, self.indexfile, _('no node')) | |
662 |
|
662 | |||
663 | # Accessors for index entries. |
|
663 | # Accessors for index entries. | |
664 |
|
664 | |||
665 | # First tuple entry is 8 bytes. First 6 bytes are offset. Last 2 bytes |
|
665 | # First tuple entry is 8 bytes. First 6 bytes are offset. Last 2 bytes | |
666 | # are flags. |
|
666 | # are flags. | |
667 | def start(self, rev): |
|
667 | def start(self, rev): | |
668 | return int(self.index[rev][0] >> 16) |
|
668 | return int(self.index[rev][0] >> 16) | |
669 |
|
669 | |||
670 | def flags(self, rev): |
|
670 | def flags(self, rev): | |
671 | return self.index[rev][0] & 0xFFFF |
|
671 | return self.index[rev][0] & 0xFFFF | |
672 |
|
672 | |||
673 | def length(self, rev): |
|
673 | def length(self, rev): | |
674 | return self.index[rev][1] |
|
674 | return self.index[rev][1] | |
675 |
|
675 | |||
676 | def rawsize(self, rev): |
|
676 | def rawsize(self, rev): | |
677 | """return the length of the uncompressed text for a given revision""" |
|
677 | """return the length of the uncompressed text for a given revision""" | |
678 | l = self.index[rev][2] |
|
678 | l = self.index[rev][2] | |
679 | if l >= 0: |
|
679 | if l >= 0: | |
680 | return l |
|
680 | return l | |
681 |
|
681 | |||
682 | t = self.revision(rev, raw=True) |
|
682 | t = self.revision(rev, raw=True) | |
683 | return len(t) |
|
683 | return len(t) | |
684 |
|
684 | |||
685 | def size(self, rev): |
|
685 | def size(self, rev): | |
686 | """length of non-raw text (processed by a "read" flag processor)""" |
|
686 | """length of non-raw text (processed by a "read" flag processor)""" | |
687 | # fast path: if no "read" flag processor could change the content, |
|
687 | # fast path: if no "read" flag processor could change the content, | |
688 | # size is rawsize. note: ELLIPSIS is known to not change the content. |
|
688 | # size is rawsize. note: ELLIPSIS is known to not change the content. | |
689 | flags = self.flags(rev) |
|
689 | flags = self.flags(rev) | |
690 | if flags & (REVIDX_KNOWN_FLAGS ^ REVIDX_ELLIPSIS) == 0: |
|
690 | if flags & (REVIDX_KNOWN_FLAGS ^ REVIDX_ELLIPSIS) == 0: | |
691 | return self.rawsize(rev) |
|
691 | return self.rawsize(rev) | |
692 |
|
692 | |||
693 | return len(self.revision(rev, raw=False)) |
|
693 | return len(self.revision(rev, raw=False)) | |
694 |
|
694 | |||
695 | def chainbase(self, rev): |
|
695 | def chainbase(self, rev): | |
696 | base = self._chainbasecache.get(rev) |
|
696 | base = self._chainbasecache.get(rev) | |
697 | if base is not None: |
|
697 | if base is not None: | |
698 | return base |
|
698 | return base | |
699 |
|
699 | |||
700 | index = self.index |
|
700 | index = self.index | |
701 | iterrev = rev |
|
701 | iterrev = rev | |
702 | base = index[iterrev][3] |
|
702 | base = index[iterrev][3] | |
703 | while base != iterrev: |
|
703 | while base != iterrev: | |
704 | iterrev = base |
|
704 | iterrev = base | |
705 | base = index[iterrev][3] |
|
705 | base = index[iterrev][3] | |
706 |
|
706 | |||
707 | self._chainbasecache[rev] = base |
|
707 | self._chainbasecache[rev] = base | |
708 | return base |
|
708 | return base | |
709 |
|
709 | |||
710 | def linkrev(self, rev): |
|
710 | def linkrev(self, rev): | |
711 | return self.index[rev][4] |
|
711 | return self.index[rev][4] | |
712 |
|
712 | |||
713 | def parentrevs(self, rev): |
|
713 | def parentrevs(self, rev): | |
714 | try: |
|
714 | try: | |
715 | entry = self.index[rev] |
|
715 | entry = self.index[rev] | |
716 | except IndexError: |
|
716 | except IndexError: | |
717 | if rev == wdirrev: |
|
717 | if rev == wdirrev: | |
718 | raise error.WdirUnsupported |
|
718 | raise error.WdirUnsupported | |
719 | raise |
|
719 | raise | |
720 |
|
720 | |||
721 | return entry[5], entry[6] |
|
721 | return entry[5], entry[6] | |
722 |
|
722 | |||
723 | # fast parentrevs(rev) where rev isn't filtered |
|
723 | # fast parentrevs(rev) where rev isn't filtered | |
724 | _uncheckedparentrevs = parentrevs |
|
724 | _uncheckedparentrevs = parentrevs | |
725 |
|
725 | |||
726 | def node(self, rev): |
|
726 | def node(self, rev): | |
727 | try: |
|
727 | try: | |
728 | return self.index[rev][7] |
|
728 | return self.index[rev][7] | |
729 | except IndexError: |
|
729 | except IndexError: | |
730 | if rev == wdirrev: |
|
730 | if rev == wdirrev: | |
731 | raise error.WdirUnsupported |
|
731 | raise error.WdirUnsupported | |
732 | raise |
|
732 | raise | |
733 |
|
733 | |||
734 | # Derived from index values. |
|
734 | # Derived from index values. | |
735 |
|
735 | |||
736 | def end(self, rev): |
|
736 | def end(self, rev): | |
737 | return self.start(rev) + self.length(rev) |
|
737 | return self.start(rev) + self.length(rev) | |
738 |
|
738 | |||
739 | def parents(self, node): |
|
739 | def parents(self, node): | |
740 | i = self.index |
|
740 | i = self.index | |
741 | d = i[self.rev(node)] |
|
741 | d = i[self.rev(node)] | |
742 | return i[d[5]][7], i[d[6]][7] # map revisions to nodes inline |
|
742 | return i[d[5]][7], i[d[6]][7] # map revisions to nodes inline | |
743 |
|
743 | |||
744 | def chainlen(self, rev): |
|
744 | def chainlen(self, rev): | |
745 | return self._chaininfo(rev)[0] |
|
745 | return self._chaininfo(rev)[0] | |
746 |
|
746 | |||
747 | def _chaininfo(self, rev): |
|
747 | def _chaininfo(self, rev): | |
748 | chaininfocache = self._chaininfocache |
|
748 | chaininfocache = self._chaininfocache | |
749 | if rev in chaininfocache: |
|
749 | if rev in chaininfocache: | |
750 | return chaininfocache[rev] |
|
750 | return chaininfocache[rev] | |
751 | index = self.index |
|
751 | index = self.index | |
752 | generaldelta = self._generaldelta |
|
752 | generaldelta = self._generaldelta | |
753 | iterrev = rev |
|
753 | iterrev = rev | |
754 | e = index[iterrev] |
|
754 | e = index[iterrev] | |
755 | clen = 0 |
|
755 | clen = 0 | |
756 | compresseddeltalen = 0 |
|
756 | compresseddeltalen = 0 | |
757 | while iterrev != e[3]: |
|
757 | while iterrev != e[3]: | |
758 | clen += 1 |
|
758 | clen += 1 | |
759 | compresseddeltalen += e[1] |
|
759 | compresseddeltalen += e[1] | |
760 | if generaldelta: |
|
760 | if generaldelta: | |
761 | iterrev = e[3] |
|
761 | iterrev = e[3] | |
762 | else: |
|
762 | else: | |
763 | iterrev -= 1 |
|
763 | iterrev -= 1 | |
764 | if iterrev in chaininfocache: |
|
764 | if iterrev in chaininfocache: | |
765 | t = chaininfocache[iterrev] |
|
765 | t = chaininfocache[iterrev] | |
766 | clen += t[0] |
|
766 | clen += t[0] | |
767 | compresseddeltalen += t[1] |
|
767 | compresseddeltalen += t[1] | |
768 | break |
|
768 | break | |
769 | e = index[iterrev] |
|
769 | e = index[iterrev] | |
770 | else: |
|
770 | else: | |
771 | # Add text length of base since decompressing that also takes |
|
771 | # Add text length of base since decompressing that also takes | |
772 | # work. For cache hits the length is already included. |
|
772 | # work. For cache hits the length is already included. | |
773 | compresseddeltalen += e[1] |
|
773 | compresseddeltalen += e[1] | |
774 | r = (clen, compresseddeltalen) |
|
774 | r = (clen, compresseddeltalen) | |
775 | chaininfocache[rev] = r |
|
775 | chaininfocache[rev] = r | |
776 | return r |
|
776 | return r | |
777 |
|
777 | |||
778 | def _deltachain(self, rev, stoprev=None): |
|
778 | def _deltachain(self, rev, stoprev=None): | |
779 | """Obtain the delta chain for a revision. |
|
779 | """Obtain the delta chain for a revision. | |
780 |
|
780 | |||
781 | ``stoprev`` specifies a revision to stop at. If not specified, we |
|
781 | ``stoprev`` specifies a revision to stop at. If not specified, we | |
782 | stop at the base of the chain. |
|
782 | stop at the base of the chain. | |
783 |
|
783 | |||
784 | Returns a 2-tuple of (chain, stopped) where ``chain`` is a list of |
|
784 | Returns a 2-tuple of (chain, stopped) where ``chain`` is a list of | |
785 | revs in ascending order and ``stopped`` is a bool indicating whether |
|
785 | revs in ascending order and ``stopped`` is a bool indicating whether | |
786 | ``stoprev`` was hit. |
|
786 | ``stoprev`` was hit. | |
787 | """ |
|
787 | """ | |
788 | # Try C implementation. |
|
788 | # Try C implementation. | |
789 | try: |
|
789 | try: | |
790 | return self.index.deltachain(rev, stoprev, self._generaldelta) |
|
790 | return self.index.deltachain(rev, stoprev, self._generaldelta) | |
791 | except AttributeError: |
|
791 | except AttributeError: | |
792 | pass |
|
792 | pass | |
793 |
|
793 | |||
794 | chain = [] |
|
794 | chain = [] | |
795 |
|
795 | |||
796 | # Alias to prevent attribute lookup in tight loop. |
|
796 | # Alias to prevent attribute lookup in tight loop. | |
797 | index = self.index |
|
797 | index = self.index | |
798 | generaldelta = self._generaldelta |
|
798 | generaldelta = self._generaldelta | |
799 |
|
799 | |||
800 | iterrev = rev |
|
800 | iterrev = rev | |
801 | e = index[iterrev] |
|
801 | e = index[iterrev] | |
802 | while iterrev != e[3] and iterrev != stoprev: |
|
802 | while iterrev != e[3] and iterrev != stoprev: | |
803 | chain.append(iterrev) |
|
803 | chain.append(iterrev) | |
804 | if generaldelta: |
|
804 | if generaldelta: | |
805 | iterrev = e[3] |
|
805 | iterrev = e[3] | |
806 | else: |
|
806 | else: | |
807 | iterrev -= 1 |
|
807 | iterrev -= 1 | |
808 | e = index[iterrev] |
|
808 | e = index[iterrev] | |
809 |
|
809 | |||
810 | if iterrev == stoprev: |
|
810 | if iterrev == stoprev: | |
811 | stopped = True |
|
811 | stopped = True | |
812 | else: |
|
812 | else: | |
813 | chain.append(iterrev) |
|
813 | chain.append(iterrev) | |
814 | stopped = False |
|
814 | stopped = False | |
815 |
|
815 | |||
816 | chain.reverse() |
|
816 | chain.reverse() | |
817 | return chain, stopped |
|
817 | return chain, stopped | |
818 |
|
818 | |||
819 | def ancestors(self, revs, stoprev=0, inclusive=False): |
|
819 | def ancestors(self, revs, stoprev=0, inclusive=False): | |
820 | """Generate the ancestors of 'revs' in reverse revision order. |
|
820 | """Generate the ancestors of 'revs' in reverse revision order. | |
821 | Does not generate revs lower than stoprev. |
|
821 | Does not generate revs lower than stoprev. | |
822 |
|
822 | |||
823 | See the documentation for ancestor.lazyancestors for more details.""" |
|
823 | See the documentation for ancestor.lazyancestors for more details.""" | |
824 |
|
824 | |||
825 | # first, make sure start revisions aren't filtered |
|
825 | # first, make sure start revisions aren't filtered | |
826 | revs = list(revs) |
|
826 | revs = list(revs) | |
827 | checkrev = self.node |
|
827 | checkrev = self.node | |
828 | for r in revs: |
|
828 | for r in revs: | |
829 | checkrev(r) |
|
829 | checkrev(r) | |
830 | # and we're sure ancestors aren't filtered as well |
|
830 | # and we're sure ancestors aren't filtered as well | |
831 |
|
831 | |||
832 | if rustancestor is not None: |
|
832 | if rustancestor is not None: | |
833 | lazyancestors = rustancestor.LazyAncestors |
|
833 | lazyancestors = rustancestor.LazyAncestors | |
834 | arg = self.index |
|
834 | arg = self.index | |
835 | elif util.safehasattr(parsers, 'rustlazyancestors'): |
|
835 | elif util.safehasattr(parsers, 'rustlazyancestors'): | |
836 | lazyancestors = ancestor.rustlazyancestors |
|
836 | lazyancestors = ancestor.rustlazyancestors | |
837 | arg = self.index |
|
837 | arg = self.index | |
838 | else: |
|
838 | else: | |
839 | lazyancestors = ancestor.lazyancestors |
|
839 | lazyancestors = ancestor.lazyancestors | |
840 | arg = self._uncheckedparentrevs |
|
840 | arg = self._uncheckedparentrevs | |
841 | return lazyancestors(arg, revs, stoprev=stoprev, inclusive=inclusive) |
|
841 | return lazyancestors(arg, revs, stoprev=stoprev, inclusive=inclusive) | |
842 |
|
842 | |||
843 | def descendants(self, revs): |
|
843 | def descendants(self, revs): | |
844 | return dagop.descendantrevs(revs, self.revs, self.parentrevs) |
|
844 | return dagop.descendantrevs(revs, self.revs, self.parentrevs) | |
845 |
|
845 | |||
846 | def findcommonmissing(self, common=None, heads=None): |
|
846 | def findcommonmissing(self, common=None, heads=None): | |
847 | """Return a tuple of the ancestors of common and the ancestors of heads |
|
847 | """Return a tuple of the ancestors of common and the ancestors of heads | |
848 | that are not ancestors of common. In revset terminology, we return the |
|
848 | that are not ancestors of common. In revset terminology, we return the | |
849 | tuple: |
|
849 | tuple: | |
850 |
|
850 | |||
851 | ::common, (::heads) - (::common) |
|
851 | ::common, (::heads) - (::common) | |
852 |
|
852 | |||
853 | The list is sorted by revision number, meaning it is |
|
853 | The list is sorted by revision number, meaning it is | |
854 | topologically sorted. |
|
854 | topologically sorted. | |
855 |
|
855 | |||
856 | 'heads' and 'common' are both lists of node IDs. If heads is |
|
856 | 'heads' and 'common' are both lists of node IDs. If heads is | |
857 | not supplied, uses all of the revlog's heads. If common is not |
|
857 | not supplied, uses all of the revlog's heads. If common is not | |
858 | supplied, uses nullid.""" |
|
858 | supplied, uses nullid.""" | |
859 | if common is None: |
|
859 | if common is None: | |
860 | common = [nullid] |
|
860 | common = [nullid] | |
861 | if heads is None: |
|
861 | if heads is None: | |
862 | heads = self.heads() |
|
862 | heads = self.heads() | |
863 |
|
863 | |||
864 | common = [self.rev(n) for n in common] |
|
864 | common = [self.rev(n) for n in common] | |
865 | heads = [self.rev(n) for n in heads] |
|
865 | heads = [self.rev(n) for n in heads] | |
866 |
|
866 | |||
867 | # we want the ancestors, but inclusive |
|
867 | # we want the ancestors, but inclusive | |
868 | class lazyset(object): |
|
868 | class lazyset(object): | |
869 | def __init__(self, lazyvalues): |
|
869 | def __init__(self, lazyvalues): | |
870 | self.addedvalues = set() |
|
870 | self.addedvalues = set() | |
871 | self.lazyvalues = lazyvalues |
|
871 | self.lazyvalues = lazyvalues | |
872 |
|
872 | |||
873 | def __contains__(self, value): |
|
873 | def __contains__(self, value): | |
874 | return value in self.addedvalues or value in self.lazyvalues |
|
874 | return value in self.addedvalues or value in self.lazyvalues | |
875 |
|
875 | |||
876 | def __iter__(self): |
|
876 | def __iter__(self): | |
877 | added = self.addedvalues |
|
877 | added = self.addedvalues | |
878 | for r in added: |
|
878 | for r in added: | |
879 | yield r |
|
879 | yield r | |
880 | for r in self.lazyvalues: |
|
880 | for r in self.lazyvalues: | |
881 | if not r in added: |
|
881 | if not r in added: | |
882 | yield r |
|
882 | yield r | |
883 |
|
883 | |||
884 | def add(self, value): |
|
884 | def add(self, value): | |
885 | self.addedvalues.add(value) |
|
885 | self.addedvalues.add(value) | |
886 |
|
886 | |||
887 | def update(self, values): |
|
887 | def update(self, values): | |
888 | self.addedvalues.update(values) |
|
888 | self.addedvalues.update(values) | |
889 |
|
889 | |||
890 | has = lazyset(self.ancestors(common)) |
|
890 | has = lazyset(self.ancestors(common)) | |
891 | has.add(nullrev) |
|
891 | has.add(nullrev) | |
892 | has.update(common) |
|
892 | has.update(common) | |
893 |
|
893 | |||
894 | # take all ancestors from heads that aren't in has |
|
894 | # take all ancestors from heads that aren't in has | |
895 | missing = set() |
|
895 | missing = set() | |
896 | visit = collections.deque(r for r in heads if r not in has) |
|
896 | visit = collections.deque(r for r in heads if r not in has) | |
897 | while visit: |
|
897 | while visit: | |
898 | r = visit.popleft() |
|
898 | r = visit.popleft() | |
899 | if r in missing: |
|
899 | if r in missing: | |
900 | continue |
|
900 | continue | |
901 | else: |
|
901 | else: | |
902 | missing.add(r) |
|
902 | missing.add(r) | |
903 | for p in self.parentrevs(r): |
|
903 | for p in self.parentrevs(r): | |
904 | if p not in has: |
|
904 | if p not in has: | |
905 | visit.append(p) |
|
905 | visit.append(p) | |
906 | missing = list(missing) |
|
906 | missing = list(missing) | |
907 | missing.sort() |
|
907 | missing.sort() | |
908 | return has, [self.node(miss) for miss in missing] |
|
908 | return has, [self.node(miss) for miss in missing] | |
909 |
|
909 | |||
910 | def incrementalmissingrevs(self, common=None): |
|
910 | def incrementalmissingrevs(self, common=None): | |
911 | """Return an object that can be used to incrementally compute the |
|
911 | """Return an object that can be used to incrementally compute the | |
912 | revision numbers of the ancestors of arbitrary sets that are not |
|
912 | revision numbers of the ancestors of arbitrary sets that are not | |
913 | ancestors of common. This is an ancestor.incrementalmissingancestors |
|
913 | ancestors of common. This is an ancestor.incrementalmissingancestors | |
914 | object. |
|
914 | object. | |
915 |
|
915 | |||
916 | 'common' is a list of revision numbers. If common is not supplied, uses |
|
916 | 'common' is a list of revision numbers. If common is not supplied, uses | |
917 | nullrev. |
|
917 | nullrev. | |
918 | """ |
|
918 | """ | |
919 | if common is None: |
|
919 | if common is None: | |
920 | common = [nullrev] |
|
920 | common = [nullrev] | |
921 |
|
921 | |||
922 | if rustancestor is not None: |
|
922 | if rustancestor is not None: | |
923 | return rustancestor.MissingAncestors(self.index, common) |
|
923 | return rustancestor.MissingAncestors(self.index, common) | |
924 | return ancestor.incrementalmissingancestors(self.parentrevs, common) |
|
924 | return ancestor.incrementalmissingancestors(self.parentrevs, common) | |
925 |
|
925 | |||
926 | def findmissingrevs(self, common=None, heads=None): |
|
926 | def findmissingrevs(self, common=None, heads=None): | |
927 | """Return the revision numbers of the ancestors of heads that |
|
927 | """Return the revision numbers of the ancestors of heads that | |
928 | are not ancestors of common. |
|
928 | are not ancestors of common. | |
929 |
|
929 | |||
930 | More specifically, return a list of revision numbers corresponding to |
|
930 | More specifically, return a list of revision numbers corresponding to | |
931 | nodes N such that every N satisfies the following constraints: |
|
931 | nodes N such that every N satisfies the following constraints: | |
932 |
|
932 | |||
933 | 1. N is an ancestor of some node in 'heads' |
|
933 | 1. N is an ancestor of some node in 'heads' | |
934 | 2. N is not an ancestor of any node in 'common' |
|
934 | 2. N is not an ancestor of any node in 'common' | |
935 |
|
935 | |||
936 | The list is sorted by revision number, meaning it is |
|
936 | The list is sorted by revision number, meaning it is | |
937 | topologically sorted. |
|
937 | topologically sorted. | |
938 |
|
938 | |||
939 | 'heads' and 'common' are both lists of revision numbers. If heads is |
|
939 | 'heads' and 'common' are both lists of revision numbers. If heads is | |
940 | not supplied, uses all of the revlog's heads. If common is not |
|
940 | not supplied, uses all of the revlog's heads. If common is not | |
941 | supplied, uses nullid.""" |
|
941 | supplied, uses nullid.""" | |
942 | if common is None: |
|
942 | if common is None: | |
943 | common = [nullrev] |
|
943 | common = [nullrev] | |
944 | if heads is None: |
|
944 | if heads is None: | |
945 | heads = self.headrevs() |
|
945 | heads = self.headrevs() | |
946 |
|
946 | |||
947 | inc = self.incrementalmissingrevs(common=common) |
|
947 | inc = self.incrementalmissingrevs(common=common) | |
948 | return inc.missingancestors(heads) |
|
948 | return inc.missingancestors(heads) | |
949 |
|
949 | |||
950 | def findmissing(self, common=None, heads=None): |
|
950 | def findmissing(self, common=None, heads=None): | |
951 | """Return the ancestors of heads that are not ancestors of common. |
|
951 | """Return the ancestors of heads that are not ancestors of common. | |
952 |
|
952 | |||
953 | More specifically, return a list of nodes N such that every N |
|
953 | More specifically, return a list of nodes N such that every N | |
954 | satisfies the following constraints: |
|
954 | satisfies the following constraints: | |
955 |
|
955 | |||
956 | 1. N is an ancestor of some node in 'heads' |
|
956 | 1. N is an ancestor of some node in 'heads' | |
957 | 2. N is not an ancestor of any node in 'common' |
|
957 | 2. N is not an ancestor of any node in 'common' | |
958 |
|
958 | |||
959 | The list is sorted by revision number, meaning it is |
|
959 | The list is sorted by revision number, meaning it is | |
960 | topologically sorted. |
|
960 | topologically sorted. | |
961 |
|
961 | |||
962 | 'heads' and 'common' are both lists of node IDs. If heads is |
|
962 | 'heads' and 'common' are both lists of node IDs. If heads is | |
963 | not supplied, uses all of the revlog's heads. If common is not |
|
963 | not supplied, uses all of the revlog's heads. If common is not | |
964 | supplied, uses nullid.""" |
|
964 | supplied, uses nullid.""" | |
965 | if common is None: |
|
965 | if common is None: | |
966 | common = [nullid] |
|
966 | common = [nullid] | |
967 | if heads is None: |
|
967 | if heads is None: | |
968 | heads = self.heads() |
|
968 | heads = self.heads() | |
969 |
|
969 | |||
970 | common = [self.rev(n) for n in common] |
|
970 | common = [self.rev(n) for n in common] | |
971 | heads = [self.rev(n) for n in heads] |
|
971 | heads = [self.rev(n) for n in heads] | |
972 |
|
972 | |||
973 | inc = self.incrementalmissingrevs(common=common) |
|
973 | inc = self.incrementalmissingrevs(common=common) | |
974 | return [self.node(r) for r in inc.missingancestors(heads)] |
|
974 | return [self.node(r) for r in inc.missingancestors(heads)] | |
975 |
|
975 | |||
976 | def nodesbetween(self, roots=None, heads=None): |
|
976 | def nodesbetween(self, roots=None, heads=None): | |
977 | """Return a topological path from 'roots' to 'heads'. |
|
977 | """Return a topological path from 'roots' to 'heads'. | |
978 |
|
978 | |||
979 | Return a tuple (nodes, outroots, outheads) where 'nodes' is a |
|
979 | Return a tuple (nodes, outroots, outheads) where 'nodes' is a | |
980 | topologically sorted list of all nodes N that satisfy both of |
|
980 | topologically sorted list of all nodes N that satisfy both of | |
981 | these constraints: |
|
981 | these constraints: | |
982 |
|
982 | |||
983 | 1. N is a descendant of some node in 'roots' |
|
983 | 1. N is a descendant of some node in 'roots' | |
984 | 2. N is an ancestor of some node in 'heads' |
|
984 | 2. N is an ancestor of some node in 'heads' | |
985 |
|
985 | |||
986 | Every node is considered to be both a descendant and an ancestor |
|
986 | Every node is considered to be both a descendant and an ancestor | |
987 | of itself, so every reachable node in 'roots' and 'heads' will be |
|
987 | of itself, so every reachable node in 'roots' and 'heads' will be | |
988 | included in 'nodes'. |
|
988 | included in 'nodes'. | |
989 |
|
989 | |||
990 | 'outroots' is the list of reachable nodes in 'roots', i.e., the |
|
990 | 'outroots' is the list of reachable nodes in 'roots', i.e., the | |
991 | subset of 'roots' that is returned in 'nodes'. Likewise, |
|
991 | subset of 'roots' that is returned in 'nodes'. Likewise, | |
992 | 'outheads' is the subset of 'heads' that is also in 'nodes'. |
|
992 | 'outheads' is the subset of 'heads' that is also in 'nodes'. | |
993 |
|
993 | |||
994 | 'roots' and 'heads' are both lists of node IDs. If 'roots' is |
|
994 | 'roots' and 'heads' are both lists of node IDs. If 'roots' is | |
995 | unspecified, uses nullid as the only root. If 'heads' is |
|
995 | unspecified, uses nullid as the only root. If 'heads' is | |
996 | unspecified, uses list of all of the revlog's heads.""" |
|
996 | unspecified, uses list of all of the revlog's heads.""" | |
997 | nonodes = ([], [], []) |
|
997 | nonodes = ([], [], []) | |
998 | if roots is not None: |
|
998 | if roots is not None: | |
999 | roots = list(roots) |
|
999 | roots = list(roots) | |
1000 | if not roots: |
|
1000 | if not roots: | |
1001 | return nonodes |
|
1001 | return nonodes | |
1002 | lowestrev = min([self.rev(n) for n in roots]) |
|
1002 | lowestrev = min([self.rev(n) for n in roots]) | |
1003 | else: |
|
1003 | else: | |
1004 | roots = [nullid] # Everybody's a descendant of nullid |
|
1004 | roots = [nullid] # Everybody's a descendant of nullid | |
1005 | lowestrev = nullrev |
|
1005 | lowestrev = nullrev | |
1006 | if (lowestrev == nullrev) and (heads is None): |
|
1006 | if (lowestrev == nullrev) and (heads is None): | |
1007 | # We want _all_ the nodes! |
|
1007 | # We want _all_ the nodes! | |
1008 | return ([self.node(r) for r in self], [nullid], list(self.heads())) |
|
1008 | return ([self.node(r) for r in self], [nullid], list(self.heads())) | |
1009 | if heads is None: |
|
1009 | if heads is None: | |
1010 | # All nodes are ancestors, so the latest ancestor is the last |
|
1010 | # All nodes are ancestors, so the latest ancestor is the last | |
1011 | # node. |
|
1011 | # node. | |
1012 | highestrev = len(self) - 1 |
|
1012 | highestrev = len(self) - 1 | |
1013 | # Set ancestors to None to signal that every node is an ancestor. |
|
1013 | # Set ancestors to None to signal that every node is an ancestor. | |
1014 | ancestors = None |
|
1014 | ancestors = None | |
1015 | # Set heads to an empty dictionary for later discovery of heads |
|
1015 | # Set heads to an empty dictionary for later discovery of heads | |
1016 | heads = {} |
|
1016 | heads = {} | |
1017 | else: |
|
1017 | else: | |
1018 | heads = list(heads) |
|
1018 | heads = list(heads) | |
1019 | if not heads: |
|
1019 | if not heads: | |
1020 | return nonodes |
|
1020 | return nonodes | |
1021 | ancestors = set() |
|
1021 | ancestors = set() | |
1022 | # Turn heads into a dictionary so we can remove 'fake' heads. |
|
1022 | # Turn heads into a dictionary so we can remove 'fake' heads. | |
1023 | # Also, later we will be using it to filter out the heads we can't |
|
1023 | # Also, later we will be using it to filter out the heads we can't | |
1024 | # find from roots. |
|
1024 | # find from roots. | |
1025 | heads = dict.fromkeys(heads, False) |
|
1025 | heads = dict.fromkeys(heads, False) | |
1026 | # Start at the top and keep marking parents until we're done. |
|
1026 | # Start at the top and keep marking parents until we're done. | |
1027 | nodestotag = set(heads) |
|
1027 | nodestotag = set(heads) | |
1028 | # Remember where the top was so we can use it as a limit later. |
|
1028 | # Remember where the top was so we can use it as a limit later. | |
1029 | highestrev = max([self.rev(n) for n in nodestotag]) |
|
1029 | highestrev = max([self.rev(n) for n in nodestotag]) | |
1030 | while nodestotag: |
|
1030 | while nodestotag: | |
1031 | # grab a node to tag |
|
1031 | # grab a node to tag | |
1032 | n = nodestotag.pop() |
|
1032 | n = nodestotag.pop() | |
1033 | # Never tag nullid |
|
1033 | # Never tag nullid | |
1034 | if n == nullid: |
|
1034 | if n == nullid: | |
1035 | continue |
|
1035 | continue | |
1036 | # A node's revision number represents its place in a |
|
1036 | # A node's revision number represents its place in a | |
1037 | # topologically sorted list of nodes. |
|
1037 | # topologically sorted list of nodes. | |
1038 | r = self.rev(n) |
|
1038 | r = self.rev(n) | |
1039 | if r >= lowestrev: |
|
1039 | if r >= lowestrev: | |
1040 | if n not in ancestors: |
|
1040 | if n not in ancestors: | |
1041 | # If we are possibly a descendant of one of the roots |
|
1041 | # If we are possibly a descendant of one of the roots | |
1042 | # and we haven't already been marked as an ancestor |
|
1042 | # and we haven't already been marked as an ancestor | |
1043 | ancestors.add(n) # Mark as ancestor |
|
1043 | ancestors.add(n) # Mark as ancestor | |
1044 | # Add non-nullid parents to list of nodes to tag. |
|
1044 | # Add non-nullid parents to list of nodes to tag. | |
1045 | nodestotag.update([p for p in self.parents(n) if |
|
1045 | nodestotag.update([p for p in self.parents(n) if | |
1046 | p != nullid]) |
|
1046 | p != nullid]) | |
1047 | elif n in heads: # We've seen it before, is it a fake head? |
|
1047 | elif n in heads: # We've seen it before, is it a fake head? | |
1048 | # So it is, real heads should not be the ancestors of |
|
1048 | # So it is, real heads should not be the ancestors of | |
1049 | # any other heads. |
|
1049 | # any other heads. | |
1050 | heads.pop(n) |
|
1050 | heads.pop(n) | |
1051 | if not ancestors: |
|
1051 | if not ancestors: | |
1052 | return nonodes |
|
1052 | return nonodes | |
1053 | # Now that we have our set of ancestors, we want to remove any |
|
1053 | # Now that we have our set of ancestors, we want to remove any | |
1054 | # roots that are not ancestors. |
|
1054 | # roots that are not ancestors. | |
1055 |
|
1055 | |||
1056 | # If one of the roots was nullid, everything is included anyway. |
|
1056 | # If one of the roots was nullid, everything is included anyway. | |
1057 | if lowestrev > nullrev: |
|
1057 | if lowestrev > nullrev: | |
1058 | # But, since we weren't, let's recompute the lowest rev to not |
|
1058 | # But, since we weren't, let's recompute the lowest rev to not | |
1059 | # include roots that aren't ancestors. |
|
1059 | # include roots that aren't ancestors. | |
1060 |
|
1060 | |||
1061 | # Filter out roots that aren't ancestors of heads |
|
1061 | # Filter out roots that aren't ancestors of heads | |
1062 | roots = [root for root in roots if root in ancestors] |
|
1062 | roots = [root for root in roots if root in ancestors] | |
1063 | # Recompute the lowest revision |
|
1063 | # Recompute the lowest revision | |
1064 | if roots: |
|
1064 | if roots: | |
1065 | lowestrev = min([self.rev(root) for root in roots]) |
|
1065 | lowestrev = min([self.rev(root) for root in roots]) | |
1066 | else: |
|
1066 | else: | |
1067 | # No more roots? Return empty list |
|
1067 | # No more roots? Return empty list | |
1068 | return nonodes |
|
1068 | return nonodes | |
1069 | else: |
|
1069 | else: | |
1070 | # We are descending from nullid, and don't need to care about |
|
1070 | # We are descending from nullid, and don't need to care about | |
1071 | # any other roots. |
|
1071 | # any other roots. | |
1072 | lowestrev = nullrev |
|
1072 | lowestrev = nullrev | |
1073 | roots = [nullid] |
|
1073 | roots = [nullid] | |
1074 | # Transform our roots list into a set. |
|
1074 | # Transform our roots list into a set. | |
1075 | descendants = set(roots) |
|
1075 | descendants = set(roots) | |
1076 | # Also, keep the original roots so we can filter out roots that aren't |
|
1076 | # Also, keep the original roots so we can filter out roots that aren't | |
1077 | # 'real' roots (i.e. are descended from other roots). |
|
1077 | # 'real' roots (i.e. are descended from other roots). | |
1078 | roots = descendants.copy() |
|
1078 | roots = descendants.copy() | |
1079 | # Our topologically sorted list of output nodes. |
|
1079 | # Our topologically sorted list of output nodes. | |
1080 | orderedout = [] |
|
1080 | orderedout = [] | |
1081 | # Don't start at nullid since we don't want nullid in our output list, |
|
1081 | # Don't start at nullid since we don't want nullid in our output list, | |
1082 | # and if nullid shows up in descendants, empty parents will look like |
|
1082 | # and if nullid shows up in descendants, empty parents will look like | |
1083 | # they're descendants. |
|
1083 | # they're descendants. | |
1084 | for r in self.revs(start=max(lowestrev, 0), stop=highestrev + 1): |
|
1084 | for r in self.revs(start=max(lowestrev, 0), stop=highestrev + 1): | |
1085 | n = self.node(r) |
|
1085 | n = self.node(r) | |
1086 | isdescendant = False |
|
1086 | isdescendant = False | |
1087 | if lowestrev == nullrev: # Everybody is a descendant of nullid |
|
1087 | if lowestrev == nullrev: # Everybody is a descendant of nullid | |
1088 | isdescendant = True |
|
1088 | isdescendant = True | |
1089 | elif n in descendants: |
|
1089 | elif n in descendants: | |
1090 | # n is already a descendant |
|
1090 | # n is already a descendant | |
1091 | isdescendant = True |
|
1091 | isdescendant = True | |
1092 | # This check only needs to be done here because all the roots |
|
1092 | # This check only needs to be done here because all the roots | |
1093 | # will start being marked is descendants before the loop. |
|
1093 | # will start being marked is descendants before the loop. | |
1094 | if n in roots: |
|
1094 | if n in roots: | |
1095 | # If n was a root, check if it's a 'real' root. |
|
1095 | # If n was a root, check if it's a 'real' root. | |
1096 | p = tuple(self.parents(n)) |
|
1096 | p = tuple(self.parents(n)) | |
1097 | # If any of its parents are descendants, it's not a root. |
|
1097 | # If any of its parents are descendants, it's not a root. | |
1098 | if (p[0] in descendants) or (p[1] in descendants): |
|
1098 | if (p[0] in descendants) or (p[1] in descendants): | |
1099 | roots.remove(n) |
|
1099 | roots.remove(n) | |
1100 | else: |
|
1100 | else: | |
1101 | p = tuple(self.parents(n)) |
|
1101 | p = tuple(self.parents(n)) | |
1102 | # A node is a descendant if either of its parents are |
|
1102 | # A node is a descendant if either of its parents are | |
1103 | # descendants. (We seeded the dependents list with the roots |
|
1103 | # descendants. (We seeded the dependents list with the roots | |
1104 | # up there, remember?) |
|
1104 | # up there, remember?) | |
1105 | if (p[0] in descendants) or (p[1] in descendants): |
|
1105 | if (p[0] in descendants) or (p[1] in descendants): | |
1106 | descendants.add(n) |
|
1106 | descendants.add(n) | |
1107 | isdescendant = True |
|
1107 | isdescendant = True | |
1108 | if isdescendant and ((ancestors is None) or (n in ancestors)): |
|
1108 | if isdescendant and ((ancestors is None) or (n in ancestors)): | |
1109 | # Only include nodes that are both descendants and ancestors. |
|
1109 | # Only include nodes that are both descendants and ancestors. | |
1110 | orderedout.append(n) |
|
1110 | orderedout.append(n) | |
1111 | if (ancestors is not None) and (n in heads): |
|
1111 | if (ancestors is not None) and (n in heads): | |
1112 | # We're trying to figure out which heads are reachable |
|
1112 | # We're trying to figure out which heads are reachable | |
1113 | # from roots. |
|
1113 | # from roots. | |
1114 | # Mark this head as having been reached |
|
1114 | # Mark this head as having been reached | |
1115 | heads[n] = True |
|
1115 | heads[n] = True | |
1116 | elif ancestors is None: |
|
1116 | elif ancestors is None: | |
1117 | # Otherwise, we're trying to discover the heads. |
|
1117 | # Otherwise, we're trying to discover the heads. | |
1118 | # Assume this is a head because if it isn't, the next step |
|
1118 | # Assume this is a head because if it isn't, the next step | |
1119 | # will eventually remove it. |
|
1119 | # will eventually remove it. | |
1120 | heads[n] = True |
|
1120 | heads[n] = True | |
1121 | # But, obviously its parents aren't. |
|
1121 | # But, obviously its parents aren't. | |
1122 | for p in self.parents(n): |
|
1122 | for p in self.parents(n): | |
1123 | heads.pop(p, None) |
|
1123 | heads.pop(p, None) | |
1124 | heads = [head for head, flag in heads.iteritems() if flag] |
|
1124 | heads = [head for head, flag in heads.iteritems() if flag] | |
1125 | roots = list(roots) |
|
1125 | roots = list(roots) | |
1126 | assert orderedout |
|
1126 | assert orderedout | |
1127 | assert roots |
|
1127 | assert roots | |
1128 | assert heads |
|
1128 | assert heads | |
1129 | return (orderedout, roots, heads) |
|
1129 | return (orderedout, roots, heads) | |
1130 |
|
1130 | |||
1131 | def headrevs(self, revs=None): |
|
1131 | def headrevs(self, revs=None): | |
1132 | if revs is None: |
|
1132 | if revs is None: | |
1133 | try: |
|
1133 | try: | |
1134 | return self.index.headrevs() |
|
1134 | return self.index.headrevs() | |
1135 | except AttributeError: |
|
1135 | except AttributeError: | |
1136 | return self._headrevs() |
|
1136 | return self._headrevs() | |
1137 | if rustdagop is not None: |
|
1137 | if rustdagop is not None: | |
1138 | return rustdagop.headrevs(self.index, revs) |
|
1138 | return rustdagop.headrevs(self.index, revs) | |
1139 | return dagop.headrevs(revs, self._uncheckedparentrevs) |
|
1139 | return dagop.headrevs(revs, self._uncheckedparentrevs) | |
1140 |
|
1140 | |||
1141 | def computephases(self, roots): |
|
1141 | def computephases(self, roots): | |
1142 | return self.index.computephasesmapsets(roots) |
|
1142 | return self.index.computephasesmapsets(roots) | |
1143 |
|
1143 | |||
1144 | def _headrevs(self): |
|
1144 | def _headrevs(self): | |
1145 | count = len(self) |
|
1145 | count = len(self) | |
1146 | if not count: |
|
1146 | if not count: | |
1147 | return [nullrev] |
|
1147 | return [nullrev] | |
1148 | # we won't iter over filtered rev so nobody is a head at start |
|
1148 | # we won't iter over filtered rev so nobody is a head at start | |
1149 | ishead = [0] * (count + 1) |
|
1149 | ishead = [0] * (count + 1) | |
1150 | index = self.index |
|
1150 | index = self.index | |
1151 | for r in self: |
|
1151 | for r in self: | |
1152 | ishead[r] = 1 # I may be an head |
|
1152 | ishead[r] = 1 # I may be an head | |
1153 | e = index[r] |
|
1153 | e = index[r] | |
1154 | ishead[e[5]] = ishead[e[6]] = 0 # my parent are not |
|
1154 | ishead[e[5]] = ishead[e[6]] = 0 # my parent are not | |
1155 | return [r for r, val in enumerate(ishead) if val] |
|
1155 | return [r for r, val in enumerate(ishead) if val] | |
1156 |
|
1156 | |||
1157 | def heads(self, start=None, stop=None): |
|
1157 | def heads(self, start=None, stop=None): | |
1158 | """return the list of all nodes that have no children |
|
1158 | """return the list of all nodes that have no children | |
1159 |
|
1159 | |||
1160 | if start is specified, only heads that are descendants of |
|
1160 | if start is specified, only heads that are descendants of | |
1161 | start will be returned |
|
1161 | start will be returned | |
1162 | if stop is specified, it will consider all the revs from stop |
|
1162 | if stop is specified, it will consider all the revs from stop | |
1163 | as if they had no children |
|
1163 | as if they had no children | |
1164 | """ |
|
1164 | """ | |
1165 | if start is None and stop is None: |
|
1165 | if start is None and stop is None: | |
1166 | if not len(self): |
|
1166 | if not len(self): | |
1167 | return [nullid] |
|
1167 | return [nullid] | |
1168 | return [self.node(r) for r in self.headrevs()] |
|
1168 | return [self.node(r) for r in self.headrevs()] | |
1169 |
|
1169 | |||
1170 | if start is None: |
|
1170 | if start is None: | |
1171 | start = nullrev |
|
1171 | start = nullrev | |
1172 | else: |
|
1172 | else: | |
1173 | start = self.rev(start) |
|
1173 | start = self.rev(start) | |
1174 |
|
1174 | |||
1175 | stoprevs = set(self.rev(n) for n in stop or []) |
|
1175 | stoprevs = set(self.rev(n) for n in stop or []) | |
1176 |
|
1176 | |||
1177 | revs = dagop.headrevssubset(self.revs, self.parentrevs, startrev=start, |
|
1177 | revs = dagop.headrevssubset(self.revs, self.parentrevs, startrev=start, | |
1178 | stoprevs=stoprevs) |
|
1178 | stoprevs=stoprevs) | |
1179 |
|
1179 | |||
1180 | return [self.node(rev) for rev in revs] |
|
1180 | return [self.node(rev) for rev in revs] | |
1181 |
|
1181 | |||
1182 | def children(self, node): |
|
1182 | def children(self, node): | |
1183 | """find the children of a given node""" |
|
1183 | """find the children of a given node""" | |
1184 | c = [] |
|
1184 | c = [] | |
1185 | p = self.rev(node) |
|
1185 | p = self.rev(node) | |
1186 | for r in self.revs(start=p + 1): |
|
1186 | for r in self.revs(start=p + 1): | |
1187 | prevs = [pr for pr in self.parentrevs(r) if pr != nullrev] |
|
1187 | prevs = [pr for pr in self.parentrevs(r) if pr != nullrev] | |
1188 | if prevs: |
|
1188 | if prevs: | |
1189 | for pr in prevs: |
|
1189 | for pr in prevs: | |
1190 | if pr == p: |
|
1190 | if pr == p: | |
1191 | c.append(self.node(r)) |
|
1191 | c.append(self.node(r)) | |
1192 | elif p == nullrev: |
|
1192 | elif p == nullrev: | |
1193 | c.append(self.node(r)) |
|
1193 | c.append(self.node(r)) | |
1194 | return c |
|
1194 | return c | |
1195 |
|
1195 | |||
1196 | def commonancestorsheads(self, a, b): |
|
1196 | def commonancestorsheads(self, a, b): | |
1197 | """calculate all the heads of the common ancestors of nodes a and b""" |
|
1197 | """calculate all the heads of the common ancestors of nodes a and b""" | |
1198 | a, b = self.rev(a), self.rev(b) |
|
1198 | a, b = self.rev(a), self.rev(b) | |
1199 | ancs = self._commonancestorsheads(a, b) |
|
1199 | ancs = self._commonancestorsheads(a, b) | |
1200 | return pycompat.maplist(self.node, ancs) |
|
1200 | return pycompat.maplist(self.node, ancs) | |
1201 |
|
1201 | |||
1202 | def _commonancestorsheads(self, *revs): |
|
1202 | def _commonancestorsheads(self, *revs): | |
1203 | """calculate all the heads of the common ancestors of revs""" |
|
1203 | """calculate all the heads of the common ancestors of revs""" | |
1204 | try: |
|
1204 | try: | |
1205 | ancs = self.index.commonancestorsheads(*revs) |
|
1205 | ancs = self.index.commonancestorsheads(*revs) | |
1206 | except (AttributeError, OverflowError): # C implementation failed |
|
1206 | except (AttributeError, OverflowError): # C implementation failed | |
1207 | ancs = ancestor.commonancestorsheads(self.parentrevs, *revs) |
|
1207 | ancs = ancestor.commonancestorsheads(self.parentrevs, *revs) | |
1208 | return ancs |
|
1208 | return ancs | |
1209 |
|
1209 | |||
1210 | def isancestor(self, a, b): |
|
1210 | def isancestor(self, a, b): | |
1211 | """return True if node a is an ancestor of node b |
|
1211 | """return True if node a is an ancestor of node b | |
1212 |
|
1212 | |||
1213 | A revision is considered an ancestor of itself.""" |
|
1213 | A revision is considered an ancestor of itself.""" | |
1214 | a, b = self.rev(a), self.rev(b) |
|
1214 | a, b = self.rev(a), self.rev(b) | |
1215 | return self.isancestorrev(a, b) |
|
1215 | return self.isancestorrev(a, b) | |
1216 |
|
1216 | |||
1217 | def isancestorrev(self, a, b): |
|
1217 | def isancestorrev(self, a, b): | |
1218 | """return True if revision a is an ancestor of revision b |
|
1218 | """return True if revision a is an ancestor of revision b | |
1219 |
|
1219 | |||
1220 | A revision is considered an ancestor of itself. |
|
1220 | A revision is considered an ancestor of itself. | |
1221 |
|
1221 | |||
1222 | The implementation of this is trivial but the use of |
|
1222 | The implementation of this is trivial but the use of | |
1223 | reachableroots is not.""" |
|
1223 | reachableroots is not.""" | |
1224 | if a == nullrev: |
|
1224 | if a == nullrev: | |
1225 | return True |
|
1225 | return True | |
1226 | elif a == b: |
|
1226 | elif a == b: | |
1227 | return True |
|
1227 | return True | |
1228 | elif a > b: |
|
1228 | elif a > b: | |
1229 | return False |
|
1229 | return False | |
1230 | return bool(self.reachableroots(a, [b], [a], includepath=False)) |
|
1230 | return bool(self.reachableroots(a, [b], [a], includepath=False)) | |
1231 |
|
1231 | |||
1232 | def reachableroots(self, minroot, heads, roots, includepath=False): |
|
1232 | def reachableroots(self, minroot, heads, roots, includepath=False): | |
1233 | """return (heads(::<roots> and <roots>::<heads>)) |
|
1233 | """return (heads(::<roots> and <roots>::<heads>)) | |
1234 |
|
1234 | |||
1235 | If includepath is True, return (<roots>::<heads>).""" |
|
1235 | If includepath is True, return (<roots>::<heads>).""" | |
1236 | try: |
|
1236 | try: | |
1237 | return self.index.reachableroots2(minroot, heads, roots, |
|
1237 | return self.index.reachableroots2(minroot, heads, roots, | |
1238 | includepath) |
|
1238 | includepath) | |
1239 | except AttributeError: |
|
1239 | except AttributeError: | |
1240 | return dagop._reachablerootspure(self.parentrevs, |
|
1240 | return dagop._reachablerootspure(self.parentrevs, | |
1241 | minroot, roots, heads, includepath) |
|
1241 | minroot, roots, heads, includepath) | |
1242 |
|
1242 | |||
1243 | def ancestor(self, a, b): |
|
1243 | def ancestor(self, a, b): | |
1244 | """calculate the "best" common ancestor of nodes a and b""" |
|
1244 | """calculate the "best" common ancestor of nodes a and b""" | |
1245 |
|
1245 | |||
1246 | a, b = self.rev(a), self.rev(b) |
|
1246 | a, b = self.rev(a), self.rev(b) | |
1247 | try: |
|
1247 | try: | |
1248 | ancs = self.index.ancestors(a, b) |
|
1248 | ancs = self.index.ancestors(a, b) | |
1249 | except (AttributeError, OverflowError): |
|
1249 | except (AttributeError, OverflowError): | |
1250 | ancs = ancestor.ancestors(self.parentrevs, a, b) |
|
1250 | ancs = ancestor.ancestors(self.parentrevs, a, b) | |
1251 | if ancs: |
|
1251 | if ancs: | |
1252 | # choose a consistent winner when there's a tie |
|
1252 | # choose a consistent winner when there's a tie | |
1253 | return min(map(self.node, ancs)) |
|
1253 | return min(map(self.node, ancs)) | |
1254 | return nullid |
|
1254 | return nullid | |
1255 |
|
1255 | |||
1256 | def _match(self, id): |
|
1256 | def _match(self, id): | |
1257 | if isinstance(id, int): |
|
1257 | if isinstance(id, int): | |
1258 | # rev |
|
1258 | # rev | |
1259 | return self.node(id) |
|
1259 | return self.node(id) | |
1260 | if len(id) == 20: |
|
1260 | if len(id) == 20: | |
1261 | # possibly a binary node |
|
1261 | # possibly a binary node | |
1262 | # odds of a binary node being all hex in ASCII are 1 in 10**25 |
|
1262 | # odds of a binary node being all hex in ASCII are 1 in 10**25 | |
1263 | try: |
|
1263 | try: | |
1264 | node = id |
|
1264 | node = id | |
1265 | self.rev(node) # quick search the index |
|
1265 | self.rev(node) # quick search the index | |
1266 | return node |
|
1266 | return node | |
1267 | except error.LookupError: |
|
1267 | except error.LookupError: | |
1268 | pass # may be partial hex id |
|
1268 | pass # may be partial hex id | |
1269 | try: |
|
1269 | try: | |
1270 | # str(rev) |
|
1270 | # str(rev) | |
1271 | rev = int(id) |
|
1271 | rev = int(id) | |
1272 | if "%d" % rev != id: |
|
1272 | if "%d" % rev != id: | |
1273 | raise ValueError |
|
1273 | raise ValueError | |
1274 | if rev < 0: |
|
1274 | if rev < 0: | |
1275 | rev = len(self) + rev |
|
1275 | rev = len(self) + rev | |
1276 | if rev < 0 or rev >= len(self): |
|
1276 | if rev < 0 or rev >= len(self): | |
1277 | raise ValueError |
|
1277 | raise ValueError | |
1278 | return self.node(rev) |
|
1278 | return self.node(rev) | |
1279 | except (ValueError, OverflowError): |
|
1279 | except (ValueError, OverflowError): | |
1280 | pass |
|
1280 | pass | |
1281 | if len(id) == 40: |
|
1281 | if len(id) == 40: | |
1282 | try: |
|
1282 | try: | |
1283 | # a full hex nodeid? |
|
1283 | # a full hex nodeid? | |
1284 | node = bin(id) |
|
1284 | node = bin(id) | |
1285 | self.rev(node) |
|
1285 | self.rev(node) | |
1286 | return node |
|
1286 | return node | |
1287 | except (TypeError, error.LookupError): |
|
1287 | except (TypeError, error.LookupError): | |
1288 | pass |
|
1288 | pass | |
1289 |
|
1289 | |||
1290 | def _partialmatch(self, id): |
|
1290 | def _partialmatch(self, id): | |
1291 | # we don't care wdirfilenodeids as they should be always full hash |
|
1291 | # we don't care wdirfilenodeids as they should be always full hash | |
1292 | maybewdir = wdirhex.startswith(id) |
|
1292 | maybewdir = wdirhex.startswith(id) | |
1293 | try: |
|
1293 | try: | |
1294 | partial = self.index.partialmatch(id) |
|
1294 | partial = self.index.partialmatch(id) | |
1295 | if partial and self.hasnode(partial): |
|
1295 | if partial and self.hasnode(partial): | |
1296 | if maybewdir: |
|
1296 | if maybewdir: | |
1297 | # single 'ff...' match in radix tree, ambiguous with wdir |
|
1297 | # single 'ff...' match in radix tree, ambiguous with wdir | |
1298 | raise error.RevlogError |
|
1298 | raise error.RevlogError | |
1299 | return partial |
|
1299 | return partial | |
1300 | if maybewdir: |
|
1300 | if maybewdir: | |
1301 | # no 'ff...' match in radix tree, wdir identified |
|
1301 | # no 'ff...' match in radix tree, wdir identified | |
1302 | raise error.WdirUnsupported |
|
1302 | raise error.WdirUnsupported | |
1303 | return None |
|
1303 | return None | |
1304 | except error.RevlogError: |
|
1304 | except error.RevlogError: | |
1305 | # parsers.c radix tree lookup gave multiple matches |
|
1305 | # parsers.c radix tree lookup gave multiple matches | |
1306 | # fast path: for unfiltered changelog, radix tree is accurate |
|
1306 | # fast path: for unfiltered changelog, radix tree is accurate | |
1307 | if not getattr(self, 'filteredrevs', None): |
|
1307 | if not getattr(self, 'filteredrevs', None): | |
1308 | raise error.AmbiguousPrefixLookupError( |
|
1308 | raise error.AmbiguousPrefixLookupError( | |
1309 | id, self.indexfile, _('ambiguous identifier')) |
|
1309 | id, self.indexfile, _('ambiguous identifier')) | |
1310 | # fall through to slow path that filters hidden revisions |
|
1310 | # fall through to slow path that filters hidden revisions | |
1311 | except (AttributeError, ValueError): |
|
1311 | except (AttributeError, ValueError): | |
1312 | # we are pure python, or key was too short to search radix tree |
|
1312 | # we are pure python, or key was too short to search radix tree | |
1313 | pass |
|
1313 | pass | |
1314 |
|
1314 | |||
1315 | if id in self._pcache: |
|
1315 | if id in self._pcache: | |
1316 | return self._pcache[id] |
|
1316 | return self._pcache[id] | |
1317 |
|
1317 | |||
1318 | if len(id) <= 40: |
|
1318 | if len(id) <= 40: | |
1319 | try: |
|
1319 | try: | |
1320 | # hex(node)[:...] |
|
1320 | # hex(node)[:...] | |
1321 | l = len(id) // 2 # grab an even number of digits |
|
1321 | l = len(id) // 2 # grab an even number of digits | |
1322 | prefix = bin(id[:l * 2]) |
|
1322 | prefix = bin(id[:l * 2]) | |
1323 | nl = [e[7] for e in self.index if e[7].startswith(prefix)] |
|
1323 | nl = [e[7] for e in self.index if e[7].startswith(prefix)] | |
1324 | nl = [n for n in nl if hex(n).startswith(id) and |
|
1324 | nl = [n for n in nl if hex(n).startswith(id) and | |
1325 | self.hasnode(n)] |
|
1325 | self.hasnode(n)] | |
1326 | if nullhex.startswith(id): |
|
1326 | if nullhex.startswith(id): | |
1327 | nl.append(nullid) |
|
1327 | nl.append(nullid) | |
1328 | if len(nl) > 0: |
|
1328 | if len(nl) > 0: | |
1329 | if len(nl) == 1 and not maybewdir: |
|
1329 | if len(nl) == 1 and not maybewdir: | |
1330 | self._pcache[id] = nl[0] |
|
1330 | self._pcache[id] = nl[0] | |
1331 | return nl[0] |
|
1331 | return nl[0] | |
1332 | raise error.AmbiguousPrefixLookupError( |
|
1332 | raise error.AmbiguousPrefixLookupError( | |
1333 | id, self.indexfile, _('ambiguous identifier')) |
|
1333 | id, self.indexfile, _('ambiguous identifier')) | |
1334 | if maybewdir: |
|
1334 | if maybewdir: | |
1335 | raise error.WdirUnsupported |
|
1335 | raise error.WdirUnsupported | |
1336 | return None |
|
1336 | return None | |
1337 | except TypeError: |
|
1337 | except TypeError: | |
1338 | pass |
|
1338 | pass | |
1339 |
|
1339 | |||
1340 | def lookup(self, id): |
|
1340 | def lookup(self, id): | |
1341 | """locate a node based on: |
|
1341 | """locate a node based on: | |
1342 | - revision number or str(revision number) |
|
1342 | - revision number or str(revision number) | |
1343 | - nodeid or subset of hex nodeid |
|
1343 | - nodeid or subset of hex nodeid | |
1344 | """ |
|
1344 | """ | |
1345 | n = self._match(id) |
|
1345 | n = self._match(id) | |
1346 | if n is not None: |
|
1346 | if n is not None: | |
1347 | return n |
|
1347 | return n | |
1348 | n = self._partialmatch(id) |
|
1348 | n = self._partialmatch(id) | |
1349 | if n: |
|
1349 | if n: | |
1350 | return n |
|
1350 | return n | |
1351 |
|
1351 | |||
1352 | raise error.LookupError(id, self.indexfile, _('no match found')) |
|
1352 | raise error.LookupError(id, self.indexfile, _('no match found')) | |
1353 |
|
1353 | |||
1354 | def shortest(self, node, minlength=1): |
|
1354 | def shortest(self, node, minlength=1): | |
1355 | """Find the shortest unambiguous prefix that matches node.""" |
|
1355 | """Find the shortest unambiguous prefix that matches node.""" | |
1356 | def isvalid(prefix): |
|
1356 | def isvalid(prefix): | |
1357 | try: |
|
1357 | try: | |
1358 | node = self._partialmatch(prefix) |
|
1358 | matchednode = self._partialmatch(prefix) | |
1359 | except error.AmbiguousPrefixLookupError: |
|
1359 | except error.AmbiguousPrefixLookupError: | |
1360 | return False |
|
1360 | return False | |
1361 | except error.WdirUnsupported: |
|
1361 | except error.WdirUnsupported: | |
1362 | # single 'ff...' match |
|
1362 | # single 'ff...' match | |
1363 | return True |
|
1363 | return True | |
1364 | if node is None: |
|
1364 | if matchednode is None: | |
1365 | raise error.LookupError(node, self.indexfile, _('no node')) |
|
1365 | raise error.LookupError(node, self.indexfile, _('no node')) | |
1366 | return True |
|
1366 | return True | |
1367 |
|
1367 | |||
1368 | def maybewdir(prefix): |
|
1368 | def maybewdir(prefix): | |
1369 | return all(c == 'f' for c in pycompat.iterbytestr(prefix)) |
|
1369 | return all(c == 'f' for c in pycompat.iterbytestr(prefix)) | |
1370 |
|
1370 | |||
1371 | hexnode = hex(node) |
|
1371 | hexnode = hex(node) | |
1372 |
|
1372 | |||
1373 | def disambiguate(hexnode, minlength): |
|
1373 | def disambiguate(hexnode, minlength): | |
1374 | """Disambiguate against wdirid.""" |
|
1374 | """Disambiguate against wdirid.""" | |
1375 | for length in range(minlength, 41): |
|
1375 | for length in range(minlength, 41): | |
1376 | prefix = hexnode[:length] |
|
1376 | prefix = hexnode[:length] | |
1377 | if not maybewdir(prefix): |
|
1377 | if not maybewdir(prefix): | |
1378 | return prefix |
|
1378 | return prefix | |
1379 |
|
1379 | |||
1380 | if not getattr(self, 'filteredrevs', None): |
|
1380 | if not getattr(self, 'filteredrevs', None): | |
1381 | try: |
|
1381 | try: | |
1382 | length = max(self.index.shortest(node), minlength) |
|
1382 | length = max(self.index.shortest(node), minlength) | |
1383 | return disambiguate(hexnode, length) |
|
1383 | return disambiguate(hexnode, length) | |
1384 | except error.RevlogError: |
|
1384 | except error.RevlogError: | |
1385 | if node != wdirid: |
|
1385 | if node != wdirid: | |
1386 | raise error.LookupError(node, self.indexfile, _('no node')) |
|
1386 | raise error.LookupError(node, self.indexfile, _('no node')) | |
1387 | except AttributeError: |
|
1387 | except AttributeError: | |
1388 | # Fall through to pure code |
|
1388 | # Fall through to pure code | |
1389 | pass |
|
1389 | pass | |
1390 |
|
1390 | |||
1391 | if node == wdirid: |
|
1391 | if node == wdirid: | |
1392 | for length in range(minlength, 41): |
|
1392 | for length in range(minlength, 41): | |
1393 | prefix = hexnode[:length] |
|
1393 | prefix = hexnode[:length] | |
1394 | if isvalid(prefix): |
|
1394 | if isvalid(prefix): | |
1395 | return prefix |
|
1395 | return prefix | |
1396 |
|
1396 | |||
1397 | for length in range(minlength, 41): |
|
1397 | for length in range(minlength, 41): | |
1398 | prefix = hexnode[:length] |
|
1398 | prefix = hexnode[:length] | |
1399 | if isvalid(prefix): |
|
1399 | if isvalid(prefix): | |
1400 | return disambiguate(hexnode, length) |
|
1400 | return disambiguate(hexnode, length) | |
1401 |
|
1401 | |||
1402 | def cmp(self, node, text): |
|
1402 | def cmp(self, node, text): | |
1403 | """compare text with a given file revision |
|
1403 | """compare text with a given file revision | |
1404 |
|
1404 | |||
1405 | returns True if text is different than what is stored. |
|
1405 | returns True if text is different than what is stored. | |
1406 | """ |
|
1406 | """ | |
1407 | p1, p2 = self.parents(node) |
|
1407 | p1, p2 = self.parents(node) | |
1408 | return storageutil.hashrevisionsha1(text, p1, p2) != node |
|
1408 | return storageutil.hashrevisionsha1(text, p1, p2) != node | |
1409 |
|
1409 | |||
1410 | def _cachesegment(self, offset, data): |
|
1410 | def _cachesegment(self, offset, data): | |
1411 | """Add a segment to the revlog cache. |
|
1411 | """Add a segment to the revlog cache. | |
1412 |
|
1412 | |||
1413 | Accepts an absolute offset and the data that is at that location. |
|
1413 | Accepts an absolute offset and the data that is at that location. | |
1414 | """ |
|
1414 | """ | |
1415 | o, d = self._chunkcache |
|
1415 | o, d = self._chunkcache | |
1416 | # try to add to existing cache |
|
1416 | # try to add to existing cache | |
1417 | if o + len(d) == offset and len(d) + len(data) < _chunksize: |
|
1417 | if o + len(d) == offset and len(d) + len(data) < _chunksize: | |
1418 | self._chunkcache = o, d + data |
|
1418 | self._chunkcache = o, d + data | |
1419 | else: |
|
1419 | else: | |
1420 | self._chunkcache = offset, data |
|
1420 | self._chunkcache = offset, data | |
1421 |
|
1421 | |||
1422 | def _readsegment(self, offset, length, df=None): |
|
1422 | def _readsegment(self, offset, length, df=None): | |
1423 | """Load a segment of raw data from the revlog. |
|
1423 | """Load a segment of raw data from the revlog. | |
1424 |
|
1424 | |||
1425 | Accepts an absolute offset, length to read, and an optional existing |
|
1425 | Accepts an absolute offset, length to read, and an optional existing | |
1426 | file handle to read from. |
|
1426 | file handle to read from. | |
1427 |
|
1427 | |||
1428 | If an existing file handle is passed, it will be seeked and the |
|
1428 | If an existing file handle is passed, it will be seeked and the | |
1429 | original seek position will NOT be restored. |
|
1429 | original seek position will NOT be restored. | |
1430 |
|
1430 | |||
1431 | Returns a str or buffer of raw byte data. |
|
1431 | Returns a str or buffer of raw byte data. | |
1432 |
|
1432 | |||
1433 | Raises if the requested number of bytes could not be read. |
|
1433 | Raises if the requested number of bytes could not be read. | |
1434 | """ |
|
1434 | """ | |
1435 | # Cache data both forward and backward around the requested |
|
1435 | # Cache data both forward and backward around the requested | |
1436 | # data, in a fixed size window. This helps speed up operations |
|
1436 | # data, in a fixed size window. This helps speed up operations | |
1437 | # involving reading the revlog backwards. |
|
1437 | # involving reading the revlog backwards. | |
1438 | cachesize = self._chunkcachesize |
|
1438 | cachesize = self._chunkcachesize | |
1439 | realoffset = offset & ~(cachesize - 1) |
|
1439 | realoffset = offset & ~(cachesize - 1) | |
1440 | reallength = (((offset + length + cachesize) & ~(cachesize - 1)) |
|
1440 | reallength = (((offset + length + cachesize) & ~(cachesize - 1)) | |
1441 | - realoffset) |
|
1441 | - realoffset) | |
1442 | with self._datareadfp(df) as df: |
|
1442 | with self._datareadfp(df) as df: | |
1443 | df.seek(realoffset) |
|
1443 | df.seek(realoffset) | |
1444 | d = df.read(reallength) |
|
1444 | d = df.read(reallength) | |
1445 |
|
1445 | |||
1446 | self._cachesegment(realoffset, d) |
|
1446 | self._cachesegment(realoffset, d) | |
1447 | if offset != realoffset or reallength != length: |
|
1447 | if offset != realoffset or reallength != length: | |
1448 | startoffset = offset - realoffset |
|
1448 | startoffset = offset - realoffset | |
1449 | if len(d) - startoffset < length: |
|
1449 | if len(d) - startoffset < length: | |
1450 | raise error.RevlogError( |
|
1450 | raise error.RevlogError( | |
1451 | _('partial read of revlog %s; expected %d bytes from ' |
|
1451 | _('partial read of revlog %s; expected %d bytes from ' | |
1452 | 'offset %d, got %d') % |
|
1452 | 'offset %d, got %d') % | |
1453 | (self.indexfile if self._inline else self.datafile, |
|
1453 | (self.indexfile if self._inline else self.datafile, | |
1454 | length, realoffset, len(d) - startoffset)) |
|
1454 | length, realoffset, len(d) - startoffset)) | |
1455 |
|
1455 | |||
1456 | return util.buffer(d, startoffset, length) |
|
1456 | return util.buffer(d, startoffset, length) | |
1457 |
|
1457 | |||
1458 | if len(d) < length: |
|
1458 | if len(d) < length: | |
1459 | raise error.RevlogError( |
|
1459 | raise error.RevlogError( | |
1460 | _('partial read of revlog %s; expected %d bytes from offset ' |
|
1460 | _('partial read of revlog %s; expected %d bytes from offset ' | |
1461 | '%d, got %d') % |
|
1461 | '%d, got %d') % | |
1462 | (self.indexfile if self._inline else self.datafile, |
|
1462 | (self.indexfile if self._inline else self.datafile, | |
1463 | length, offset, len(d))) |
|
1463 | length, offset, len(d))) | |
1464 |
|
1464 | |||
1465 | return d |
|
1465 | return d | |
1466 |
|
1466 | |||
1467 | def _getsegment(self, offset, length, df=None): |
|
1467 | def _getsegment(self, offset, length, df=None): | |
1468 | """Obtain a segment of raw data from the revlog. |
|
1468 | """Obtain a segment of raw data from the revlog. | |
1469 |
|
1469 | |||
1470 | Accepts an absolute offset, length of bytes to obtain, and an |
|
1470 | Accepts an absolute offset, length of bytes to obtain, and an | |
1471 | optional file handle to the already-opened revlog. If the file |
|
1471 | optional file handle to the already-opened revlog. If the file | |
1472 | handle is used, it's original seek position will not be preserved. |
|
1472 | handle is used, it's original seek position will not be preserved. | |
1473 |
|
1473 | |||
1474 | Requests for data may be returned from a cache. |
|
1474 | Requests for data may be returned from a cache. | |
1475 |
|
1475 | |||
1476 | Returns a str or a buffer instance of raw byte data. |
|
1476 | Returns a str or a buffer instance of raw byte data. | |
1477 | """ |
|
1477 | """ | |
1478 | o, d = self._chunkcache |
|
1478 | o, d = self._chunkcache | |
1479 | l = len(d) |
|
1479 | l = len(d) | |
1480 |
|
1480 | |||
1481 | # is it in the cache? |
|
1481 | # is it in the cache? | |
1482 | cachestart = offset - o |
|
1482 | cachestart = offset - o | |
1483 | cacheend = cachestart + length |
|
1483 | cacheend = cachestart + length | |
1484 | if cachestart >= 0 and cacheend <= l: |
|
1484 | if cachestart >= 0 and cacheend <= l: | |
1485 | if cachestart == 0 and cacheend == l: |
|
1485 | if cachestart == 0 and cacheend == l: | |
1486 | return d # avoid a copy |
|
1486 | return d # avoid a copy | |
1487 | return util.buffer(d, cachestart, cacheend - cachestart) |
|
1487 | return util.buffer(d, cachestart, cacheend - cachestart) | |
1488 |
|
1488 | |||
1489 | return self._readsegment(offset, length, df=df) |
|
1489 | return self._readsegment(offset, length, df=df) | |
1490 |
|
1490 | |||
1491 | def _getsegmentforrevs(self, startrev, endrev, df=None): |
|
1491 | def _getsegmentforrevs(self, startrev, endrev, df=None): | |
1492 | """Obtain a segment of raw data corresponding to a range of revisions. |
|
1492 | """Obtain a segment of raw data corresponding to a range of revisions. | |
1493 |
|
1493 | |||
1494 | Accepts the start and end revisions and an optional already-open |
|
1494 | Accepts the start and end revisions and an optional already-open | |
1495 | file handle to be used for reading. If the file handle is read, its |
|
1495 | file handle to be used for reading. If the file handle is read, its | |
1496 | seek position will not be preserved. |
|
1496 | seek position will not be preserved. | |
1497 |
|
1497 | |||
1498 | Requests for data may be satisfied by a cache. |
|
1498 | Requests for data may be satisfied by a cache. | |
1499 |
|
1499 | |||
1500 | Returns a 2-tuple of (offset, data) for the requested range of |
|
1500 | Returns a 2-tuple of (offset, data) for the requested range of | |
1501 | revisions. Offset is the integer offset from the beginning of the |
|
1501 | revisions. Offset is the integer offset from the beginning of the | |
1502 | revlog and data is a str or buffer of the raw byte data. |
|
1502 | revlog and data is a str or buffer of the raw byte data. | |
1503 |
|
1503 | |||
1504 | Callers will need to call ``self.start(rev)`` and ``self.length(rev)`` |
|
1504 | Callers will need to call ``self.start(rev)`` and ``self.length(rev)`` | |
1505 | to determine where each revision's data begins and ends. |
|
1505 | to determine where each revision's data begins and ends. | |
1506 | """ |
|
1506 | """ | |
1507 | # Inlined self.start(startrev) & self.end(endrev) for perf reasons |
|
1507 | # Inlined self.start(startrev) & self.end(endrev) for perf reasons | |
1508 | # (functions are expensive). |
|
1508 | # (functions are expensive). | |
1509 | index = self.index |
|
1509 | index = self.index | |
1510 | istart = index[startrev] |
|
1510 | istart = index[startrev] | |
1511 | start = int(istart[0] >> 16) |
|
1511 | start = int(istart[0] >> 16) | |
1512 | if startrev == endrev: |
|
1512 | if startrev == endrev: | |
1513 | end = start + istart[1] |
|
1513 | end = start + istart[1] | |
1514 | else: |
|
1514 | else: | |
1515 | iend = index[endrev] |
|
1515 | iend = index[endrev] | |
1516 | end = int(iend[0] >> 16) + iend[1] |
|
1516 | end = int(iend[0] >> 16) + iend[1] | |
1517 |
|
1517 | |||
1518 | if self._inline: |
|
1518 | if self._inline: | |
1519 | start += (startrev + 1) * self._io.size |
|
1519 | start += (startrev + 1) * self._io.size | |
1520 | end += (endrev + 1) * self._io.size |
|
1520 | end += (endrev + 1) * self._io.size | |
1521 | length = end - start |
|
1521 | length = end - start | |
1522 |
|
1522 | |||
1523 | return start, self._getsegment(start, length, df=df) |
|
1523 | return start, self._getsegment(start, length, df=df) | |
1524 |
|
1524 | |||
1525 | def _chunk(self, rev, df=None): |
|
1525 | def _chunk(self, rev, df=None): | |
1526 | """Obtain a single decompressed chunk for a revision. |
|
1526 | """Obtain a single decompressed chunk for a revision. | |
1527 |
|
1527 | |||
1528 | Accepts an integer revision and an optional already-open file handle |
|
1528 | Accepts an integer revision and an optional already-open file handle | |
1529 | to be used for reading. If used, the seek position of the file will not |
|
1529 | to be used for reading. If used, the seek position of the file will not | |
1530 | be preserved. |
|
1530 | be preserved. | |
1531 |
|
1531 | |||
1532 | Returns a str holding uncompressed data for the requested revision. |
|
1532 | Returns a str holding uncompressed data for the requested revision. | |
1533 | """ |
|
1533 | """ | |
1534 | return self.decompress(self._getsegmentforrevs(rev, rev, df=df)[1]) |
|
1534 | return self.decompress(self._getsegmentforrevs(rev, rev, df=df)[1]) | |
1535 |
|
1535 | |||
1536 | def _chunks(self, revs, df=None, targetsize=None): |
|
1536 | def _chunks(self, revs, df=None, targetsize=None): | |
1537 | """Obtain decompressed chunks for the specified revisions. |
|
1537 | """Obtain decompressed chunks for the specified revisions. | |
1538 |
|
1538 | |||
1539 | Accepts an iterable of numeric revisions that are assumed to be in |
|
1539 | Accepts an iterable of numeric revisions that are assumed to be in | |
1540 | ascending order. Also accepts an optional already-open file handle |
|
1540 | ascending order. Also accepts an optional already-open file handle | |
1541 | to be used for reading. If used, the seek position of the file will |
|
1541 | to be used for reading. If used, the seek position of the file will | |
1542 | not be preserved. |
|
1542 | not be preserved. | |
1543 |
|
1543 | |||
1544 | This function is similar to calling ``self._chunk()`` multiple times, |
|
1544 | This function is similar to calling ``self._chunk()`` multiple times, | |
1545 | but is faster. |
|
1545 | but is faster. | |
1546 |
|
1546 | |||
1547 | Returns a list with decompressed data for each requested revision. |
|
1547 | Returns a list with decompressed data for each requested revision. | |
1548 | """ |
|
1548 | """ | |
1549 | if not revs: |
|
1549 | if not revs: | |
1550 | return [] |
|
1550 | return [] | |
1551 | start = self.start |
|
1551 | start = self.start | |
1552 | length = self.length |
|
1552 | length = self.length | |
1553 | inline = self._inline |
|
1553 | inline = self._inline | |
1554 | iosize = self._io.size |
|
1554 | iosize = self._io.size | |
1555 | buffer = util.buffer |
|
1555 | buffer = util.buffer | |
1556 |
|
1556 | |||
1557 | l = [] |
|
1557 | l = [] | |
1558 | ladd = l.append |
|
1558 | ladd = l.append | |
1559 |
|
1559 | |||
1560 | if not self._withsparseread: |
|
1560 | if not self._withsparseread: | |
1561 | slicedchunks = (revs,) |
|
1561 | slicedchunks = (revs,) | |
1562 | else: |
|
1562 | else: | |
1563 | slicedchunks = deltautil.slicechunk(self, revs, |
|
1563 | slicedchunks = deltautil.slicechunk(self, revs, | |
1564 | targetsize=targetsize) |
|
1564 | targetsize=targetsize) | |
1565 |
|
1565 | |||
1566 | for revschunk in slicedchunks: |
|
1566 | for revschunk in slicedchunks: | |
1567 | firstrev = revschunk[0] |
|
1567 | firstrev = revschunk[0] | |
1568 | # Skip trailing revisions with empty diff |
|
1568 | # Skip trailing revisions with empty diff | |
1569 | for lastrev in revschunk[::-1]: |
|
1569 | for lastrev in revschunk[::-1]: | |
1570 | if length(lastrev) != 0: |
|
1570 | if length(lastrev) != 0: | |
1571 | break |
|
1571 | break | |
1572 |
|
1572 | |||
1573 | try: |
|
1573 | try: | |
1574 | offset, data = self._getsegmentforrevs(firstrev, lastrev, df=df) |
|
1574 | offset, data = self._getsegmentforrevs(firstrev, lastrev, df=df) | |
1575 | except OverflowError: |
|
1575 | except OverflowError: | |
1576 | # issue4215 - we can't cache a run of chunks greater than |
|
1576 | # issue4215 - we can't cache a run of chunks greater than | |
1577 | # 2G on Windows |
|
1577 | # 2G on Windows | |
1578 | return [self._chunk(rev, df=df) for rev in revschunk] |
|
1578 | return [self._chunk(rev, df=df) for rev in revschunk] | |
1579 |
|
1579 | |||
1580 | decomp = self.decompress |
|
1580 | decomp = self.decompress | |
1581 | for rev in revschunk: |
|
1581 | for rev in revschunk: | |
1582 | chunkstart = start(rev) |
|
1582 | chunkstart = start(rev) | |
1583 | if inline: |
|
1583 | if inline: | |
1584 | chunkstart += (rev + 1) * iosize |
|
1584 | chunkstart += (rev + 1) * iosize | |
1585 | chunklength = length(rev) |
|
1585 | chunklength = length(rev) | |
1586 | ladd(decomp(buffer(data, chunkstart - offset, chunklength))) |
|
1586 | ladd(decomp(buffer(data, chunkstart - offset, chunklength))) | |
1587 |
|
1587 | |||
1588 | return l |
|
1588 | return l | |
1589 |
|
1589 | |||
1590 | def _chunkclear(self): |
|
1590 | def _chunkclear(self): | |
1591 | """Clear the raw chunk cache.""" |
|
1591 | """Clear the raw chunk cache.""" | |
1592 | self._chunkcache = (0, '') |
|
1592 | self._chunkcache = (0, '') | |
1593 |
|
1593 | |||
1594 | def deltaparent(self, rev): |
|
1594 | def deltaparent(self, rev): | |
1595 | """return deltaparent of the given revision""" |
|
1595 | """return deltaparent of the given revision""" | |
1596 | base = self.index[rev][3] |
|
1596 | base = self.index[rev][3] | |
1597 | if base == rev: |
|
1597 | if base == rev: | |
1598 | return nullrev |
|
1598 | return nullrev | |
1599 | elif self._generaldelta: |
|
1599 | elif self._generaldelta: | |
1600 | return base |
|
1600 | return base | |
1601 | else: |
|
1601 | else: | |
1602 | return rev - 1 |
|
1602 | return rev - 1 | |
1603 |
|
1603 | |||
1604 | def issnapshot(self, rev): |
|
1604 | def issnapshot(self, rev): | |
1605 | """tells whether rev is a snapshot |
|
1605 | """tells whether rev is a snapshot | |
1606 | """ |
|
1606 | """ | |
1607 | if not self._sparserevlog: |
|
1607 | if not self._sparserevlog: | |
1608 | return self.deltaparent(rev) == nullrev |
|
1608 | return self.deltaparent(rev) == nullrev | |
1609 | elif util.safehasattr(self.index, 'issnapshot'): |
|
1609 | elif util.safehasattr(self.index, 'issnapshot'): | |
1610 | # directly assign the method to cache the testing and access |
|
1610 | # directly assign the method to cache the testing and access | |
1611 | self.issnapshot = self.index.issnapshot |
|
1611 | self.issnapshot = self.index.issnapshot | |
1612 | return self.issnapshot(rev) |
|
1612 | return self.issnapshot(rev) | |
1613 | if rev == nullrev: |
|
1613 | if rev == nullrev: | |
1614 | return True |
|
1614 | return True | |
1615 | entry = self.index[rev] |
|
1615 | entry = self.index[rev] | |
1616 | base = entry[3] |
|
1616 | base = entry[3] | |
1617 | if base == rev: |
|
1617 | if base == rev: | |
1618 | return True |
|
1618 | return True | |
1619 | if base == nullrev: |
|
1619 | if base == nullrev: | |
1620 | return True |
|
1620 | return True | |
1621 | p1 = entry[5] |
|
1621 | p1 = entry[5] | |
1622 | p2 = entry[6] |
|
1622 | p2 = entry[6] | |
1623 | if base == p1 or base == p2: |
|
1623 | if base == p1 or base == p2: | |
1624 | return False |
|
1624 | return False | |
1625 | return self.issnapshot(base) |
|
1625 | return self.issnapshot(base) | |
1626 |
|
1626 | |||
1627 | def snapshotdepth(self, rev): |
|
1627 | def snapshotdepth(self, rev): | |
1628 | """number of snapshot in the chain before this one""" |
|
1628 | """number of snapshot in the chain before this one""" | |
1629 | if not self.issnapshot(rev): |
|
1629 | if not self.issnapshot(rev): | |
1630 | raise error.ProgrammingError('revision %d not a snapshot') |
|
1630 | raise error.ProgrammingError('revision %d not a snapshot') | |
1631 | return len(self._deltachain(rev)[0]) - 1 |
|
1631 | return len(self._deltachain(rev)[0]) - 1 | |
1632 |
|
1632 | |||
1633 | def revdiff(self, rev1, rev2): |
|
1633 | def revdiff(self, rev1, rev2): | |
1634 | """return or calculate a delta between two revisions |
|
1634 | """return or calculate a delta between two revisions | |
1635 |
|
1635 | |||
1636 | The delta calculated is in binary form and is intended to be written to |
|
1636 | The delta calculated is in binary form and is intended to be written to | |
1637 | revlog data directly. So this function needs raw revision data. |
|
1637 | revlog data directly. So this function needs raw revision data. | |
1638 | """ |
|
1638 | """ | |
1639 | if rev1 != nullrev and self.deltaparent(rev2) == rev1: |
|
1639 | if rev1 != nullrev and self.deltaparent(rev2) == rev1: | |
1640 | return bytes(self._chunk(rev2)) |
|
1640 | return bytes(self._chunk(rev2)) | |
1641 |
|
1641 | |||
1642 | return mdiff.textdiff(self.revision(rev1, raw=True), |
|
1642 | return mdiff.textdiff(self.revision(rev1, raw=True), | |
1643 | self.revision(rev2, raw=True)) |
|
1643 | self.revision(rev2, raw=True)) | |
1644 |
|
1644 | |||
1645 | def revision(self, nodeorrev, _df=None, raw=False): |
|
1645 | def revision(self, nodeorrev, _df=None, raw=False): | |
1646 | """return an uncompressed revision of a given node or revision |
|
1646 | """return an uncompressed revision of a given node or revision | |
1647 | number. |
|
1647 | number. | |
1648 |
|
1648 | |||
1649 | _df - an existing file handle to read from. (internal-only) |
|
1649 | _df - an existing file handle to read from. (internal-only) | |
1650 | raw - an optional argument specifying if the revision data is to be |
|
1650 | raw - an optional argument specifying if the revision data is to be | |
1651 | treated as raw data when applying flag transforms. 'raw' should be set |
|
1651 | treated as raw data when applying flag transforms. 'raw' should be set | |
1652 | to True when generating changegroups or in debug commands. |
|
1652 | to True when generating changegroups or in debug commands. | |
1653 | """ |
|
1653 | """ | |
1654 | if isinstance(nodeorrev, int): |
|
1654 | if isinstance(nodeorrev, int): | |
1655 | rev = nodeorrev |
|
1655 | rev = nodeorrev | |
1656 | node = self.node(rev) |
|
1656 | node = self.node(rev) | |
1657 | else: |
|
1657 | else: | |
1658 | node = nodeorrev |
|
1658 | node = nodeorrev | |
1659 | rev = None |
|
1659 | rev = None | |
1660 |
|
1660 | |||
1661 | cachedrev = None |
|
1661 | cachedrev = None | |
1662 | flags = None |
|
1662 | flags = None | |
1663 | rawtext = None |
|
1663 | rawtext = None | |
1664 | if node == nullid: |
|
1664 | if node == nullid: | |
1665 | return "" |
|
1665 | return "" | |
1666 | if self._revisioncache: |
|
1666 | if self._revisioncache: | |
1667 | if self._revisioncache[0] == node: |
|
1667 | if self._revisioncache[0] == node: | |
1668 | # _cache only stores rawtext |
|
1668 | # _cache only stores rawtext | |
1669 | if raw: |
|
1669 | if raw: | |
1670 | return self._revisioncache[2] |
|
1670 | return self._revisioncache[2] | |
1671 | # duplicated, but good for perf |
|
1671 | # duplicated, but good for perf | |
1672 | if rev is None: |
|
1672 | if rev is None: | |
1673 | rev = self.rev(node) |
|
1673 | rev = self.rev(node) | |
1674 | if flags is None: |
|
1674 | if flags is None: | |
1675 | flags = self.flags(rev) |
|
1675 | flags = self.flags(rev) | |
1676 | # no extra flags set, no flag processor runs, text = rawtext |
|
1676 | # no extra flags set, no flag processor runs, text = rawtext | |
1677 | if flags == REVIDX_DEFAULT_FLAGS: |
|
1677 | if flags == REVIDX_DEFAULT_FLAGS: | |
1678 | return self._revisioncache[2] |
|
1678 | return self._revisioncache[2] | |
1679 | # rawtext is reusable. need to run flag processor |
|
1679 | # rawtext is reusable. need to run flag processor | |
1680 | rawtext = self._revisioncache[2] |
|
1680 | rawtext = self._revisioncache[2] | |
1681 |
|
1681 | |||
1682 | cachedrev = self._revisioncache[1] |
|
1682 | cachedrev = self._revisioncache[1] | |
1683 |
|
1683 | |||
1684 | # look up what we need to read |
|
1684 | # look up what we need to read | |
1685 | if rawtext is None: |
|
1685 | if rawtext is None: | |
1686 | if rev is None: |
|
1686 | if rev is None: | |
1687 | rev = self.rev(node) |
|
1687 | rev = self.rev(node) | |
1688 |
|
1688 | |||
1689 | chain, stopped = self._deltachain(rev, stoprev=cachedrev) |
|
1689 | chain, stopped = self._deltachain(rev, stoprev=cachedrev) | |
1690 | if stopped: |
|
1690 | if stopped: | |
1691 | rawtext = self._revisioncache[2] |
|
1691 | rawtext = self._revisioncache[2] | |
1692 |
|
1692 | |||
1693 | # drop cache to save memory |
|
1693 | # drop cache to save memory | |
1694 | self._revisioncache = None |
|
1694 | self._revisioncache = None | |
1695 |
|
1695 | |||
1696 | targetsize = None |
|
1696 | targetsize = None | |
1697 | rawsize = self.index[rev][2] |
|
1697 | rawsize = self.index[rev][2] | |
1698 | if 0 <= rawsize: |
|
1698 | if 0 <= rawsize: | |
1699 | targetsize = 4 * rawsize |
|
1699 | targetsize = 4 * rawsize | |
1700 |
|
1700 | |||
1701 | bins = self._chunks(chain, df=_df, targetsize=targetsize) |
|
1701 | bins = self._chunks(chain, df=_df, targetsize=targetsize) | |
1702 | if rawtext is None: |
|
1702 | if rawtext is None: | |
1703 | rawtext = bytes(bins[0]) |
|
1703 | rawtext = bytes(bins[0]) | |
1704 | bins = bins[1:] |
|
1704 | bins = bins[1:] | |
1705 |
|
1705 | |||
1706 | rawtext = mdiff.patches(rawtext, bins) |
|
1706 | rawtext = mdiff.patches(rawtext, bins) | |
1707 | self._revisioncache = (node, rev, rawtext) |
|
1707 | self._revisioncache = (node, rev, rawtext) | |
1708 |
|
1708 | |||
1709 | if flags is None: |
|
1709 | if flags is None: | |
1710 | if rev is None: |
|
1710 | if rev is None: | |
1711 | rev = self.rev(node) |
|
1711 | rev = self.rev(node) | |
1712 | flags = self.flags(rev) |
|
1712 | flags = self.flags(rev) | |
1713 |
|
1713 | |||
1714 | text, validatehash = self._processflags(rawtext, flags, 'read', raw=raw) |
|
1714 | text, validatehash = self._processflags(rawtext, flags, 'read', raw=raw) | |
1715 | if validatehash: |
|
1715 | if validatehash: | |
1716 | self.checkhash(text, node, rev=rev) |
|
1716 | self.checkhash(text, node, rev=rev) | |
1717 |
|
1717 | |||
1718 | return text |
|
1718 | return text | |
1719 |
|
1719 | |||
1720 | def hash(self, text, p1, p2): |
|
1720 | def hash(self, text, p1, p2): | |
1721 | """Compute a node hash. |
|
1721 | """Compute a node hash. | |
1722 |
|
1722 | |||
1723 | Available as a function so that subclasses can replace the hash |
|
1723 | Available as a function so that subclasses can replace the hash | |
1724 | as needed. |
|
1724 | as needed. | |
1725 | """ |
|
1725 | """ | |
1726 | return storageutil.hashrevisionsha1(text, p1, p2) |
|
1726 | return storageutil.hashrevisionsha1(text, p1, p2) | |
1727 |
|
1727 | |||
1728 | def _processflags(self, text, flags, operation, raw=False): |
|
1728 | def _processflags(self, text, flags, operation, raw=False): | |
1729 | """Inspect revision data flags and applies transforms defined by |
|
1729 | """Inspect revision data flags and applies transforms defined by | |
1730 | registered flag processors. |
|
1730 | registered flag processors. | |
1731 |
|
1731 | |||
1732 | ``text`` - the revision data to process |
|
1732 | ``text`` - the revision data to process | |
1733 | ``flags`` - the revision flags |
|
1733 | ``flags`` - the revision flags | |
1734 | ``operation`` - the operation being performed (read or write) |
|
1734 | ``operation`` - the operation being performed (read or write) | |
1735 | ``raw`` - an optional argument describing if the raw transform should be |
|
1735 | ``raw`` - an optional argument describing if the raw transform should be | |
1736 | applied. |
|
1736 | applied. | |
1737 |
|
1737 | |||
1738 | This method processes the flags in the order (or reverse order if |
|
1738 | This method processes the flags in the order (or reverse order if | |
1739 | ``operation`` is 'write') defined by REVIDX_FLAGS_ORDER, applying the |
|
1739 | ``operation`` is 'write') defined by REVIDX_FLAGS_ORDER, applying the | |
1740 | flag processors registered for present flags. The order of flags defined |
|
1740 | flag processors registered for present flags. The order of flags defined | |
1741 | in REVIDX_FLAGS_ORDER needs to be stable to allow non-commutativity. |
|
1741 | in REVIDX_FLAGS_ORDER needs to be stable to allow non-commutativity. | |
1742 |
|
1742 | |||
1743 | Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the |
|
1743 | Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the | |
1744 | processed text and ``validatehash`` is a bool indicating whether the |
|
1744 | processed text and ``validatehash`` is a bool indicating whether the | |
1745 | returned text should be checked for hash integrity. |
|
1745 | returned text should be checked for hash integrity. | |
1746 |
|
1746 | |||
1747 | Note: If the ``raw`` argument is set, it has precedence over the |
|
1747 | Note: If the ``raw`` argument is set, it has precedence over the | |
1748 | operation and will only update the value of ``validatehash``. |
|
1748 | operation and will only update the value of ``validatehash``. | |
1749 | """ |
|
1749 | """ | |
1750 | # fast path: no flag processors will run |
|
1750 | # fast path: no flag processors will run | |
1751 | if flags == 0: |
|
1751 | if flags == 0: | |
1752 | return text, True |
|
1752 | return text, True | |
1753 | if not operation in ('read', 'write'): |
|
1753 | if not operation in ('read', 'write'): | |
1754 | raise error.ProgrammingError(_("invalid '%s' operation") % |
|
1754 | raise error.ProgrammingError(_("invalid '%s' operation") % | |
1755 | operation) |
|
1755 | operation) | |
1756 | # Check all flags are known. |
|
1756 | # Check all flags are known. | |
1757 | if flags & ~REVIDX_KNOWN_FLAGS: |
|
1757 | if flags & ~REVIDX_KNOWN_FLAGS: | |
1758 | raise error.RevlogError(_("incompatible revision flag '%#x'") % |
|
1758 | raise error.RevlogError(_("incompatible revision flag '%#x'") % | |
1759 | (flags & ~REVIDX_KNOWN_FLAGS)) |
|
1759 | (flags & ~REVIDX_KNOWN_FLAGS)) | |
1760 | validatehash = True |
|
1760 | validatehash = True | |
1761 | # Depending on the operation (read or write), the order might be |
|
1761 | # Depending on the operation (read or write), the order might be | |
1762 | # reversed due to non-commutative transforms. |
|
1762 | # reversed due to non-commutative transforms. | |
1763 | orderedflags = REVIDX_FLAGS_ORDER |
|
1763 | orderedflags = REVIDX_FLAGS_ORDER | |
1764 | if operation == 'write': |
|
1764 | if operation == 'write': | |
1765 | orderedflags = reversed(orderedflags) |
|
1765 | orderedflags = reversed(orderedflags) | |
1766 |
|
1766 | |||
1767 | for flag in orderedflags: |
|
1767 | for flag in orderedflags: | |
1768 | # If a flagprocessor has been registered for a known flag, apply the |
|
1768 | # If a flagprocessor has been registered for a known flag, apply the | |
1769 | # related operation transform and update result tuple. |
|
1769 | # related operation transform and update result tuple. | |
1770 | if flag & flags: |
|
1770 | if flag & flags: | |
1771 | vhash = True |
|
1771 | vhash = True | |
1772 |
|
1772 | |||
1773 | if flag not in self._flagprocessors: |
|
1773 | if flag not in self._flagprocessors: | |
1774 | message = _("missing processor for flag '%#x'") % (flag) |
|
1774 | message = _("missing processor for flag '%#x'") % (flag) | |
1775 | raise error.RevlogError(message) |
|
1775 | raise error.RevlogError(message) | |
1776 |
|
1776 | |||
1777 | processor = self._flagprocessors[flag] |
|
1777 | processor = self._flagprocessors[flag] | |
1778 | if processor is not None: |
|
1778 | if processor is not None: | |
1779 | readtransform, writetransform, rawtransform = processor |
|
1779 | readtransform, writetransform, rawtransform = processor | |
1780 |
|
1780 | |||
1781 | if raw: |
|
1781 | if raw: | |
1782 | vhash = rawtransform(self, text) |
|
1782 | vhash = rawtransform(self, text) | |
1783 | elif operation == 'read': |
|
1783 | elif operation == 'read': | |
1784 | text, vhash = readtransform(self, text) |
|
1784 | text, vhash = readtransform(self, text) | |
1785 | else: # write operation |
|
1785 | else: # write operation | |
1786 | text, vhash = writetransform(self, text) |
|
1786 | text, vhash = writetransform(self, text) | |
1787 | validatehash = validatehash and vhash |
|
1787 | validatehash = validatehash and vhash | |
1788 |
|
1788 | |||
1789 | return text, validatehash |
|
1789 | return text, validatehash | |
1790 |
|
1790 | |||
1791 | def checkhash(self, text, node, p1=None, p2=None, rev=None): |
|
1791 | def checkhash(self, text, node, p1=None, p2=None, rev=None): | |
1792 | """Check node hash integrity. |
|
1792 | """Check node hash integrity. | |
1793 |
|
1793 | |||
1794 | Available as a function so that subclasses can extend hash mismatch |
|
1794 | Available as a function so that subclasses can extend hash mismatch | |
1795 | behaviors as needed. |
|
1795 | behaviors as needed. | |
1796 | """ |
|
1796 | """ | |
1797 | try: |
|
1797 | try: | |
1798 | if p1 is None and p2 is None: |
|
1798 | if p1 is None and p2 is None: | |
1799 | p1, p2 = self.parents(node) |
|
1799 | p1, p2 = self.parents(node) | |
1800 | if node != self.hash(text, p1, p2): |
|
1800 | if node != self.hash(text, p1, p2): | |
1801 | # Clear the revision cache on hash failure. The revision cache |
|
1801 | # Clear the revision cache on hash failure. The revision cache | |
1802 | # only stores the raw revision and clearing the cache does have |
|
1802 | # only stores the raw revision and clearing the cache does have | |
1803 | # the side-effect that we won't have a cache hit when the raw |
|
1803 | # the side-effect that we won't have a cache hit when the raw | |
1804 | # revision data is accessed. But this case should be rare and |
|
1804 | # revision data is accessed. But this case should be rare and | |
1805 | # it is extra work to teach the cache about the hash |
|
1805 | # it is extra work to teach the cache about the hash | |
1806 | # verification state. |
|
1806 | # verification state. | |
1807 | if self._revisioncache and self._revisioncache[0] == node: |
|
1807 | if self._revisioncache and self._revisioncache[0] == node: | |
1808 | self._revisioncache = None |
|
1808 | self._revisioncache = None | |
1809 |
|
1809 | |||
1810 | revornode = rev |
|
1810 | revornode = rev | |
1811 | if revornode is None: |
|
1811 | if revornode is None: | |
1812 | revornode = templatefilters.short(hex(node)) |
|
1812 | revornode = templatefilters.short(hex(node)) | |
1813 | raise error.RevlogError(_("integrity check failed on %s:%s") |
|
1813 | raise error.RevlogError(_("integrity check failed on %s:%s") | |
1814 | % (self.indexfile, pycompat.bytestr(revornode))) |
|
1814 | % (self.indexfile, pycompat.bytestr(revornode))) | |
1815 | except error.RevlogError: |
|
1815 | except error.RevlogError: | |
1816 | if self._censorable and storageutil.iscensoredtext(text): |
|
1816 | if self._censorable and storageutil.iscensoredtext(text): | |
1817 | raise error.CensoredNodeError(self.indexfile, node, text) |
|
1817 | raise error.CensoredNodeError(self.indexfile, node, text) | |
1818 | raise |
|
1818 | raise | |
1819 |
|
1819 | |||
1820 | def _enforceinlinesize(self, tr, fp=None): |
|
1820 | def _enforceinlinesize(self, tr, fp=None): | |
1821 | """Check if the revlog is too big for inline and convert if so. |
|
1821 | """Check if the revlog is too big for inline and convert if so. | |
1822 |
|
1822 | |||
1823 | This should be called after revisions are added to the revlog. If the |
|
1823 | This should be called after revisions are added to the revlog. If the | |
1824 | revlog has grown too large to be an inline revlog, it will convert it |
|
1824 | revlog has grown too large to be an inline revlog, it will convert it | |
1825 | to use multiple index and data files. |
|
1825 | to use multiple index and data files. | |
1826 | """ |
|
1826 | """ | |
1827 | tiprev = len(self) - 1 |
|
1827 | tiprev = len(self) - 1 | |
1828 | if (not self._inline or |
|
1828 | if (not self._inline or | |
1829 | (self.start(tiprev) + self.length(tiprev)) < _maxinline): |
|
1829 | (self.start(tiprev) + self.length(tiprev)) < _maxinline): | |
1830 | return |
|
1830 | return | |
1831 |
|
1831 | |||
1832 | trinfo = tr.find(self.indexfile) |
|
1832 | trinfo = tr.find(self.indexfile) | |
1833 | if trinfo is None: |
|
1833 | if trinfo is None: | |
1834 | raise error.RevlogError(_("%s not found in the transaction") |
|
1834 | raise error.RevlogError(_("%s not found in the transaction") | |
1835 | % self.indexfile) |
|
1835 | % self.indexfile) | |
1836 |
|
1836 | |||
1837 | trindex = trinfo[2] |
|
1837 | trindex = trinfo[2] | |
1838 | if trindex is not None: |
|
1838 | if trindex is not None: | |
1839 | dataoff = self.start(trindex) |
|
1839 | dataoff = self.start(trindex) | |
1840 | else: |
|
1840 | else: | |
1841 | # revlog was stripped at start of transaction, use all leftover data |
|
1841 | # revlog was stripped at start of transaction, use all leftover data | |
1842 | trindex = len(self) - 1 |
|
1842 | trindex = len(self) - 1 | |
1843 | dataoff = self.end(tiprev) |
|
1843 | dataoff = self.end(tiprev) | |
1844 |
|
1844 | |||
1845 | tr.add(self.datafile, dataoff) |
|
1845 | tr.add(self.datafile, dataoff) | |
1846 |
|
1846 | |||
1847 | if fp: |
|
1847 | if fp: | |
1848 | fp.flush() |
|
1848 | fp.flush() | |
1849 | fp.close() |
|
1849 | fp.close() | |
1850 | # We can't use the cached file handle after close(). So prevent |
|
1850 | # We can't use the cached file handle after close(). So prevent | |
1851 | # its usage. |
|
1851 | # its usage. | |
1852 | self._writinghandles = None |
|
1852 | self._writinghandles = None | |
1853 |
|
1853 | |||
1854 | with self._indexfp('r') as ifh, self._datafp('w') as dfh: |
|
1854 | with self._indexfp('r') as ifh, self._datafp('w') as dfh: | |
1855 | for r in self: |
|
1855 | for r in self: | |
1856 | dfh.write(self._getsegmentforrevs(r, r, df=ifh)[1]) |
|
1856 | dfh.write(self._getsegmentforrevs(r, r, df=ifh)[1]) | |
1857 |
|
1857 | |||
1858 | with self._indexfp('w') as fp: |
|
1858 | with self._indexfp('w') as fp: | |
1859 | self.version &= ~FLAG_INLINE_DATA |
|
1859 | self.version &= ~FLAG_INLINE_DATA | |
1860 | self._inline = False |
|
1860 | self._inline = False | |
1861 | io = self._io |
|
1861 | io = self._io | |
1862 | for i in self: |
|
1862 | for i in self: | |
1863 | e = io.packentry(self.index[i], self.node, self.version, i) |
|
1863 | e = io.packentry(self.index[i], self.node, self.version, i) | |
1864 | fp.write(e) |
|
1864 | fp.write(e) | |
1865 |
|
1865 | |||
1866 | # the temp file replace the real index when we exit the context |
|
1866 | # the temp file replace the real index when we exit the context | |
1867 | # manager |
|
1867 | # manager | |
1868 |
|
1868 | |||
1869 | tr.replace(self.indexfile, trindex * self._io.size) |
|
1869 | tr.replace(self.indexfile, trindex * self._io.size) | |
1870 | self._chunkclear() |
|
1870 | self._chunkclear() | |
1871 |
|
1871 | |||
1872 | def _nodeduplicatecallback(self, transaction, node): |
|
1872 | def _nodeduplicatecallback(self, transaction, node): | |
1873 | """called when trying to add a node already stored. |
|
1873 | """called when trying to add a node already stored. | |
1874 | """ |
|
1874 | """ | |
1875 |
|
1875 | |||
1876 | def addrevision(self, text, transaction, link, p1, p2, cachedelta=None, |
|
1876 | def addrevision(self, text, transaction, link, p1, p2, cachedelta=None, | |
1877 | node=None, flags=REVIDX_DEFAULT_FLAGS, deltacomputer=None): |
|
1877 | node=None, flags=REVIDX_DEFAULT_FLAGS, deltacomputer=None): | |
1878 | """add a revision to the log |
|
1878 | """add a revision to the log | |
1879 |
|
1879 | |||
1880 | text - the revision data to add |
|
1880 | text - the revision data to add | |
1881 | transaction - the transaction object used for rollback |
|
1881 | transaction - the transaction object used for rollback | |
1882 | link - the linkrev data to add |
|
1882 | link - the linkrev data to add | |
1883 | p1, p2 - the parent nodeids of the revision |
|
1883 | p1, p2 - the parent nodeids of the revision | |
1884 | cachedelta - an optional precomputed delta |
|
1884 | cachedelta - an optional precomputed delta | |
1885 | node - nodeid of revision; typically node is not specified, and it is |
|
1885 | node - nodeid of revision; typically node is not specified, and it is | |
1886 | computed by default as hash(text, p1, p2), however subclasses might |
|
1886 | computed by default as hash(text, p1, p2), however subclasses might | |
1887 | use different hashing method (and override checkhash() in such case) |
|
1887 | use different hashing method (and override checkhash() in such case) | |
1888 | flags - the known flags to set on the revision |
|
1888 | flags - the known flags to set on the revision | |
1889 | deltacomputer - an optional deltacomputer instance shared between |
|
1889 | deltacomputer - an optional deltacomputer instance shared between | |
1890 | multiple calls |
|
1890 | multiple calls | |
1891 | """ |
|
1891 | """ | |
1892 | if link == nullrev: |
|
1892 | if link == nullrev: | |
1893 | raise error.RevlogError(_("attempted to add linkrev -1 to %s") |
|
1893 | raise error.RevlogError(_("attempted to add linkrev -1 to %s") | |
1894 | % self.indexfile) |
|
1894 | % self.indexfile) | |
1895 |
|
1895 | |||
1896 | if flags: |
|
1896 | if flags: | |
1897 | node = node or self.hash(text, p1, p2) |
|
1897 | node = node or self.hash(text, p1, p2) | |
1898 |
|
1898 | |||
1899 | rawtext, validatehash = self._processflags(text, flags, 'write') |
|
1899 | rawtext, validatehash = self._processflags(text, flags, 'write') | |
1900 |
|
1900 | |||
1901 | # If the flag processor modifies the revision data, ignore any provided |
|
1901 | # If the flag processor modifies the revision data, ignore any provided | |
1902 | # cachedelta. |
|
1902 | # cachedelta. | |
1903 | if rawtext != text: |
|
1903 | if rawtext != text: | |
1904 | cachedelta = None |
|
1904 | cachedelta = None | |
1905 |
|
1905 | |||
1906 | if len(rawtext) > _maxentrysize: |
|
1906 | if len(rawtext) > _maxentrysize: | |
1907 | raise error.RevlogError( |
|
1907 | raise error.RevlogError( | |
1908 | _("%s: size of %d bytes exceeds maximum revlog storage of 2GiB") |
|
1908 | _("%s: size of %d bytes exceeds maximum revlog storage of 2GiB") | |
1909 | % (self.indexfile, len(rawtext))) |
|
1909 | % (self.indexfile, len(rawtext))) | |
1910 |
|
1910 | |||
1911 | node = node or self.hash(rawtext, p1, p2) |
|
1911 | node = node or self.hash(rawtext, p1, p2) | |
1912 | if node in self.nodemap: |
|
1912 | if node in self.nodemap: | |
1913 | return node |
|
1913 | return node | |
1914 |
|
1914 | |||
1915 | if validatehash: |
|
1915 | if validatehash: | |
1916 | self.checkhash(rawtext, node, p1=p1, p2=p2) |
|
1916 | self.checkhash(rawtext, node, p1=p1, p2=p2) | |
1917 |
|
1917 | |||
1918 | return self.addrawrevision(rawtext, transaction, link, p1, p2, node, |
|
1918 | return self.addrawrevision(rawtext, transaction, link, p1, p2, node, | |
1919 | flags, cachedelta=cachedelta, |
|
1919 | flags, cachedelta=cachedelta, | |
1920 | deltacomputer=deltacomputer) |
|
1920 | deltacomputer=deltacomputer) | |
1921 |
|
1921 | |||
1922 | def addrawrevision(self, rawtext, transaction, link, p1, p2, node, flags, |
|
1922 | def addrawrevision(self, rawtext, transaction, link, p1, p2, node, flags, | |
1923 | cachedelta=None, deltacomputer=None): |
|
1923 | cachedelta=None, deltacomputer=None): | |
1924 | """add a raw revision with known flags, node and parents |
|
1924 | """add a raw revision with known flags, node and parents | |
1925 | useful when reusing a revision not stored in this revlog (ex: received |
|
1925 | useful when reusing a revision not stored in this revlog (ex: received | |
1926 | over wire, or read from an external bundle). |
|
1926 | over wire, or read from an external bundle). | |
1927 | """ |
|
1927 | """ | |
1928 | dfh = None |
|
1928 | dfh = None | |
1929 | if not self._inline: |
|
1929 | if not self._inline: | |
1930 | dfh = self._datafp("a+") |
|
1930 | dfh = self._datafp("a+") | |
1931 | ifh = self._indexfp("a+") |
|
1931 | ifh = self._indexfp("a+") | |
1932 | try: |
|
1932 | try: | |
1933 | return self._addrevision(node, rawtext, transaction, link, p1, p2, |
|
1933 | return self._addrevision(node, rawtext, transaction, link, p1, p2, | |
1934 | flags, cachedelta, ifh, dfh, |
|
1934 | flags, cachedelta, ifh, dfh, | |
1935 | deltacomputer=deltacomputer) |
|
1935 | deltacomputer=deltacomputer) | |
1936 | finally: |
|
1936 | finally: | |
1937 | if dfh: |
|
1937 | if dfh: | |
1938 | dfh.close() |
|
1938 | dfh.close() | |
1939 | ifh.close() |
|
1939 | ifh.close() | |
1940 |
|
1940 | |||
1941 | def compress(self, data): |
|
1941 | def compress(self, data): | |
1942 | """Generate a possibly-compressed representation of data.""" |
|
1942 | """Generate a possibly-compressed representation of data.""" | |
1943 | if not data: |
|
1943 | if not data: | |
1944 | return '', data |
|
1944 | return '', data | |
1945 |
|
1945 | |||
1946 | compressed = self._compressor.compress(data) |
|
1946 | compressed = self._compressor.compress(data) | |
1947 |
|
1947 | |||
1948 | if compressed: |
|
1948 | if compressed: | |
1949 | # The revlog compressor added the header in the returned data. |
|
1949 | # The revlog compressor added the header in the returned data. | |
1950 | return '', compressed |
|
1950 | return '', compressed | |
1951 |
|
1951 | |||
1952 | if data[0:1] == '\0': |
|
1952 | if data[0:1] == '\0': | |
1953 | return '', data |
|
1953 | return '', data | |
1954 | return 'u', data |
|
1954 | return 'u', data | |
1955 |
|
1955 | |||
1956 | def decompress(self, data): |
|
1956 | def decompress(self, data): | |
1957 | """Decompress a revlog chunk. |
|
1957 | """Decompress a revlog chunk. | |
1958 |
|
1958 | |||
1959 | The chunk is expected to begin with a header identifying the |
|
1959 | The chunk is expected to begin with a header identifying the | |
1960 | format type so it can be routed to an appropriate decompressor. |
|
1960 | format type so it can be routed to an appropriate decompressor. | |
1961 | """ |
|
1961 | """ | |
1962 | if not data: |
|
1962 | if not data: | |
1963 | return data |
|
1963 | return data | |
1964 |
|
1964 | |||
1965 | # Revlogs are read much more frequently than they are written and many |
|
1965 | # Revlogs are read much more frequently than they are written and many | |
1966 | # chunks only take microseconds to decompress, so performance is |
|
1966 | # chunks only take microseconds to decompress, so performance is | |
1967 | # important here. |
|
1967 | # important here. | |
1968 | # |
|
1968 | # | |
1969 | # We can make a few assumptions about revlogs: |
|
1969 | # We can make a few assumptions about revlogs: | |
1970 | # |
|
1970 | # | |
1971 | # 1) the majority of chunks will be compressed (as opposed to inline |
|
1971 | # 1) the majority of chunks will be compressed (as opposed to inline | |
1972 | # raw data). |
|
1972 | # raw data). | |
1973 | # 2) decompressing *any* data will likely by at least 10x slower than |
|
1973 | # 2) decompressing *any* data will likely by at least 10x slower than | |
1974 | # returning raw inline data. |
|
1974 | # returning raw inline data. | |
1975 | # 3) we want to prioritize common and officially supported compression |
|
1975 | # 3) we want to prioritize common and officially supported compression | |
1976 | # engines |
|
1976 | # engines | |
1977 | # |
|
1977 | # | |
1978 | # It follows that we want to optimize for "decompress compressed data |
|
1978 | # It follows that we want to optimize for "decompress compressed data | |
1979 | # when encoded with common and officially supported compression engines" |
|
1979 | # when encoded with common and officially supported compression engines" | |
1980 | # case over "raw data" and "data encoded by less common or non-official |
|
1980 | # case over "raw data" and "data encoded by less common or non-official | |
1981 | # compression engines." That is why we have the inline lookup first |
|
1981 | # compression engines." That is why we have the inline lookup first | |
1982 | # followed by the compengines lookup. |
|
1982 | # followed by the compengines lookup. | |
1983 | # |
|
1983 | # | |
1984 | # According to `hg perfrevlogchunks`, this is ~0.5% faster for zlib |
|
1984 | # According to `hg perfrevlogchunks`, this is ~0.5% faster for zlib | |
1985 | # compressed chunks. And this matters for changelog and manifest reads. |
|
1985 | # compressed chunks. And this matters for changelog and manifest reads. | |
1986 | t = data[0:1] |
|
1986 | t = data[0:1] | |
1987 |
|
1987 | |||
1988 | if t == 'x': |
|
1988 | if t == 'x': | |
1989 | try: |
|
1989 | try: | |
1990 | return _zlibdecompress(data) |
|
1990 | return _zlibdecompress(data) | |
1991 | except zlib.error as e: |
|
1991 | except zlib.error as e: | |
1992 | raise error.RevlogError(_('revlog decompress error: %s') % |
|
1992 | raise error.RevlogError(_('revlog decompress error: %s') % | |
1993 | stringutil.forcebytestr(e)) |
|
1993 | stringutil.forcebytestr(e)) | |
1994 | # '\0' is more common than 'u' so it goes first. |
|
1994 | # '\0' is more common than 'u' so it goes first. | |
1995 | elif t == '\0': |
|
1995 | elif t == '\0': | |
1996 | return data |
|
1996 | return data | |
1997 | elif t == 'u': |
|
1997 | elif t == 'u': | |
1998 | return util.buffer(data, 1) |
|
1998 | return util.buffer(data, 1) | |
1999 |
|
1999 | |||
2000 | try: |
|
2000 | try: | |
2001 | compressor = self._decompressors[t] |
|
2001 | compressor = self._decompressors[t] | |
2002 | except KeyError: |
|
2002 | except KeyError: | |
2003 | try: |
|
2003 | try: | |
2004 | engine = util.compengines.forrevlogheader(t) |
|
2004 | engine = util.compengines.forrevlogheader(t) | |
2005 | compressor = engine.revlogcompressor(self._compengineopts) |
|
2005 | compressor = engine.revlogcompressor(self._compengineopts) | |
2006 | self._decompressors[t] = compressor |
|
2006 | self._decompressors[t] = compressor | |
2007 | except KeyError: |
|
2007 | except KeyError: | |
2008 | raise error.RevlogError(_('unknown compression type %r') % t) |
|
2008 | raise error.RevlogError(_('unknown compression type %r') % t) | |
2009 |
|
2009 | |||
2010 | return compressor.decompress(data) |
|
2010 | return compressor.decompress(data) | |
2011 |
|
2011 | |||
2012 | def _addrevision(self, node, rawtext, transaction, link, p1, p2, flags, |
|
2012 | def _addrevision(self, node, rawtext, transaction, link, p1, p2, flags, | |
2013 | cachedelta, ifh, dfh, alwayscache=False, |
|
2013 | cachedelta, ifh, dfh, alwayscache=False, | |
2014 | deltacomputer=None): |
|
2014 | deltacomputer=None): | |
2015 | """internal function to add revisions to the log |
|
2015 | """internal function to add revisions to the log | |
2016 |
|
2016 | |||
2017 | see addrevision for argument descriptions. |
|
2017 | see addrevision for argument descriptions. | |
2018 |
|
2018 | |||
2019 | note: "addrevision" takes non-raw text, "_addrevision" takes raw text. |
|
2019 | note: "addrevision" takes non-raw text, "_addrevision" takes raw text. | |
2020 |
|
2020 | |||
2021 | if "deltacomputer" is not provided or None, a defaultdeltacomputer will |
|
2021 | if "deltacomputer" is not provided or None, a defaultdeltacomputer will | |
2022 | be used. |
|
2022 | be used. | |
2023 |
|
2023 | |||
2024 | invariants: |
|
2024 | invariants: | |
2025 | - rawtext is optional (can be None); if not set, cachedelta must be set. |
|
2025 | - rawtext is optional (can be None); if not set, cachedelta must be set. | |
2026 | if both are set, they must correspond to each other. |
|
2026 | if both are set, they must correspond to each other. | |
2027 | """ |
|
2027 | """ | |
2028 | if node == nullid: |
|
2028 | if node == nullid: | |
2029 | raise error.RevlogError(_("%s: attempt to add null revision") % |
|
2029 | raise error.RevlogError(_("%s: attempt to add null revision") % | |
2030 | self.indexfile) |
|
2030 | self.indexfile) | |
2031 | if node == wdirid or node in wdirfilenodeids: |
|
2031 | if node == wdirid or node in wdirfilenodeids: | |
2032 | raise error.RevlogError(_("%s: attempt to add wdir revision") % |
|
2032 | raise error.RevlogError(_("%s: attempt to add wdir revision") % | |
2033 | self.indexfile) |
|
2033 | self.indexfile) | |
2034 |
|
2034 | |||
2035 | if self._inline: |
|
2035 | if self._inline: | |
2036 | fh = ifh |
|
2036 | fh = ifh | |
2037 | else: |
|
2037 | else: | |
2038 | fh = dfh |
|
2038 | fh = dfh | |
2039 |
|
2039 | |||
2040 | btext = [rawtext] |
|
2040 | btext = [rawtext] | |
2041 |
|
2041 | |||
2042 | curr = len(self) |
|
2042 | curr = len(self) | |
2043 | prev = curr - 1 |
|
2043 | prev = curr - 1 | |
2044 | offset = self.end(prev) |
|
2044 | offset = self.end(prev) | |
2045 | p1r, p2r = self.rev(p1), self.rev(p2) |
|
2045 | p1r, p2r = self.rev(p1), self.rev(p2) | |
2046 |
|
2046 | |||
2047 | # full versions are inserted when the needed deltas |
|
2047 | # full versions are inserted when the needed deltas | |
2048 | # become comparable to the uncompressed text |
|
2048 | # become comparable to the uncompressed text | |
2049 | if rawtext is None: |
|
2049 | if rawtext is None: | |
2050 | # need rawtext size, before changed by flag processors, which is |
|
2050 | # need rawtext size, before changed by flag processors, which is | |
2051 | # the non-raw size. use revlog explicitly to avoid filelog's extra |
|
2051 | # the non-raw size. use revlog explicitly to avoid filelog's extra | |
2052 | # logic that might remove metadata size. |
|
2052 | # logic that might remove metadata size. | |
2053 | textlen = mdiff.patchedsize(revlog.size(self, cachedelta[0]), |
|
2053 | textlen = mdiff.patchedsize(revlog.size(self, cachedelta[0]), | |
2054 | cachedelta[1]) |
|
2054 | cachedelta[1]) | |
2055 | else: |
|
2055 | else: | |
2056 | textlen = len(rawtext) |
|
2056 | textlen = len(rawtext) | |
2057 |
|
2057 | |||
2058 | if deltacomputer is None: |
|
2058 | if deltacomputer is None: | |
2059 | deltacomputer = deltautil.deltacomputer(self) |
|
2059 | deltacomputer = deltautil.deltacomputer(self) | |
2060 |
|
2060 | |||
2061 | revinfo = _revisioninfo(node, p1, p2, btext, textlen, cachedelta, flags) |
|
2061 | revinfo = _revisioninfo(node, p1, p2, btext, textlen, cachedelta, flags) | |
2062 |
|
2062 | |||
2063 | deltainfo = deltacomputer.finddeltainfo(revinfo, fh) |
|
2063 | deltainfo = deltacomputer.finddeltainfo(revinfo, fh) | |
2064 |
|
2064 | |||
2065 | e = (offset_type(offset, flags), deltainfo.deltalen, textlen, |
|
2065 | e = (offset_type(offset, flags), deltainfo.deltalen, textlen, | |
2066 | deltainfo.base, link, p1r, p2r, node) |
|
2066 | deltainfo.base, link, p1r, p2r, node) | |
2067 | self.index.append(e) |
|
2067 | self.index.append(e) | |
2068 | self.nodemap[node] = curr |
|
2068 | self.nodemap[node] = curr | |
2069 |
|
2069 | |||
2070 | # Reset the pure node cache start lookup offset to account for new |
|
2070 | # Reset the pure node cache start lookup offset to account for new | |
2071 | # revision. |
|
2071 | # revision. | |
2072 | if self._nodepos is not None: |
|
2072 | if self._nodepos is not None: | |
2073 | self._nodepos = curr |
|
2073 | self._nodepos = curr | |
2074 |
|
2074 | |||
2075 | entry = self._io.packentry(e, self.node, self.version, curr) |
|
2075 | entry = self._io.packentry(e, self.node, self.version, curr) | |
2076 | self._writeentry(transaction, ifh, dfh, entry, deltainfo.data, |
|
2076 | self._writeentry(transaction, ifh, dfh, entry, deltainfo.data, | |
2077 | link, offset) |
|
2077 | link, offset) | |
2078 |
|
2078 | |||
2079 | rawtext = btext[0] |
|
2079 | rawtext = btext[0] | |
2080 |
|
2080 | |||
2081 | if alwayscache and rawtext is None: |
|
2081 | if alwayscache and rawtext is None: | |
2082 | rawtext = deltacomputer.buildtext(revinfo, fh) |
|
2082 | rawtext = deltacomputer.buildtext(revinfo, fh) | |
2083 |
|
2083 | |||
2084 | if type(rawtext) == bytes: # only accept immutable objects |
|
2084 | if type(rawtext) == bytes: # only accept immutable objects | |
2085 | self._revisioncache = (node, curr, rawtext) |
|
2085 | self._revisioncache = (node, curr, rawtext) | |
2086 | self._chainbasecache[curr] = deltainfo.chainbase |
|
2086 | self._chainbasecache[curr] = deltainfo.chainbase | |
2087 | return node |
|
2087 | return node | |
2088 |
|
2088 | |||
2089 | def _writeentry(self, transaction, ifh, dfh, entry, data, link, offset): |
|
2089 | def _writeentry(self, transaction, ifh, dfh, entry, data, link, offset): | |
2090 | # Files opened in a+ mode have inconsistent behavior on various |
|
2090 | # Files opened in a+ mode have inconsistent behavior on various | |
2091 | # platforms. Windows requires that a file positioning call be made |
|
2091 | # platforms. Windows requires that a file positioning call be made | |
2092 | # when the file handle transitions between reads and writes. See |
|
2092 | # when the file handle transitions between reads and writes. See | |
2093 | # 3686fa2b8eee and the mixedfilemodewrapper in windows.py. On other |
|
2093 | # 3686fa2b8eee and the mixedfilemodewrapper in windows.py. On other | |
2094 | # platforms, Python or the platform itself can be buggy. Some versions |
|
2094 | # platforms, Python or the platform itself can be buggy. Some versions | |
2095 | # of Solaris have been observed to not append at the end of the file |
|
2095 | # of Solaris have been observed to not append at the end of the file | |
2096 | # if the file was seeked to before the end. See issue4943 for more. |
|
2096 | # if the file was seeked to before the end. See issue4943 for more. | |
2097 | # |
|
2097 | # | |
2098 | # We work around this issue by inserting a seek() before writing. |
|
2098 | # We work around this issue by inserting a seek() before writing. | |
2099 | # Note: This is likely not necessary on Python 3. However, because |
|
2099 | # Note: This is likely not necessary on Python 3. However, because | |
2100 | # the file handle is reused for reads and may be seeked there, we need |
|
2100 | # the file handle is reused for reads and may be seeked there, we need | |
2101 | # to be careful before changing this. |
|
2101 | # to be careful before changing this. | |
2102 | ifh.seek(0, os.SEEK_END) |
|
2102 | ifh.seek(0, os.SEEK_END) | |
2103 | if dfh: |
|
2103 | if dfh: | |
2104 | dfh.seek(0, os.SEEK_END) |
|
2104 | dfh.seek(0, os.SEEK_END) | |
2105 |
|
2105 | |||
2106 | curr = len(self) - 1 |
|
2106 | curr = len(self) - 1 | |
2107 | if not self._inline: |
|
2107 | if not self._inline: | |
2108 | transaction.add(self.datafile, offset) |
|
2108 | transaction.add(self.datafile, offset) | |
2109 | transaction.add(self.indexfile, curr * len(entry)) |
|
2109 | transaction.add(self.indexfile, curr * len(entry)) | |
2110 | if data[0]: |
|
2110 | if data[0]: | |
2111 | dfh.write(data[0]) |
|
2111 | dfh.write(data[0]) | |
2112 | dfh.write(data[1]) |
|
2112 | dfh.write(data[1]) | |
2113 | ifh.write(entry) |
|
2113 | ifh.write(entry) | |
2114 | else: |
|
2114 | else: | |
2115 | offset += curr * self._io.size |
|
2115 | offset += curr * self._io.size | |
2116 | transaction.add(self.indexfile, offset, curr) |
|
2116 | transaction.add(self.indexfile, offset, curr) | |
2117 | ifh.write(entry) |
|
2117 | ifh.write(entry) | |
2118 | ifh.write(data[0]) |
|
2118 | ifh.write(data[0]) | |
2119 | ifh.write(data[1]) |
|
2119 | ifh.write(data[1]) | |
2120 | self._enforceinlinesize(transaction, ifh) |
|
2120 | self._enforceinlinesize(transaction, ifh) | |
2121 |
|
2121 | |||
2122 | def addgroup(self, deltas, linkmapper, transaction, addrevisioncb=None): |
|
2122 | def addgroup(self, deltas, linkmapper, transaction, addrevisioncb=None): | |
2123 | """ |
|
2123 | """ | |
2124 | add a delta group |
|
2124 | add a delta group | |
2125 |
|
2125 | |||
2126 | given a set of deltas, add them to the revision log. the |
|
2126 | given a set of deltas, add them to the revision log. the | |
2127 | first delta is against its parent, which should be in our |
|
2127 | first delta is against its parent, which should be in our | |
2128 | log, the rest are against the previous delta. |
|
2128 | log, the rest are against the previous delta. | |
2129 |
|
2129 | |||
2130 | If ``addrevisioncb`` is defined, it will be called with arguments of |
|
2130 | If ``addrevisioncb`` is defined, it will be called with arguments of | |
2131 | this revlog and the node that was added. |
|
2131 | this revlog and the node that was added. | |
2132 | """ |
|
2132 | """ | |
2133 |
|
2133 | |||
2134 | if self._writinghandles: |
|
2134 | if self._writinghandles: | |
2135 | raise error.ProgrammingError('cannot nest addgroup() calls') |
|
2135 | raise error.ProgrammingError('cannot nest addgroup() calls') | |
2136 |
|
2136 | |||
2137 | nodes = [] |
|
2137 | nodes = [] | |
2138 |
|
2138 | |||
2139 | r = len(self) |
|
2139 | r = len(self) | |
2140 | end = 0 |
|
2140 | end = 0 | |
2141 | if r: |
|
2141 | if r: | |
2142 | end = self.end(r - 1) |
|
2142 | end = self.end(r - 1) | |
2143 | ifh = self._indexfp("a+") |
|
2143 | ifh = self._indexfp("a+") | |
2144 | isize = r * self._io.size |
|
2144 | isize = r * self._io.size | |
2145 | if self._inline: |
|
2145 | if self._inline: | |
2146 | transaction.add(self.indexfile, end + isize, r) |
|
2146 | transaction.add(self.indexfile, end + isize, r) | |
2147 | dfh = None |
|
2147 | dfh = None | |
2148 | else: |
|
2148 | else: | |
2149 | transaction.add(self.indexfile, isize, r) |
|
2149 | transaction.add(self.indexfile, isize, r) | |
2150 | transaction.add(self.datafile, end) |
|
2150 | transaction.add(self.datafile, end) | |
2151 | dfh = self._datafp("a+") |
|
2151 | dfh = self._datafp("a+") | |
2152 | def flush(): |
|
2152 | def flush(): | |
2153 | if dfh: |
|
2153 | if dfh: | |
2154 | dfh.flush() |
|
2154 | dfh.flush() | |
2155 | ifh.flush() |
|
2155 | ifh.flush() | |
2156 |
|
2156 | |||
2157 | self._writinghandles = (ifh, dfh) |
|
2157 | self._writinghandles = (ifh, dfh) | |
2158 |
|
2158 | |||
2159 | try: |
|
2159 | try: | |
2160 | deltacomputer = deltautil.deltacomputer(self) |
|
2160 | deltacomputer = deltautil.deltacomputer(self) | |
2161 | # loop through our set of deltas |
|
2161 | # loop through our set of deltas | |
2162 | for data in deltas: |
|
2162 | for data in deltas: | |
2163 | node, p1, p2, linknode, deltabase, delta, flags = data |
|
2163 | node, p1, p2, linknode, deltabase, delta, flags = data | |
2164 | link = linkmapper(linknode) |
|
2164 | link = linkmapper(linknode) | |
2165 | flags = flags or REVIDX_DEFAULT_FLAGS |
|
2165 | flags = flags or REVIDX_DEFAULT_FLAGS | |
2166 |
|
2166 | |||
2167 | nodes.append(node) |
|
2167 | nodes.append(node) | |
2168 |
|
2168 | |||
2169 | if node in self.nodemap: |
|
2169 | if node in self.nodemap: | |
2170 | self._nodeduplicatecallback(transaction, node) |
|
2170 | self._nodeduplicatecallback(transaction, node) | |
2171 | # this can happen if two branches make the same change |
|
2171 | # this can happen if two branches make the same change | |
2172 | continue |
|
2172 | continue | |
2173 |
|
2173 | |||
2174 | for p in (p1, p2): |
|
2174 | for p in (p1, p2): | |
2175 | if p not in self.nodemap: |
|
2175 | if p not in self.nodemap: | |
2176 | raise error.LookupError(p, self.indexfile, |
|
2176 | raise error.LookupError(p, self.indexfile, | |
2177 | _('unknown parent')) |
|
2177 | _('unknown parent')) | |
2178 |
|
2178 | |||
2179 | if deltabase not in self.nodemap: |
|
2179 | if deltabase not in self.nodemap: | |
2180 | raise error.LookupError(deltabase, self.indexfile, |
|
2180 | raise error.LookupError(deltabase, self.indexfile, | |
2181 | _('unknown delta base')) |
|
2181 | _('unknown delta base')) | |
2182 |
|
2182 | |||
2183 | baserev = self.rev(deltabase) |
|
2183 | baserev = self.rev(deltabase) | |
2184 |
|
2184 | |||
2185 | if baserev != nullrev and self.iscensored(baserev): |
|
2185 | if baserev != nullrev and self.iscensored(baserev): | |
2186 | # if base is censored, delta must be full replacement in a |
|
2186 | # if base is censored, delta must be full replacement in a | |
2187 | # single patch operation |
|
2187 | # single patch operation | |
2188 | hlen = struct.calcsize(">lll") |
|
2188 | hlen = struct.calcsize(">lll") | |
2189 | oldlen = self.rawsize(baserev) |
|
2189 | oldlen = self.rawsize(baserev) | |
2190 | newlen = len(delta) - hlen |
|
2190 | newlen = len(delta) - hlen | |
2191 | if delta[:hlen] != mdiff.replacediffheader(oldlen, newlen): |
|
2191 | if delta[:hlen] != mdiff.replacediffheader(oldlen, newlen): | |
2192 | raise error.CensoredBaseError(self.indexfile, |
|
2192 | raise error.CensoredBaseError(self.indexfile, | |
2193 | self.node(baserev)) |
|
2193 | self.node(baserev)) | |
2194 |
|
2194 | |||
2195 | if not flags and self._peek_iscensored(baserev, delta, flush): |
|
2195 | if not flags and self._peek_iscensored(baserev, delta, flush): | |
2196 | flags |= REVIDX_ISCENSORED |
|
2196 | flags |= REVIDX_ISCENSORED | |
2197 |
|
2197 | |||
2198 | # We assume consumers of addrevisioncb will want to retrieve |
|
2198 | # We assume consumers of addrevisioncb will want to retrieve | |
2199 | # the added revision, which will require a call to |
|
2199 | # the added revision, which will require a call to | |
2200 | # revision(). revision() will fast path if there is a cache |
|
2200 | # revision(). revision() will fast path if there is a cache | |
2201 | # hit. So, we tell _addrevision() to always cache in this case. |
|
2201 | # hit. So, we tell _addrevision() to always cache in this case. | |
2202 | # We're only using addgroup() in the context of changegroup |
|
2202 | # We're only using addgroup() in the context of changegroup | |
2203 | # generation so the revision data can always be handled as raw |
|
2203 | # generation so the revision data can always be handled as raw | |
2204 | # by the flagprocessor. |
|
2204 | # by the flagprocessor. | |
2205 | self._addrevision(node, None, transaction, link, |
|
2205 | self._addrevision(node, None, transaction, link, | |
2206 | p1, p2, flags, (baserev, delta), |
|
2206 | p1, p2, flags, (baserev, delta), | |
2207 | ifh, dfh, |
|
2207 | ifh, dfh, | |
2208 | alwayscache=bool(addrevisioncb), |
|
2208 | alwayscache=bool(addrevisioncb), | |
2209 | deltacomputer=deltacomputer) |
|
2209 | deltacomputer=deltacomputer) | |
2210 |
|
2210 | |||
2211 | if addrevisioncb: |
|
2211 | if addrevisioncb: | |
2212 | addrevisioncb(self, node) |
|
2212 | addrevisioncb(self, node) | |
2213 |
|
2213 | |||
2214 | if not dfh and not self._inline: |
|
2214 | if not dfh and not self._inline: | |
2215 | # addrevision switched from inline to conventional |
|
2215 | # addrevision switched from inline to conventional | |
2216 | # reopen the index |
|
2216 | # reopen the index | |
2217 | ifh.close() |
|
2217 | ifh.close() | |
2218 | dfh = self._datafp("a+") |
|
2218 | dfh = self._datafp("a+") | |
2219 | ifh = self._indexfp("a+") |
|
2219 | ifh = self._indexfp("a+") | |
2220 | self._writinghandles = (ifh, dfh) |
|
2220 | self._writinghandles = (ifh, dfh) | |
2221 | finally: |
|
2221 | finally: | |
2222 | self._writinghandles = None |
|
2222 | self._writinghandles = None | |
2223 |
|
2223 | |||
2224 | if dfh: |
|
2224 | if dfh: | |
2225 | dfh.close() |
|
2225 | dfh.close() | |
2226 | ifh.close() |
|
2226 | ifh.close() | |
2227 |
|
2227 | |||
2228 | return nodes |
|
2228 | return nodes | |
2229 |
|
2229 | |||
2230 | def iscensored(self, rev): |
|
2230 | def iscensored(self, rev): | |
2231 | """Check if a file revision is censored.""" |
|
2231 | """Check if a file revision is censored.""" | |
2232 | if not self._censorable: |
|
2232 | if not self._censorable: | |
2233 | return False |
|
2233 | return False | |
2234 |
|
2234 | |||
2235 | return self.flags(rev) & REVIDX_ISCENSORED |
|
2235 | return self.flags(rev) & REVIDX_ISCENSORED | |
2236 |
|
2236 | |||
2237 | def _peek_iscensored(self, baserev, delta, flush): |
|
2237 | def _peek_iscensored(self, baserev, delta, flush): | |
2238 | """Quickly check if a delta produces a censored revision.""" |
|
2238 | """Quickly check if a delta produces a censored revision.""" | |
2239 | if not self._censorable: |
|
2239 | if not self._censorable: | |
2240 | return False |
|
2240 | return False | |
2241 |
|
2241 | |||
2242 | return storageutil.deltaiscensored(delta, baserev, self.rawsize) |
|
2242 | return storageutil.deltaiscensored(delta, baserev, self.rawsize) | |
2243 |
|
2243 | |||
2244 | def getstrippoint(self, minlink): |
|
2244 | def getstrippoint(self, minlink): | |
2245 | """find the minimum rev that must be stripped to strip the linkrev |
|
2245 | """find the minimum rev that must be stripped to strip the linkrev | |
2246 |
|
2246 | |||
2247 | Returns a tuple containing the minimum rev and a set of all revs that |
|
2247 | Returns a tuple containing the minimum rev and a set of all revs that | |
2248 | have linkrevs that will be broken by this strip. |
|
2248 | have linkrevs that will be broken by this strip. | |
2249 | """ |
|
2249 | """ | |
2250 | return storageutil.resolvestripinfo(minlink, len(self) - 1, |
|
2250 | return storageutil.resolvestripinfo(minlink, len(self) - 1, | |
2251 | self.headrevs(), |
|
2251 | self.headrevs(), | |
2252 | self.linkrev, self.parentrevs) |
|
2252 | self.linkrev, self.parentrevs) | |
2253 |
|
2253 | |||
2254 | def strip(self, minlink, transaction): |
|
2254 | def strip(self, minlink, transaction): | |
2255 | """truncate the revlog on the first revision with a linkrev >= minlink |
|
2255 | """truncate the revlog on the first revision with a linkrev >= minlink | |
2256 |
|
2256 | |||
2257 | This function is called when we're stripping revision minlink and |
|
2257 | This function is called when we're stripping revision minlink and | |
2258 | its descendants from the repository. |
|
2258 | its descendants from the repository. | |
2259 |
|
2259 | |||
2260 | We have to remove all revisions with linkrev >= minlink, because |
|
2260 | We have to remove all revisions with linkrev >= minlink, because | |
2261 | the equivalent changelog revisions will be renumbered after the |
|
2261 | the equivalent changelog revisions will be renumbered after the | |
2262 | strip. |
|
2262 | strip. | |
2263 |
|
2263 | |||
2264 | So we truncate the revlog on the first of these revisions, and |
|
2264 | So we truncate the revlog on the first of these revisions, and | |
2265 | trust that the caller has saved the revisions that shouldn't be |
|
2265 | trust that the caller has saved the revisions that shouldn't be | |
2266 | removed and that it'll re-add them after this truncation. |
|
2266 | removed and that it'll re-add them after this truncation. | |
2267 | """ |
|
2267 | """ | |
2268 | if len(self) == 0: |
|
2268 | if len(self) == 0: | |
2269 | return |
|
2269 | return | |
2270 |
|
2270 | |||
2271 | rev, _ = self.getstrippoint(minlink) |
|
2271 | rev, _ = self.getstrippoint(minlink) | |
2272 | if rev == len(self): |
|
2272 | if rev == len(self): | |
2273 | return |
|
2273 | return | |
2274 |
|
2274 | |||
2275 | # first truncate the files on disk |
|
2275 | # first truncate the files on disk | |
2276 | end = self.start(rev) |
|
2276 | end = self.start(rev) | |
2277 | if not self._inline: |
|
2277 | if not self._inline: | |
2278 | transaction.add(self.datafile, end) |
|
2278 | transaction.add(self.datafile, end) | |
2279 | end = rev * self._io.size |
|
2279 | end = rev * self._io.size | |
2280 | else: |
|
2280 | else: | |
2281 | end += rev * self._io.size |
|
2281 | end += rev * self._io.size | |
2282 |
|
2282 | |||
2283 | transaction.add(self.indexfile, end) |
|
2283 | transaction.add(self.indexfile, end) | |
2284 |
|
2284 | |||
2285 | # then reset internal state in memory to forget those revisions |
|
2285 | # then reset internal state in memory to forget those revisions | |
2286 | self._revisioncache = None |
|
2286 | self._revisioncache = None | |
2287 | self._chaininfocache = {} |
|
2287 | self._chaininfocache = {} | |
2288 | self._chunkclear() |
|
2288 | self._chunkclear() | |
2289 | for x in pycompat.xrange(rev, len(self)): |
|
2289 | for x in pycompat.xrange(rev, len(self)): | |
2290 | del self.nodemap[self.node(x)] |
|
2290 | del self.nodemap[self.node(x)] | |
2291 |
|
2291 | |||
2292 | del self.index[rev:-1] |
|
2292 | del self.index[rev:-1] | |
2293 | self._nodepos = None |
|
2293 | self._nodepos = None | |
2294 |
|
2294 | |||
2295 | def checksize(self): |
|
2295 | def checksize(self): | |
2296 | """Check size of index and data files |
|
2296 | """Check size of index and data files | |
2297 |
|
2297 | |||
2298 | return a (dd, di) tuple. |
|
2298 | return a (dd, di) tuple. | |
2299 | - dd: extra bytes for the "data" file |
|
2299 | - dd: extra bytes for the "data" file | |
2300 | - di: extra bytes for the "index" file |
|
2300 | - di: extra bytes for the "index" file | |
2301 |
|
2301 | |||
2302 | A healthy revlog will return (0, 0). |
|
2302 | A healthy revlog will return (0, 0). | |
2303 | """ |
|
2303 | """ | |
2304 | expected = 0 |
|
2304 | expected = 0 | |
2305 | if len(self): |
|
2305 | if len(self): | |
2306 | expected = max(0, self.end(len(self) - 1)) |
|
2306 | expected = max(0, self.end(len(self) - 1)) | |
2307 |
|
2307 | |||
2308 | try: |
|
2308 | try: | |
2309 | with self._datafp() as f: |
|
2309 | with self._datafp() as f: | |
2310 | f.seek(0, io.SEEK_END) |
|
2310 | f.seek(0, io.SEEK_END) | |
2311 | actual = f.tell() |
|
2311 | actual = f.tell() | |
2312 | dd = actual - expected |
|
2312 | dd = actual - expected | |
2313 | except IOError as inst: |
|
2313 | except IOError as inst: | |
2314 | if inst.errno != errno.ENOENT: |
|
2314 | if inst.errno != errno.ENOENT: | |
2315 | raise |
|
2315 | raise | |
2316 | dd = 0 |
|
2316 | dd = 0 | |
2317 |
|
2317 | |||
2318 | try: |
|
2318 | try: | |
2319 | f = self.opener(self.indexfile) |
|
2319 | f = self.opener(self.indexfile) | |
2320 | f.seek(0, io.SEEK_END) |
|
2320 | f.seek(0, io.SEEK_END) | |
2321 | actual = f.tell() |
|
2321 | actual = f.tell() | |
2322 | f.close() |
|
2322 | f.close() | |
2323 | s = self._io.size |
|
2323 | s = self._io.size | |
2324 | i = max(0, actual // s) |
|
2324 | i = max(0, actual // s) | |
2325 | di = actual - (i * s) |
|
2325 | di = actual - (i * s) | |
2326 | if self._inline: |
|
2326 | if self._inline: | |
2327 | databytes = 0 |
|
2327 | databytes = 0 | |
2328 | for r in self: |
|
2328 | for r in self: | |
2329 | databytes += max(0, self.length(r)) |
|
2329 | databytes += max(0, self.length(r)) | |
2330 | dd = 0 |
|
2330 | dd = 0 | |
2331 | di = actual - len(self) * s - databytes |
|
2331 | di = actual - len(self) * s - databytes | |
2332 | except IOError as inst: |
|
2332 | except IOError as inst: | |
2333 | if inst.errno != errno.ENOENT: |
|
2333 | if inst.errno != errno.ENOENT: | |
2334 | raise |
|
2334 | raise | |
2335 | di = 0 |
|
2335 | di = 0 | |
2336 |
|
2336 | |||
2337 | return (dd, di) |
|
2337 | return (dd, di) | |
2338 |
|
2338 | |||
2339 | def files(self): |
|
2339 | def files(self): | |
2340 | res = [self.indexfile] |
|
2340 | res = [self.indexfile] | |
2341 | if not self._inline: |
|
2341 | if not self._inline: | |
2342 | res.append(self.datafile) |
|
2342 | res.append(self.datafile) | |
2343 | return res |
|
2343 | return res | |
2344 |
|
2344 | |||
2345 | def emitrevisions(self, nodes, nodesorder=None, revisiondata=False, |
|
2345 | def emitrevisions(self, nodes, nodesorder=None, revisiondata=False, | |
2346 | assumehaveparentrevisions=False, |
|
2346 | assumehaveparentrevisions=False, | |
2347 | deltamode=repository.CG_DELTAMODE_STD): |
|
2347 | deltamode=repository.CG_DELTAMODE_STD): | |
2348 | if nodesorder not in ('nodes', 'storage', 'linear', None): |
|
2348 | if nodesorder not in ('nodes', 'storage', 'linear', None): | |
2349 | raise error.ProgrammingError('unhandled value for nodesorder: %s' % |
|
2349 | raise error.ProgrammingError('unhandled value for nodesorder: %s' % | |
2350 | nodesorder) |
|
2350 | nodesorder) | |
2351 |
|
2351 | |||
2352 | if nodesorder is None and not self._generaldelta: |
|
2352 | if nodesorder is None and not self._generaldelta: | |
2353 | nodesorder = 'storage' |
|
2353 | nodesorder = 'storage' | |
2354 |
|
2354 | |||
2355 | if (not self._storedeltachains and |
|
2355 | if (not self._storedeltachains and | |
2356 | deltamode != repository.CG_DELTAMODE_PREV): |
|
2356 | deltamode != repository.CG_DELTAMODE_PREV): | |
2357 | deltamode = repository.CG_DELTAMODE_FULL |
|
2357 | deltamode = repository.CG_DELTAMODE_FULL | |
2358 |
|
2358 | |||
2359 | return storageutil.emitrevisions( |
|
2359 | return storageutil.emitrevisions( | |
2360 | self, nodes, nodesorder, revlogrevisiondelta, |
|
2360 | self, nodes, nodesorder, revlogrevisiondelta, | |
2361 | deltaparentfn=self.deltaparent, |
|
2361 | deltaparentfn=self.deltaparent, | |
2362 | candeltafn=self.candelta, |
|
2362 | candeltafn=self.candelta, | |
2363 | rawsizefn=self.rawsize, |
|
2363 | rawsizefn=self.rawsize, | |
2364 | revdifffn=self.revdiff, |
|
2364 | revdifffn=self.revdiff, | |
2365 | flagsfn=self.flags, |
|
2365 | flagsfn=self.flags, | |
2366 | deltamode=deltamode, |
|
2366 | deltamode=deltamode, | |
2367 | revisiondata=revisiondata, |
|
2367 | revisiondata=revisiondata, | |
2368 | assumehaveparentrevisions=assumehaveparentrevisions) |
|
2368 | assumehaveparentrevisions=assumehaveparentrevisions) | |
2369 |
|
2369 | |||
2370 | DELTAREUSEALWAYS = 'always' |
|
2370 | DELTAREUSEALWAYS = 'always' | |
2371 | DELTAREUSESAMEREVS = 'samerevs' |
|
2371 | DELTAREUSESAMEREVS = 'samerevs' | |
2372 | DELTAREUSENEVER = 'never' |
|
2372 | DELTAREUSENEVER = 'never' | |
2373 |
|
2373 | |||
2374 | DELTAREUSEFULLADD = 'fulladd' |
|
2374 | DELTAREUSEFULLADD = 'fulladd' | |
2375 |
|
2375 | |||
2376 | DELTAREUSEALL = {'always', 'samerevs', 'never', 'fulladd'} |
|
2376 | DELTAREUSEALL = {'always', 'samerevs', 'never', 'fulladd'} | |
2377 |
|
2377 | |||
2378 | def clone(self, tr, destrevlog, addrevisioncb=None, |
|
2378 | def clone(self, tr, destrevlog, addrevisioncb=None, | |
2379 | deltareuse=DELTAREUSESAMEREVS, forcedeltabothparents=None): |
|
2379 | deltareuse=DELTAREUSESAMEREVS, forcedeltabothparents=None): | |
2380 | """Copy this revlog to another, possibly with format changes. |
|
2380 | """Copy this revlog to another, possibly with format changes. | |
2381 |
|
2381 | |||
2382 | The destination revlog will contain the same revisions and nodes. |
|
2382 | The destination revlog will contain the same revisions and nodes. | |
2383 | However, it may not be bit-for-bit identical due to e.g. delta encoding |
|
2383 | However, it may not be bit-for-bit identical due to e.g. delta encoding | |
2384 | differences. |
|
2384 | differences. | |
2385 |
|
2385 | |||
2386 | The ``deltareuse`` argument control how deltas from the existing revlog |
|
2386 | The ``deltareuse`` argument control how deltas from the existing revlog | |
2387 | are preserved in the destination revlog. The argument can have the |
|
2387 | are preserved in the destination revlog. The argument can have the | |
2388 | following values: |
|
2388 | following values: | |
2389 |
|
2389 | |||
2390 | DELTAREUSEALWAYS |
|
2390 | DELTAREUSEALWAYS | |
2391 | Deltas will always be reused (if possible), even if the destination |
|
2391 | Deltas will always be reused (if possible), even if the destination | |
2392 | revlog would not select the same revisions for the delta. This is the |
|
2392 | revlog would not select the same revisions for the delta. This is the | |
2393 | fastest mode of operation. |
|
2393 | fastest mode of operation. | |
2394 | DELTAREUSESAMEREVS |
|
2394 | DELTAREUSESAMEREVS | |
2395 | Deltas will be reused if the destination revlog would pick the same |
|
2395 | Deltas will be reused if the destination revlog would pick the same | |
2396 | revisions for the delta. This mode strikes a balance between speed |
|
2396 | revisions for the delta. This mode strikes a balance between speed | |
2397 | and optimization. |
|
2397 | and optimization. | |
2398 | DELTAREUSENEVER |
|
2398 | DELTAREUSENEVER | |
2399 | Deltas will never be reused. This is the slowest mode of execution. |
|
2399 | Deltas will never be reused. This is the slowest mode of execution. | |
2400 | This mode can be used to recompute deltas (e.g. if the diff/delta |
|
2400 | This mode can be used to recompute deltas (e.g. if the diff/delta | |
2401 | algorithm changes). |
|
2401 | algorithm changes). | |
2402 |
|
2402 | |||
2403 | Delta computation can be slow, so the choice of delta reuse policy can |
|
2403 | Delta computation can be slow, so the choice of delta reuse policy can | |
2404 | significantly affect run time. |
|
2404 | significantly affect run time. | |
2405 |
|
2405 | |||
2406 | The default policy (``DELTAREUSESAMEREVS``) strikes a balance between |
|
2406 | The default policy (``DELTAREUSESAMEREVS``) strikes a balance between | |
2407 | two extremes. Deltas will be reused if they are appropriate. But if the |
|
2407 | two extremes. Deltas will be reused if they are appropriate. But if the | |
2408 | delta could choose a better revision, it will do so. This means if you |
|
2408 | delta could choose a better revision, it will do so. This means if you | |
2409 | are converting a non-generaldelta revlog to a generaldelta revlog, |
|
2409 | are converting a non-generaldelta revlog to a generaldelta revlog, | |
2410 | deltas will be recomputed if the delta's parent isn't a parent of the |
|
2410 | deltas will be recomputed if the delta's parent isn't a parent of the | |
2411 | revision. |
|
2411 | revision. | |
2412 |
|
2412 | |||
2413 | In addition to the delta policy, the ``forcedeltabothparents`` |
|
2413 | In addition to the delta policy, the ``forcedeltabothparents`` | |
2414 | argument controls whether to force compute deltas against both parents |
|
2414 | argument controls whether to force compute deltas against both parents | |
2415 | for merges. By default, the current default is used. |
|
2415 | for merges. By default, the current default is used. | |
2416 | """ |
|
2416 | """ | |
2417 | if deltareuse not in self.DELTAREUSEALL: |
|
2417 | if deltareuse not in self.DELTAREUSEALL: | |
2418 | raise ValueError(_('value for deltareuse invalid: %s') % deltareuse) |
|
2418 | raise ValueError(_('value for deltareuse invalid: %s') % deltareuse) | |
2419 |
|
2419 | |||
2420 | if len(destrevlog): |
|
2420 | if len(destrevlog): | |
2421 | raise ValueError(_('destination revlog is not empty')) |
|
2421 | raise ValueError(_('destination revlog is not empty')) | |
2422 |
|
2422 | |||
2423 | if getattr(self, 'filteredrevs', None): |
|
2423 | if getattr(self, 'filteredrevs', None): | |
2424 | raise ValueError(_('source revlog has filtered revisions')) |
|
2424 | raise ValueError(_('source revlog has filtered revisions')) | |
2425 | if getattr(destrevlog, 'filteredrevs', None): |
|
2425 | if getattr(destrevlog, 'filteredrevs', None): | |
2426 | raise ValueError(_('destination revlog has filtered revisions')) |
|
2426 | raise ValueError(_('destination revlog has filtered revisions')) | |
2427 |
|
2427 | |||
2428 | # lazydelta and lazydeltabase controls whether to reuse a cached delta, |
|
2428 | # lazydelta and lazydeltabase controls whether to reuse a cached delta, | |
2429 | # if possible. |
|
2429 | # if possible. | |
2430 | oldlazydelta = destrevlog._lazydelta |
|
2430 | oldlazydelta = destrevlog._lazydelta | |
2431 | oldlazydeltabase = destrevlog._lazydeltabase |
|
2431 | oldlazydeltabase = destrevlog._lazydeltabase | |
2432 | oldamd = destrevlog._deltabothparents |
|
2432 | oldamd = destrevlog._deltabothparents | |
2433 |
|
2433 | |||
2434 | try: |
|
2434 | try: | |
2435 | if deltareuse == self.DELTAREUSEALWAYS: |
|
2435 | if deltareuse == self.DELTAREUSEALWAYS: | |
2436 | destrevlog._lazydeltabase = True |
|
2436 | destrevlog._lazydeltabase = True | |
2437 | destrevlog._lazydelta = True |
|
2437 | destrevlog._lazydelta = True | |
2438 | elif deltareuse == self.DELTAREUSESAMEREVS: |
|
2438 | elif deltareuse == self.DELTAREUSESAMEREVS: | |
2439 | destrevlog._lazydeltabase = False |
|
2439 | destrevlog._lazydeltabase = False | |
2440 | destrevlog._lazydelta = True |
|
2440 | destrevlog._lazydelta = True | |
2441 | elif deltareuse == self.DELTAREUSENEVER: |
|
2441 | elif deltareuse == self.DELTAREUSENEVER: | |
2442 | destrevlog._lazydeltabase = False |
|
2442 | destrevlog._lazydeltabase = False | |
2443 | destrevlog._lazydelta = False |
|
2443 | destrevlog._lazydelta = False | |
2444 |
|
2444 | |||
2445 | destrevlog._deltabothparents = forcedeltabothparents or oldamd |
|
2445 | destrevlog._deltabothparents = forcedeltabothparents or oldamd | |
2446 |
|
2446 | |||
2447 | deltacomputer = deltautil.deltacomputer(destrevlog) |
|
2447 | deltacomputer = deltautil.deltacomputer(destrevlog) | |
2448 | index = self.index |
|
2448 | index = self.index | |
2449 | for rev in self: |
|
2449 | for rev in self: | |
2450 | entry = index[rev] |
|
2450 | entry = index[rev] | |
2451 |
|
2451 | |||
2452 | # Some classes override linkrev to take filtered revs into |
|
2452 | # Some classes override linkrev to take filtered revs into | |
2453 | # account. Use raw entry from index. |
|
2453 | # account. Use raw entry from index. | |
2454 | flags = entry[0] & 0xffff |
|
2454 | flags = entry[0] & 0xffff | |
2455 | linkrev = entry[4] |
|
2455 | linkrev = entry[4] | |
2456 | p1 = index[entry[5]][7] |
|
2456 | p1 = index[entry[5]][7] | |
2457 | p2 = index[entry[6]][7] |
|
2457 | p2 = index[entry[6]][7] | |
2458 | node = entry[7] |
|
2458 | node = entry[7] | |
2459 |
|
2459 | |||
2460 | # (Possibly) reuse the delta from the revlog if allowed and |
|
2460 | # (Possibly) reuse the delta from the revlog if allowed and | |
2461 | # the revlog chunk is a delta. |
|
2461 | # the revlog chunk is a delta. | |
2462 | cachedelta = None |
|
2462 | cachedelta = None | |
2463 | rawtext = None |
|
2463 | rawtext = None | |
2464 | if destrevlog._lazydelta: |
|
2464 | if destrevlog._lazydelta: | |
2465 | dp = self.deltaparent(rev) |
|
2465 | dp = self.deltaparent(rev) | |
2466 | if dp != nullrev: |
|
2466 | if dp != nullrev: | |
2467 | cachedelta = (dp, bytes(self._chunk(rev))) |
|
2467 | cachedelta = (dp, bytes(self._chunk(rev))) | |
2468 |
|
2468 | |||
2469 | if not cachedelta: |
|
2469 | if not cachedelta: | |
2470 | rawtext = self.revision(rev, raw=True) |
|
2470 | rawtext = self.revision(rev, raw=True) | |
2471 |
|
2471 | |||
2472 |
|
2472 | |||
2473 | if deltareuse == self.DELTAREUSEFULLADD: |
|
2473 | if deltareuse == self.DELTAREUSEFULLADD: | |
2474 | destrevlog.addrevision(rawtext, tr, linkrev, p1, p2, |
|
2474 | destrevlog.addrevision(rawtext, tr, linkrev, p1, p2, | |
2475 | cachedelta=cachedelta, |
|
2475 | cachedelta=cachedelta, | |
2476 | node=node, flags=flags, |
|
2476 | node=node, flags=flags, | |
2477 | deltacomputer=deltacomputer) |
|
2477 | deltacomputer=deltacomputer) | |
2478 | else: |
|
2478 | else: | |
2479 | ifh = destrevlog.opener(destrevlog.indexfile, 'a+', |
|
2479 | ifh = destrevlog.opener(destrevlog.indexfile, 'a+', | |
2480 | checkambig=False) |
|
2480 | checkambig=False) | |
2481 | dfh = None |
|
2481 | dfh = None | |
2482 | if not destrevlog._inline: |
|
2482 | if not destrevlog._inline: | |
2483 | dfh = destrevlog.opener(destrevlog.datafile, 'a+') |
|
2483 | dfh = destrevlog.opener(destrevlog.datafile, 'a+') | |
2484 | try: |
|
2484 | try: | |
2485 | destrevlog._addrevision(node, rawtext, tr, linkrev, p1, |
|
2485 | destrevlog._addrevision(node, rawtext, tr, linkrev, p1, | |
2486 | p2, flags, cachedelta, ifh, dfh, |
|
2486 | p2, flags, cachedelta, ifh, dfh, | |
2487 | deltacomputer=deltacomputer) |
|
2487 | deltacomputer=deltacomputer) | |
2488 | finally: |
|
2488 | finally: | |
2489 | if dfh: |
|
2489 | if dfh: | |
2490 | dfh.close() |
|
2490 | dfh.close() | |
2491 | ifh.close() |
|
2491 | ifh.close() | |
2492 |
|
2492 | |||
2493 | if addrevisioncb: |
|
2493 | if addrevisioncb: | |
2494 | addrevisioncb(self, rev, node) |
|
2494 | addrevisioncb(self, rev, node) | |
2495 | finally: |
|
2495 | finally: | |
2496 | destrevlog._lazydelta = oldlazydelta |
|
2496 | destrevlog._lazydelta = oldlazydelta | |
2497 | destrevlog._lazydeltabase = oldlazydeltabase |
|
2497 | destrevlog._lazydeltabase = oldlazydeltabase | |
2498 | destrevlog._deltabothparents = oldamd |
|
2498 | destrevlog._deltabothparents = oldamd | |
2499 |
|
2499 | |||
2500 | def censorrevision(self, tr, censornode, tombstone=b''): |
|
2500 | def censorrevision(self, tr, censornode, tombstone=b''): | |
2501 | if (self.version & 0xFFFF) == REVLOGV0: |
|
2501 | if (self.version & 0xFFFF) == REVLOGV0: | |
2502 | raise error.RevlogError(_('cannot censor with version %d revlogs') % |
|
2502 | raise error.RevlogError(_('cannot censor with version %d revlogs') % | |
2503 | self.version) |
|
2503 | self.version) | |
2504 |
|
2504 | |||
2505 | censorrev = self.rev(censornode) |
|
2505 | censorrev = self.rev(censornode) | |
2506 | tombstone = storageutil.packmeta({b'censored': tombstone}, b'') |
|
2506 | tombstone = storageutil.packmeta({b'censored': tombstone}, b'') | |
2507 |
|
2507 | |||
2508 | if len(tombstone) > self.rawsize(censorrev): |
|
2508 | if len(tombstone) > self.rawsize(censorrev): | |
2509 | raise error.Abort(_('censor tombstone must be no longer than ' |
|
2509 | raise error.Abort(_('censor tombstone must be no longer than ' | |
2510 | 'censored data')) |
|
2510 | 'censored data')) | |
2511 |
|
2511 | |||
2512 | # Rewriting the revlog in place is hard. Our strategy for censoring is |
|
2512 | # Rewriting the revlog in place is hard. Our strategy for censoring is | |
2513 | # to create a new revlog, copy all revisions to it, then replace the |
|
2513 | # to create a new revlog, copy all revisions to it, then replace the | |
2514 | # revlogs on transaction close. |
|
2514 | # revlogs on transaction close. | |
2515 |
|
2515 | |||
2516 | newindexfile = self.indexfile + b'.tmpcensored' |
|
2516 | newindexfile = self.indexfile + b'.tmpcensored' | |
2517 | newdatafile = self.datafile + b'.tmpcensored' |
|
2517 | newdatafile = self.datafile + b'.tmpcensored' | |
2518 |
|
2518 | |||
2519 | # This is a bit dangerous. We could easily have a mismatch of state. |
|
2519 | # This is a bit dangerous. We could easily have a mismatch of state. | |
2520 | newrl = revlog(self.opener, newindexfile, newdatafile, |
|
2520 | newrl = revlog(self.opener, newindexfile, newdatafile, | |
2521 | censorable=True) |
|
2521 | censorable=True) | |
2522 | newrl.version = self.version |
|
2522 | newrl.version = self.version | |
2523 | newrl._generaldelta = self._generaldelta |
|
2523 | newrl._generaldelta = self._generaldelta | |
2524 | newrl._io = self._io |
|
2524 | newrl._io = self._io | |
2525 |
|
2525 | |||
2526 | for rev in self.revs(): |
|
2526 | for rev in self.revs(): | |
2527 | node = self.node(rev) |
|
2527 | node = self.node(rev) | |
2528 | p1, p2 = self.parents(node) |
|
2528 | p1, p2 = self.parents(node) | |
2529 |
|
2529 | |||
2530 | if rev == censorrev: |
|
2530 | if rev == censorrev: | |
2531 | newrl.addrawrevision(tombstone, tr, self.linkrev(censorrev), |
|
2531 | newrl.addrawrevision(tombstone, tr, self.linkrev(censorrev), | |
2532 | p1, p2, censornode, REVIDX_ISCENSORED) |
|
2532 | p1, p2, censornode, REVIDX_ISCENSORED) | |
2533 |
|
2533 | |||
2534 | if newrl.deltaparent(rev) != nullrev: |
|
2534 | if newrl.deltaparent(rev) != nullrev: | |
2535 | raise error.Abort(_('censored revision stored as delta; ' |
|
2535 | raise error.Abort(_('censored revision stored as delta; ' | |
2536 | 'cannot censor'), |
|
2536 | 'cannot censor'), | |
2537 | hint=_('censoring of revlogs is not ' |
|
2537 | hint=_('censoring of revlogs is not ' | |
2538 | 'fully implemented; please report ' |
|
2538 | 'fully implemented; please report ' | |
2539 | 'this bug')) |
|
2539 | 'this bug')) | |
2540 | continue |
|
2540 | continue | |
2541 |
|
2541 | |||
2542 | if self.iscensored(rev): |
|
2542 | if self.iscensored(rev): | |
2543 | if self.deltaparent(rev) != nullrev: |
|
2543 | if self.deltaparent(rev) != nullrev: | |
2544 | raise error.Abort(_('cannot censor due to censored ' |
|
2544 | raise error.Abort(_('cannot censor due to censored ' | |
2545 | 'revision having delta stored')) |
|
2545 | 'revision having delta stored')) | |
2546 | rawtext = self._chunk(rev) |
|
2546 | rawtext = self._chunk(rev) | |
2547 | else: |
|
2547 | else: | |
2548 | rawtext = self.revision(rev, raw=True) |
|
2548 | rawtext = self.revision(rev, raw=True) | |
2549 |
|
2549 | |||
2550 | newrl.addrawrevision(rawtext, tr, self.linkrev(rev), p1, p2, node, |
|
2550 | newrl.addrawrevision(rawtext, tr, self.linkrev(rev), p1, p2, node, | |
2551 | self.flags(rev)) |
|
2551 | self.flags(rev)) | |
2552 |
|
2552 | |||
2553 | tr.addbackup(self.indexfile, location='store') |
|
2553 | tr.addbackup(self.indexfile, location='store') | |
2554 | if not self._inline: |
|
2554 | if not self._inline: | |
2555 | tr.addbackup(self.datafile, location='store') |
|
2555 | tr.addbackup(self.datafile, location='store') | |
2556 |
|
2556 | |||
2557 | self.opener.rename(newrl.indexfile, self.indexfile) |
|
2557 | self.opener.rename(newrl.indexfile, self.indexfile) | |
2558 | if not self._inline: |
|
2558 | if not self._inline: | |
2559 | self.opener.rename(newrl.datafile, self.datafile) |
|
2559 | self.opener.rename(newrl.datafile, self.datafile) | |
2560 |
|
2560 | |||
2561 | self.clearcaches() |
|
2561 | self.clearcaches() | |
2562 | self._loadindex() |
|
2562 | self._loadindex() | |
2563 |
|
2563 | |||
2564 | def verifyintegrity(self, state): |
|
2564 | def verifyintegrity(self, state): | |
2565 | """Verifies the integrity of the revlog. |
|
2565 | """Verifies the integrity of the revlog. | |
2566 |
|
2566 | |||
2567 | Yields ``revlogproblem`` instances describing problems that are |
|
2567 | Yields ``revlogproblem`` instances describing problems that are | |
2568 | found. |
|
2568 | found. | |
2569 | """ |
|
2569 | """ | |
2570 | dd, di = self.checksize() |
|
2570 | dd, di = self.checksize() | |
2571 | if dd: |
|
2571 | if dd: | |
2572 | yield revlogproblem(error=_('data length off by %d bytes') % dd) |
|
2572 | yield revlogproblem(error=_('data length off by %d bytes') % dd) | |
2573 | if di: |
|
2573 | if di: | |
2574 | yield revlogproblem(error=_('index contains %d extra bytes') % di) |
|
2574 | yield revlogproblem(error=_('index contains %d extra bytes') % di) | |
2575 |
|
2575 | |||
2576 | version = self.version & 0xFFFF |
|
2576 | version = self.version & 0xFFFF | |
2577 |
|
2577 | |||
2578 | # The verifier tells us what version revlog we should be. |
|
2578 | # The verifier tells us what version revlog we should be. | |
2579 | if version != state['expectedversion']: |
|
2579 | if version != state['expectedversion']: | |
2580 | yield revlogproblem( |
|
2580 | yield revlogproblem( | |
2581 | warning=_("warning: '%s' uses revlog format %d; expected %d") % |
|
2581 | warning=_("warning: '%s' uses revlog format %d; expected %d") % | |
2582 | (self.indexfile, version, state['expectedversion'])) |
|
2582 | (self.indexfile, version, state['expectedversion'])) | |
2583 |
|
2583 | |||
2584 | state['skipread'] = set() |
|
2584 | state['skipread'] = set() | |
2585 |
|
2585 | |||
2586 | for rev in self: |
|
2586 | for rev in self: | |
2587 | node = self.node(rev) |
|
2587 | node = self.node(rev) | |
2588 |
|
2588 | |||
2589 | # Verify contents. 4 cases to care about: |
|
2589 | # Verify contents. 4 cases to care about: | |
2590 | # |
|
2590 | # | |
2591 | # common: the most common case |
|
2591 | # common: the most common case | |
2592 | # rename: with a rename |
|
2592 | # rename: with a rename | |
2593 | # meta: file content starts with b'\1\n', the metadata |
|
2593 | # meta: file content starts with b'\1\n', the metadata | |
2594 | # header defined in filelog.py, but without a rename |
|
2594 | # header defined in filelog.py, but without a rename | |
2595 | # ext: content stored externally |
|
2595 | # ext: content stored externally | |
2596 | # |
|
2596 | # | |
2597 | # More formally, their differences are shown below: |
|
2597 | # More formally, their differences are shown below: | |
2598 | # |
|
2598 | # | |
2599 | # | common | rename | meta | ext |
|
2599 | # | common | rename | meta | ext | |
2600 | # ------------------------------------------------------- |
|
2600 | # ------------------------------------------------------- | |
2601 | # flags() | 0 | 0 | 0 | not 0 |
|
2601 | # flags() | 0 | 0 | 0 | not 0 | |
2602 | # renamed() | False | True | False | ? |
|
2602 | # renamed() | False | True | False | ? | |
2603 | # rawtext[0:2]=='\1\n'| False | True | True | ? |
|
2603 | # rawtext[0:2]=='\1\n'| False | True | True | ? | |
2604 | # |
|
2604 | # | |
2605 | # "rawtext" means the raw text stored in revlog data, which |
|
2605 | # "rawtext" means the raw text stored in revlog data, which | |
2606 | # could be retrieved by "revision(rev, raw=True)". "text" |
|
2606 | # could be retrieved by "revision(rev, raw=True)". "text" | |
2607 | # mentioned below is "revision(rev, raw=False)". |
|
2607 | # mentioned below is "revision(rev, raw=False)". | |
2608 | # |
|
2608 | # | |
2609 | # There are 3 different lengths stored physically: |
|
2609 | # There are 3 different lengths stored physically: | |
2610 | # 1. L1: rawsize, stored in revlog index |
|
2610 | # 1. L1: rawsize, stored in revlog index | |
2611 | # 2. L2: len(rawtext), stored in revlog data |
|
2611 | # 2. L2: len(rawtext), stored in revlog data | |
2612 | # 3. L3: len(text), stored in revlog data if flags==0, or |
|
2612 | # 3. L3: len(text), stored in revlog data if flags==0, or | |
2613 | # possibly somewhere else if flags!=0 |
|
2613 | # possibly somewhere else if flags!=0 | |
2614 | # |
|
2614 | # | |
2615 | # L1 should be equal to L2. L3 could be different from them. |
|
2615 | # L1 should be equal to L2. L3 could be different from them. | |
2616 | # "text" may or may not affect commit hash depending on flag |
|
2616 | # "text" may or may not affect commit hash depending on flag | |
2617 | # processors (see revlog.addflagprocessor). |
|
2617 | # processors (see revlog.addflagprocessor). | |
2618 | # |
|
2618 | # | |
2619 | # | common | rename | meta | ext |
|
2619 | # | common | rename | meta | ext | |
2620 | # ------------------------------------------------- |
|
2620 | # ------------------------------------------------- | |
2621 | # rawsize() | L1 | L1 | L1 | L1 |
|
2621 | # rawsize() | L1 | L1 | L1 | L1 | |
2622 | # size() | L1 | L2-LM | L1(*) | L1 (?) |
|
2622 | # size() | L1 | L2-LM | L1(*) | L1 (?) | |
2623 | # len(rawtext) | L2 | L2 | L2 | L2 |
|
2623 | # len(rawtext) | L2 | L2 | L2 | L2 | |
2624 | # len(text) | L2 | L2 | L2 | L3 |
|
2624 | # len(text) | L2 | L2 | L2 | L3 | |
2625 | # len(read()) | L2 | L2-LM | L2-LM | L3 (?) |
|
2625 | # len(read()) | L2 | L2-LM | L2-LM | L3 (?) | |
2626 | # |
|
2626 | # | |
2627 | # LM: length of metadata, depending on rawtext |
|
2627 | # LM: length of metadata, depending on rawtext | |
2628 | # (*): not ideal, see comment in filelog.size |
|
2628 | # (*): not ideal, see comment in filelog.size | |
2629 | # (?): could be "- len(meta)" if the resolved content has |
|
2629 | # (?): could be "- len(meta)" if the resolved content has | |
2630 | # rename metadata |
|
2630 | # rename metadata | |
2631 | # |
|
2631 | # | |
2632 | # Checks needed to be done: |
|
2632 | # Checks needed to be done: | |
2633 | # 1. length check: L1 == L2, in all cases. |
|
2633 | # 1. length check: L1 == L2, in all cases. | |
2634 | # 2. hash check: depending on flag processor, we may need to |
|
2634 | # 2. hash check: depending on flag processor, we may need to | |
2635 | # use either "text" (external), or "rawtext" (in revlog). |
|
2635 | # use either "text" (external), or "rawtext" (in revlog). | |
2636 |
|
2636 | |||
2637 | try: |
|
2637 | try: | |
2638 | skipflags = state.get('skipflags', 0) |
|
2638 | skipflags = state.get('skipflags', 0) | |
2639 | if skipflags: |
|
2639 | if skipflags: | |
2640 | skipflags &= self.flags(rev) |
|
2640 | skipflags &= self.flags(rev) | |
2641 |
|
2641 | |||
2642 | if skipflags: |
|
2642 | if skipflags: | |
2643 | state['skipread'].add(node) |
|
2643 | state['skipread'].add(node) | |
2644 | else: |
|
2644 | else: | |
2645 | # Side-effect: read content and verify hash. |
|
2645 | # Side-effect: read content and verify hash. | |
2646 | self.revision(node) |
|
2646 | self.revision(node) | |
2647 |
|
2647 | |||
2648 | l1 = self.rawsize(rev) |
|
2648 | l1 = self.rawsize(rev) | |
2649 | l2 = len(self.revision(node, raw=True)) |
|
2649 | l2 = len(self.revision(node, raw=True)) | |
2650 |
|
2650 | |||
2651 | if l1 != l2: |
|
2651 | if l1 != l2: | |
2652 | yield revlogproblem( |
|
2652 | yield revlogproblem( | |
2653 | error=_('unpacked size is %d, %d expected') % (l2, l1), |
|
2653 | error=_('unpacked size is %d, %d expected') % (l2, l1), | |
2654 | node=node) |
|
2654 | node=node) | |
2655 |
|
2655 | |||
2656 | except error.CensoredNodeError: |
|
2656 | except error.CensoredNodeError: | |
2657 | if state['erroroncensored']: |
|
2657 | if state['erroroncensored']: | |
2658 | yield revlogproblem(error=_('censored file data'), |
|
2658 | yield revlogproblem(error=_('censored file data'), | |
2659 | node=node) |
|
2659 | node=node) | |
2660 | state['skipread'].add(node) |
|
2660 | state['skipread'].add(node) | |
2661 | except Exception as e: |
|
2661 | except Exception as e: | |
2662 | yield revlogproblem( |
|
2662 | yield revlogproblem( | |
2663 | error=_('unpacking %s: %s') % (short(node), |
|
2663 | error=_('unpacking %s: %s') % (short(node), | |
2664 | stringutil.forcebytestr(e)), |
|
2664 | stringutil.forcebytestr(e)), | |
2665 | node=node) |
|
2665 | node=node) | |
2666 | state['skipread'].add(node) |
|
2666 | state['skipread'].add(node) | |
2667 |
|
2667 | |||
2668 | def storageinfo(self, exclusivefiles=False, sharedfiles=False, |
|
2668 | def storageinfo(self, exclusivefiles=False, sharedfiles=False, | |
2669 | revisionscount=False, trackedsize=False, |
|
2669 | revisionscount=False, trackedsize=False, | |
2670 | storedsize=False): |
|
2670 | storedsize=False): | |
2671 | d = {} |
|
2671 | d = {} | |
2672 |
|
2672 | |||
2673 | if exclusivefiles: |
|
2673 | if exclusivefiles: | |
2674 | d['exclusivefiles'] = [(self.opener, self.indexfile)] |
|
2674 | d['exclusivefiles'] = [(self.opener, self.indexfile)] | |
2675 | if not self._inline: |
|
2675 | if not self._inline: | |
2676 | d['exclusivefiles'].append((self.opener, self.datafile)) |
|
2676 | d['exclusivefiles'].append((self.opener, self.datafile)) | |
2677 |
|
2677 | |||
2678 | if sharedfiles: |
|
2678 | if sharedfiles: | |
2679 | d['sharedfiles'] = [] |
|
2679 | d['sharedfiles'] = [] | |
2680 |
|
2680 | |||
2681 | if revisionscount: |
|
2681 | if revisionscount: | |
2682 | d['revisionscount'] = len(self) |
|
2682 | d['revisionscount'] = len(self) | |
2683 |
|
2683 | |||
2684 | if trackedsize: |
|
2684 | if trackedsize: | |
2685 | d['trackedsize'] = sum(map(self.rawsize, iter(self))) |
|
2685 | d['trackedsize'] = sum(map(self.rawsize, iter(self))) | |
2686 |
|
2686 | |||
2687 | if storedsize: |
|
2687 | if storedsize: | |
2688 | d['storedsize'] = sum(self.opener.stat(path).st_size |
|
2688 | d['storedsize'] = sum(self.opener.stat(path).st_size | |
2689 | for path in self.files()) |
|
2689 | for path in self.files()) | |
2690 |
|
2690 | |||
2691 | return d |
|
2691 | return d |
General Comments 0
You need to be logged in to leave comments.
Login now