Mercurial > hg
annotate mercurial/manifest.py @ 1678:b345cc4c22c0
reverting 11d12bd6e1dcd9610fa26e97d25e7ad553e8ffa5
passing local everywhere violate the layering
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Thu, 15 Dec 2005 18:04:05 +0100 |
parents | 11d12bd6e1dc |
children | c21b54f7f7b8 |
rev | line source |
---|---|
1089 | 1 # manifest.py - manifest revision class for mercurial |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
2 # |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
3 # Copyright 2005 Matt Mackall <mpm@selenic.com> |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
4 # |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
5 # This software may be used and distributed according to the terms |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
6 # of the GNU General Public License, incorporated herein by reference. |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
7 |
1541
bf4e7ef08741
fixed some stuff pychecker shows, marked unclear/wrong stuff with XXX
twaldmann@thinkmo.de
parents:
1534
diff
changeset
|
8 import struct |
262 | 9 from revlog import * |
1400
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1098
diff
changeset
|
10 from i18n import gettext as _ |
262 | 11 from demandload import * |
1534 | 12 demandload(globals(), "bisect array") |
79 | 13 |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
14 class manifest(revlog): |
1678
b345cc4c22c0
reverting 11d12bd6e1dcd9610fa26e97d25e7ad553e8ffa5
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
1677
diff
changeset
|
15 def __init__(self, opener): |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
16 self.mapcache = None |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
17 self.listcache = None |
1678
b345cc4c22c0
reverting 11d12bd6e1dcd9610fa26e97d25e7ad553e8ffa5
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
1677
diff
changeset
|
18 revlog.__init__(self, opener, "00manifest.i", "00manifest.d") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
19 |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
20 def read(self, node): |
313 | 21 if node == nullid: return {} # don't upset local cache |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
22 if self.mapcache and self.mapcache[0] == node: |
561 | 23 return self.mapcache[1] |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
24 text = self.revision(node) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
25 map = {} |
276 | 26 flag = {} |
1534 | 27 self.listcache = array.array('c', text) |
28 lines = text.splitlines(1) | |
29 for l in lines: | |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
30 (f, n) = l.split('\0') |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
31 map[f] = bin(n[:40]) |
276 | 32 flag[f] = (n[40:-1] == "x") |
33 self.mapcache = (node, map, flag) | |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
34 return map |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
35 |
276 | 36 def readflags(self, node): |
313 | 37 if node == nullid: return {} # don't upset local cache |
358
9f4077d7ef6f
[PATCH] manifest.readflags performance buglet
mpm@selenic.com
parents:
350
diff
changeset
|
38 if not self.mapcache or self.mapcache[0] != node: |
276 | 39 self.read(node) |
40 return self.mapcache[2] | |
41 | |
1534 | 42 def diff(self, a, b): |
43 return mdiff.textdiff(str(a), str(b)) | |
44 | |
741 | 45 def add(self, map, flags, transaction, link, p1=None, p2=None, |
46 changed=None): | |
1534 | 47 |
48 # returns a tuple (start, end). If the string is found | |
49 # m[start:end] are the line containing that string. If start == end | |
50 # the string was not found and they indicate the proper sorted | |
51 # insertion point. This was taken from bisect_left, and modified | |
52 # to find line start/end as it goes along. | |
53 # | |
54 # m should be a buffer or a string | |
55 # s is a string | |
56 # | |
57 def manifestsearch(m, s, lo=0, hi=None): | |
58 def advance(i, c): | |
59 while i < lenm and m[i] != c: | |
644 | 60 i += 1 |
1534 | 61 return i |
62 lenm = len(m) | |
63 if not hi: | |
64 hi = lenm | |
65 while lo < hi: | |
66 mid = (lo + hi) // 2 | |
67 start = mid | |
68 while start > 0 and m[start-1] != '\n': | |
69 start -= 1 | |
70 end = advance(start, '\0') | |
71 if m[start:end] < s: | |
72 # we know that after the null there are 40 bytes of sha1 | |
73 # this translates to the bisect lo = mid + 1 | |
74 lo = advance(end + 40, '\n') + 1 | |
75 else: | |
76 # this translates to the bisect hi = mid | |
77 hi = start | |
78 end = advance(lo, '\0') | |
79 found = m[lo:end] | |
80 if cmp(s, found) == 0: | |
81 # we know that after the null there are 40 bytes of sha1 | |
82 end = advance(end + 40, '\n') | |
83 return (lo, end+1) | |
84 else: | |
85 return (lo, lo) | |
644 | 86 |
87 # apply the changes collected during the bisect loop to our addlist | |
1534 | 88 # return a delta suitable for addrevision |
89 def addlistdelta(addlist, x): | |
90 # start from the bottom up | |
644 | 91 # so changes to the offsets don't mess things up. |
1534 | 92 i = len(x) |
644 | 93 while i > 0: |
94 i -= 1 | |
1534 | 95 start = x[i][0] |
96 end = x[i][1] | |
97 if x[i][2]: | |
98 addlist[start:end] = array.array('c', x[i][2]) | |
644 | 99 else: |
100 del addlist[start:end] | |
1534 | 101 return "".join([struct.pack(">lll", d[0], d[1], len(d[2])) + d[2] \ |
102 for d in x ]) | |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
103 |
644 | 104 # if we're using the listcache, make sure it is valid and |
105 # parented by the same node we're diffing against | |
741 | 106 if not changed or not self.listcache or not p1 or \ |
107 self.mapcache[0] != p1: | |
644 | 108 files = map.keys() |
109 files.sort() | |
110 | |
1534 | 111 text = ["%s\000%s%s\n" % |
644 | 112 (f, hex(map[f]), flags[f] and "x" or '') |
113 for f in files] | |
1534 | 114 self.listcache = array.array('c', "".join(text)) |
644 | 115 cachedelta = None |
116 else: | |
1534 | 117 addlist = self.listcache |
644 | 118 |
119 # combine the changed lists into one list for sorting | |
120 work = [[x, 0] for x in changed[0]] | |
121 work[len(work):] = [[x, 1] for x in changed[1]] | |
122 work.sort() | |
123 | |
124 delta = [] | |
1534 | 125 dstart = None |
126 dend = None | |
127 dline = [""] | |
128 start = 0 | |
129 # zero copy representation of addlist as a buffer | |
130 addbuf = buffer(addlist) | |
644 | 131 |
1534 | 132 # start with a readonly loop that finds the offset of |
133 # each line and creates the deltas | |
644 | 134 for w in work: |
135 f = w[0] | |
741 | 136 # bs will either be the index of the item or the insert point |
1534 | 137 start, end = manifestsearch(addbuf, f, start) |
644 | 138 if w[1] == 0: |
741 | 139 l = "%s\000%s%s\n" % (f, hex(map[f]), |
140 flags[f] and "x" or '') | |
644 | 141 else: |
1534 | 142 l = "" |
143 if start == end and w[1] == 1: | |
144 # item we want to delete was not found, error out | |
145 raise AssertionError( | |
1402
9d2c2e6b32b5
i18n part2: use '_' for all strings who are part of the user interface
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
1400
diff
changeset
|
146 _("failed to remove %s from manifest\n") % f) |
1534 | 147 if dstart != None and dstart <= start and dend >= start: |
148 if dend < end: | |
149 dend = end | |
150 if l: | |
151 dline.append(l) | |
644 | 152 else: |
1534 | 153 if dstart != None: |
154 delta.append([dstart, dend, "".join(dline)]) | |
155 dstart = start | |
156 dend = end | |
157 dline = [l] | |
644 | 158 |
1534 | 159 if dstart != None: |
160 delta.append([dstart, dend, "".join(dline)]) | |
161 # apply the delta to the addlist, and get a delta for addrevision | |
162 cachedelta = addlistdelta(addlist, delta) | |
644 | 163 |
1534 | 164 # the delta is only valid if we've been processing the tip revision |
165 if self.mapcache[0] != self.tip(): | |
166 cachedelta = None | |
167 self.listcache = addlist | |
168 | |
169 n = self.addrevision(buffer(self.listcache), transaction, link, p1, \ | |
170 p2, cachedelta) | |
302 | 171 self.mapcache = (n, map, flags) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
172 |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
173 return n |