##// END OF EJS Templates
revlog.py: always return tuples from parents and parentrevs...
Alexis S. L. Carvalho -
r3508:0aef94f4 default
parent child Browse files
Show More
@@ -1,1278 +1,1278 b''
1 """
1 """
2 revlog.py - storage back-end for mercurial
2 revlog.py - storage back-end for mercurial
3
3
4 This provides efficient delta storage with O(1) retrieve and append
4 This provides efficient delta storage with O(1) retrieve and append
5 and O(changes) merge between branches
5 and O(changes) merge between branches
6
6
7 Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
7 Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
8
8
9 This software may be used and distributed according to the terms
9 This software may be used and distributed according to the terms
10 of the GNU General Public License, incorporated herein by reference.
10 of the GNU General Public License, incorporated herein by reference.
11 """
11 """
12
12
13 from node import *
13 from node import *
14 from i18n import gettext as _
14 from i18n import gettext as _
15 from demandload import demandload
15 from demandload import demandload
16 demandload(globals(), "binascii changegroup errno ancestor mdiff os")
16 demandload(globals(), "binascii changegroup errno ancestor mdiff os")
17 demandload(globals(), "sha struct util zlib")
17 demandload(globals(), "sha struct util zlib")
18
18
19 # revlog version strings
19 # revlog version strings
20 REVLOGV0 = 0
20 REVLOGV0 = 0
21 REVLOGNG = 1
21 REVLOGNG = 1
22
22
23 # revlog flags
23 # revlog flags
24 REVLOGNGINLINEDATA = (1 << 16)
24 REVLOGNGINLINEDATA = (1 << 16)
25 REVLOG_DEFAULT_FLAGS = REVLOGNGINLINEDATA
25 REVLOG_DEFAULT_FLAGS = REVLOGNGINLINEDATA
26
26
27 REVLOG_DEFAULT_FORMAT = REVLOGNG
27 REVLOG_DEFAULT_FORMAT = REVLOGNG
28 REVLOG_DEFAULT_VERSION = REVLOG_DEFAULT_FORMAT | REVLOG_DEFAULT_FLAGS
28 REVLOG_DEFAULT_VERSION = REVLOG_DEFAULT_FORMAT | REVLOG_DEFAULT_FLAGS
29
29
30 def flagstr(flag):
30 def flagstr(flag):
31 if flag == "inline":
31 if flag == "inline":
32 return REVLOGNGINLINEDATA
32 return REVLOGNGINLINEDATA
33 raise RevlogError(_("unknown revlog flag %s" % flag))
33 raise RevlogError(_("unknown revlog flag %s" % flag))
34
34
35 def hash(text, p1, p2):
35 def hash(text, p1, p2):
36 """generate a hash from the given text and its parent hashes
36 """generate a hash from the given text and its parent hashes
37
37
38 This hash combines both the current file contents and its history
38 This hash combines both the current file contents and its history
39 in a manner that makes it easy to distinguish nodes with the same
39 in a manner that makes it easy to distinguish nodes with the same
40 content in the revision graph.
40 content in the revision graph.
41 """
41 """
42 l = [p1, p2]
42 l = [p1, p2]
43 l.sort()
43 l.sort()
44 s = sha.new(l[0])
44 s = sha.new(l[0])
45 s.update(l[1])
45 s.update(l[1])
46 s.update(text)
46 s.update(text)
47 return s.digest()
47 return s.digest()
48
48
49 def compress(text):
49 def compress(text):
50 """ generate a possibly-compressed representation of text """
50 """ generate a possibly-compressed representation of text """
51 if not text: return ("", text)
51 if not text: return ("", text)
52 if len(text) < 44:
52 if len(text) < 44:
53 if text[0] == '\0': return ("", text)
53 if text[0] == '\0': return ("", text)
54 return ('u', text)
54 return ('u', text)
55 bin = zlib.compress(text)
55 bin = zlib.compress(text)
56 if len(bin) > len(text):
56 if len(bin) > len(text):
57 if text[0] == '\0': return ("", text)
57 if text[0] == '\0': return ("", text)
58 return ('u', text)
58 return ('u', text)
59 return ("", bin)
59 return ("", bin)
60
60
61 def decompress(bin):
61 def decompress(bin):
62 """ decompress the given input """
62 """ decompress the given input """
63 if not bin: return bin
63 if not bin: return bin
64 t = bin[0]
64 t = bin[0]
65 if t == '\0': return bin
65 if t == '\0': return bin
66 if t == 'x': return zlib.decompress(bin)
66 if t == 'x': return zlib.decompress(bin)
67 if t == 'u': return bin[1:]
67 if t == 'u': return bin[1:]
68 raise RevlogError(_("unknown compression type %r") % t)
68 raise RevlogError(_("unknown compression type %r") % t)
69
69
70 indexformatv0 = ">4l20s20s20s"
70 indexformatv0 = ">4l20s20s20s"
71 v0shaoffset = 56
71 v0shaoffset = 56
72 # index ng:
72 # index ng:
73 # 6 bytes offset
73 # 6 bytes offset
74 # 2 bytes flags
74 # 2 bytes flags
75 # 4 bytes compressed length
75 # 4 bytes compressed length
76 # 4 bytes uncompressed length
76 # 4 bytes uncompressed length
77 # 4 bytes: base rev
77 # 4 bytes: base rev
78 # 4 bytes link rev
78 # 4 bytes link rev
79 # 4 bytes parent 1 rev
79 # 4 bytes parent 1 rev
80 # 4 bytes parent 2 rev
80 # 4 bytes parent 2 rev
81 # 32 bytes: nodeid
81 # 32 bytes: nodeid
82 indexformatng = ">Qiiiiii20s12x"
82 indexformatng = ">Qiiiiii20s12x"
83 ngshaoffset = 32
83 ngshaoffset = 32
84 versionformat = ">i"
84 versionformat = ">i"
85
85
86 class lazyparser(object):
86 class lazyparser(object):
87 """
87 """
88 this class avoids the need to parse the entirety of large indices
88 this class avoids the need to parse the entirety of large indices
89 """
89 """
90
90
91 # lazyparser is not safe to use on windows if win32 extensions not
91 # lazyparser is not safe to use on windows if win32 extensions not
92 # available. it keeps file handle open, which make it not possible
92 # available. it keeps file handle open, which make it not possible
93 # to break hardlinks on local cloned repos.
93 # to break hardlinks on local cloned repos.
94 safe_to_use = os.name != 'nt' or (not util.is_win_9x() and
94 safe_to_use = os.name != 'nt' or (not util.is_win_9x() and
95 hasattr(util, 'win32api'))
95 hasattr(util, 'win32api'))
96
96
97 def __init__(self, dataf, size, indexformat, shaoffset):
97 def __init__(self, dataf, size, indexformat, shaoffset):
98 self.dataf = dataf
98 self.dataf = dataf
99 self.format = indexformat
99 self.format = indexformat
100 self.s = struct.calcsize(indexformat)
100 self.s = struct.calcsize(indexformat)
101 self.indexformat = indexformat
101 self.indexformat = indexformat
102 self.datasize = size
102 self.datasize = size
103 self.l = size/self.s
103 self.l = size/self.s
104 self.index = [None] * self.l
104 self.index = [None] * self.l
105 self.map = {nullid: -1}
105 self.map = {nullid: -1}
106 self.allmap = 0
106 self.allmap = 0
107 self.all = 0
107 self.all = 0
108 self.mapfind_count = 0
108 self.mapfind_count = 0
109 self.shaoffset = shaoffset
109 self.shaoffset = shaoffset
110
110
111 def loadmap(self):
111 def loadmap(self):
112 """
112 """
113 during a commit, we need to make sure the rev being added is
113 during a commit, we need to make sure the rev being added is
114 not a duplicate. This requires loading the entire index,
114 not a duplicate. This requires loading the entire index,
115 which is fairly slow. loadmap can load up just the node map,
115 which is fairly slow. loadmap can load up just the node map,
116 which takes much less time.
116 which takes much less time.
117 """
117 """
118 if self.allmap: return
118 if self.allmap: return
119 end = self.datasize
119 end = self.datasize
120 self.allmap = 1
120 self.allmap = 1
121 cur = 0
121 cur = 0
122 count = 0
122 count = 0
123 blocksize = self.s * 256
123 blocksize = self.s * 256
124 self.dataf.seek(0)
124 self.dataf.seek(0)
125 while cur < end:
125 while cur < end:
126 data = self.dataf.read(blocksize)
126 data = self.dataf.read(blocksize)
127 off = 0
127 off = 0
128 for x in xrange(256):
128 for x in xrange(256):
129 n = data[off + self.shaoffset:off + self.shaoffset + 20]
129 n = data[off + self.shaoffset:off + self.shaoffset + 20]
130 self.map[n] = count
130 self.map[n] = count
131 count += 1
131 count += 1
132 if count >= self.l:
132 if count >= self.l:
133 break
133 break
134 off += self.s
134 off += self.s
135 cur += blocksize
135 cur += blocksize
136
136
137 def loadblock(self, blockstart, blocksize, data=None):
137 def loadblock(self, blockstart, blocksize, data=None):
138 if self.all: return
138 if self.all: return
139 if data is None:
139 if data is None:
140 self.dataf.seek(blockstart)
140 self.dataf.seek(blockstart)
141 if blockstart + blocksize > self.datasize:
141 if blockstart + blocksize > self.datasize:
142 # the revlog may have grown since we've started running,
142 # the revlog may have grown since we've started running,
143 # but we don't have space in self.index for more entries.
143 # but we don't have space in self.index for more entries.
144 # limit blocksize so that we don't get too much data.
144 # limit blocksize so that we don't get too much data.
145 blocksize = max(self.datasize - blockstart, 0)
145 blocksize = max(self.datasize - blockstart, 0)
146 data = self.dataf.read(blocksize)
146 data = self.dataf.read(blocksize)
147 lend = len(data) / self.s
147 lend = len(data) / self.s
148 i = blockstart / self.s
148 i = blockstart / self.s
149 off = 0
149 off = 0
150 for x in xrange(lend):
150 for x in xrange(lend):
151 if self.index[i + x] == None:
151 if self.index[i + x] == None:
152 b = data[off : off + self.s]
152 b = data[off : off + self.s]
153 self.index[i + x] = b
153 self.index[i + x] = b
154 n = b[self.shaoffset:self.shaoffset + 20]
154 n = b[self.shaoffset:self.shaoffset + 20]
155 self.map[n] = i + x
155 self.map[n] = i + x
156 off += self.s
156 off += self.s
157
157
158 def findnode(self, node):
158 def findnode(self, node):
159 """search backwards through the index file for a specific node"""
159 """search backwards through the index file for a specific node"""
160 if self.allmap: return None
160 if self.allmap: return None
161
161
162 # hg log will cause many many searches for the manifest
162 # hg log will cause many many searches for the manifest
163 # nodes. After we get called a few times, just load the whole
163 # nodes. After we get called a few times, just load the whole
164 # thing.
164 # thing.
165 if self.mapfind_count > 8:
165 if self.mapfind_count > 8:
166 self.loadmap()
166 self.loadmap()
167 if node in self.map:
167 if node in self.map:
168 return node
168 return node
169 return None
169 return None
170 self.mapfind_count += 1
170 self.mapfind_count += 1
171 last = self.l - 1
171 last = self.l - 1
172 while self.index[last] != None:
172 while self.index[last] != None:
173 if last == 0:
173 if last == 0:
174 self.all = 1
174 self.all = 1
175 self.allmap = 1
175 self.allmap = 1
176 return None
176 return None
177 last -= 1
177 last -= 1
178 end = (last + 1) * self.s
178 end = (last + 1) * self.s
179 blocksize = self.s * 256
179 blocksize = self.s * 256
180 while end >= 0:
180 while end >= 0:
181 start = max(end - blocksize, 0)
181 start = max(end - blocksize, 0)
182 self.dataf.seek(start)
182 self.dataf.seek(start)
183 data = self.dataf.read(end - start)
183 data = self.dataf.read(end - start)
184 findend = end - start
184 findend = end - start
185 while True:
185 while True:
186 # we're searching backwards, so weh have to make sure
186 # we're searching backwards, so weh have to make sure
187 # we don't find a changeset where this node is a parent
187 # we don't find a changeset where this node is a parent
188 off = data.rfind(node, 0, findend)
188 off = data.rfind(node, 0, findend)
189 findend = off
189 findend = off
190 if off >= 0:
190 if off >= 0:
191 i = off / self.s
191 i = off / self.s
192 off = i * self.s
192 off = i * self.s
193 n = data[off + self.shaoffset:off + self.shaoffset + 20]
193 n = data[off + self.shaoffset:off + self.shaoffset + 20]
194 if n == node:
194 if n == node:
195 self.map[n] = i + start / self.s
195 self.map[n] = i + start / self.s
196 return node
196 return node
197 else:
197 else:
198 break
198 break
199 end -= blocksize
199 end -= blocksize
200 return None
200 return None
201
201
202 def loadindex(self, i=None, end=None):
202 def loadindex(self, i=None, end=None):
203 if self.all: return
203 if self.all: return
204 all = False
204 all = False
205 if i == None:
205 if i == None:
206 blockstart = 0
206 blockstart = 0
207 blocksize = (512 / self.s) * self.s
207 blocksize = (512 / self.s) * self.s
208 end = self.datasize
208 end = self.datasize
209 all = True
209 all = True
210 else:
210 else:
211 if end:
211 if end:
212 blockstart = i * self.s
212 blockstart = i * self.s
213 end = end * self.s
213 end = end * self.s
214 blocksize = end - blockstart
214 blocksize = end - blockstart
215 else:
215 else:
216 blockstart = (i & ~(32)) * self.s
216 blockstart = (i & ~(32)) * self.s
217 blocksize = self.s * 64
217 blocksize = self.s * 64
218 end = blockstart + blocksize
218 end = blockstart + blocksize
219 while blockstart < end:
219 while blockstart < end:
220 self.loadblock(blockstart, blocksize)
220 self.loadblock(blockstart, blocksize)
221 blockstart += blocksize
221 blockstart += blocksize
222 if all: self.all = True
222 if all: self.all = True
223
223
224 class lazyindex(object):
224 class lazyindex(object):
225 """a lazy version of the index array"""
225 """a lazy version of the index array"""
226 def __init__(self, parser):
226 def __init__(self, parser):
227 self.p = parser
227 self.p = parser
228 def __len__(self):
228 def __len__(self):
229 return len(self.p.index)
229 return len(self.p.index)
230 def load(self, pos):
230 def load(self, pos):
231 if pos < 0:
231 if pos < 0:
232 pos += len(self.p.index)
232 pos += len(self.p.index)
233 self.p.loadindex(pos)
233 self.p.loadindex(pos)
234 return self.p.index[pos]
234 return self.p.index[pos]
235 def __getitem__(self, pos):
235 def __getitem__(self, pos):
236 ret = self.p.index[pos] or self.load(pos)
236 ret = self.p.index[pos] or self.load(pos)
237 if isinstance(ret, str):
237 if isinstance(ret, str):
238 ret = struct.unpack(self.p.indexformat, ret)
238 ret = struct.unpack(self.p.indexformat, ret)
239 return ret
239 return ret
240 def __setitem__(self, pos, item):
240 def __setitem__(self, pos, item):
241 self.p.index[pos] = item
241 self.p.index[pos] = item
242 def __delitem__(self, pos):
242 def __delitem__(self, pos):
243 del self.p.index[pos]
243 del self.p.index[pos]
244 def append(self, e):
244 def append(self, e):
245 self.p.index.append(e)
245 self.p.index.append(e)
246
246
247 class lazymap(object):
247 class lazymap(object):
248 """a lazy version of the node map"""
248 """a lazy version of the node map"""
249 def __init__(self, parser):
249 def __init__(self, parser):
250 self.p = parser
250 self.p = parser
251 def load(self, key):
251 def load(self, key):
252 n = self.p.findnode(key)
252 n = self.p.findnode(key)
253 if n == None:
253 if n == None:
254 raise KeyError(key)
254 raise KeyError(key)
255 def __contains__(self, key):
255 def __contains__(self, key):
256 if key in self.p.map:
256 if key in self.p.map:
257 return True
257 return True
258 self.p.loadmap()
258 self.p.loadmap()
259 return key in self.p.map
259 return key in self.p.map
260 def __iter__(self):
260 def __iter__(self):
261 yield nullid
261 yield nullid
262 for i in xrange(self.p.l):
262 for i in xrange(self.p.l):
263 ret = self.p.index[i]
263 ret = self.p.index[i]
264 if not ret:
264 if not ret:
265 self.p.loadindex(i)
265 self.p.loadindex(i)
266 ret = self.p.index[i]
266 ret = self.p.index[i]
267 if isinstance(ret, str):
267 if isinstance(ret, str):
268 ret = struct.unpack(self.p.indexformat, ret)
268 ret = struct.unpack(self.p.indexformat, ret)
269 yield ret[-1]
269 yield ret[-1]
270 def __getitem__(self, key):
270 def __getitem__(self, key):
271 try:
271 try:
272 return self.p.map[key]
272 return self.p.map[key]
273 except KeyError:
273 except KeyError:
274 try:
274 try:
275 self.load(key)
275 self.load(key)
276 return self.p.map[key]
276 return self.p.map[key]
277 except KeyError:
277 except KeyError:
278 raise KeyError("node " + hex(key))
278 raise KeyError("node " + hex(key))
279 def __setitem__(self, key, val):
279 def __setitem__(self, key, val):
280 self.p.map[key] = val
280 self.p.map[key] = val
281 def __delitem__(self, key):
281 def __delitem__(self, key):
282 del self.p.map[key]
282 del self.p.map[key]
283
283
284 class RevlogError(Exception): pass
284 class RevlogError(Exception): pass
285
285
286 class revlog(object):
286 class revlog(object):
287 """
287 """
288 the underlying revision storage object
288 the underlying revision storage object
289
289
290 A revlog consists of two parts, an index and the revision data.
290 A revlog consists of two parts, an index and the revision data.
291
291
292 The index is a file with a fixed record size containing
292 The index is a file with a fixed record size containing
293 information on each revision, includings its nodeid (hash), the
293 information on each revision, includings its nodeid (hash), the
294 nodeids of its parents, the position and offset of its data within
294 nodeids of its parents, the position and offset of its data within
295 the data file, and the revision it's based on. Finally, each entry
295 the data file, and the revision it's based on. Finally, each entry
296 contains a linkrev entry that can serve as a pointer to external
296 contains a linkrev entry that can serve as a pointer to external
297 data.
297 data.
298
298
299 The revision data itself is a linear collection of data chunks.
299 The revision data itself is a linear collection of data chunks.
300 Each chunk represents a revision and is usually represented as a
300 Each chunk represents a revision and is usually represented as a
301 delta against the previous chunk. To bound lookup time, runs of
301 delta against the previous chunk. To bound lookup time, runs of
302 deltas are limited to about 2 times the length of the original
302 deltas are limited to about 2 times the length of the original
303 version data. This makes retrieval of a version proportional to
303 version data. This makes retrieval of a version proportional to
304 its size, or O(1) relative to the number of revisions.
304 its size, or O(1) relative to the number of revisions.
305
305
306 Both pieces of the revlog are written to in an append-only
306 Both pieces of the revlog are written to in an append-only
307 fashion, which means we never need to rewrite a file to insert or
307 fashion, which means we never need to rewrite a file to insert or
308 remove data, and can use some simple techniques to avoid the need
308 remove data, and can use some simple techniques to avoid the need
309 for locking while reading.
309 for locking while reading.
310 """
310 """
311 def __init__(self, opener, indexfile, datafile,
311 def __init__(self, opener, indexfile, datafile,
312 defversion=REVLOG_DEFAULT_VERSION):
312 defversion=REVLOG_DEFAULT_VERSION):
313 """
313 """
314 create a revlog object
314 create a revlog object
315
315
316 opener is a function that abstracts the file opening operation
316 opener is a function that abstracts the file opening operation
317 and can be used to implement COW semantics or the like.
317 and can be used to implement COW semantics or the like.
318 """
318 """
319 self.indexfile = indexfile
319 self.indexfile = indexfile
320 self.datafile = datafile
320 self.datafile = datafile
321 self.opener = opener
321 self.opener = opener
322
322
323 self.indexstat = None
323 self.indexstat = None
324 self.cache = None
324 self.cache = None
325 self.chunkcache = None
325 self.chunkcache = None
326 self.defversion = defversion
326 self.defversion = defversion
327 self.load()
327 self.load()
328
328
329 def load(self):
329 def load(self):
330 v = self.defversion
330 v = self.defversion
331 try:
331 try:
332 f = self.opener(self.indexfile)
332 f = self.opener(self.indexfile)
333 i = f.read(4)
333 i = f.read(4)
334 f.seek(0)
334 f.seek(0)
335 except IOError, inst:
335 except IOError, inst:
336 if inst.errno != errno.ENOENT:
336 if inst.errno != errno.ENOENT:
337 raise
337 raise
338 i = ""
338 i = ""
339 else:
339 else:
340 try:
340 try:
341 st = util.fstat(f)
341 st = util.fstat(f)
342 except AttributeError, inst:
342 except AttributeError, inst:
343 st = None
343 st = None
344 else:
344 else:
345 oldst = self.indexstat
345 oldst = self.indexstat
346 if (oldst and st.st_dev == oldst.st_dev
346 if (oldst and st.st_dev == oldst.st_dev
347 and st.st_ino == oldst.st_ino
347 and st.st_ino == oldst.st_ino
348 and st.st_mtime == oldst.st_mtime
348 and st.st_mtime == oldst.st_mtime
349 and st.st_ctime == oldst.st_ctime):
349 and st.st_ctime == oldst.st_ctime):
350 return
350 return
351 self.indexstat = st
351 self.indexstat = st
352 if len(i) > 0:
352 if len(i) > 0:
353 v = struct.unpack(versionformat, i)[0]
353 v = struct.unpack(versionformat, i)[0]
354 flags = v & ~0xFFFF
354 flags = v & ~0xFFFF
355 fmt = v & 0xFFFF
355 fmt = v & 0xFFFF
356 if fmt == REVLOGV0:
356 if fmt == REVLOGV0:
357 if flags:
357 if flags:
358 raise RevlogError(_("index %s invalid flags %x for format v0" %
358 raise RevlogError(_("index %s invalid flags %x for format v0" %
359 (self.indexfile, flags)))
359 (self.indexfile, flags)))
360 elif fmt == REVLOGNG:
360 elif fmt == REVLOGNG:
361 if flags & ~REVLOGNGINLINEDATA:
361 if flags & ~REVLOGNGINLINEDATA:
362 raise RevlogError(_("index %s invalid flags %x for revlogng" %
362 raise RevlogError(_("index %s invalid flags %x for revlogng" %
363 (self.indexfile, flags)))
363 (self.indexfile, flags)))
364 else:
364 else:
365 raise RevlogError(_("index %s invalid format %d" %
365 raise RevlogError(_("index %s invalid format %d" %
366 (self.indexfile, fmt)))
366 (self.indexfile, fmt)))
367 self.version = v
367 self.version = v
368 if v == REVLOGV0:
368 if v == REVLOGV0:
369 self.indexformat = indexformatv0
369 self.indexformat = indexformatv0
370 shaoffset = v0shaoffset
370 shaoffset = v0shaoffset
371 else:
371 else:
372 self.indexformat = indexformatng
372 self.indexformat = indexformatng
373 shaoffset = ngshaoffset
373 shaoffset = ngshaoffset
374
374
375 if i:
375 if i:
376 if (lazyparser.safe_to_use and not self.inlinedata() and
376 if (lazyparser.safe_to_use and not self.inlinedata() and
377 st and st.st_size > 10000):
377 st and st.st_size > 10000):
378 # big index, let's parse it on demand
378 # big index, let's parse it on demand
379 parser = lazyparser(f, st.st_size, self.indexformat, shaoffset)
379 parser = lazyparser(f, st.st_size, self.indexformat, shaoffset)
380 self.index = lazyindex(parser)
380 self.index = lazyindex(parser)
381 self.nodemap = lazymap(parser)
381 self.nodemap = lazymap(parser)
382 else:
382 else:
383 self.parseindex(f, st)
383 self.parseindex(f, st)
384 if self.version != REVLOGV0:
384 if self.version != REVLOGV0:
385 e = list(self.index[0])
385 e = list(self.index[0])
386 type = self.ngtype(e[0])
386 type = self.ngtype(e[0])
387 e[0] = self.offset_type(0, type)
387 e[0] = self.offset_type(0, type)
388 self.index[0] = e
388 self.index[0] = e
389 else:
389 else:
390 self.nodemap = { nullid: -1}
390 self.nodemap = { nullid: -1}
391 self.index = []
391 self.index = []
392
392
393
393
394 def parseindex(self, fp, st):
394 def parseindex(self, fp, st):
395 s = struct.calcsize(self.indexformat)
395 s = struct.calcsize(self.indexformat)
396 self.index = []
396 self.index = []
397 self.nodemap = {nullid: -1}
397 self.nodemap = {nullid: -1}
398 inline = self.inlinedata()
398 inline = self.inlinedata()
399 n = 0
399 n = 0
400 leftover = None
400 leftover = None
401 while True:
401 while True:
402 if st:
402 if st:
403 data = fp.read(65536)
403 data = fp.read(65536)
404 else:
404 else:
405 # hack for httprangereader, it doesn't do partial reads well
405 # hack for httprangereader, it doesn't do partial reads well
406 data = fp.read()
406 data = fp.read()
407 if not data:
407 if not data:
408 break
408 break
409 if n == 0 and self.inlinedata():
409 if n == 0 and self.inlinedata():
410 # cache the first chunk
410 # cache the first chunk
411 self.chunkcache = (0, data)
411 self.chunkcache = (0, data)
412 if leftover:
412 if leftover:
413 data = leftover + data
413 data = leftover + data
414 leftover = None
414 leftover = None
415 off = 0
415 off = 0
416 l = len(data)
416 l = len(data)
417 while off < l:
417 while off < l:
418 if l - off < s:
418 if l - off < s:
419 leftover = data[off:]
419 leftover = data[off:]
420 break
420 break
421 cur = data[off:off + s]
421 cur = data[off:off + s]
422 off += s
422 off += s
423 e = struct.unpack(self.indexformat, cur)
423 e = struct.unpack(self.indexformat, cur)
424 self.index.append(e)
424 self.index.append(e)
425 self.nodemap[e[-1]] = n
425 self.nodemap[e[-1]] = n
426 n += 1
426 n += 1
427 if inline:
427 if inline:
428 off += e[1]
428 off += e[1]
429 if off > l:
429 if off > l:
430 # some things don't seek well, just read it
430 # some things don't seek well, just read it
431 fp.read(off - l)
431 fp.read(off - l)
432 if not st:
432 if not st:
433 break
433 break
434
434
435
435
436 def ngoffset(self, q):
436 def ngoffset(self, q):
437 if q & 0xFFFF:
437 if q & 0xFFFF:
438 raise RevlogError(_('%s: incompatible revision flag %x') %
438 raise RevlogError(_('%s: incompatible revision flag %x') %
439 (self.indexfile, q))
439 (self.indexfile, q))
440 return long(q >> 16)
440 return long(q >> 16)
441
441
442 def ngtype(self, q):
442 def ngtype(self, q):
443 return int(q & 0xFFFF)
443 return int(q & 0xFFFF)
444
444
445 def offset_type(self, offset, type):
445 def offset_type(self, offset, type):
446 return long(long(offset) << 16 | type)
446 return long(long(offset) << 16 | type)
447
447
448 def loadindex(self, start, end):
448 def loadindex(self, start, end):
449 """load a block of indexes all at once from the lazy parser"""
449 """load a block of indexes all at once from the lazy parser"""
450 if isinstance(self.index, lazyindex):
450 if isinstance(self.index, lazyindex):
451 self.index.p.loadindex(start, end)
451 self.index.p.loadindex(start, end)
452
452
453 def loadindexmap(self):
453 def loadindexmap(self):
454 """loads both the map and the index from the lazy parser"""
454 """loads both the map and the index from the lazy parser"""
455 if isinstance(self.index, lazyindex):
455 if isinstance(self.index, lazyindex):
456 p = self.index.p
456 p = self.index.p
457 p.loadindex()
457 p.loadindex()
458 self.nodemap = p.map
458 self.nodemap = p.map
459
459
460 def loadmap(self):
460 def loadmap(self):
461 """loads the map from the lazy parser"""
461 """loads the map from the lazy parser"""
462 if isinstance(self.nodemap, lazymap):
462 if isinstance(self.nodemap, lazymap):
463 self.nodemap.p.loadmap()
463 self.nodemap.p.loadmap()
464 self.nodemap = self.nodemap.p.map
464 self.nodemap = self.nodemap.p.map
465
465
466 def inlinedata(self): return self.version & REVLOGNGINLINEDATA
466 def inlinedata(self): return self.version & REVLOGNGINLINEDATA
467 def tip(self): return self.node(len(self.index) - 1)
467 def tip(self): return self.node(len(self.index) - 1)
468 def count(self): return len(self.index)
468 def count(self): return len(self.index)
469 def node(self, rev):
469 def node(self, rev):
470 return (rev < 0) and nullid or self.index[rev][-1]
470 return (rev < 0) and nullid or self.index[rev][-1]
471 def rev(self, node):
471 def rev(self, node):
472 try:
472 try:
473 return self.nodemap[node]
473 return self.nodemap[node]
474 except KeyError:
474 except KeyError:
475 raise RevlogError(_('%s: no node %s') % (self.indexfile, hex(node)))
475 raise RevlogError(_('%s: no node %s') % (self.indexfile, hex(node)))
476 def linkrev(self, node):
476 def linkrev(self, node):
477 return (node == nullid) and -1 or self.index[self.rev(node)][-4]
477 return (node == nullid) and -1 or self.index[self.rev(node)][-4]
478 def parents(self, node):
478 def parents(self, node):
479 if node == nullid: return (nullid, nullid)
479 if node == nullid: return (nullid, nullid)
480 r = self.rev(node)
480 r = self.rev(node)
481 d = self.index[r][-3:-1]
481 d = self.index[r][-3:-1]
482 if self.version == REVLOGV0:
482 if self.version == REVLOGV0:
483 return d
483 return d
484 return [ self.node(x) for x in d ]
484 return (self.node(d[0]), self.node(d[1]))
485 def parentrevs(self, rev):
485 def parentrevs(self, rev):
486 if rev == -1:
486 if rev == -1:
487 return (-1, -1)
487 return (-1, -1)
488 d = self.index[rev][-3:-1]
488 d = self.index[rev][-3:-1]
489 if self.version == REVLOGV0:
489 if self.version == REVLOGV0:
490 return [ self.rev(x) for x in d ]
490 return (self.rev(d[0]), self.rev(d[1]))
491 return d
491 return d
492 def start(self, rev):
492 def start(self, rev):
493 if rev < 0:
493 if rev < 0:
494 return -1
494 return -1
495 if self.version != REVLOGV0:
495 if self.version != REVLOGV0:
496 return self.ngoffset(self.index[rev][0])
496 return self.ngoffset(self.index[rev][0])
497 return self.index[rev][0]
497 return self.index[rev][0]
498
498
499 def end(self, rev): return self.start(rev) + self.length(rev)
499 def end(self, rev): return self.start(rev) + self.length(rev)
500
500
501 def size(self, rev):
501 def size(self, rev):
502 """return the length of the uncompressed text for a given revision"""
502 """return the length of the uncompressed text for a given revision"""
503 l = -1
503 l = -1
504 if self.version != REVLOGV0:
504 if self.version != REVLOGV0:
505 l = self.index[rev][2]
505 l = self.index[rev][2]
506 if l >= 0:
506 if l >= 0:
507 return l
507 return l
508
508
509 t = self.revision(self.node(rev))
509 t = self.revision(self.node(rev))
510 return len(t)
510 return len(t)
511
511
512 # alternate implementation, The advantage to this code is it
512 # alternate implementation, The advantage to this code is it
513 # will be faster for a single revision. But, the results are not
513 # will be faster for a single revision. But, the results are not
514 # cached, so finding the size of every revision will be slower.
514 # cached, so finding the size of every revision will be slower.
515 """
515 """
516 if self.cache and self.cache[1] == rev:
516 if self.cache and self.cache[1] == rev:
517 return len(self.cache[2])
517 return len(self.cache[2])
518
518
519 base = self.base(rev)
519 base = self.base(rev)
520 if self.cache and self.cache[1] >= base and self.cache[1] < rev:
520 if self.cache and self.cache[1] >= base and self.cache[1] < rev:
521 base = self.cache[1]
521 base = self.cache[1]
522 text = self.cache[2]
522 text = self.cache[2]
523 else:
523 else:
524 text = self.revision(self.node(base))
524 text = self.revision(self.node(base))
525
525
526 l = len(text)
526 l = len(text)
527 for x in xrange(base + 1, rev + 1):
527 for x in xrange(base + 1, rev + 1):
528 l = mdiff.patchedsize(l, self.chunk(x))
528 l = mdiff.patchedsize(l, self.chunk(x))
529 return l
529 return l
530 """
530 """
531
531
532 def length(self, rev):
532 def length(self, rev):
533 if rev < 0:
533 if rev < 0:
534 return 0
534 return 0
535 else:
535 else:
536 return self.index[rev][1]
536 return self.index[rev][1]
537 def base(self, rev): return (rev < 0) and rev or self.index[rev][-5]
537 def base(self, rev): return (rev < 0) and rev or self.index[rev][-5]
538
538
539 def reachable(self, rev, stop=None):
539 def reachable(self, rev, stop=None):
540 reachable = {}
540 reachable = {}
541 visit = [rev]
541 visit = [rev]
542 reachable[rev] = 1
542 reachable[rev] = 1
543 if stop:
543 if stop:
544 stopn = self.rev(stop)
544 stopn = self.rev(stop)
545 else:
545 else:
546 stopn = 0
546 stopn = 0
547 while visit:
547 while visit:
548 n = visit.pop(0)
548 n = visit.pop(0)
549 if n == stop:
549 if n == stop:
550 continue
550 continue
551 if n == nullid:
551 if n == nullid:
552 continue
552 continue
553 for p in self.parents(n):
553 for p in self.parents(n):
554 if self.rev(p) < stopn:
554 if self.rev(p) < stopn:
555 continue
555 continue
556 if p not in reachable:
556 if p not in reachable:
557 reachable[p] = 1
557 reachable[p] = 1
558 visit.append(p)
558 visit.append(p)
559 return reachable
559 return reachable
560
560
561 def nodesbetween(self, roots=None, heads=None):
561 def nodesbetween(self, roots=None, heads=None):
562 """Return a tuple containing three elements. Elements 1 and 2 contain
562 """Return a tuple containing three elements. Elements 1 and 2 contain
563 a final list bases and heads after all the unreachable ones have been
563 a final list bases and heads after all the unreachable ones have been
564 pruned. Element 0 contains a topologically sorted list of all
564 pruned. Element 0 contains a topologically sorted list of all
565
565
566 nodes that satisfy these constraints:
566 nodes that satisfy these constraints:
567 1. All nodes must be descended from a node in roots (the nodes on
567 1. All nodes must be descended from a node in roots (the nodes on
568 roots are considered descended from themselves).
568 roots are considered descended from themselves).
569 2. All nodes must also be ancestors of a node in heads (the nodes in
569 2. All nodes must also be ancestors of a node in heads (the nodes in
570 heads are considered to be their own ancestors).
570 heads are considered to be their own ancestors).
571
571
572 If roots is unspecified, nullid is assumed as the only root.
572 If roots is unspecified, nullid is assumed as the only root.
573 If heads is unspecified, it is taken to be the output of the
573 If heads is unspecified, it is taken to be the output of the
574 heads method (i.e. a list of all nodes in the repository that
574 heads method (i.e. a list of all nodes in the repository that
575 have no children)."""
575 have no children)."""
576 nonodes = ([], [], [])
576 nonodes = ([], [], [])
577 if roots is not None:
577 if roots is not None:
578 roots = list(roots)
578 roots = list(roots)
579 if not roots:
579 if not roots:
580 return nonodes
580 return nonodes
581 lowestrev = min([self.rev(n) for n in roots])
581 lowestrev = min([self.rev(n) for n in roots])
582 else:
582 else:
583 roots = [nullid] # Everybody's a descendent of nullid
583 roots = [nullid] # Everybody's a descendent of nullid
584 lowestrev = -1
584 lowestrev = -1
585 if (lowestrev == -1) and (heads is None):
585 if (lowestrev == -1) and (heads is None):
586 # We want _all_ the nodes!
586 # We want _all_ the nodes!
587 return ([self.node(r) for r in xrange(0, self.count())],
587 return ([self.node(r) for r in xrange(0, self.count())],
588 [nullid], list(self.heads()))
588 [nullid], list(self.heads()))
589 if heads is None:
589 if heads is None:
590 # All nodes are ancestors, so the latest ancestor is the last
590 # All nodes are ancestors, so the latest ancestor is the last
591 # node.
591 # node.
592 highestrev = self.count() - 1
592 highestrev = self.count() - 1
593 # Set ancestors to None to signal that every node is an ancestor.
593 # Set ancestors to None to signal that every node is an ancestor.
594 ancestors = None
594 ancestors = None
595 # Set heads to an empty dictionary for later discovery of heads
595 # Set heads to an empty dictionary for later discovery of heads
596 heads = {}
596 heads = {}
597 else:
597 else:
598 heads = list(heads)
598 heads = list(heads)
599 if not heads:
599 if not heads:
600 return nonodes
600 return nonodes
601 ancestors = {}
601 ancestors = {}
602 # Turn heads into a dictionary so we can remove 'fake' heads.
602 # Turn heads into a dictionary so we can remove 'fake' heads.
603 # Also, later we will be using it to filter out the heads we can't
603 # Also, later we will be using it to filter out the heads we can't
604 # find from roots.
604 # find from roots.
605 heads = dict.fromkeys(heads, 0)
605 heads = dict.fromkeys(heads, 0)
606 # Start at the top and keep marking parents until we're done.
606 # Start at the top and keep marking parents until we're done.
607 nodestotag = heads.keys()
607 nodestotag = heads.keys()
608 # Remember where the top was so we can use it as a limit later.
608 # Remember where the top was so we can use it as a limit later.
609 highestrev = max([self.rev(n) for n in nodestotag])
609 highestrev = max([self.rev(n) for n in nodestotag])
610 while nodestotag:
610 while nodestotag:
611 # grab a node to tag
611 # grab a node to tag
612 n = nodestotag.pop()
612 n = nodestotag.pop()
613 # Never tag nullid
613 # Never tag nullid
614 if n == nullid:
614 if n == nullid:
615 continue
615 continue
616 # A node's revision number represents its place in a
616 # A node's revision number represents its place in a
617 # topologically sorted list of nodes.
617 # topologically sorted list of nodes.
618 r = self.rev(n)
618 r = self.rev(n)
619 if r >= lowestrev:
619 if r >= lowestrev:
620 if n not in ancestors:
620 if n not in ancestors:
621 # If we are possibly a descendent of one of the roots
621 # If we are possibly a descendent of one of the roots
622 # and we haven't already been marked as an ancestor
622 # and we haven't already been marked as an ancestor
623 ancestors[n] = 1 # Mark as ancestor
623 ancestors[n] = 1 # Mark as ancestor
624 # Add non-nullid parents to list of nodes to tag.
624 # Add non-nullid parents to list of nodes to tag.
625 nodestotag.extend([p for p in self.parents(n) if
625 nodestotag.extend([p for p in self.parents(n) if
626 p != nullid])
626 p != nullid])
627 elif n in heads: # We've seen it before, is it a fake head?
627 elif n in heads: # We've seen it before, is it a fake head?
628 # So it is, real heads should not be the ancestors of
628 # So it is, real heads should not be the ancestors of
629 # any other heads.
629 # any other heads.
630 heads.pop(n)
630 heads.pop(n)
631 if not ancestors:
631 if not ancestors:
632 return nonodes
632 return nonodes
633 # Now that we have our set of ancestors, we want to remove any
633 # Now that we have our set of ancestors, we want to remove any
634 # roots that are not ancestors.
634 # roots that are not ancestors.
635
635
636 # If one of the roots was nullid, everything is included anyway.
636 # If one of the roots was nullid, everything is included anyway.
637 if lowestrev > -1:
637 if lowestrev > -1:
638 # But, since we weren't, let's recompute the lowest rev to not
638 # But, since we weren't, let's recompute the lowest rev to not
639 # include roots that aren't ancestors.
639 # include roots that aren't ancestors.
640
640
641 # Filter out roots that aren't ancestors of heads
641 # Filter out roots that aren't ancestors of heads
642 roots = [n for n in roots if n in ancestors]
642 roots = [n for n in roots if n in ancestors]
643 # Recompute the lowest revision
643 # Recompute the lowest revision
644 if roots:
644 if roots:
645 lowestrev = min([self.rev(n) for n in roots])
645 lowestrev = min([self.rev(n) for n in roots])
646 else:
646 else:
647 # No more roots? Return empty list
647 # No more roots? Return empty list
648 return nonodes
648 return nonodes
649 else:
649 else:
650 # We are descending from nullid, and don't need to care about
650 # We are descending from nullid, and don't need to care about
651 # any other roots.
651 # any other roots.
652 lowestrev = -1
652 lowestrev = -1
653 roots = [nullid]
653 roots = [nullid]
654 # Transform our roots list into a 'set' (i.e. a dictionary where the
654 # Transform our roots list into a 'set' (i.e. a dictionary where the
655 # values don't matter.
655 # values don't matter.
656 descendents = dict.fromkeys(roots, 1)
656 descendents = dict.fromkeys(roots, 1)
657 # Also, keep the original roots so we can filter out roots that aren't
657 # Also, keep the original roots so we can filter out roots that aren't
658 # 'real' roots (i.e. are descended from other roots).
658 # 'real' roots (i.e. are descended from other roots).
659 roots = descendents.copy()
659 roots = descendents.copy()
660 # Our topologically sorted list of output nodes.
660 # Our topologically sorted list of output nodes.
661 orderedout = []
661 orderedout = []
662 # Don't start at nullid since we don't want nullid in our output list,
662 # Don't start at nullid since we don't want nullid in our output list,
663 # and if nullid shows up in descedents, empty parents will look like
663 # and if nullid shows up in descedents, empty parents will look like
664 # they're descendents.
664 # they're descendents.
665 for r in xrange(max(lowestrev, 0), highestrev + 1):
665 for r in xrange(max(lowestrev, 0), highestrev + 1):
666 n = self.node(r)
666 n = self.node(r)
667 isdescendent = False
667 isdescendent = False
668 if lowestrev == -1: # Everybody is a descendent of nullid
668 if lowestrev == -1: # Everybody is a descendent of nullid
669 isdescendent = True
669 isdescendent = True
670 elif n in descendents:
670 elif n in descendents:
671 # n is already a descendent
671 # n is already a descendent
672 isdescendent = True
672 isdescendent = True
673 # This check only needs to be done here because all the roots
673 # This check only needs to be done here because all the roots
674 # will start being marked is descendents before the loop.
674 # will start being marked is descendents before the loop.
675 if n in roots:
675 if n in roots:
676 # If n was a root, check if it's a 'real' root.
676 # If n was a root, check if it's a 'real' root.
677 p = tuple(self.parents(n))
677 p = tuple(self.parents(n))
678 # If any of its parents are descendents, it's not a root.
678 # If any of its parents are descendents, it's not a root.
679 if (p[0] in descendents) or (p[1] in descendents):
679 if (p[0] in descendents) or (p[1] in descendents):
680 roots.pop(n)
680 roots.pop(n)
681 else:
681 else:
682 p = tuple(self.parents(n))
682 p = tuple(self.parents(n))
683 # A node is a descendent if either of its parents are
683 # A node is a descendent if either of its parents are
684 # descendents. (We seeded the dependents list with the roots
684 # descendents. (We seeded the dependents list with the roots
685 # up there, remember?)
685 # up there, remember?)
686 if (p[0] in descendents) or (p[1] in descendents):
686 if (p[0] in descendents) or (p[1] in descendents):
687 descendents[n] = 1
687 descendents[n] = 1
688 isdescendent = True
688 isdescendent = True
689 if isdescendent and ((ancestors is None) or (n in ancestors)):
689 if isdescendent and ((ancestors is None) or (n in ancestors)):
690 # Only include nodes that are both descendents and ancestors.
690 # Only include nodes that are both descendents and ancestors.
691 orderedout.append(n)
691 orderedout.append(n)
692 if (ancestors is not None) and (n in heads):
692 if (ancestors is not None) and (n in heads):
693 # We're trying to figure out which heads are reachable
693 # We're trying to figure out which heads are reachable
694 # from roots.
694 # from roots.
695 # Mark this head as having been reached
695 # Mark this head as having been reached
696 heads[n] = 1
696 heads[n] = 1
697 elif ancestors is None:
697 elif ancestors is None:
698 # Otherwise, we're trying to discover the heads.
698 # Otherwise, we're trying to discover the heads.
699 # Assume this is a head because if it isn't, the next step
699 # Assume this is a head because if it isn't, the next step
700 # will eventually remove it.
700 # will eventually remove it.
701 heads[n] = 1
701 heads[n] = 1
702 # But, obviously its parents aren't.
702 # But, obviously its parents aren't.
703 for p in self.parents(n):
703 for p in self.parents(n):
704 heads.pop(p, None)
704 heads.pop(p, None)
705 heads = [n for n in heads.iterkeys() if heads[n] != 0]
705 heads = [n for n in heads.iterkeys() if heads[n] != 0]
706 roots = roots.keys()
706 roots = roots.keys()
707 assert orderedout
707 assert orderedout
708 assert roots
708 assert roots
709 assert heads
709 assert heads
710 return (orderedout, roots, heads)
710 return (orderedout, roots, heads)
711
711
712 def heads(self, start=None):
712 def heads(self, start=None):
713 """return the list of all nodes that have no children
713 """return the list of all nodes that have no children
714
714
715 if start is specified, only heads that are descendants of
715 if start is specified, only heads that are descendants of
716 start will be returned
716 start will be returned
717
717
718 """
718 """
719 if start is None:
719 if start is None:
720 start = nullid
720 start = nullid
721 startrev = self.rev(start)
721 startrev = self.rev(start)
722 reachable = {startrev: 1}
722 reachable = {startrev: 1}
723 heads = {startrev: 1}
723 heads = {startrev: 1}
724
724
725 parentrevs = self.parentrevs
725 parentrevs = self.parentrevs
726 for r in xrange(startrev + 1, self.count()):
726 for r in xrange(startrev + 1, self.count()):
727 for p in parentrevs(r):
727 for p in parentrevs(r):
728 if p in reachable:
728 if p in reachable:
729 reachable[r] = 1
729 reachable[r] = 1
730 heads[r] = 1
730 heads[r] = 1
731 if p in heads:
731 if p in heads:
732 del heads[p]
732 del heads[p]
733 return [self.node(r) for r in heads]
733 return [self.node(r) for r in heads]
734
734
735 def children(self, node):
735 def children(self, node):
736 """find the children of a given node"""
736 """find the children of a given node"""
737 c = []
737 c = []
738 p = self.rev(node)
738 p = self.rev(node)
739 for r in range(p + 1, self.count()):
739 for r in range(p + 1, self.count()):
740 for pr in self.parentrevs(r):
740 for pr in self.parentrevs(r):
741 if pr == p:
741 if pr == p:
742 c.append(self.node(r))
742 c.append(self.node(r))
743 return c
743 return c
744
744
745 def _match(self, id):
745 def _match(self, id):
746 if isinstance(id, (long, int)):
746 if isinstance(id, (long, int)):
747 # rev
747 # rev
748 return self.node(id)
748 return self.node(id)
749 if len(id) == 20:
749 if len(id) == 20:
750 # possibly a binary node
750 # possibly a binary node
751 # odds of a binary node being all hex in ASCII are 1 in 10**25
751 # odds of a binary node being all hex in ASCII are 1 in 10**25
752 try:
752 try:
753 node = id
753 node = id
754 r = self.rev(node) # quick search the index
754 r = self.rev(node) # quick search the index
755 return node
755 return node
756 except RevlogError:
756 except RevlogError:
757 pass # may be partial hex id
757 pass # may be partial hex id
758 try:
758 try:
759 # str(rev)
759 # str(rev)
760 rev = int(id)
760 rev = int(id)
761 if str(rev) != id: raise ValueError
761 if str(rev) != id: raise ValueError
762 if rev < 0: rev = self.count() + rev
762 if rev < 0: rev = self.count() + rev
763 if rev < 0 or rev >= self.count(): raise ValueError
763 if rev < 0 or rev >= self.count(): raise ValueError
764 return self.node(rev)
764 return self.node(rev)
765 except (ValueError, OverflowError):
765 except (ValueError, OverflowError):
766 pass
766 pass
767 if len(id) == 40:
767 if len(id) == 40:
768 try:
768 try:
769 # a full hex nodeid?
769 # a full hex nodeid?
770 node = bin(id)
770 node = bin(id)
771 r = self.rev(node)
771 r = self.rev(node)
772 return node
772 return node
773 except TypeError:
773 except TypeError:
774 pass
774 pass
775
775
776 def _partialmatch(self, id):
776 def _partialmatch(self, id):
777 if len(id) < 40:
777 if len(id) < 40:
778 try:
778 try:
779 # hex(node)[:...]
779 # hex(node)[:...]
780 bin_id = bin(id[:len(id) & ~1]) # grab an even number of digits
780 bin_id = bin(id[:len(id) & ~1]) # grab an even number of digits
781 node = None
781 node = None
782 for n in self.nodemap:
782 for n in self.nodemap:
783 if n.startswith(bin_id) and hex(n).startswith(id):
783 if n.startswith(bin_id) and hex(n).startswith(id):
784 if node is not None:
784 if node is not None:
785 raise RevlogError(_("Ambiguous identifier"))
785 raise RevlogError(_("Ambiguous identifier"))
786 node = n
786 node = n
787 if node is not None:
787 if node is not None:
788 return node
788 return node
789 except TypeError:
789 except TypeError:
790 pass
790 pass
791
791
792 def lookup(self, id):
792 def lookup(self, id):
793 """locate a node based on:
793 """locate a node based on:
794 - revision number or str(revision number)
794 - revision number or str(revision number)
795 - nodeid or subset of hex nodeid
795 - nodeid or subset of hex nodeid
796 """
796 """
797
797
798 n = self._match(id)
798 n = self._match(id)
799 if n is not None:
799 if n is not None:
800 return n
800 return n
801 n = self._partialmatch(id)
801 n = self._partialmatch(id)
802 if n:
802 if n:
803 return n
803 return n
804
804
805 raise RevlogError(_("No match found"))
805 raise RevlogError(_("No match found"))
806
806
807 def cmp(self, node, text):
807 def cmp(self, node, text):
808 """compare text with a given file revision"""
808 """compare text with a given file revision"""
809 p1, p2 = self.parents(node)
809 p1, p2 = self.parents(node)
810 return hash(text, p1, p2) != node
810 return hash(text, p1, p2) != node
811
811
812 def makenode(self, node, text):
812 def makenode(self, node, text):
813 """calculate a file nodeid for text, descended or possibly
813 """calculate a file nodeid for text, descended or possibly
814 unchanged from node"""
814 unchanged from node"""
815
815
816 if self.cmp(node, text):
816 if self.cmp(node, text):
817 return hash(text, node, nullid)
817 return hash(text, node, nullid)
818 return node
818 return node
819
819
820 def diff(self, a, b):
820 def diff(self, a, b):
821 """return a delta between two revisions"""
821 """return a delta between two revisions"""
822 return mdiff.textdiff(a, b)
822 return mdiff.textdiff(a, b)
823
823
824 def patches(self, t, pl):
824 def patches(self, t, pl):
825 """apply a list of patches to a string"""
825 """apply a list of patches to a string"""
826 return mdiff.patches(t, pl)
826 return mdiff.patches(t, pl)
827
827
828 def chunk(self, rev, df=None, cachelen=4096):
828 def chunk(self, rev, df=None, cachelen=4096):
829 start, length = self.start(rev), self.length(rev)
829 start, length = self.start(rev), self.length(rev)
830 inline = self.inlinedata()
830 inline = self.inlinedata()
831 if inline:
831 if inline:
832 start += (rev + 1) * struct.calcsize(self.indexformat)
832 start += (rev + 1) * struct.calcsize(self.indexformat)
833 end = start + length
833 end = start + length
834 def loadcache(df):
834 def loadcache(df):
835 cache_length = max(cachelen, length) # 4k
835 cache_length = max(cachelen, length) # 4k
836 if not df:
836 if not df:
837 if inline:
837 if inline:
838 df = self.opener(self.indexfile)
838 df = self.opener(self.indexfile)
839 else:
839 else:
840 df = self.opener(self.datafile)
840 df = self.opener(self.datafile)
841 df.seek(start)
841 df.seek(start)
842 self.chunkcache = (start, df.read(cache_length))
842 self.chunkcache = (start, df.read(cache_length))
843
843
844 if not self.chunkcache:
844 if not self.chunkcache:
845 loadcache(df)
845 loadcache(df)
846
846
847 cache_start = self.chunkcache[0]
847 cache_start = self.chunkcache[0]
848 cache_end = cache_start + len(self.chunkcache[1])
848 cache_end = cache_start + len(self.chunkcache[1])
849 if start >= cache_start and end <= cache_end:
849 if start >= cache_start and end <= cache_end:
850 # it is cached
850 # it is cached
851 offset = start - cache_start
851 offset = start - cache_start
852 else:
852 else:
853 loadcache(df)
853 loadcache(df)
854 offset = 0
854 offset = 0
855
855
856 #def checkchunk():
856 #def checkchunk():
857 # df = self.opener(self.datafile)
857 # df = self.opener(self.datafile)
858 # df.seek(start)
858 # df.seek(start)
859 # return df.read(length)
859 # return df.read(length)
860 #assert s == checkchunk()
860 #assert s == checkchunk()
861 return decompress(self.chunkcache[1][offset:offset + length])
861 return decompress(self.chunkcache[1][offset:offset + length])
862
862
863 def delta(self, node):
863 def delta(self, node):
864 """return or calculate a delta between a node and its predecessor"""
864 """return or calculate a delta between a node and its predecessor"""
865 r = self.rev(node)
865 r = self.rev(node)
866 return self.revdiff(r - 1, r)
866 return self.revdiff(r - 1, r)
867
867
868 def revdiff(self, rev1, rev2):
868 def revdiff(self, rev1, rev2):
869 """return or calculate a delta between two revisions"""
869 """return or calculate a delta between two revisions"""
870 b1 = self.base(rev1)
870 b1 = self.base(rev1)
871 b2 = self.base(rev2)
871 b2 = self.base(rev2)
872 if b1 == b2 and rev1 + 1 == rev2:
872 if b1 == b2 and rev1 + 1 == rev2:
873 return self.chunk(rev2)
873 return self.chunk(rev2)
874 else:
874 else:
875 return self.diff(self.revision(self.node(rev1)),
875 return self.diff(self.revision(self.node(rev1)),
876 self.revision(self.node(rev2)))
876 self.revision(self.node(rev2)))
877
877
878 def revision(self, node):
878 def revision(self, node):
879 """return an uncompressed revision of a given"""
879 """return an uncompressed revision of a given"""
880 if node == nullid: return ""
880 if node == nullid: return ""
881 if self.cache and self.cache[0] == node: return self.cache[2]
881 if self.cache and self.cache[0] == node: return self.cache[2]
882
882
883 # look up what we need to read
883 # look up what we need to read
884 text = None
884 text = None
885 rev = self.rev(node)
885 rev = self.rev(node)
886 base = self.base(rev)
886 base = self.base(rev)
887
887
888 if self.inlinedata():
888 if self.inlinedata():
889 # we probably have the whole chunk cached
889 # we probably have the whole chunk cached
890 df = None
890 df = None
891 else:
891 else:
892 df = self.opener(self.datafile)
892 df = self.opener(self.datafile)
893
893
894 # do we have useful data cached?
894 # do we have useful data cached?
895 if self.cache and self.cache[1] >= base and self.cache[1] < rev:
895 if self.cache and self.cache[1] >= base and self.cache[1] < rev:
896 base = self.cache[1]
896 base = self.cache[1]
897 text = self.cache[2]
897 text = self.cache[2]
898 self.loadindex(base, rev + 1)
898 self.loadindex(base, rev + 1)
899 else:
899 else:
900 self.loadindex(base, rev + 1)
900 self.loadindex(base, rev + 1)
901 text = self.chunk(base, df=df)
901 text = self.chunk(base, df=df)
902
902
903 bins = []
903 bins = []
904 for r in xrange(base + 1, rev + 1):
904 for r in xrange(base + 1, rev + 1):
905 bins.append(self.chunk(r, df=df))
905 bins.append(self.chunk(r, df=df))
906
906
907 text = self.patches(text, bins)
907 text = self.patches(text, bins)
908
908
909 p1, p2 = self.parents(node)
909 p1, p2 = self.parents(node)
910 if node != hash(text, p1, p2):
910 if node != hash(text, p1, p2):
911 raise RevlogError(_("integrity check failed on %s:%d")
911 raise RevlogError(_("integrity check failed on %s:%d")
912 % (self.datafile, rev))
912 % (self.datafile, rev))
913
913
914 self.cache = (node, rev, text)
914 self.cache = (node, rev, text)
915 return text
915 return text
916
916
917 def checkinlinesize(self, tr, fp=None):
917 def checkinlinesize(self, tr, fp=None):
918 if not self.inlinedata():
918 if not self.inlinedata():
919 return
919 return
920 if not fp:
920 if not fp:
921 fp = self.opener(self.indexfile, 'r')
921 fp = self.opener(self.indexfile, 'r')
922 fp.seek(0, 2)
922 fp.seek(0, 2)
923 size = fp.tell()
923 size = fp.tell()
924 if size < 131072:
924 if size < 131072:
925 return
925 return
926 trinfo = tr.find(self.indexfile)
926 trinfo = tr.find(self.indexfile)
927 if trinfo == None:
927 if trinfo == None:
928 raise RevlogError(_("%s not found in the transaction" %
928 raise RevlogError(_("%s not found in the transaction" %
929 self.indexfile))
929 self.indexfile))
930
930
931 trindex = trinfo[2]
931 trindex = trinfo[2]
932 dataoff = self.start(trindex)
932 dataoff = self.start(trindex)
933
933
934 tr.add(self.datafile, dataoff)
934 tr.add(self.datafile, dataoff)
935 df = self.opener(self.datafile, 'w')
935 df = self.opener(self.datafile, 'w')
936 calc = struct.calcsize(self.indexformat)
936 calc = struct.calcsize(self.indexformat)
937 for r in xrange(self.count()):
937 for r in xrange(self.count()):
938 start = self.start(r) + (r + 1) * calc
938 start = self.start(r) + (r + 1) * calc
939 length = self.length(r)
939 length = self.length(r)
940 fp.seek(start)
940 fp.seek(start)
941 d = fp.read(length)
941 d = fp.read(length)
942 df.write(d)
942 df.write(d)
943 fp.close()
943 fp.close()
944 df.close()
944 df.close()
945 fp = self.opener(self.indexfile, 'w', atomictemp=True)
945 fp = self.opener(self.indexfile, 'w', atomictemp=True)
946 self.version &= ~(REVLOGNGINLINEDATA)
946 self.version &= ~(REVLOGNGINLINEDATA)
947 if self.count():
947 if self.count():
948 x = self.index[0]
948 x = self.index[0]
949 e = struct.pack(self.indexformat, *x)[4:]
949 e = struct.pack(self.indexformat, *x)[4:]
950 l = struct.pack(versionformat, self.version)
950 l = struct.pack(versionformat, self.version)
951 fp.write(l)
951 fp.write(l)
952 fp.write(e)
952 fp.write(e)
953
953
954 for i in xrange(1, self.count()):
954 for i in xrange(1, self.count()):
955 x = self.index[i]
955 x = self.index[i]
956 e = struct.pack(self.indexformat, *x)
956 e = struct.pack(self.indexformat, *x)
957 fp.write(e)
957 fp.write(e)
958
958
959 # if we don't call rename, the temp file will never replace the
959 # if we don't call rename, the temp file will never replace the
960 # real index
960 # real index
961 fp.rename()
961 fp.rename()
962
962
963 tr.replace(self.indexfile, trindex * calc)
963 tr.replace(self.indexfile, trindex * calc)
964 self.chunkcache = None
964 self.chunkcache = None
965
965
966 def addrevision(self, text, transaction, link, p1=None, p2=None, d=None):
966 def addrevision(self, text, transaction, link, p1=None, p2=None, d=None):
967 """add a revision to the log
967 """add a revision to the log
968
968
969 text - the revision data to add
969 text - the revision data to add
970 transaction - the transaction object used for rollback
970 transaction - the transaction object used for rollback
971 link - the linkrev data to add
971 link - the linkrev data to add
972 p1, p2 - the parent nodeids of the revision
972 p1, p2 - the parent nodeids of the revision
973 d - an optional precomputed delta
973 d - an optional precomputed delta
974 """
974 """
975 if not self.inlinedata():
975 if not self.inlinedata():
976 dfh = self.opener(self.datafile, "a")
976 dfh = self.opener(self.datafile, "a")
977 else:
977 else:
978 dfh = None
978 dfh = None
979 ifh = self.opener(self.indexfile, "a+")
979 ifh = self.opener(self.indexfile, "a+")
980 return self._addrevision(text, transaction, link, p1, p2, d, ifh, dfh)
980 return self._addrevision(text, transaction, link, p1, p2, d, ifh, dfh)
981
981
982 def _addrevision(self, text, transaction, link, p1, p2, d, ifh, dfh):
982 def _addrevision(self, text, transaction, link, p1, p2, d, ifh, dfh):
983 if text is None: text = ""
983 if text is None: text = ""
984 if p1 is None: p1 = self.tip()
984 if p1 is None: p1 = self.tip()
985 if p2 is None: p2 = nullid
985 if p2 is None: p2 = nullid
986
986
987 node = hash(text, p1, p2)
987 node = hash(text, p1, p2)
988
988
989 if node in self.nodemap:
989 if node in self.nodemap:
990 return node
990 return node
991
991
992 n = self.count()
992 n = self.count()
993 t = n - 1
993 t = n - 1
994
994
995 if n:
995 if n:
996 base = self.base(t)
996 base = self.base(t)
997 start = self.start(base)
997 start = self.start(base)
998 end = self.end(t)
998 end = self.end(t)
999 if not d:
999 if not d:
1000 prev = self.revision(self.tip())
1000 prev = self.revision(self.tip())
1001 d = self.diff(prev, text)
1001 d = self.diff(prev, text)
1002 data = compress(d)
1002 data = compress(d)
1003 l = len(data[1]) + len(data[0])
1003 l = len(data[1]) + len(data[0])
1004 dist = end - start + l
1004 dist = end - start + l
1005
1005
1006 # full versions are inserted when the needed deltas
1006 # full versions are inserted when the needed deltas
1007 # become comparable to the uncompressed text
1007 # become comparable to the uncompressed text
1008 if not n or dist > len(text) * 2:
1008 if not n or dist > len(text) * 2:
1009 data = compress(text)
1009 data = compress(text)
1010 l = len(data[1]) + len(data[0])
1010 l = len(data[1]) + len(data[0])
1011 base = n
1011 base = n
1012 else:
1012 else:
1013 base = self.base(t)
1013 base = self.base(t)
1014
1014
1015 offset = 0
1015 offset = 0
1016 if t >= 0:
1016 if t >= 0:
1017 offset = self.end(t)
1017 offset = self.end(t)
1018
1018
1019 if self.version == REVLOGV0:
1019 if self.version == REVLOGV0:
1020 e = (offset, l, base, link, p1, p2, node)
1020 e = (offset, l, base, link, p1, p2, node)
1021 else:
1021 else:
1022 e = (self.offset_type(offset, 0), l, len(text),
1022 e = (self.offset_type(offset, 0), l, len(text),
1023 base, link, self.rev(p1), self.rev(p2), node)
1023 base, link, self.rev(p1), self.rev(p2), node)
1024
1024
1025 self.index.append(e)
1025 self.index.append(e)
1026 self.nodemap[node] = n
1026 self.nodemap[node] = n
1027 entry = struct.pack(self.indexformat, *e)
1027 entry = struct.pack(self.indexformat, *e)
1028
1028
1029 if not self.inlinedata():
1029 if not self.inlinedata():
1030 transaction.add(self.datafile, offset)
1030 transaction.add(self.datafile, offset)
1031 transaction.add(self.indexfile, n * len(entry))
1031 transaction.add(self.indexfile, n * len(entry))
1032 if data[0]:
1032 if data[0]:
1033 dfh.write(data[0])
1033 dfh.write(data[0])
1034 dfh.write(data[1])
1034 dfh.write(data[1])
1035 dfh.flush()
1035 dfh.flush()
1036 else:
1036 else:
1037 ifh.seek(0, 2)
1037 ifh.seek(0, 2)
1038 transaction.add(self.indexfile, ifh.tell(), self.count() - 1)
1038 transaction.add(self.indexfile, ifh.tell(), self.count() - 1)
1039
1039
1040 if len(self.index) == 1 and self.version != REVLOGV0:
1040 if len(self.index) == 1 and self.version != REVLOGV0:
1041 l = struct.pack(versionformat, self.version)
1041 l = struct.pack(versionformat, self.version)
1042 ifh.write(l)
1042 ifh.write(l)
1043 entry = entry[4:]
1043 entry = entry[4:]
1044
1044
1045 ifh.write(entry)
1045 ifh.write(entry)
1046
1046
1047 if self.inlinedata():
1047 if self.inlinedata():
1048 ifh.write(data[0])
1048 ifh.write(data[0])
1049 ifh.write(data[1])
1049 ifh.write(data[1])
1050 self.checkinlinesize(transaction, ifh)
1050 self.checkinlinesize(transaction, ifh)
1051
1051
1052 self.cache = (node, n, text)
1052 self.cache = (node, n, text)
1053 return node
1053 return node
1054
1054
1055 def ancestor(self, a, b):
1055 def ancestor(self, a, b):
1056 """calculate the least common ancestor of nodes a and b"""
1056 """calculate the least common ancestor of nodes a and b"""
1057
1057
1058 def parents(rev):
1058 def parents(rev):
1059 return [p for p in self.parentrevs(rev) if p != -1]
1059 return [p for p in self.parentrevs(rev) if p != -1]
1060
1060
1061 c = ancestor.ancestor(self.rev(a), self.rev(b), parents)
1061 c = ancestor.ancestor(self.rev(a), self.rev(b), parents)
1062 if c is None:
1062 if c is None:
1063 return nullid
1063 return nullid
1064
1064
1065 return self.node(c)
1065 return self.node(c)
1066
1066
1067 def group(self, nodelist, lookup, infocollect=None):
1067 def group(self, nodelist, lookup, infocollect=None):
1068 """calculate a delta group
1068 """calculate a delta group
1069
1069
1070 Given a list of changeset revs, return a set of deltas and
1070 Given a list of changeset revs, return a set of deltas and
1071 metadata corresponding to nodes. the first delta is
1071 metadata corresponding to nodes. the first delta is
1072 parent(nodes[0]) -> nodes[0] the receiver is guaranteed to
1072 parent(nodes[0]) -> nodes[0] the receiver is guaranteed to
1073 have this parent as it has all history before these
1073 have this parent as it has all history before these
1074 changesets. parent is parent[0]
1074 changesets. parent is parent[0]
1075 """
1075 """
1076 revs = [self.rev(n) for n in nodelist]
1076 revs = [self.rev(n) for n in nodelist]
1077
1077
1078 # if we don't have any revisions touched by these changesets, bail
1078 # if we don't have any revisions touched by these changesets, bail
1079 if not revs:
1079 if not revs:
1080 yield changegroup.closechunk()
1080 yield changegroup.closechunk()
1081 return
1081 return
1082
1082
1083 # add the parent of the first rev
1083 # add the parent of the first rev
1084 p = self.parents(self.node(revs[0]))[0]
1084 p = self.parents(self.node(revs[0]))[0]
1085 revs.insert(0, self.rev(p))
1085 revs.insert(0, self.rev(p))
1086
1086
1087 # build deltas
1087 # build deltas
1088 for d in xrange(0, len(revs) - 1):
1088 for d in xrange(0, len(revs) - 1):
1089 a, b = revs[d], revs[d + 1]
1089 a, b = revs[d], revs[d + 1]
1090 nb = self.node(b)
1090 nb = self.node(b)
1091
1091
1092 if infocollect is not None:
1092 if infocollect is not None:
1093 infocollect(nb)
1093 infocollect(nb)
1094
1094
1095 d = self.revdiff(a, b)
1095 d = self.revdiff(a, b)
1096 p = self.parents(nb)
1096 p = self.parents(nb)
1097 meta = nb + p[0] + p[1] + lookup(nb)
1097 meta = nb + p[0] + p[1] + lookup(nb)
1098 yield changegroup.genchunk("%s%s" % (meta, d))
1098 yield changegroup.genchunk("%s%s" % (meta, d))
1099
1099
1100 yield changegroup.closechunk()
1100 yield changegroup.closechunk()
1101
1101
1102 def addgroup(self, revs, linkmapper, transaction, unique=0):
1102 def addgroup(self, revs, linkmapper, transaction, unique=0):
1103 """
1103 """
1104 add a delta group
1104 add a delta group
1105
1105
1106 given a set of deltas, add them to the revision log. the
1106 given a set of deltas, add them to the revision log. the
1107 first delta is against its parent, which should be in our
1107 first delta is against its parent, which should be in our
1108 log, the rest are against the previous delta.
1108 log, the rest are against the previous delta.
1109 """
1109 """
1110
1110
1111 #track the base of the current delta log
1111 #track the base of the current delta log
1112 r = self.count()
1112 r = self.count()
1113 t = r - 1
1113 t = r - 1
1114 node = None
1114 node = None
1115
1115
1116 base = prev = -1
1116 base = prev = -1
1117 start = end = textlen = 0
1117 start = end = textlen = 0
1118 if r:
1118 if r:
1119 end = self.end(t)
1119 end = self.end(t)
1120
1120
1121 ifh = self.opener(self.indexfile, "a+")
1121 ifh = self.opener(self.indexfile, "a+")
1122 ifh.seek(0, 2)
1122 ifh.seek(0, 2)
1123 transaction.add(self.indexfile, ifh.tell(), self.count())
1123 transaction.add(self.indexfile, ifh.tell(), self.count())
1124 if self.inlinedata():
1124 if self.inlinedata():
1125 dfh = None
1125 dfh = None
1126 else:
1126 else:
1127 transaction.add(self.datafile, end)
1127 transaction.add(self.datafile, end)
1128 dfh = self.opener(self.datafile, "a")
1128 dfh = self.opener(self.datafile, "a")
1129
1129
1130 # loop through our set of deltas
1130 # loop through our set of deltas
1131 chain = None
1131 chain = None
1132 for chunk in revs:
1132 for chunk in revs:
1133 node, p1, p2, cs = struct.unpack("20s20s20s20s", chunk[:80])
1133 node, p1, p2, cs = struct.unpack("20s20s20s20s", chunk[:80])
1134 link = linkmapper(cs)
1134 link = linkmapper(cs)
1135 if node in self.nodemap:
1135 if node in self.nodemap:
1136 # this can happen if two branches make the same change
1136 # this can happen if two branches make the same change
1137 # if unique:
1137 # if unique:
1138 # raise RevlogError(_("already have %s") % hex(node[:4]))
1138 # raise RevlogError(_("already have %s") % hex(node[:4]))
1139 chain = node
1139 chain = node
1140 continue
1140 continue
1141 delta = chunk[80:]
1141 delta = chunk[80:]
1142
1142
1143 for p in (p1, p2):
1143 for p in (p1, p2):
1144 if not p in self.nodemap:
1144 if not p in self.nodemap:
1145 raise RevlogError(_("unknown parent %s") % short(p))
1145 raise RevlogError(_("unknown parent %s") % short(p))
1146
1146
1147 if not chain:
1147 if not chain:
1148 # retrieve the parent revision of the delta chain
1148 # retrieve the parent revision of the delta chain
1149 chain = p1
1149 chain = p1
1150 if not chain in self.nodemap:
1150 if not chain in self.nodemap:
1151 raise RevlogError(_("unknown base %s") % short(chain[:4]))
1151 raise RevlogError(_("unknown base %s") % short(chain[:4]))
1152
1152
1153 # full versions are inserted when the needed deltas become
1153 # full versions are inserted when the needed deltas become
1154 # comparable to the uncompressed text or when the previous
1154 # comparable to the uncompressed text or when the previous
1155 # version is not the one we have a delta against. We use
1155 # version is not the one we have a delta against. We use
1156 # the size of the previous full rev as a proxy for the
1156 # the size of the previous full rev as a proxy for the
1157 # current size.
1157 # current size.
1158
1158
1159 if chain == prev:
1159 if chain == prev:
1160 tempd = compress(delta)
1160 tempd = compress(delta)
1161 cdelta = tempd[0] + tempd[1]
1161 cdelta = tempd[0] + tempd[1]
1162 textlen = mdiff.patchedsize(textlen, delta)
1162 textlen = mdiff.patchedsize(textlen, delta)
1163
1163
1164 if chain != prev or (end - start + len(cdelta)) > textlen * 2:
1164 if chain != prev or (end - start + len(cdelta)) > textlen * 2:
1165 # flush our writes here so we can read it in revision
1165 # flush our writes here so we can read it in revision
1166 if dfh:
1166 if dfh:
1167 dfh.flush()
1167 dfh.flush()
1168 ifh.flush()
1168 ifh.flush()
1169 text = self.revision(chain)
1169 text = self.revision(chain)
1170 text = self.patches(text, [delta])
1170 text = self.patches(text, [delta])
1171 chk = self._addrevision(text, transaction, link, p1, p2, None,
1171 chk = self._addrevision(text, transaction, link, p1, p2, None,
1172 ifh, dfh)
1172 ifh, dfh)
1173 if not dfh and not self.inlinedata():
1173 if not dfh and not self.inlinedata():
1174 # addrevision switched from inline to conventional
1174 # addrevision switched from inline to conventional
1175 # reopen the index
1175 # reopen the index
1176 dfh = self.opener(self.datafile, "a")
1176 dfh = self.opener(self.datafile, "a")
1177 ifh = self.opener(self.indexfile, "a")
1177 ifh = self.opener(self.indexfile, "a")
1178 if chk != node:
1178 if chk != node:
1179 raise RevlogError(_("consistency error adding group"))
1179 raise RevlogError(_("consistency error adding group"))
1180 textlen = len(text)
1180 textlen = len(text)
1181 else:
1181 else:
1182 if self.version == REVLOGV0:
1182 if self.version == REVLOGV0:
1183 e = (end, len(cdelta), base, link, p1, p2, node)
1183 e = (end, len(cdelta), base, link, p1, p2, node)
1184 else:
1184 else:
1185 e = (self.offset_type(end, 0), len(cdelta), textlen, base,
1185 e = (self.offset_type(end, 0), len(cdelta), textlen, base,
1186 link, self.rev(p1), self.rev(p2), node)
1186 link, self.rev(p1), self.rev(p2), node)
1187 self.index.append(e)
1187 self.index.append(e)
1188 self.nodemap[node] = r
1188 self.nodemap[node] = r
1189 if self.inlinedata():
1189 if self.inlinedata():
1190 ifh.write(struct.pack(self.indexformat, *e))
1190 ifh.write(struct.pack(self.indexformat, *e))
1191 ifh.write(cdelta)
1191 ifh.write(cdelta)
1192 self.checkinlinesize(transaction, ifh)
1192 self.checkinlinesize(transaction, ifh)
1193 if not self.inlinedata():
1193 if not self.inlinedata():
1194 dfh = self.opener(self.datafile, "a")
1194 dfh = self.opener(self.datafile, "a")
1195 ifh = self.opener(self.indexfile, "a")
1195 ifh = self.opener(self.indexfile, "a")
1196 else:
1196 else:
1197 dfh.write(cdelta)
1197 dfh.write(cdelta)
1198 ifh.write(struct.pack(self.indexformat, *e))
1198 ifh.write(struct.pack(self.indexformat, *e))
1199
1199
1200 t, r, chain, prev = r, r + 1, node, node
1200 t, r, chain, prev = r, r + 1, node, node
1201 base = self.base(t)
1201 base = self.base(t)
1202 start = self.start(base)
1202 start = self.start(base)
1203 end = self.end(t)
1203 end = self.end(t)
1204
1204
1205 return node
1205 return node
1206
1206
1207 def strip(self, rev, minlink):
1207 def strip(self, rev, minlink):
1208 if self.count() == 0 or rev >= self.count():
1208 if self.count() == 0 or rev >= self.count():
1209 return
1209 return
1210
1210
1211 if isinstance(self.index, lazyindex):
1211 if isinstance(self.index, lazyindex):
1212 self.loadindexmap()
1212 self.loadindexmap()
1213
1213
1214 # When stripping away a revision, we need to make sure it
1214 # When stripping away a revision, we need to make sure it
1215 # does not actually belong to an older changeset.
1215 # does not actually belong to an older changeset.
1216 # The minlink parameter defines the oldest revision
1216 # The minlink parameter defines the oldest revision
1217 # we're allowed to strip away.
1217 # we're allowed to strip away.
1218 while minlink > self.index[rev][-4]:
1218 while minlink > self.index[rev][-4]:
1219 rev += 1
1219 rev += 1
1220 if rev >= self.count():
1220 if rev >= self.count():
1221 return
1221 return
1222
1222
1223 # first truncate the files on disk
1223 # first truncate the files on disk
1224 end = self.start(rev)
1224 end = self.start(rev)
1225 if not self.inlinedata():
1225 if not self.inlinedata():
1226 df = self.opener(self.datafile, "a")
1226 df = self.opener(self.datafile, "a")
1227 df.truncate(end)
1227 df.truncate(end)
1228 end = rev * struct.calcsize(self.indexformat)
1228 end = rev * struct.calcsize(self.indexformat)
1229 else:
1229 else:
1230 end += rev * struct.calcsize(self.indexformat)
1230 end += rev * struct.calcsize(self.indexformat)
1231
1231
1232 indexf = self.opener(self.indexfile, "a")
1232 indexf = self.opener(self.indexfile, "a")
1233 indexf.truncate(end)
1233 indexf.truncate(end)
1234
1234
1235 # then reset internal state in memory to forget those revisions
1235 # then reset internal state in memory to forget those revisions
1236 self.cache = None
1236 self.cache = None
1237 self.chunkcache = None
1237 self.chunkcache = None
1238 for x in xrange(rev, self.count()):
1238 for x in xrange(rev, self.count()):
1239 del self.nodemap[self.node(x)]
1239 del self.nodemap[self.node(x)]
1240
1240
1241 del self.index[rev:]
1241 del self.index[rev:]
1242
1242
1243 def checksize(self):
1243 def checksize(self):
1244 expected = 0
1244 expected = 0
1245 if self.count():
1245 if self.count():
1246 expected = self.end(self.count() - 1)
1246 expected = self.end(self.count() - 1)
1247
1247
1248 try:
1248 try:
1249 f = self.opener(self.datafile)
1249 f = self.opener(self.datafile)
1250 f.seek(0, 2)
1250 f.seek(0, 2)
1251 actual = f.tell()
1251 actual = f.tell()
1252 dd = actual - expected
1252 dd = actual - expected
1253 except IOError, inst:
1253 except IOError, inst:
1254 if inst.errno != errno.ENOENT:
1254 if inst.errno != errno.ENOENT:
1255 raise
1255 raise
1256 dd = 0
1256 dd = 0
1257
1257
1258 try:
1258 try:
1259 f = self.opener(self.indexfile)
1259 f = self.opener(self.indexfile)
1260 f.seek(0, 2)
1260 f.seek(0, 2)
1261 actual = f.tell()
1261 actual = f.tell()
1262 s = struct.calcsize(self.indexformat)
1262 s = struct.calcsize(self.indexformat)
1263 i = actual / s
1263 i = actual / s
1264 di = actual - (i * s)
1264 di = actual - (i * s)
1265 if self.inlinedata():
1265 if self.inlinedata():
1266 databytes = 0
1266 databytes = 0
1267 for r in xrange(self.count()):
1267 for r in xrange(self.count()):
1268 databytes += self.length(r)
1268 databytes += self.length(r)
1269 dd = 0
1269 dd = 0
1270 di = actual - self.count() * s - databytes
1270 di = actual - self.count() * s - databytes
1271 except IOError, inst:
1271 except IOError, inst:
1272 if inst.errno != errno.ENOENT:
1272 if inst.errno != errno.ENOENT:
1273 raise
1273 raise
1274 di = 0
1274 di = 0
1275
1275
1276 return (dd, di)
1276 return (dd, di)
1277
1277
1278
1278
General Comments 0
You need to be logged in to leave comments. Login now