author | mpm@selenic.com |
Fri, 26 Aug 2005 16:49:23 -0700 | |
changeset 1072 | 05dc7aba22eb |
parent 1069 | 4337cd845a2a |
child 1089 | 142b5d5ec9cc |
permissions | -rw-r--r-- |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1 |
# hg.py - repository classes for mercurial |
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 |
|
249 | 8 |
import sys, struct, os |
419
28511fc21073
[PATCH] file seperator handling for the other 'OS'
mpm@selenic.com
parents:
418
diff
changeset
|
9 |
import util |
262 | 10 |
from revlog import * |
11 |
from demandload import * |
|
12 |
demandload(globals(), "re lock urllib urllib2 transaction time socket") |
|
765 | 13 |
demandload(globals(), "tempfile httprangereader bdiff urlparse") |
884
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
14 |
demandload(globals(), "bisect errno select stat") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
15 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
16 |
class filelog(revlog): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
17 |
def __init__(self, opener, path): |
144
ea9188538222
Fix transaction handling bug by reverting fileopener change
mpm@selenic.com
parents:
140
diff
changeset
|
18 |
revlog.__init__(self, opener, |
786
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
19 |
os.path.join("data", self.encodedir(path + ".i")), |
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
20 |
os.path.join("data", self.encodedir(path + ".d"))) |
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
21 |
|
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
22 |
# This avoids a collision between a file named foo and a dir named |
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
23 |
# foo.i or foo.d |
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
24 |
def encodedir(self, path): |
856
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
25 |
return (path |
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
26 |
.replace(".hg/", ".hg.hg/") |
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
27 |
.replace(".i/", ".i.hg/") |
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
28 |
.replace(".d/", ".d.hg/")) |
786
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
29 |
|
902b12d55751
Fix the directory and revlog collision problem
mpm@selenic.com
parents:
785
diff
changeset
|
30 |
def decodedir(self, path): |
856
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
31 |
return (path |
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
32 |
.replace(".d.hg/", ".d/") |
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
33 |
.replace(".i.hg/", ".i/") |
fbe964ae7325
Fixed encoding of directories ending in .d or .i:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
839
diff
changeset
|
34 |
.replace(".hg.hg/", ".hg/")) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
35 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
36 |
def read(self, node): |
360 | 37 |
t = self.revision(node) |
686
d7d68d27ebe5
Reapply startswith() changes that got lost with stale edit
Matt Mackall <mpm@selenic.com>
parents:
681
diff
changeset
|
38 |
if not t.startswith('\1\n'): |
360 | 39 |
return t |
40 |
s = t.find('\1\n', 2) |
|
41 |
return t[s+2:] |
|
42 |
||
43 |
def readmeta(self, node): |
|
44 |
t = self.revision(node) |
|
686
d7d68d27ebe5
Reapply startswith() changes that got lost with stale edit
Matt Mackall <mpm@selenic.com>
parents:
681
diff
changeset
|
45 |
if not t.startswith('\1\n'): |
360 | 46 |
return t |
47 |
s = t.find('\1\n', 2) |
|
48 |
mt = t[2:s] |
|
49 |
for l in mt.splitlines(): |
|
50 |
k, v = l.split(": ", 1) |
|
51 |
m[k] = v |
|
52 |
return m |
|
53 |
||
54 |
def add(self, text, meta, transaction, link, p1=None, p2=None): |
|
686
d7d68d27ebe5
Reapply startswith() changes that got lost with stale edit
Matt Mackall <mpm@selenic.com>
parents:
681
diff
changeset
|
55 |
if meta or text.startswith('\1\n'): |
360 | 56 |
mt = "" |
57 |
if meta: |
|
58 |
mt = [ "%s: %s\n" % (k, v) for k,v in meta.items() ] |
|
59 |
text = "\1\n" + "".join(mt) + "\1\n" + text |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
60 |
return self.addrevision(text, transaction, link, p1, p2) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
61 |
|
79 | 62 |
def annotate(self, node): |
199 | 63 |
|
64 |
def decorate(text, rev): |
|
436 | 65 |
return ([rev] * len(text.splitlines()), text) |
199 | 66 |
|
67 |
def pair(parent, child): |
|
436 | 68 |
for a1, a2, b1, b2 in bdiff.blocks(parent[1], child[1]): |
471 | 69 |
child[0][b1:b2] = parent[0][a1:a2] |
70 |
return child |
|
199 | 71 |
|
200 | 72 |
# find all ancestors |
216
201115f2859b
hg annotate: actually annotate the given version
mpm@selenic.com
parents:
210
diff
changeset
|
73 |
needed = {node:1} |
199 | 74 |
visit = [node] |
75 |
while visit: |
|
76 |
n = visit.pop(0) |
|
77 |
for p in self.parents(n): |
|
78 |
if p not in needed: |
|
79 |
needed[p] = 1 |
|
80 |
visit.append(p) |
|
200 | 81 |
else: |
82 |
# count how many times we'll use this |
|
83 |
needed[p] += 1 |
|
199 | 84 |
|
200 | 85 |
# sort by revision which is a topological order |
471 | 86 |
visit = [ (self.rev(n), n) for n in needed.keys() ] |
199 | 87 |
visit.sort() |
88 |
hist = {} |
|
89 |
||
471 | 90 |
for r,n in visit: |
199 | 91 |
curr = decorate(self.read(n), self.linkrev(n)) |
92 |
for p in self.parents(n): |
|
93 |
if p != nullid: |
|
94 |
curr = pair(hist[p], curr) |
|
200 | 95 |
# trim the history of unneeded revs |
96 |
needed[p] -= 1 |
|
97 |
if not needed[p]: |
|
98 |
del hist[p] |
|
199 | 99 |
hist[n] = curr |
100 |
||
436 | 101 |
return zip(hist[n][0], hist[n][1].splitlines(1)) |
79 | 102 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
103 |
class manifest(revlog): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
104 |
def __init__(self, opener): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
105 |
self.mapcache = None |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
106 |
self.listcache = None |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
107 |
self.addlist = None |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
108 |
revlog.__init__(self, opener, "00manifest.i", "00manifest.d") |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
109 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
110 |
def read(self, node): |
313 | 111 |
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
|
112 |
if self.mapcache and self.mapcache[0] == node: |
561 | 113 |
return self.mapcache[1] |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
114 |
text = self.revision(node) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
115 |
map = {} |
276 | 116 |
flag = {} |
25
daa724b27300
Fix corruption from manifest.listcache optimization
mpm@selenic.com
parents:
20
diff
changeset
|
117 |
self.listcache = (text, text.splitlines(1)) |
daa724b27300
Fix corruption from manifest.listcache optimization
mpm@selenic.com
parents:
20
diff
changeset
|
118 |
for l in self.listcache[1]: |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
119 |
(f, n) = l.split('\0') |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
120 |
map[f] = bin(n[:40]) |
276 | 121 |
flag[f] = (n[40:-1] == "x") |
122 |
self.mapcache = (node, map, flag) |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
123 |
return map |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
124 |
|
276 | 125 |
def readflags(self, node): |
313 | 126 |
if node == nullid: return {} # don't upset local cache |
358
9f4077d7ef6f
[PATCH] manifest.readflags performance buglet
mpm@selenic.com
parents:
350
diff
changeset
|
127 |
if not self.mapcache or self.mapcache[0] != node: |
276 | 128 |
self.read(node) |
129 |
return self.mapcache[2] |
|
130 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
131 |
def diff(self, a, b): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
132 |
# this is sneaky, as we're not actually using a and b |
140 | 133 |
if self.listcache and self.addlist and self.listcache[0] == a: |
98 | 134 |
d = mdiff.diff(self.listcache[1], self.addlist, 1) |
135 |
if mdiff.patch(a, d) != b: |
|
136 |
sys.stderr.write("*** sortdiff failed, falling back ***\n") |
|
137 |
return mdiff.textdiff(a, b) |
|
138 |
return d |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
139 |
else: |
44 | 140 |
return mdiff.textdiff(a, b) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
141 |
|
741 | 142 |
def add(self, map, flags, transaction, link, p1=None, p2=None, |
143 |
changed=None): |
|
644 | 144 |
# directly generate the mdiff delta from the data collected during |
145 |
# the bisect loop below |
|
146 |
def gendelta(delta): |
|
147 |
i = 0 |
|
148 |
result = [] |
|
149 |
while i < len(delta): |
|
150 |
start = delta[i][2] |
|
151 |
end = delta[i][3] |
|
152 |
l = delta[i][4] |
|
153 |
if l == None: |
|
154 |
l = "" |
|
741 | 155 |
while i < len(delta) - 1 and start <= delta[i+1][2] \ |
156 |
and end >= delta[i+1][2]: |
|
644 | 157 |
if delta[i+1][3] > end: |
158 |
end = delta[i+1][3] |
|
159 |
if delta[i+1][4]: |
|
160 |
l += delta[i+1][4] |
|
161 |
i += 1 |
|
162 |
result.append(struct.pack(">lll", start, end, len(l)) + l) |
|
163 |
i += 1 |
|
164 |
return result |
|
165 |
||
166 |
# apply the changes collected during the bisect loop to our addlist |
|
167 |
def addlistdelta(addlist, delta): |
|
168 |
# apply the deltas to the addlist. start from the bottom up |
|
169 |
# so changes to the offsets don't mess things up. |
|
170 |
i = len(delta) |
|
171 |
while i > 0: |
|
172 |
i -= 1 |
|
173 |
start = delta[i][0] |
|
174 |
end = delta[i][1] |
|
175 |
if delta[i][4]: |
|
176 |
addlist[start:end] = [delta[i][4]] |
|
177 |
else: |
|
178 |
del addlist[start:end] |
|
179 |
return addlist |
|
180 |
||
181 |
# calculate the byte offset of the start of each line in the |
|
182 |
# manifest |
|
183 |
def calcoffsets(addlist): |
|
184 |
offsets = [0] * (len(addlist) + 1) |
|
185 |
offset = 0 |
|
186 |
i = 0 |
|
187 |
while i < len(addlist): |
|
188 |
offsets[i] = offset |
|
189 |
offset += len(addlist[i]) |
|
190 |
i += 1 |
|
191 |
offsets[i] = offset |
|
192 |
return offsets |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
193 |
|
644 | 194 |
# if we're using the listcache, make sure it is valid and |
195 |
# parented by the same node we're diffing against |
|
741 | 196 |
if not changed or not self.listcache or not p1 or \ |
197 |
self.mapcache[0] != p1: |
|
644 | 198 |
files = map.keys() |
199 |
files.sort() |
|
200 |
||
201 |
self.addlist = ["%s\000%s%s\n" % |
|
202 |
(f, hex(map[f]), flags[f] and "x" or '') |
|
203 |
for f in files] |
|
204 |
cachedelta = None |
|
205 |
else: |
|
206 |
addlist = self.listcache[1] |
|
207 |
||
208 |
# find the starting offset for each line in the add list |
|
209 |
offsets = calcoffsets(addlist) |
|
210 |
||
211 |
# combine the changed lists into one list for sorting |
|
212 |
work = [[x, 0] for x in changed[0]] |
|
213 |
work[len(work):] = [[x, 1] for x in changed[1]] |
|
214 |
work.sort() |
|
215 |
||
216 |
delta = [] |
|
217 |
bs = 0 |
|
218 |
||
219 |
for w in work: |
|
220 |
f = w[0] |
|
741 | 221 |
# bs will either be the index of the item or the insert point |
644 | 222 |
bs = bisect.bisect(addlist, f, bs) |
223 |
if bs < len(addlist): |
|
224 |
fn = addlist[bs][:addlist[bs].index('\0')] |
|
225 |
else: |
|
226 |
fn = None |
|
227 |
if w[1] == 0: |
|
741 | 228 |
l = "%s\000%s%s\n" % (f, hex(map[f]), |
229 |
flags[f] and "x" or '') |
|
644 | 230 |
else: |
231 |
l = None |
|
232 |
start = bs |
|
233 |
if fn != f: |
|
234 |
# item not found, insert a new one |
|
659 | 235 |
end = bs |
644 | 236 |
if w[1] == 1: |
713
7c385bd5f993
Added missing newline after two error messages.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
705
diff
changeset
|
237 |
sys.stderr.write("failed to remove %s from manifest\n" |
7c385bd5f993
Added missing newline after two error messages.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
705
diff
changeset
|
238 |
% f) |
644 | 239 |
sys.exit(1) |
240 |
else: |
|
241 |
# item is found, replace/delete the existing line |
|
242 |
end = bs + 1 |
|
243 |
delta.append([start, end, offsets[start], offsets[end], l]) |
|
244 |
||
245 |
self.addlist = addlistdelta(addlist, delta) |
|
246 |
if self.mapcache[0] == self.tip(): |
|
247 |
cachedelta = "".join(gendelta(delta)) |
|
248 |
else: |
|
249 |
cachedelta = None |
|
250 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
251 |
text = "".join(self.addlist) |
644 | 252 |
if cachedelta and mdiff.patch(self.listcache[0], cachedelta) != text: |
713
7c385bd5f993
Added missing newline after two error messages.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
705
diff
changeset
|
253 |
sys.stderr.write("manifest delta failure\n") |
644 | 254 |
sys.exit(1) |
255 |
n = self.addrevision(text, transaction, link, p1, p2, cachedelta) |
|
302 | 256 |
self.mapcache = (n, map, flags) |
25
daa724b27300
Fix corruption from manifest.listcache optimization
mpm@selenic.com
parents:
20
diff
changeset
|
257 |
self.listcache = (text, self.addlist) |
140 | 258 |
self.addlist = None |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
259 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
260 |
return n |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
261 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
262 |
class changelog(revlog): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
263 |
def __init__(self, opener): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
264 |
revlog.__init__(self, opener, "00changelog.i", "00changelog.d") |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
265 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
266 |
def extract(self, text): |
37 | 267 |
if not text: |
40 | 268 |
return (nullid, "", "0", [], "") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
269 |
last = text.index("\n\n") |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
270 |
desc = text[last + 2:] |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
271 |
l = text[:last].splitlines() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
272 |
manifest = bin(l[0]) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
273 |
user = l[1] |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
274 |
date = l[2] |
1013 | 275 |
if " " not in date: |
276 |
date += " 0" # some tools used -d without a timezone |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
277 |
files = l[3:] |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
278 |
return (manifest, user, date, files, desc) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
279 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
280 |
def read(self, node): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
281 |
return self.extract(self.revision(node)) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
282 |
|
203 | 283 |
def add(self, manifest, list, desc, transaction, p1=None, p2=None, |
284 |
user=None, date=None): |
|
971 | 285 |
if not date: |
968
4a9a753e8232
[PATCH] Take DST into account
Samuel Tardieu <sam@rfc1149.net>
parents:
961
diff
changeset
|
286 |
if time.daylight: offset = time.altzone |
4a9a753e8232
[PATCH] Take DST into account
Samuel Tardieu <sam@rfc1149.net>
parents:
961
diff
changeset
|
287 |
else: offset = time.timezone |
4a9a753e8232
[PATCH] Take DST into account
Samuel Tardieu <sam@rfc1149.net>
parents:
961
diff
changeset
|
288 |
date = "%d %d" % (time.time(), offset) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
289 |
list.sort() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
290 |
l = [hex(manifest), user, date] + list + ["", desc] |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
291 |
text = "\n".join(l) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
292 |
return self.addrevision(text, transaction, self.count(), p1, p2) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
293 |
|
220 | 294 |
class dirstate: |
244 | 295 |
def __init__(self, opener, ui, root): |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
296 |
self.opener = opener |
244 | 297 |
self.root = root |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
298 |
self.dirty = 0 |
20 | 299 |
self.ui = ui |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
300 |
self.map = None |
227 | 301 |
self.pl = None |
363 | 302 |
self.copies = {} |
723 | 303 |
self.ignorefunc = None |
304 |
||
305 |
def wjoin(self, f): |
|
306 |
return os.path.join(self.root, f) |
|
307 |
||
870
a82eae840447
Teach walk code about absolute paths.
Bryan O'Sullivan <bos@serpentine.com>
parents:
839
diff
changeset
|
308 |
def getcwd(self): |
a82eae840447
Teach walk code about absolute paths.
Bryan O'Sullivan <bos@serpentine.com>
parents:
839
diff
changeset
|
309 |
cwd = os.getcwd() |
a82eae840447
Teach walk code about absolute paths.
Bryan O'Sullivan <bos@serpentine.com>
parents:
839
diff
changeset
|
310 |
if cwd == self.root: return '' |
a82eae840447
Teach walk code about absolute paths.
Bryan O'Sullivan <bos@serpentine.com>
parents:
839
diff
changeset
|
311 |
return cwd[len(self.root) + 1:] |
a82eae840447
Teach walk code about absolute paths.
Bryan O'Sullivan <bos@serpentine.com>
parents:
839
diff
changeset
|
312 |
|
723 | 313 |
def ignore(self, f): |
314 |
if not self.ignorefunc: |
|
315 |
bigpat = [] |
|
316 |
try: |
|
317 |
l = file(self.wjoin(".hgignore")) |
|
318 |
for pat in l: |
|
911
d46af8e6b858
Fix .hgignore parsing if last line has no EOL, ignore trailing white space.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
903
diff
changeset
|
319 |
p = pat.rstrip() |
d46af8e6b858
Fix .hgignore parsing if last line has no EOL, ignore trailing white space.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
903
diff
changeset
|
320 |
if p: |
723 | 321 |
try: |
886
509de8ab6f31
Fix walk path handling on Windows
Bryan O'Sullivan <bos@serpentine.com>
parents:
884
diff
changeset
|
322 |
re.compile(p) |
723 | 323 |
except: |
324 |
self.ui.warn("ignoring invalid ignore" |
|
325 |
+ " regular expression '%s'\n" % p) |
|
326 |
else: |
|
886
509de8ab6f31
Fix walk path handling on Windows
Bryan O'Sullivan <bos@serpentine.com>
parents:
884
diff
changeset
|
327 |
bigpat.append(p) |
723 | 328 |
except IOError: pass |
329 |
||
735
3433b228bbb3
An empty .hgignore file must cause us to ignore nothing, not everything!
Bryan O'Sullivan <bos@serpentine.com>
parents:
730
diff
changeset
|
330 |
if bigpat: |
3433b228bbb3
An empty .hgignore file must cause us to ignore nothing, not everything!
Bryan O'Sullivan <bos@serpentine.com>
parents:
730
diff
changeset
|
331 |
s = "(?:%s)" % (")|(?:".join(bigpat)) |
3433b228bbb3
An empty .hgignore file must cause us to ignore nothing, not everything!
Bryan O'Sullivan <bos@serpentine.com>
parents:
730
diff
changeset
|
332 |
r = re.compile(s) |
3433b228bbb3
An empty .hgignore file must cause us to ignore nothing, not everything!
Bryan O'Sullivan <bos@serpentine.com>
parents:
730
diff
changeset
|
333 |
self.ignorefunc = r.search |
3433b228bbb3
An empty .hgignore file must cause us to ignore nothing, not everything!
Bryan O'Sullivan <bos@serpentine.com>
parents:
730
diff
changeset
|
334 |
else: |
3433b228bbb3
An empty .hgignore file must cause us to ignore nothing, not everything!
Bryan O'Sullivan <bos@serpentine.com>
parents:
730
diff
changeset
|
335 |
self.ignorefunc = util.never |
723 | 336 |
|
337 |
return self.ignorefunc(f) |
|
220 | 338 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
339 |
def __del__(self): |
220 | 340 |
if self.dirty: |
341 |
self.write() |
|
342 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
343 |
def __getitem__(self, key): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
344 |
try: |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
345 |
return self.map[key] |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
346 |
except TypeError: |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
347 |
self.read() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
348 |
return self[key] |
220 | 349 |
|
350 |
def __contains__(self, key): |
|
351 |
if not self.map: self.read() |
|
352 |
return key in self.map |
|
353 |
||
227 | 354 |
def parents(self): |
355 |
if not self.pl: |
|
356 |
self.read() |
|
357 |
return self.pl |
|
358 |
||
723 | 359 |
def markdirty(self): |
360 |
if not self.dirty: |
|
361 |
self.dirty = 1 |
|
362 |
||
1062 | 363 |
def setparents(self, p1, p2=nullid): |
723 | 364 |
self.markdirty() |
227 | 365 |
self.pl = p1, p2 |
366 |
||
220 | 367 |
def state(self, key): |
368 |
try: |
|
369 |
return self[key][0] |
|
370 |
except KeyError: |
|
371 |
return "?" |
|
372 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
373 |
def read(self): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
374 |
if self.map is not None: return self.map |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
375 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
376 |
self.map = {} |
227 | 377 |
self.pl = [nullid, nullid] |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
378 |
try: |
220 | 379 |
st = self.opener("dirstate").read() |
311 | 380 |
if not st: return |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
381 |
except: return |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
382 |
|
227 | 383 |
self.pl = [st[:20], st[20: 40]] |
384 |
||
385 |
pos = 40 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
386 |
while pos < len(st): |
220 | 387 |
e = struct.unpack(">cllll", st[pos:pos+17]) |
388 |
l = e[4] |
|
389 |
pos += 17 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
390 |
f = st[pos:pos + l] |
515 | 391 |
if '\0' in f: |
363 | 392 |
f, c = f.split('\0') |
393 |
self.copies[f] = c |
|
220 | 394 |
self.map[f] = e[:4] |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
395 |
pos += l |
363 | 396 |
|
397 |
def copy(self, source, dest): |
|
398 |
self.read() |
|
723 | 399 |
self.markdirty() |
363 | 400 |
self.copies[dest] = source |
401 |
||
402 |
def copied(self, file): |
|
403 |
return self.copies.get(file, None) |
|
515 | 404 |
|
862
d70c1c31fd45
Fix 3-way-merge of original parent, workdir and new parent.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
861
diff
changeset
|
405 |
def update(self, files, state, **kw): |
220 | 406 |
''' current states: |
407 |
n normal |
|
231 | 408 |
m needs merging |
220 | 409 |
r marked for removal |
410 |
a marked for addition''' |
|
411 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
412 |
if not files: return |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
413 |
self.read() |
723 | 414 |
self.markdirty() |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
415 |
for f in files: |
220 | 416 |
if state == "r": |
417 |
self.map[f] = ('r', 0, 0, 0) |
|
418 |
else: |
|
253 | 419 |
s = os.stat(os.path.join(self.root, f)) |
862
d70c1c31fd45
Fix 3-way-merge of original parent, workdir and new parent.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
861
diff
changeset
|
420 |
st_size = kw.get('st_size', s.st_size) |
d70c1c31fd45
Fix 3-way-merge of original parent, workdir and new parent.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
861
diff
changeset
|
421 |
st_mtime = kw.get('st_mtime', s.st_mtime) |
865
2d2fee33ec68
Cleanup after previous changes:
Thomas Arendsen Hein <thomas@intevation.de>
parents:
863
diff
changeset
|
422 |
self.map[f] = (state, s.st_mode, st_size, st_mtime) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
423 |
|
220 | 424 |
def forget(self, files): |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
425 |
if not files: return |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
426 |
self.read() |
723 | 427 |
self.markdirty() |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
428 |
for f in files: |
20 | 429 |
try: |
430 |
del self.map[f] |
|
431 |
except KeyError: |
|
220 | 432 |
self.ui.warn("not in dirstate: %s!\n" % f) |
20 | 433 |
pass |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
434 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
435 |
def clear(self): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
436 |
self.map = {} |
723 | 437 |
self.markdirty() |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
438 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
439 |
def write(self): |
220 | 440 |
st = self.opener("dirstate", "w") |
227 | 441 |
st.write("".join(self.pl)) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
442 |
for f, e in self.map.items(): |
363 | 443 |
c = self.copied(f) |
444 |
if c: |
|
445 |
f = f + "\0" + c |
|
220 | 446 |
e = struct.pack(">cllll", e[0], e[1], e[2], e[3], len(f)) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
447 |
st.write(e + f) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
448 |
self.dirty = 0 |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
449 |
|
879 | 450 |
def filterfiles(self, files): |
451 |
ret = {} |
|
452 |
unknown = [] |
|
453 |
||
454 |
for x in files: |
|
455 |
if x is '.': |
|
456 |
return self.map.copy() |
|
457 |
if x not in self.map: |
|
458 |
unknown.append(x) |
|
459 |
else: |
|
460 |
ret[x] = self.map[x] |
|
919 | 461 |
|
879 | 462 |
if not unknown: |
463 |
return ret |
|
464 |
||
465 |
b = self.map.keys() |
|
466 |
b.sort() |
|
467 |
blen = len(b) |
|
468 |
||
469 |
for x in unknown: |
|
470 |
bs = bisect.bisect(b, x) |
|
919 | 471 |
if bs != 0 and b[bs-1] == x: |
879 | 472 |
ret[x] = self.map[x] |
473 |
continue |
|
474 |
while bs < blen: |
|
475 |
s = b[bs] |
|
476 |
if len(s) > len(x) and s.startswith(x) and s[len(x)] == '/': |
|
477 |
ret[s] = self.map[s] |
|
478 |
else: |
|
479 |
break |
|
480 |
bs += 1 |
|
481 |
return ret |
|
482 |
||
1062 | 483 |
def walk(self, files=None, match=util.always, dc=None): |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
484 |
self.read() |
879 | 485 |
|
723 | 486 |
# walk all files by default |
879 | 487 |
if not files: |
488 |
files = [self.root] |
|
489 |
if not dc: |
|
490 |
dc = self.map.copy() |
|
491 |
elif not dc: |
|
492 |
dc = self.filterfiles(files) |
|
919 | 493 |
|
821
72d9bd4841f3
Ensure that dirstate.walk only yields names once.
Bryan O'Sullivan <bos@serpentine.com>
parents:
820
diff
changeset
|
494 |
known = {'.hg': 1} |
72d9bd4841f3
Ensure that dirstate.walk only yields names once.
Bryan O'Sullivan <bos@serpentine.com>
parents:
820
diff
changeset
|
495 |
def seen(fn): |
72d9bd4841f3
Ensure that dirstate.walk only yields names once.
Bryan O'Sullivan <bos@serpentine.com>
parents:
820
diff
changeset
|
496 |
if fn in known: return True |
72d9bd4841f3
Ensure that dirstate.walk only yields names once.
Bryan O'Sullivan <bos@serpentine.com>
parents:
820
diff
changeset
|
497 |
known[fn] = 1 |
723 | 498 |
def traverse(): |
884
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
499 |
for ff in util.unique(files): |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
500 |
f = os.path.join(self.root, ff) |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
501 |
try: |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
502 |
st = os.stat(f) |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
503 |
except OSError, inst: |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
504 |
if ff not in dc: self.ui.warn('%s: %s\n' % ( |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
505 |
util.pathto(self.getcwd(), ff), |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
506 |
inst.strerror)) |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
507 |
continue |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
508 |
if stat.S_ISDIR(st.st_mode): |
536 | 509 |
for dir, subdirs, fl in os.walk(f): |
510 |
d = dir[len(self.root) + 1:] |
|
886
509de8ab6f31
Fix walk path handling on Windows
Bryan O'Sullivan <bos@serpentine.com>
parents:
884
diff
changeset
|
511 |
nd = util.normpath(d) |
892
f481c9b6786e
Fix bug involving "hg debugwalk -Ipattern" from repository root.
Bryan O'Sullivan <bos@serpentine.com>
parents:
886
diff
changeset
|
512 |
if nd == '.': nd = '' |
821
72d9bd4841f3
Ensure that dirstate.walk only yields names once.
Bryan O'Sullivan <bos@serpentine.com>
parents:
820
diff
changeset
|
513 |
if seen(nd): |
723 | 514 |
subdirs[:] = [] |
515 |
continue |
|
669
8aa2a282eda4
.hgignore speedups patch incorporating Matt's feedback.
mwilli2@localhost.localdomain
parents:
667
diff
changeset
|
516 |
for sd in subdirs: |
820
89985a1b3427
Clean up walk and changes code to use normalised names properly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
814
diff
changeset
|
517 |
ds = os.path.join(nd, sd +'/') |
723 | 518 |
if self.ignore(ds) or not match(ds): |
669
8aa2a282eda4
.hgignore speedups patch incorporating Matt's feedback.
mwilli2@localhost.localdomain
parents:
667
diff
changeset
|
519 |
subdirs.remove(sd) |
822
b678e6d4f92d
Attempt to yield names in sorted order when walking.
Bryan O'Sullivan <bos@serpentine.com>
parents:
821
diff
changeset
|
520 |
subdirs.sort() |
b678e6d4f92d
Attempt to yield names in sorted order when walking.
Bryan O'Sullivan <bos@serpentine.com>
parents:
821
diff
changeset
|
521 |
fl.sort() |
536 | 522 |
for fn in fl: |
523 |
fn = util.pconvert(os.path.join(d, fn)) |
|
726
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
524 |
yield 'f', fn |
884
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
525 |
elif stat.S_ISREG(st.st_mode): |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
526 |
yield 'f', ff |
536 | 527 |
else: |
884
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
528 |
kind = 'unknown' |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
529 |
if stat.S_ISCHR(st.st_mode): kind = 'character device' |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
530 |
elif stat.S_ISBLK(st.st_mode): kind = 'block device' |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
531 |
elif stat.S_ISFIFO(st.st_mode): kind = 'fifo' |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
532 |
elif stat.S_ISLNK(st.st_mode): kind = 'symbolic link' |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
533 |
elif stat.S_ISSOCK(st.st_mode): kind = 'socket' |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
534 |
self.ui.warn('%s: unsupported file type (type is %s)\n' % ( |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
535 |
util.pathto(self.getcwd(), ff), |
087771ebe2e6
Fix walk code for files that do not exist anywhere, and unhandled types.
Bryan O'Sullivan <bos@serpentine.com>
parents:
883
diff
changeset
|
536 |
kind)) |
536 | 537 |
|
822
b678e6d4f92d
Attempt to yield names in sorted order when walking.
Bryan O'Sullivan <bos@serpentine.com>
parents:
821
diff
changeset
|
538 |
ks = dc.keys() |
b678e6d4f92d
Attempt to yield names in sorted order when walking.
Bryan O'Sullivan <bos@serpentine.com>
parents:
821
diff
changeset
|
539 |
ks.sort() |
b678e6d4f92d
Attempt to yield names in sorted order when walking.
Bryan O'Sullivan <bos@serpentine.com>
parents:
821
diff
changeset
|
540 |
for k in ks: |
726
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
541 |
yield 'm', k |
669
8aa2a282eda4
.hgignore speedups patch incorporating Matt's feedback.
mwilli2@localhost.localdomain
parents:
667
diff
changeset
|
542 |
|
723 | 543 |
# yield only files that match: all in dirstate, others only if |
544 |
# not in .hgignore |
|
669
8aa2a282eda4
.hgignore speedups patch incorporating Matt's feedback.
mwilli2@localhost.localdomain
parents:
667
diff
changeset
|
545 |
|
726
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
546 |
for src, fn in util.unique(traverse()): |
886
509de8ab6f31
Fix walk path handling on Windows
Bryan O'Sullivan <bos@serpentine.com>
parents:
884
diff
changeset
|
547 |
fn = util.normpath(fn) |
821
72d9bd4841f3
Ensure that dirstate.walk only yields names once.
Bryan O'Sullivan <bos@serpentine.com>
parents:
820
diff
changeset
|
548 |
if seen(fn): continue |
879 | 549 |
if fn not in dc and self.ignore(fn): |
723 | 550 |
continue |
551 |
if match(fn): |
|
726
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
552 |
yield src, fn |
723 | 553 |
|
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
554 |
def changes(self, files=None, match=util.always): |
723 | 555 |
self.read() |
879 | 556 |
if not files: |
557 |
dc = self.map.copy() |
|
558 |
else: |
|
559 |
dc = self.filterfiles(files) |
|
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
560 |
lookup, modified, added, unknown = [], [], [], [] |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
561 |
removed, deleted = [], [] |
723 | 562 |
|
879 | 563 |
for src, fn in self.walk(files, match, dc=dc): |
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
564 |
try: |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
565 |
s = os.stat(os.path.join(self.root, fn)) |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
566 |
except OSError: |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
567 |
continue |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
568 |
if not stat.S_ISREG(s.st_mode): |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
569 |
continue |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
570 |
c = dc.get(fn) |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
571 |
if c: |
536 | 572 |
del dc[fn] |
573 |
if c[0] == 'm': |
|
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
574 |
modified.append(fn) |
536 | 575 |
elif c[0] == 'a': |
576 |
added.append(fn) |
|
577 |
elif c[0] == 'r': |
|
578 |
unknown.append(fn) |
|
579 |
elif c[2] != s.st_size or (c[1] ^ s.st_mode) & 0100: |
|
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
580 |
modified.append(fn) |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
581 |
elif c[3] != s.st_mtime: |
536 | 582 |
lookup.append(fn) |
583 |
else: |
|
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
584 |
unknown.append(fn) |
536 | 585 |
|
861
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
586 |
for fn, c in [(fn, c) for fn, c in dc.items() if match(fn)]: |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
587 |
if c[0] == 'r': |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
588 |
removed.append(fn) |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
589 |
else: |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
590 |
deleted.append(fn) |
cbe5c4d016b7
dirstate.changes() now distinguishes 'hg remove'd or just deleted files.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
856
diff
changeset
|
591 |
return (lookup, modified, added, removed + deleted, unknown) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
592 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
593 |
# used to avoid circular references so destructors work |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
594 |
def opener(base): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
595 |
p = base |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
596 |
def o(path, mode="r"): |
686
d7d68d27ebe5
Reapply startswith() changes that got lost with stale edit
Matt Mackall <mpm@selenic.com>
parents:
681
diff
changeset
|
597 |
if p.startswith("http://"): |
15
6daf7757e92b
Fix network pull of repo files with "%" in their base64 encoding.
mpm@selenic.com
parents:
10
diff
changeset
|
598 |
f = os.path.join(p, urllib.quote(path)) |
372 | 599 |
return httprangereader.httprangereader(f) |
15
6daf7757e92b
Fix network pull of repo files with "%" in their base64 encoding.
mpm@selenic.com
parents:
10
diff
changeset
|
600 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
601 |
f = os.path.join(p, path) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
602 |
|
292 | 603 |
mode += "b" # for that other OS |
604 |
||
605 |
if mode[0] != "r": |
|
110
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
606 |
try: |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
607 |
s = os.stat(f) |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
608 |
except OSError: |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
609 |
d = os.path.dirname(f) |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
610 |
if not os.path.isdir(d): |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
611 |
os.makedirs(d) |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
612 |
else: |
c37c7f784ee3
Move hg from storing files in data with base64 encoding to full
mpm@selenic.com
parents:
109
diff
changeset
|
613 |
if s.st_nlink > 1: |
417 | 614 |
file(f + ".tmp", "wb").write(file(f, "rb").read()) |
421 | 615 |
util.rename(f+".tmp", f) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
616 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
617 |
return file(f, mode) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
618 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
619 |
return o |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
620 |
|
499 | 621 |
class RepoError(Exception): pass |
622 |
||
60 | 623 |
class localrepository: |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
624 |
def __init__(self, ui, path=None, create=0): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
625 |
self.remote = 0 |
686
d7d68d27ebe5
Reapply startswith() changes that got lost with stale edit
Matt Mackall <mpm@selenic.com>
parents:
681
diff
changeset
|
626 |
if path and path.startswith("http://"): |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
627 |
self.remote = 1 |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
628 |
self.path = path |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
629 |
else: |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
630 |
if not path: |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
631 |
p = os.getcwd() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
632 |
while not os.path.isdir(os.path.join(p, ".hg")): |
420
dbe86d465e09
[PATCH] Repo locator fix for the other `OS'
mpm@selenic.com
parents:
419
diff
changeset
|
633 |
oldp = p |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
634 |
p = os.path.dirname(p) |
499 | 635 |
if p == oldp: raise RepoError("no repo found") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
636 |
path = p |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
637 |
self.path = os.path.join(path, ".hg") |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
638 |
|
405 | 639 |
if not create and not os.path.isdir(self.path): |
499 | 640 |
raise RepoError("repository %s not found" % self.path) |
405 | 641 |
|
933
9c43d68ad59f
Fixed --repository option when handling relative path
tksoh@users.sf.net
parents:
926
diff
changeset
|
642 |
self.root = os.path.abspath(path) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
643 |
self.ui = ui |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
644 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
645 |
if create: |
515 | 646 |
os.mkdir(self.path) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
647 |
os.mkdir(self.join("data")) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
648 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
649 |
self.opener = opener(self.path) |
291
2c4f2be05587
Add wopener for opening files in the working directory
mpm@selenic.com
parents:
288
diff
changeset
|
650 |
self.wopener = opener(self.root) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
651 |
self.manifest = manifest(self.opener) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
652 |
self.changelog = changelog(self.opener) |
343 | 653 |
self.tagscache = None |
654 |
self.nodetagscache = None |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
655 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
656 |
if not self.remote: |
244 | 657 |
self.dirstate = dirstate(self.opener, ui, self.root) |
337 | 658 |
try: |
659 |
self.ui.readconfig(self.opener("hgrc")) |
|
660 |
except IOError: pass |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
661 |
|
487 | 662 |
def hook(self, name, **args): |
663 |
s = self.ui.config("hooks", name) |
|
664 |
if s: |
|
665 |
self.ui.note("running hook %s: %s\n" % (name, s)) |
|
666 |
old = {} |
|
667 |
for k, v in args.items(): |
|
668 |
k = k.upper() |
|
669 |
old[k] = os.environ.get(k, None) |
|
670 |
os.environ[k] = v |
|
671 |
||
672 |
r = os.system(s) |
|
673 |
||
674 |
for k, v in old.items(): |
|
675 |
if v != None: |
|
676 |
os.environ[k] = v |
|
677 |
else: |
|
678 |
del os.environ[k] |
|
679 |
||
680 |
if r: |
|
681 |
self.ui.warn("abort: %s hook failed with status %d!\n" % |
|
682 |
(name, r)) |
|
683 |
return False |
|
684 |
return True |
|
685 |
||
343 | 686 |
def tags(self): |
687 |
'''return a mapping of tag to node''' |
|
477
520540fd6b64
Handle errors in .hgtags or hgrc [tags] section more gracefully.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
471
diff
changeset
|
688 |
if not self.tagscache: |
343 | 689 |
self.tagscache = {} |
609
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
690 |
def addtag(self, k, n): |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
691 |
try: |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
692 |
bin_n = bin(n) |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
693 |
except TypeError: |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
694 |
bin_n = '' |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
695 |
self.tagscache[k.strip()] = bin_n |
659 | 696 |
|
67 | 697 |
try: |
254 | 698 |
# read each head of the tags file, ending with the tip |
699 |
# and add each tag found to the map, with "newer" ones |
|
700 |
# taking precedence |
|
67 | 701 |
fl = self.file(".hgtags") |
254 | 702 |
h = fl.heads() |
703 |
h.reverse() |
|
704 |
for r in h: |
|
994
88c15682d9b0
Fix callers to file.revision to use file.read
mpm@selenic.com
parents:
993
diff
changeset
|
705 |
for l in fl.read(r).splitlines(): |
254 | 706 |
if l: |
385
e9e1efd5291c
Fixed problems with extra spaces around tags in .hgtags
Thomas Arendsen Hein <thomas@intevation.de>
parents:
383
diff
changeset
|
707 |
n, k = l.split(" ", 1) |
609
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
708 |
addtag(self, k, n) |
477
520540fd6b64
Handle errors in .hgtags or hgrc [tags] section more gracefully.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
471
diff
changeset
|
709 |
except KeyError: |
520540fd6b64
Handle errors in .hgtags or hgrc [tags] section more gracefully.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
471
diff
changeset
|
710 |
pass |
659 | 711 |
|
609
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
712 |
try: |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
713 |
f = self.opener("localtags") |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
714 |
for l in f: |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
715 |
n, k = l.split(" ", 1) |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
716 |
addtag(self, k, n) |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
717 |
except IOError: |
2acf1f5df2e6
[PATCH] hg tag: local tag support in file .hg/localtags
Matt Mackall <mpm@selenic.com>
parents:
608
diff
changeset
|
718 |
pass |
659 | 719 |
|
343 | 720 |
self.tagscache['tip'] = self.changelog.tip() |
659 | 721 |
|
343 | 722 |
return self.tagscache |
723 |
||
724 |
def tagslist(self): |
|
725 |
'''return a list of tags ordered by revision''' |
|
726 |
l = [] |
|
477
520540fd6b64
Handle errors in .hgtags or hgrc [tags] section more gracefully.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
471
diff
changeset
|
727 |
for t, n in self.tags().items(): |
343 | 728 |
try: |
729 |
r = self.changelog.rev(n) |
|
730 |
except: |
|
731 |
r = -2 # sort to the beginning of the list if unknown |
|
732 |
l.append((r,t,n)) |
|
733 |
l.sort() |
|
734 |
return [(t,n) for r,t,n in l] |
|
735 |
||
736 |
def nodetags(self, node): |
|
737 |
'''return the tags associated with a node''' |
|
738 |
if not self.nodetagscache: |
|
739 |
self.nodetagscache = {} |
|
740 |
for t,n in self.tags().items(): |
|
741 |
self.nodetagscache.setdefault(n,[]).append(t) |
|
742 |
return self.nodetagscache.get(node, []) |
|
743 |
||
744 |
def lookup(self, key): |
|
67 | 745 |
try: |
343 | 746 |
return self.tags()[key] |
67 | 747 |
except KeyError: |
658
f8098ae9f5b6
Generate a friendlier except for failed lookups
Matt Mackall <mpm@selenic.com>
parents:
657
diff
changeset
|
748 |
try: |
f8098ae9f5b6
Generate a friendlier except for failed lookups
Matt Mackall <mpm@selenic.com>
parents:
657
diff
changeset
|
749 |
return self.changelog.lookup(key) |
f8098ae9f5b6
Generate a friendlier except for failed lookups
Matt Mackall <mpm@selenic.com>
parents:
657
diff
changeset
|
750 |
except: |
f8098ae9f5b6
Generate a friendlier except for failed lookups
Matt Mackall <mpm@selenic.com>
parents:
657
diff
changeset
|
751 |
raise RepoError("unknown revision '%s'" % key) |
67 | 752 |
|
634
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
753 |
def dev(self): |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
754 |
if self.remote: return -1 |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
755 |
return os.stat(self.path).st_dev |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
756 |
|
926 | 757 |
def local(self): |
758 |
return not self.remote |
|
759 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
760 |
def join(self, f): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
761 |
return os.path.join(self.path, f) |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
762 |
|
244 | 763 |
def wjoin(self, f): |
764 |
return os.path.join(self.root, f) |
|
765 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
766 |
def file(self, f): |
192 | 767 |
if f[0] == '/': f = f[1:] |
144
ea9188538222
Fix transaction handling bug by reverting fileopener change
mpm@selenic.com
parents:
140
diff
changeset
|
768 |
return filelog(self.opener, f) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
769 |
|
627 | 770 |
def getcwd(self): |
870
a82eae840447
Teach walk code about absolute paths.
Bryan O'Sullivan <bos@serpentine.com>
parents:
839
diff
changeset
|
771 |
return self.dirstate.getcwd() |
627 | 772 |
|
291
2c4f2be05587
Add wopener for opening files in the working directory
mpm@selenic.com
parents:
288
diff
changeset
|
773 |
def wfile(self, f, mode='r'): |
2c4f2be05587
Add wopener for opening files in the working directory
mpm@selenic.com
parents:
288
diff
changeset
|
774 |
return self.wopener(f, mode) |
2c4f2be05587
Add wopener for opening files in the working directory
mpm@selenic.com
parents:
288
diff
changeset
|
775 |
|
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
776 |
def wread(self, filename): |
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
777 |
return self.wopener(filename, 'r').read() |
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
778 |
|
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
779 |
def wwrite(self, filename, data, fd=None): |
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
780 |
if fd: |
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
781 |
return fd.write(data) |
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
782 |
return self.wopener(filename, 'w').write(data) |
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
783 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
784 |
def transaction(self): |
251 | 785 |
# save dirstate for undo |
263 | 786 |
try: |
787 |
ds = self.opener("dirstate").read() |
|
788 |
except IOError: |
|
789 |
ds = "" |
|
785 | 790 |
self.opener("journal.dirstate", "w").write(ds) |
515 | 791 |
|
785 | 792 |
def after(): |
793 |
util.rename(self.join("journal"), self.join("undo")) |
|
794 |
util.rename(self.join("journal.dirstate"), |
|
795 |
self.join("undo.dirstate")) |
|
796 |
||
797 |
return transaction.transaction(self.ui.warn, self.opener, |
|
798 |
self.join("journal"), after) |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
799 |
|
210 | 800 |
def recover(self): |
225 | 801 |
lock = self.lock() |
557 | 802 |
if os.path.exists(self.join("journal")): |
501 | 803 |
self.ui.status("rolling back interrupted transaction\n") |
557 | 804 |
return transaction.rollback(self.opener, self.join("journal")) |
210 | 805 |
else: |
806 |
self.ui.warn("no interrupted transaction available\n") |
|
807 |
||
808 |
def undo(self): |
|
225 | 809 |
lock = self.lock() |
210 | 810 |
if os.path.exists(self.join("undo")): |
501 | 811 |
self.ui.status("rolling back last transaction\n") |
262 | 812 |
transaction.rollback(self.opener, self.join("undo")) |
251 | 813 |
self.dirstate = None |
421 | 814 |
util.rename(self.join("undo.dirstate"), self.join("dirstate")) |
251 | 815 |
self.dirstate = dirstate(self.opener, self.ui, self.root) |
163 | 816 |
else: |
210 | 817 |
self.ui.warn("no undo information available\n") |
162 | 818 |
|
1062 | 819 |
def lock(self, wait=1): |
161 | 820 |
try: |
821 |
return lock.lock(self.join("lock"), 0) |
|
822 |
except lock.LockHeld, inst: |
|
823 |
if wait: |
|
824 |
self.ui.warn("waiting for lock held by %s\n" % inst.args[0]) |
|
825 |
return lock.lock(self.join("lock"), wait) |
|
826 |
raise inst |
|
827 |
||
203 | 828 |
def rawcommit(self, files, text, user, date, p1=None, p2=None): |
442 | 829 |
orig_parent = self.dirstate.parents()[0] or nullid |
452
a1e91c24dab5
rawcommit: do lookup of parents at the appropriate layer
mpm@selenic.com
parents:
442
diff
changeset
|
830 |
p1 = p1 or self.dirstate.parents()[0] or nullid |
a1e91c24dab5
rawcommit: do lookup of parents at the appropriate layer
mpm@selenic.com
parents:
442
diff
changeset
|
831 |
p2 = p2 or self.dirstate.parents()[1] or nullid |
302 | 832 |
c1 = self.changelog.read(p1) |
833 |
c2 = self.changelog.read(p2) |
|
834 |
m1 = self.manifest.read(c1[0]) |
|
835 |
mf1 = self.manifest.readflags(c1[0]) |
|
836 |
m2 = self.manifest.read(c2[0]) |
|
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
837 |
changed = [] |
302 | 838 |
|
442 | 839 |
if orig_parent == p1: |
840 |
update_dirstate = 1 |
|
841 |
else: |
|
842 |
update_dirstate = 0 |
|
843 |
||
203 | 844 |
tr = self.transaction() |
302 | 845 |
mm = m1.copy() |
846 |
mfm = mf1.copy() |
|
203 | 847 |
linkrev = self.changelog.count() |
848 |
for f in files: |
|
849 |
try: |
|
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
850 |
t = self.wread(f) |
441 | 851 |
tm = util.is_exec(self.wjoin(f), mfm.get(f, False)) |
302 | 852 |
r = self.file(f) |
853 |
mfm[f] = tm |
|
990 | 854 |
|
855 |
fp1 = m1.get(f, nullid) |
|
856 |
fp2 = m2.get(f, nullid) |
|
857 |
||
858 |
# is the same revision on two branches of a merge? |
|
859 |
if fp2 == fp1: |
|
860 |
fp2 = nullid |
|
861 |
||
862 |
if fp2 != nullid: |
|
863 |
# is one parent an ancestor of the other? |
|
864 |
fpa = r.ancestor(fp1, fp2) |
|
865 |
if fpa == fp1: |
|
866 |
fp1, fp2 = fp2, nullid |
|
867 |
elif fpa == fp2: |
|
868 |
fp2 = nullid |
|
869 |
||
870 |
# is the file unmodified from the parent? |
|
871 |
if t == r.read(fp1): |
|
872 |
# record the proper existing parent in manifest |
|
873 |
# no need to add a revision |
|
874 |
mm[f] = fp1 |
|
875 |
continue |
|
876 |
||
877 |
mm[f] = r.add(t, {}, tr, linkrev, fp1, fp2) |
|
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
878 |
changed.append(f) |
442 | 879 |
if update_dirstate: |
880 |
self.dirstate.update([f], "n") |
|
203 | 881 |
except IOError: |
314
3402cb9a4c06
More tweaking to rawcommit for repo conversion
mpm@selenic.com
parents:
313
diff
changeset
|
882 |
try: |
3402cb9a4c06
More tweaking to rawcommit for repo conversion
mpm@selenic.com
parents:
313
diff
changeset
|
883 |
del mm[f] |
3402cb9a4c06
More tweaking to rawcommit for repo conversion
mpm@selenic.com
parents:
313
diff
changeset
|
884 |
del mfm[f] |
442 | 885 |
if update_dirstate: |
886 |
self.dirstate.forget([f]) |
|
314
3402cb9a4c06
More tweaking to rawcommit for repo conversion
mpm@selenic.com
parents:
313
diff
changeset
|
887 |
except: |
3402cb9a4c06
More tweaking to rawcommit for repo conversion
mpm@selenic.com
parents:
313
diff
changeset
|
888 |
# deleted from p2? |
3402cb9a4c06
More tweaking to rawcommit for repo conversion
mpm@selenic.com
parents:
313
diff
changeset
|
889 |
pass |
203 | 890 |
|
302 | 891 |
mnode = self.manifest.add(mm, mfm, tr, linkrev, c1[0], c2[0]) |
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
588
diff
changeset
|
892 |
user = user or self.ui.username() |
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
893 |
n = self.changelog.add(mnode, changed, text, tr, p1, p2, user, date) |
203 | 894 |
tr.close() |
442 | 895 |
if update_dirstate: |
896 |
self.dirstate.setparents(n, nullid) |
|
203 | 897 |
|
813
80fd2958235a
Adapt commit to use file matching code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
786
diff
changeset
|
898 |
def commit(self, files = None, text = "", user = None, date = None, |
900
ba8cf1f2210c
Add force option to repo.commit, allowing commits where no files change
mason@suse.com
parents:
898
diff
changeset
|
899 |
match = util.always, force=False): |
220 | 900 |
commit = [] |
901 |
remove = [] |
|
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
902 |
changed = [] |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
903 |
|
220 | 904 |
if files: |
905 |
for f in files: |
|
906 |
s = self.dirstate.state(f) |
|
244 | 907 |
if s in 'nmai': |
220 | 908 |
commit.append(f) |
909 |
elif s == 'r': |
|
910 |
remove.append(f) |
|
911 |
else: |
|
244 | 912 |
self.ui.warn("%s not tracked!\n" % f) |
220 | 913 |
else: |
1062 | 914 |
(c, a, d, u) = self.changes(match=match) |
220 | 915 |
commit = c + a |
916 |
remove = d |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
917 |
|
990 | 918 |
p1, p2 = self.dirstate.parents() |
919 |
c1 = self.changelog.read(p1) |
|
920 |
c2 = self.changelog.read(p2) |
|
921 |
m1 = self.manifest.read(c1[0]) |
|
922 |
mf1 = self.manifest.readflags(c1[0]) |
|
923 |
m2 = self.manifest.read(c2[0]) |
|
924 |
||
925 |
if not commit and not remove and not force and p2 == nullid: |
|
151 | 926 |
self.ui.status("nothing changed\n") |
901
120cba94d5aa
Change repo.comit to return None on error or the new revision number on
mason@suse.com
parents:
900
diff
changeset
|
927 |
return None |
151 | 928 |
|
487 | 929 |
if not self.hook("precommit"): |
901
120cba94d5aa
Change repo.comit to return None on error or the new revision number on
mason@suse.com
parents:
900
diff
changeset
|
930 |
return None |
487 | 931 |
|
225 | 932 |
lock = self.lock() |
151 | 933 |
tr = self.transaction() |
934 |
||
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
935 |
# check in files |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
936 |
new = {} |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
937 |
linkrev = self.changelog.count() |
220 | 938 |
commit.sort() |
939 |
for f in commit: |
|
83 | 940 |
self.ui.note(f + "\n") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
941 |
try: |
441 | 942 |
mf1[f] = util.is_exec(self.wjoin(f), mf1.get(f, False)) |
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
943 |
t = self.wread(f) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
944 |
except IOError: |
667
31a9aa890016
A number of minor fixes to problems that pychecker found.
mark.williamson@cl.cam.ac.uk
parents:
660
diff
changeset
|
945 |
self.ui.warn("trouble committing %s!\n" % f) |
220 | 946 |
raise |
947 |
||
363 | 948 |
meta = {} |
949 |
cp = self.dirstate.copied(f) |
|
950 |
if cp: |
|
951 |
meta["copy"] = cp |
|
952 |
meta["copyrev"] = hex(m1.get(cp, m2.get(cp, nullid))) |
|
575 | 953 |
self.ui.debug(" %s: copy %s:%s\n" % (f, cp, meta["copyrev"])) |
363 | 954 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
955 |
r = self.file(f) |
229 | 956 |
fp1 = m1.get(f, nullid) |
957 |
fp2 = m2.get(f, nullid) |
|
990 | 958 |
|
959 |
# is the same revision on two branches of a merge? |
|
960 |
if fp2 == fp1: |
|
961 |
fp2 = nullid |
|
962 |
||
963 |
if fp2 != nullid: |
|
964 |
# is one parent an ancestor of the other? |
|
965 |
fpa = r.ancestor(fp1, fp2) |
|
966 |
if fpa == fp1: |
|
967 |
fp1, fp2 = fp2, nullid |
|
968 |
elif fpa == fp2: |
|
969 |
fp2 = nullid |
|
970 |
||
971 |
# is the file unmodified from the parent? |
|
972 |
if not meta and t == r.read(fp1): |
|
973 |
# record the proper existing parent in manifest |
|
974 |
# no need to add a revision |
|
975 |
new[f] = fp1 |
|
976 |
continue |
|
977 |
||
363 | 978 |
new[f] = r.add(t, meta, tr, linkrev, fp1, fp2) |
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
979 |
# remember what we've added so that we can later calculate |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
980 |
# the files to pull from a set of changesets |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
981 |
changed.append(f) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
982 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
983 |
# update manifest |
229 | 984 |
m1.update(new) |
416
5e9e8b8d2629
[PATCH] Removal of a file added by merging branches
mpm@selenic.com
parents:
415
diff
changeset
|
985 |
for f in remove: |
5e9e8b8d2629
[PATCH] Removal of a file added by merging branches
mpm@selenic.com
parents:
415
diff
changeset
|
986 |
if f in m1: |
5e9e8b8d2629
[PATCH] Removal of a file added by merging branches
mpm@selenic.com
parents:
415
diff
changeset
|
987 |
del m1[f] |
741 | 988 |
mn = self.manifest.add(m1, mf1, tr, linkrev, c1[0], c2[0], |
989 |
(new, remove)) |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
990 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
991 |
# add changeset |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
992 |
new = new.keys() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
993 |
new.sort() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
994 |
|
288 | 995 |
if not text: |
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
996 |
edittext = "" |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
997 |
if p2 != nullid: |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
998 |
edittext += "HG: branch merge\n" |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
999 |
edittext += "\n" + "HG: manifest hash %s\n" % hex(mn) |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
1000 |
edittext += "".join(["HG: changed %s\n" % f for f in changed]) |
288 | 1001 |
edittext += "".join(["HG: removed %s\n" % f for f in remove]) |
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
1002 |
if not changed and not remove: |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
1003 |
edittext += "HG: no files changed\n" |
288 | 1004 |
edittext = self.ui.edit(edittext) |
1005 |
if not edittext.rstrip(): |
|
901
120cba94d5aa
Change repo.comit to return None on error or the new revision number on
mason@suse.com
parents:
900
diff
changeset
|
1006 |
return None |
288 | 1007 |
text = edittext |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1008 |
|
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
588
diff
changeset
|
1009 |
user = user or self.ui.username() |
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
1010 |
n = self.changelog.add(mn, changed, text, tr, p1, p2, user, date) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1011 |
tr.close() |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1012 |
|
229 | 1013 |
self.dirstate.setparents(n) |
220 | 1014 |
self.dirstate.update(new, "n") |
1015 |
self.dirstate.forget(remove) |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1016 |
|
660
2c83350784c3
Move commit hook after commit completes
Matt Mackall <mpm@selenic.com>
parents:
659
diff
changeset
|
1017 |
if not self.hook("commit", node=hex(n)): |
901
120cba94d5aa
Change repo.comit to return None on error or the new revision number on
mason@suse.com
parents:
900
diff
changeset
|
1018 |
return None |
120cba94d5aa
Change repo.comit to return None on error or the new revision number on
mason@suse.com
parents:
900
diff
changeset
|
1019 |
return n |
660
2c83350784c3
Move commit hook after commit completes
Matt Mackall <mpm@selenic.com>
parents:
659
diff
changeset
|
1020 |
|
1062 | 1021 |
def walk(self, node=None, files=[], match=util.always): |
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
723
diff
changeset
|
1022 |
if node: |
726
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
1023 |
for fn in self.manifest.read(self.changelog.read(node)[0]): |
820
89985a1b3427
Clean up walk and changes code to use normalised names properly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
814
diff
changeset
|
1024 |
if match(fn): yield 'm', fn |
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
723
diff
changeset
|
1025 |
else: |
726
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
1026 |
for src, fn in self.dirstate.walk(files, match): |
809a870a0e73
Add a source designator to the walk methods.
Bryan O'Sullivan <bos@serpentine.com>
parents:
725
diff
changeset
|
1027 |
yield src, fn |
723 | 1028 |
|
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
723
diff
changeset
|
1029 |
def changes(self, node1 = None, node2 = None, files = [], |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
723
diff
changeset
|
1030 |
match = util.always): |
566 | 1031 |
mf2, u = None, [] |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1032 |
|
536 | 1033 |
def fcmp(fn, mf): |
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
1034 |
t1 = self.wread(fn) |
994
88c15682d9b0
Fix callers to file.revision to use file.read
mpm@selenic.com
parents:
993
diff
changeset
|
1035 |
t2 = self.file(fn).read(mf.get(fn, nullid)) |
29 | 1036 |
return cmp(t1, t2) |
1037 |
||
723 | 1038 |
def mfmatches(node): |
1039 |
mf = dict(self.manifest.read(node)) |
|
1040 |
for fn in mf.keys(): |
|
1041 |
if not match(fn): |
|
1042 |
del mf[fn] |
|
1043 |
return mf |
|
741 | 1044 |
|
536 | 1045 |
# are we comparing the working directory? |
561 | 1046 |
if not node2: |
723 | 1047 |
l, c, a, d, u = self.dirstate.changes(files, match) |
536 | 1048 |
|
1049 |
# are we comparing working dir against its parent? |
|
561 | 1050 |
if not node1: |
536 | 1051 |
if l: |
1052 |
# do a full compare of any files that might have changed |
|
1053 |
change = self.changelog.read(self.dirstate.parents()[0]) |
|
723 | 1054 |
mf2 = mfmatches(change[0]) |
548 | 1055 |
for f in l: |
561 | 1056 |
if fcmp(f, mf2): |
536 | 1057 |
c.append(f) |
561 | 1058 |
|
1059 |
for l in c, a, d, u: |
|
1060 |
l.sort() |
|
1061 |
||
536 | 1062 |
return (c, a, d, u) |
515 | 1063 |
|
536 | 1064 |
# are we comparing working dir against non-tip? |
1065 |
# generate a pseudo-manifest for the working dir |
|
561 | 1066 |
if not node2: |
1067 |
if not mf2: |
|
536 | 1068 |
change = self.changelog.read(self.dirstate.parents()[0]) |
723 | 1069 |
mf2 = mfmatches(change[0]) |
536 | 1070 |
for f in a + c + l: |
561 | 1071 |
mf2[f] = "" |
536 | 1072 |
for f in d: |
561 | 1073 |
if f in mf2: del mf2[f] |
536 | 1074 |
else: |
561 | 1075 |
change = self.changelog.read(node2) |
723 | 1076 |
mf2 = mfmatches(change[0]) |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1077 |
|
566 | 1078 |
# flush lists from dirstate before comparing manifests |
1079 |
c, a = [], [] |
|
1080 |
||
561 | 1081 |
change = self.changelog.read(node1) |
723 | 1082 |
mf1 = mfmatches(change[0]) |
32 | 1083 |
|
1084 |
for fn in mf2: |
|
1085 |
if mf1.has_key(fn): |
|
1086 |
if mf1[fn] != mf2[fn]: |
|
561 | 1087 |
if mf2[fn] != "" or fcmp(fn, mf1): |
536 | 1088 |
c.append(fn) |
32 | 1089 |
del mf1[fn] |
1090 |
else: |
|
536 | 1091 |
a.append(fn) |
515 | 1092 |
|
536 | 1093 |
d = mf1.keys() |
561 | 1094 |
|
1095 |
for l in c, a, d, u: |
|
1096 |
l.sort() |
|
515 | 1097 |
|
536 | 1098 |
return (c, a, d, u) |
32 | 1099 |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1100 |
def add(self, list): |
220 | 1101 |
for f in list: |
244 | 1102 |
p = self.wjoin(f) |
611
48c3eb2bf844
* clean up error handling when user requests to use a non file object
shaleh@speakeasy.net
parents:
609
diff
changeset
|
1103 |
if not os.path.exists(p): |
659 | 1104 |
self.ui.warn("%s does not exist!\n" % f) |
611
48c3eb2bf844
* clean up error handling when user requests to use a non file object
shaleh@speakeasy.net
parents:
609
diff
changeset
|
1105 |
elif not os.path.isfile(p): |
741 | 1106 |
self.ui.warn("%s not added: only files supported currently\n" % f) |
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
723
diff
changeset
|
1107 |
elif self.dirstate.state(f) in 'an': |
220 | 1108 |
self.ui.warn("%s already tracked!\n" % f) |
1109 |
else: |
|
1110 |
self.dirstate.update([f], "a") |
|
1111 |
||
1112 |
def forget(self, list): |
|
1113 |
for f in list: |
|
1114 |
if self.dirstate.state(f) not in 'ai': |
|
1115 |
self.ui.warn("%s not added!\n" % f) |
|
1116 |
else: |
|
1117 |
self.dirstate.forget([f]) |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1118 |
|
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1119 |
def remove(self, list): |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1120 |
for f in list: |
244 | 1121 |
p = self.wjoin(f) |
611
48c3eb2bf844
* clean up error handling when user requests to use a non file object
shaleh@speakeasy.net
parents:
609
diff
changeset
|
1122 |
if os.path.exists(p): |
220 | 1123 |
self.ui.warn("%s still exists!\n" % f) |
402 | 1124 |
elif self.dirstate.state(f) == 'a': |
1125 |
self.ui.warn("%s never committed!\n" % f) |
|
657
22bc6fb9aefc
dirstate.forget() takes a list
Matt Mackall <mpm@selenic.com>
parents:
656
diff
changeset
|
1126 |
self.dirstate.forget([f]) |
220 | 1127 |
elif f not in self.dirstate: |
1128 |
self.ui.warn("%s not tracked!\n" % f) |
|
1129 |
else: |
|
1130 |
self.dirstate.update([f], "r") |
|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1131 |
|
363 | 1132 |
def copy(self, source, dest): |
1133 |
p = self.wjoin(dest) |
|
781 | 1134 |
if not os.path.exists(p): |
363 | 1135 |
self.ui.warn("%s does not exist!\n" % dest) |
781 | 1136 |
elif not os.path.isfile(p): |
659 | 1137 |
self.ui.warn("copy failed: %s is not a file\n" % dest) |
363 | 1138 |
else: |
1139 |
if self.dirstate.state(dest) == '?': |
|
1140 |
self.dirstate.update([dest], "a") |
|
1141 |
self.dirstate.copy(source, dest) |
|
1142 |
||
222 | 1143 |
def heads(self): |
1144 |
return self.changelog.heads() |
|
1145 |
||
898 | 1146 |
# branchlookup returns a dict giving a list of branches for |
1147 |
# each head. A branch is defined as the tag of a node or |
|
1148 |
# the branch of the node's parents. If a node has multiple |
|
1149 |
# branch tags, tags are eliminated if they are visible from other |
|
1150 |
# branch tags. |
|
1151 |
# |
|
1152 |
# So, for this graph: a->b->c->d->e |
|
1153 |
# \ / |
|
1154 |
# aa -----/ |
|
919 | 1155 |
# a has tag 2.6.12 |
898 | 1156 |
# d has tag 2.6.13 |
1157 |
# e would have branch tags for 2.6.12 and 2.6.13. Because the node |
|
1158 |
# for 2.6.12 can be reached from the node 2.6.13, that is eliminated |
|
1159 |
# from the list. |
|
1160 |
# |
|
1161 |
# It is possible that more than one head will have the same branch tag. |
|
1162 |
# callers need to check the result for multiple heads under the same |
|
1163 |
# branch tag if that is a problem for them (ie checkout of a specific |
|
1164 |
# branch). |
|
1165 |
# |
|
1166 |
# passing in a specific branch will limit the depth of the search |
|
1167 |
# through the parents. It won't limit the branches returned in the |
|
1168 |
# result though. |
|
1169 |
def branchlookup(self, heads=None, branch=None): |
|
1170 |
if not heads: |
|
1171 |
heads = self.heads() |
|
1172 |
headt = [ h for h in heads ] |
|
1173 |
chlog = self.changelog |
|
1174 |
branches = {} |
|
1175 |
merges = [] |
|
1176 |
seenmerge = {} |
|
1177 |
||
1178 |
# traverse the tree once for each head, recording in the branches |
|
1179 |
# dict which tags are visible from this head. The branches |
|
1180 |
# dict also records which tags are visible from each tag |
|
1181 |
# while we traverse. |
|
1182 |
while headt or merges: |
|
1183 |
if merges: |
|
1184 |
n, found = merges.pop() |
|
1185 |
visit = [n] |
|
1186 |
else: |
|
1187 |
h = headt.pop() |
|
1188 |
visit = [h] |
|
1189 |
found = [h] |
|
1190 |
seen = {} |
|
1191 |
while visit: |
|
1192 |
n = visit.pop() |
|
1193 |
if n in seen: |
|
1194 |
continue |
|
1195 |
pp = chlog.parents(n) |
|
1196 |
tags = self.nodetags(n) |
|
1197 |
if tags: |
|
1198 |
for x in tags: |
|
1199 |
if x == 'tip': |
|
1200 |
continue |
|
1201 |
for f in found: |
|
1202 |
branches.setdefault(f, {})[n] = 1 |
|
1203 |
branches.setdefault(n, {})[n] = 1 |
|
1204 |
break |
|
1205 |
if n not in found: |
|
1206 |
found.append(n) |
|
1207 |
if branch in tags: |
|
1208 |
continue |
|
1209 |
seen[n] = 1 |
|
1210 |
if pp[1] != nullid and n not in seenmerge: |
|
1211 |
merges.append((pp[1], [x for x in found])) |
|
1212 |
seenmerge[n] = 1 |
|
1213 |
if pp[0] != nullid: |
|
1214 |
visit.append(pp[0]) |
|
1215 |
# traverse the branches dict, eliminating branch tags from each |
|
1216 |
# head that are visible from another branch tag for that head. |
|
1217 |
out = {} |
|
1218 |
viscache = {} |
|
1219 |
for h in heads: |
|
1220 |
def visible(node): |
|
1221 |
if node in viscache: |
|
1222 |
return viscache[node] |
|
1223 |
ret = {} |
|
1224 |
visit = [node] |
|
1225 |
while visit: |
|
1226 |
x = visit.pop() |
|
1227 |
if x in viscache: |
|
1228 |
ret.update(viscache[x]) |
|
1229 |
elif x not in ret: |
|
1230 |
ret[x] = 1 |
|
1231 |
if x in branches: |
|
1232 |
visit[len(visit):] = branches[x].keys() |
|
1233 |
viscache[node] = ret |
|
1234 |
return ret |
|
1235 |
if h not in branches: |
|
1236 |
continue |
|
1237 |
# O(n^2), but somewhat limited. This only searches the |
|
1238 |
# tags visible from a specific head, not all the tags in the |
|
1239 |
# whole repo. |
|
1240 |
for b in branches[h]: |
|
1241 |
vis = False |
|
1242 |
for bb in branches[h].keys(): |
|
1243 |
if b != bb: |
|
1244 |
if b in visible(bb): |
|
1245 |
vis = True |
|
1246 |
break |
|
1247 |
if not vis: |
|
1248 |
l = out.setdefault(h, []) |
|
1249 |
l[len(l):] = self.nodetags(b) |
|
1250 |
return out |
|
1251 |
||
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1252 |
def branches(self, nodes): |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1253 |
if not nodes: nodes = [self.changelog.tip()] |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1254 |
b = [] |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1255 |
for n in nodes: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1256 |
t = n |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1257 |
while n: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1258 |
p = self.changelog.parents(n) |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1259 |
if p[1] != nullid or p[0] == nullid: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1260 |
b.append((t, n, p[0], p[1])) |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1261 |
break |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1262 |
n = p[0] |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1263 |
return b |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1264 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1265 |
def between(self, pairs): |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1266 |
r = [] |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1267 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1268 |
for top, bottom in pairs: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1269 |
n, l, i = top, [], 0 |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1270 |
f = 1 |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1271 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1272 |
while n != bottom: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1273 |
p = self.changelog.parents(n)[0] |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1274 |
if i == f: |
575 | 1275 |
l.append(n) |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1276 |
f = f * 2 |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1277 |
n = p |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1278 |
i += 1 |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1279 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1280 |
r.append(l) |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1281 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1282 |
return r |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1283 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1284 |
def newer(self, nodes): |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1285 |
m = {} |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1286 |
nl = [] |
94 | 1287 |
pm = {} |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1288 |
cl = self.changelog |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1289 |
t = l = cl.count() |
94 | 1290 |
|
1291 |
# find the lowest numbered node |
|
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1292 |
for n in nodes: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1293 |
l = min(l, cl.rev(n)) |
94 | 1294 |
m[n] = 1 |
46 | 1295 |
|
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1296 |
for i in xrange(l, t): |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1297 |
n = cl.node(i) |
94 | 1298 |
if n in m: # explicitly listed |
1299 |
pm[n] = 1 |
|
1300 |
nl.append(n) |
|
1301 |
continue |
|
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1302 |
for p in cl.parents(n): |
94 | 1303 |
if p in pm: # parent listed |
1304 |
pm[n] = 1 |
|
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1305 |
nl.append(n) |
94 | 1306 |
break |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1307 |
|
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1308 |
return nl |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1309 |
|
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1310 |
def findincoming(self, remote, base=None, heads=None): |
65
d40cc5aacc31
Fix up a bunch of bugs in the new merge code
mpm@selenic.com
parents:
64
diff
changeset
|
1311 |
m = self.changelog.nodemap |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1312 |
search = [] |
1072 | 1313 |
fetch = {} |
148
c32286d0a665
Improve pruning of branches in outstanding changeset algorithm
mpm@selenic.com
parents:
146
diff
changeset
|
1314 |
seen = {} |
c32286d0a665
Improve pruning of branches in outstanding changeset algorithm
mpm@selenic.com
parents:
146
diff
changeset
|
1315 |
seenbranch = {} |
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1316 |
if base == None: |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1317 |
base = {} |
192 | 1318 |
|
636
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1319 |
# assume we're closer to the tip than the root |
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1320 |
# and start by examining the heads |
222 | 1321 |
self.ui.status("searching for changes\n") |
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1322 |
|
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1323 |
if not heads: |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1324 |
heads = remote.heads() |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1325 |
|
222 | 1326 |
unknown = [] |
1327 |
for h in heads: |
|
1328 |
if h not in m: |
|
1329 |
unknown.append(h) |
|
621
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1330 |
else: |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1331 |
base[h] = 1 |
46 | 1332 |
|
222 | 1333 |
if not unknown: |
60 | 1334 |
return None |
324 | 1335 |
|
1336 |
rep = {} |
|
1337 |
reqcnt = 0 |
|
515 | 1338 |
|
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1339 |
# search through remote branches |
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1340 |
# a 'branch' here is a linear segment of history, with four parts: |
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1341 |
# head, root, first parent, second parent |
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1342 |
# (a branch always has two parents (or none) by definition) |
222 | 1343 |
unknown = remote.branches(unknown) |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1344 |
while unknown: |
324 | 1345 |
r = [] |
1346 |
while unknown: |
|
1347 |
n = unknown.pop(0) |
|
1348 |
if n[0] in seen: |
|
1349 |
continue |
|
148
c32286d0a665
Improve pruning of branches in outstanding changeset algorithm
mpm@selenic.com
parents:
146
diff
changeset
|
1350 |
|
324 | 1351 |
self.ui.debug("examining %s:%s\n" % (short(n[0]), short(n[1]))) |
1352 |
if n[0] == nullid: |
|
1353 |
break |
|
328 | 1354 |
if n in seenbranch: |
324 | 1355 |
self.ui.debug("branch already found\n") |
1356 |
continue |
|
1357 |
if n[1] and n[1] in m: # do we know the base? |
|
1358 |
self.ui.debug("found incomplete branch %s:%s\n" |
|
1359 |
% (short(n[0]), short(n[1]))) |
|
1360 |
search.append(n) # schedule branch range for scanning |
|
328 | 1361 |
seenbranch[n] = 1 |
324 | 1362 |
else: |
1363 |
if n[1] not in seen and n[1] not in fetch: |
|
1364 |
if n[2] in m and n[3] in m: |
|
1365 |
self.ui.debug("found new changeset %s\n" % |
|
1366 |
short(n[1])) |
|
1072 | 1367 |
fetch[n[1]] = 1 # earliest unknown |
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1368 |
base[n[2]] = 1 # latest known |
324 | 1369 |
continue |
1370 |
||
1371 |
for a in n[2:4]: |
|
1372 |
if a not in rep: |
|
1373 |
r.append(a) |
|
1374 |
rep[a] = 1 |
|
1375 |
||
328 | 1376 |
seen[n[0]] = 1 |
1377 |
||
324 | 1378 |
if r: |
1379 |
reqcnt += 1 |
|
1380 |
self.ui.debug("request %d: %s\n" % |
|
1381 |
(reqcnt, " ".join(map(short, r)))) |
|
1382 |
for p in range(0, len(r), 10): |
|
1383 |
for b in remote.branches(r[p:p+10]): |
|
148
c32286d0a665
Improve pruning of branches in outstanding changeset algorithm
mpm@selenic.com
parents:
146
diff
changeset
|
1384 |
self.ui.debug("received %s:%s\n" % |
c32286d0a665
Improve pruning of branches in outstanding changeset algorithm
mpm@selenic.com
parents:
146
diff
changeset
|
1385 |
(short(b[0]), short(b[1]))) |
1072 | 1386 |
if b[0] in m: |
1387 |
self.ui.debug("found base node %s\n" % short(b[0])) |
|
1388 |
base[b[0]] = 1 |
|
1389 |
elif b[0] not in seen: |
|
148
c32286d0a665
Improve pruning of branches in outstanding changeset algorithm
mpm@selenic.com
parents:
146
diff
changeset
|
1390 |
unknown.append(b) |
515 | 1391 |
|
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1392 |
# do binary search on the branches we found |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1393 |
while search: |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1394 |
n = search.pop(0) |
324 | 1395 |
reqcnt += 1 |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1396 |
l = remote.between([(n[0], n[1])])[0] |
328 | 1397 |
l.append(n[1]) |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1398 |
p = n[0] |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1399 |
f = 1 |
328 | 1400 |
for i in l: |
1401 |
self.ui.debug("narrowing %d:%d %s\n" % (f, len(l), short(i))) |
|
65
d40cc5aacc31
Fix up a bunch of bugs in the new merge code
mpm@selenic.com
parents:
64
diff
changeset
|
1402 |
if i in m: |
85 | 1403 |
if f <= 2: |
83 | 1404 |
self.ui.debug("found new branch changeset %s\n" % |
1405 |
short(p)) |
|
1072 | 1406 |
fetch[p] = 1 |
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1407 |
base[i] = 1 |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1408 |
else: |
83 | 1409 |
self.ui.debug("narrowed branch search to %s:%s\n" |
1410 |
% (short(p), short(i))) |
|
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1411 |
search.append((p, i)) |
65
d40cc5aacc31
Fix up a bunch of bugs in the new merge code
mpm@selenic.com
parents:
64
diff
changeset
|
1412 |
break |
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1413 |
p, f = i, f * 2 |
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1414 |
|
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1415 |
# sanity check our fetch list |
1072 | 1416 |
for f in fetch.keys(): |
65
d40cc5aacc31
Fix up a bunch of bugs in the new merge code
mpm@selenic.com
parents:
64
diff
changeset
|
1417 |
if f in m: |
499 | 1418 |
raise RepoError("already have changeset " + short(f[:4])) |
83 | 1419 |
|
579
ffeb2c3a1966
Actually warn on pulling from an unrelated repository
mpm@selenic.com
parents:
578
diff
changeset
|
1420 |
if base.keys() == [nullid]: |
514
874e577e332e
change unrelated repository error to a warning
mpm@selenic.com
parents:
511
diff
changeset
|
1421 |
self.ui.warn("warning: pulling from an unrelated repository!\n") |
511 | 1422 |
|
1072 | 1423 |
self.ui.note("found new changesets starting at " + |
83 | 1424 |
" ".join([short(f) for f in fetch]) + "\n") |
65
d40cc5aacc31
Fix up a bunch of bugs in the new merge code
mpm@selenic.com
parents:
64
diff
changeset
|
1425 |
|
324 | 1426 |
self.ui.debug("%d total queries\n" % reqcnt) |
1427 |
||
1072 | 1428 |
return fetch.keys() |
516 | 1429 |
|
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1430 |
def findoutgoing(self, remote, base=None, heads=None): |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1431 |
if base == None: |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1432 |
base = {} |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1433 |
self.findincoming(remote, base, heads) |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1434 |
|
1072 | 1435 |
self.ui.debug("common changesets up to " |
1436 |
+ " ".join(map(short, base.keys())) + "\n") |
|
1437 |
||
621
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1438 |
remain = dict.fromkeys(self.changelog.nodemap) |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1439 |
|
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1440 |
# prune everything remote has from the tree |
637
31e090c34d3b
Fix up the broken bits in findoutgoing
Matt Mackall <mpm@selenic.com>
parents:
636
diff
changeset
|
1441 |
del remain[nullid] |
621
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1442 |
remove = base.keys() |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1443 |
while remove: |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1444 |
n = remove.pop(0) |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1445 |
if n in remain: |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1446 |
del remain[n] |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1447 |
for p in self.changelog.parents(n): |
637
31e090c34d3b
Fix up the broken bits in findoutgoing
Matt Mackall <mpm@selenic.com>
parents:
636
diff
changeset
|
1448 |
remove.append(p) |
621
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1449 |
|
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1450 |
# find every node whose parents have been pruned |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1451 |
subset = [] |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1452 |
for n in remain: |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1453 |
p1, p2 = self.changelog.parents(n) |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1454 |
if p1 not in remain and p2 not in remain: |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1455 |
subset.append(n) |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1456 |
|
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1457 |
# this is the set of all roots we have to push |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1458 |
return subset |
004e811f7706
Add a function to calculate the outgoing changegroup
Matt Mackall <mpm@selenic.com>
parents:
616
diff
changeset
|
1459 |
|
622
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1460 |
def pull(self, remote): |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1461 |
lock = self.lock() |
636
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1462 |
|
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1463 |
# if we have an empty repo, fetch everything |
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1464 |
if self.changelog.tip() == nullid: |
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1465 |
self.ui.status("requesting all changes\n") |
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1466 |
fetch = [nullid] |
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1467 |
else: |
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1468 |
fetch = self.findincoming(remote) |
ac0ec421e3a5
Move the empty changeset detection out of findincoming to pull
Matt Mackall <mpm@selenic.com>
parents:
635
diff
changeset
|
1469 |
|
622
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1470 |
if not fetch: |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1471 |
self.ui.status("no changes found\n") |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1472 |
return 1 |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1473 |
|
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1474 |
cg = remote.changegroup(fetch) |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1475 |
return self.addchangegroup(cg) |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1476 |
|
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1477 |
def push(self, remote, force=False): |
622
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1478 |
lock = remote.lock() |
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1479 |
|
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1480 |
base = {} |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1481 |
heads = remote.heads() |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1482 |
inc = self.findincoming(remote, base, heads) |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1483 |
if not force and inc: |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1484 |
self.ui.warn("abort: unsynced remote changes!\n") |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1485 |
self.ui.status("(did you forget to sync? use push -f to force)\n") |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1486 |
return 1 |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1487 |
|
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1488 |
update = self.findoutgoing(remote, base) |
622
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1489 |
if not update: |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1490 |
self.ui.status("no changes found\n") |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1491 |
return 1 |
816
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1492 |
elif not force: |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1493 |
if len(heads) < len(self.changelog.heads()): |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1494 |
self.ui.warn("abort: push creates new remote branches!\n") |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1495 |
self.ui.status("(did you forget to merge?" + |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1496 |
" use push -f to force)\n") |
8674b7803714
Warn on pushing unsynced repo or adding new heads
mpm@selenic.com
parents:
814
diff
changeset
|
1497 |
return 1 |
622
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1498 |
|
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1499 |
cg = self.changegroup(update) |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1500 |
return remote.addchangegroup(cg) |
e9fe5d5e67f7
Add generic repo commands for pull and push
Matt Mackall <mpm@selenic.com>
parents:
621
diff
changeset
|
1501 |
|
56
ad2ea1185f04
Add getchangegroup code to efficiently calculate and request a changegroup
mpm@selenic.com
parents:
55
diff
changeset
|
1502 |
def changegroup(self, basenodes): |
222 | 1503 |
class genread: |
1504 |
def __init__(self, generator): |
|
1505 |
self.g = generator |
|
1506 |
self.buf = "" |
|
903
71be6dd282d1
Allow the changegroup generator to completely load the buffer.
mason@suse.com
parents:
901
diff
changeset
|
1507 |
def fillbuf(self): |
71be6dd282d1
Allow the changegroup generator to completely load the buffer.
mason@suse.com
parents:
901
diff
changeset
|
1508 |
self.buf += "".join(self.g) |
71be6dd282d1
Allow the changegroup generator to completely load the buffer.
mason@suse.com
parents:
901
diff
changeset
|
1509 |
|
222 | 1510 |
def read(self, l): |
1511 |
while l > len(self.buf): |
|
1512 |
try: |
|
1513 |
self.buf += self.g.next() |
|
1514 |
except StopIteration: |
|
1515 |
break |
|
1516 |
d, self.buf = self.buf[:l], self.buf[l:] |
|
1517 |
return d |
|
515 | 1518 |
|
635
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1519 |
def gengroup(): |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1520 |
nodes = self.newer(basenodes) |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1521 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1522 |
# construct the link map |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1523 |
linkmap = {} |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1524 |
for n in nodes: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1525 |
linkmap[self.changelog.rev(n)] = n |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1526 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1527 |
# construct a list of all changed files |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1528 |
changed = {} |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1529 |
for n in nodes: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1530 |
c = self.changelog.read(n) |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1531 |
for f in c[3]: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1532 |
changed[f] = 1 |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1533 |
changed = changed.keys() |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1534 |
changed.sort() |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1535 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1536 |
# the changegroup is changesets + manifests + all file revs |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1537 |
revs = [ self.changelog.rev(n) for n in nodes ] |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1538 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1539 |
for y in self.changelog.group(linkmap): yield y |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1540 |
for y in self.manifest.group(linkmap): yield y |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1541 |
for f in changed: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1542 |
yield struct.pack(">l", len(f) + 4) + f |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1543 |
g = self.file(f).group(linkmap) |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1544 |
for y in g: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1545 |
yield y |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1546 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1547 |
yield struct.pack(">l", 0) |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1548 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1549 |
return genread(gengroup()) |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1550 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1551 |
def addchangegroup(self, source): |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1552 |
|
222 | 1553 |
def getchunk(): |
1554 |
d = source.read(4) |
|
1555 |
if not d: return "" |
|
1556 |
l = struct.unpack(">l", d)[0] |
|
1557 |
if l <= 4: return "" |
|
1558 |
return source.read(l - 4) |
|
1559 |
||
1560 |
def getgroup(): |
|
1561 |
while 1: |
|
1562 |
c = getchunk() |
|
1563 |
if not c: break |
|
1564 |
yield c |
|
1565 |
||
1566 |
def csmap(x): |
|
1567 |
self.ui.debug("add changeset %s\n" % short(x)) |
|
1568 |
return self.changelog.count() |
|
1569 |
||
1570 |
def revmap(x): |
|
1571 |
return self.changelog.rev(x) |
|
1572 |
||
635
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
1573 |
if not source: return |
222 | 1574 |
changesets = files = revisions = 0 |
225 | 1575 |
|
222 | 1576 |
tr = self.transaction() |
1577 |
||
1040
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1578 |
oldheads = len(self.changelog.heads()) |
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1579 |
|
222 | 1580 |
# pull off the changeset group |
1581 |
self.ui.status("adding changesets\n") |
|
1582 |
co = self.changelog.tip() |
|
224
ccbcc4d76f81
fix bad assumption about uniqueness of file versions
mpm@selenic.com
parents:
223
diff
changeset
|
1583 |
cn = self.changelog.addgroup(getgroup(), csmap, tr, 1) # unique |
222 | 1584 |
changesets = self.changelog.rev(cn) - self.changelog.rev(co) |
1585 |
||
1586 |
# pull off the manifest group |
|
1587 |
self.ui.status("adding manifests\n") |
|
1588 |
mm = self.manifest.tip() |
|
1589 |
mo = self.manifest.addgroup(getgroup(), revmap, tr) |
|
1590 |
||
1591 |
# process the files |
|
772 | 1592 |
self.ui.status("adding file changes\n") |
222 | 1593 |
while 1: |
1594 |
f = getchunk() |
|
1595 |
if not f: break |
|
1596 |
self.ui.debug("adding %s revisions\n" % f) |
|
1597 |
fl = self.file(f) |
|
529
aace5b681fe9
Attempt to fix negative revision count from pull
mpm@selenic.com
parents:
522
diff
changeset
|
1598 |
o = fl.count() |
222 | 1599 |
n = fl.addgroup(getgroup(), revmap, tr) |
529
aace5b681fe9
Attempt to fix negative revision count from pull
mpm@selenic.com
parents:
522
diff
changeset
|
1600 |
revisions += fl.count() - o |
222 | 1601 |
files += 1 |
1602 |
||
1040
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1603 |
newheads = len(self.changelog.heads()) |
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1604 |
heads = "" |
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1605 |
if oldheads and newheads > oldheads: |
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1606 |
heads = " (+%d heads)" % (newheads - oldheads) |
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1607 |
|
772 | 1608 |
self.ui.status(("added %d changesets" + |
1040
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1609 |
" with %d changes to %d files%s\n") |
35e883d1ff9b
Show number of new heads when doing a pull
mpm@selenic.com
parents:
1019
diff
changeset
|
1610 |
% (changesets, revisions, files, heads)) |
222 | 1611 |
|
1612 |
tr.close() |
|
780 | 1613 |
|
1614 |
if not self.hook("changegroup"): |
|
1615 |
return 1 |
|
1616 |
||
222 | 1617 |
return |
1618 |
||
588 | 1619 |
def update(self, node, allow=False, force=False, choose=None, |
1620 |
moddirstate=True): |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1621 |
pl = self.dirstate.parents() |
275 | 1622 |
if not force and pl[1] != nullid: |
254 | 1623 |
self.ui.warn("aborting: outstanding uncommitted merges\n") |
690 | 1624 |
return 1 |
46 | 1625 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1626 |
p1, p2 = pl[0], node |
305 | 1627 |
pa = self.changelog.ancestor(p1, p2) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1628 |
m1n = self.changelog.read(p1)[0] |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1629 |
m2n = self.changelog.read(p2)[0] |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1630 |
man = self.manifest.ancestor(m1n, m2n) |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1631 |
m1 = self.manifest.read(m1n) |
276 | 1632 |
mf1 = self.manifest.readflags(m1n) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1633 |
m2 = self.manifest.read(m2n) |
276 | 1634 |
mf2 = self.manifest.readflags(m2n) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1635 |
ma = self.manifest.read(man) |
412 | 1636 |
mfa = self.manifest.readflags(man) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1637 |
|
723 | 1638 |
(c, a, d, u) = self.changes() |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1639 |
|
408
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1640 |
# is this a jump, or a merge? i.e. is there a linear path |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1641 |
# from p1 to p2? |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1642 |
linear_path = (pa == p1 or pa == p2) |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1643 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1644 |
# resolve the manifest to determine which files |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1645 |
# we care about merging |
254 | 1646 |
self.ui.note("resolving manifests\n") |
650
2c934c7b79dc
Fix bug in reverting deleted files
Matt Mackall <mpm@selenic.com>
parents:
649
diff
changeset
|
1647 |
self.ui.debug(" force %s allow %s moddirstate %s linear %s\n" % |
2c934c7b79dc
Fix bug in reverting deleted files
Matt Mackall <mpm@selenic.com>
parents:
649
diff
changeset
|
1648 |
(force, allow, moddirstate, linear_path)) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1649 |
self.ui.debug(" ancestor %s local %s remote %s\n" % |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1650 |
(short(man), short(m1n), short(m2n))) |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1651 |
|
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1652 |
merge = {} |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1653 |
get = {} |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1654 |
remove = [] |
46 | 1655 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1656 |
# construct a working dir manifest |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1657 |
mw = m1.copy() |
276 | 1658 |
mfw = mf1.copy() |
576 | 1659 |
umap = dict.fromkeys(u) |
1660 |
||
254 | 1661 |
for f in a + c + u: |
1662 |
mw[f] = "" |
|
441 | 1663 |
mfw[f] = util.is_exec(self.wjoin(f), mfw.get(f, False)) |
576 | 1664 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1665 |
for f in d: |
254 | 1666 |
if f in mw: del mw[f] |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1667 |
|
408
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1668 |
# If we're jumping between revisions (as opposed to merging), |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1669 |
# and if neither the working directory nor the target rev has |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1670 |
# the file, then we need to remove it from the dirstate, to |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1671 |
# prevent the dirstate from listing the file when it is no |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1672 |
# longer in the manifest. |
588 | 1673 |
if moddirstate and linear_path and f not in m2: |
408
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1674 |
self.dirstate.forget((f,)) |
3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
mpm@selenic.com
parents:
407
diff
changeset
|
1675 |
|
576 | 1676 |
# Compare manifests |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1677 |
for f, n in mw.iteritems(): |
588 | 1678 |
if choose and not choose(f): continue |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1679 |
if f in m2: |
277
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1680 |
s = 0 |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1681 |
|
407
0e0d0670b2bc
[PATCH] Merging identical changes from another branch
mpm@selenic.com
parents:
405
diff
changeset
|
1682 |
# is the wfile new since m1, and match m2? |
428 | 1683 |
if f not in m1: |
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
1684 |
t1 = self.wread(f) |
994
88c15682d9b0
Fix callers to file.revision to use file.read
mpm@selenic.com
parents:
993
diff
changeset
|
1685 |
t2 = self.file(f).read(m2[f]) |
407
0e0d0670b2bc
[PATCH] Merging identical changes from another branch
mpm@selenic.com
parents:
405
diff
changeset
|
1686 |
if cmp(t1, t2) == 0: |
0e0d0670b2bc
[PATCH] Merging identical changes from another branch
mpm@selenic.com
parents:
405
diff
changeset
|
1687 |
n = m2[f] |
0e0d0670b2bc
[PATCH] Merging identical changes from another branch
mpm@selenic.com
parents:
405
diff
changeset
|
1688 |
del t1, t2 |
0e0d0670b2bc
[PATCH] Merging identical changes from another branch
mpm@selenic.com
parents:
405
diff
changeset
|
1689 |
|
296
a3d83bf86755
hg update: fix clobbering files when going backwards
mpm@selenic.com
parents:
292
diff
changeset
|
1690 |
# are files different? |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1691 |
if n != m2[f]: |
254 | 1692 |
a = ma.get(f, nullid) |
296
a3d83bf86755
hg update: fix clobbering files when going backwards
mpm@selenic.com
parents:
292
diff
changeset
|
1693 |
# are both different from the ancestor? |
254 | 1694 |
if n != a and m2[f] != a: |
273
4f8174389001
merge: Fix bug where we overwrote local when local was newer
mpm@selenic.com
parents:
263
diff
changeset
|
1695 |
self.ui.debug(" %s versions differ, resolve\n" % f) |
276 | 1696 |
# merge executable bits |
1697 |
# "if we changed or they changed, change in merge" |
|
1698 |
a, b, c = mfa.get(f, 0), mfw[f], mf2[f] |
|
1699 |
mode = ((a^b) | (a^c)) ^ a |
|
1700 |
merge[f] = (m1.get(f, nullid), m2[f], mode) |
|
277
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1701 |
s = 1 |
305 | 1702 |
# are we clobbering? |
1703 |
# is remote's version newer? |
|
1704 |
# or are we going back in time? |
|
1705 |
elif force or m2[f] != a or (p2 == pa and mw[f] == m1[f]): |
|
273
4f8174389001
merge: Fix bug where we overwrote local when local was newer
mpm@selenic.com
parents:
263
diff
changeset
|
1706 |
self.ui.debug(" remote %s is newer, get\n" % f) |
254 | 1707 |
get[f] = m2[f] |
277
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1708 |
s = 1 |
576 | 1709 |
elif f in umap: |
1710 |
# this unknown file is the same as the checkout |
|
1711 |
get[f] = m2[f] |
|
277
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1712 |
|
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1713 |
if not s and mfw[f] != mf2[f]: |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1714 |
if force: |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1715 |
self.ui.debug(" updating permissions for %s\n" % f) |
441 | 1716 |
util.set_exec(self.wjoin(f), mf2[f]) |
277
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1717 |
else: |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1718 |
a, b, c = mfa.get(f, 0), mfw[f], mf2[f] |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1719 |
mode = ((a^b) | (a^c)) ^ a |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1720 |
if mode != b: |
79279550c8ff
merge: update permissions even if file contents didn't change
mpm@selenic.com
parents:
276
diff
changeset
|
1721 |
self.ui.debug(" updating permissions for %s\n" % f) |
441 | 1722 |
util.set_exec(self.wjoin(f), mode) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1723 |
del m2[f] |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1724 |
elif f in ma: |
616 | 1725 |
if n != ma[f]: |
1726 |
r = "d" |
|
1727 |
if not force and (linear_path or allow): |
|
415
c2b9502a4e96
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted
mpm@selenic.com
parents:
413
diff
changeset
|
1728 |
r = self.ui.prompt( |
c2b9502a4e96
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted
mpm@selenic.com
parents:
413
diff
changeset
|
1729 |
(" local changed %s which remote deleted\n" % f) + |
c2b9502a4e96
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted
mpm@selenic.com
parents:
413
diff
changeset
|
1730 |
"(k)eep or (d)elete?", "[kd]", "k") |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1731 |
if r == "d": |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1732 |
remove.append(f) |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1733 |
else: |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1734 |
self.ui.debug("other deleted %s\n" % f) |
254 | 1735 |
remove.append(f) # other deleted it |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1736 |
else: |
254 | 1737 |
if n == m1.get(f, nullid): # same as parent |
383
4862a134e2c2
hg merge: fix time asymmetry bug with deleting files on update to past
mpm@selenic.com
parents:
377
diff
changeset
|
1738 |
if p2 == pa: # going backwards? |
4862a134e2c2
hg merge: fix time asymmetry bug with deleting files on update to past
mpm@selenic.com
parents:
377
diff
changeset
|
1739 |
self.ui.debug("remote deleted %s\n" % f) |
4862a134e2c2
hg merge: fix time asymmetry bug with deleting files on update to past
mpm@selenic.com
parents:
377
diff
changeset
|
1740 |
remove.append(f) |
4862a134e2c2
hg merge: fix time asymmetry bug with deleting files on update to past
mpm@selenic.com
parents:
377
diff
changeset
|
1741 |
else: |
4862a134e2c2
hg merge: fix time asymmetry bug with deleting files on update to past
mpm@selenic.com
parents:
377
diff
changeset
|
1742 |
self.ui.debug("local created %s, keeping\n" % f) |
254 | 1743 |
else: |
1744 |
self.ui.debug("working dir created %s, keeping\n" % f) |
|
46 | 1745 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1746 |
for f, n in m2.iteritems(): |
588 | 1747 |
if choose and not choose(f): continue |
256 | 1748 |
if f[0] == "/": continue |
616 | 1749 |
if f in ma and n != ma[f]: |
1750 |
r = "k" |
|
1751 |
if not force and (linear_path or allow): |
|
415
c2b9502a4e96
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted
mpm@selenic.com
parents:
413
diff
changeset
|
1752 |
r = self.ui.prompt( |
c2b9502a4e96
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted
mpm@selenic.com
parents:
413
diff
changeset
|
1753 |
("remote changed %s which local deleted\n" % f) + |
c2b9502a4e96
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted
mpm@selenic.com
parents:
413
diff
changeset
|
1754 |
"(k)eep or (d)elete?", "[kd]", "k") |
616 | 1755 |
if r == "k": get[f] = n |
1756 |
elif f not in ma: |
|
254 | 1757 |
self.ui.debug("remote created %s\n" % f) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1758 |
get[f] = n |
616 | 1759 |
else: |
680
4b7b79d2db2c
Handle undeletion of files when checking out old revisions
Matt Mackall <mpm@selenic.com>
parents:
679
diff
changeset
|
1760 |
if force or p2 == pa: # going backwards? |
4b7b79d2db2c
Handle undeletion of files when checking out old revisions
Matt Mackall <mpm@selenic.com>
parents:
679
diff
changeset
|
1761 |
self.ui.debug("local deleted %s, recreating\n" % f) |
650
2c934c7b79dc
Fix bug in reverting deleted files
Matt Mackall <mpm@selenic.com>
parents:
649
diff
changeset
|
1762 |
get[f] = n |
680
4b7b79d2db2c
Handle undeletion of files when checking out old revisions
Matt Mackall <mpm@selenic.com>
parents:
679
diff
changeset
|
1763 |
else: |
4b7b79d2db2c
Handle undeletion of files when checking out old revisions
Matt Mackall <mpm@selenic.com>
parents:
679
diff
changeset
|
1764 |
self.ui.debug("local deleted %s\n" % f) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1765 |
|
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1766 |
del mw, m1, m2, ma |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1767 |
|
275 | 1768 |
if force: |
1769 |
for f in merge: |
|
1770 |
get[f] = merge[f][1] |
|
1771 |
merge = {} |
|
1772 |
||
690 | 1773 |
if linear_path or force: |
254 | 1774 |
# we don't need to do any magic, just jump to the new rev |
993 | 1775 |
branch_merge = False |
254 | 1776 |
p1, p2 = p2, nullid |
1777 |
else: |
|
275 | 1778 |
if not allow: |
305 | 1779 |
self.ui.status("this update spans a branch" + |
1780 |
" affecting the following files:\n") |
|
1781 |
fl = merge.keys() + get.keys() |
|
1782 |
fl.sort() |
|
1783 |
for f in fl: |
|
1784 |
cf = "" |
|
1785 |
if f in merge: cf = " (resolve)" |
|
1786 |
self.ui.status(" %s%s\n" % (f, cf)) |
|
1787 |
self.ui.warn("aborting update spanning branches!\n") |
|
788 | 1788 |
self.ui.status("(use update -m to merge across branches" + |
1789 |
" or -C to lose changes)\n") |
|
275 | 1790 |
return 1 |
993 | 1791 |
branch_merge = True |
254 | 1792 |
|
588 | 1793 |
if moddirstate: |
1794 |
self.dirstate.setparents(p1, p2) |
|
191
d7e859cf2f1b
merge: add count of new manifests, files, and revisions
mpm@selenic.com
parents:
190
diff
changeset
|
1795 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1796 |
# get the files we don't need to change |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1797 |
files = get.keys() |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1798 |
files.sort() |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1799 |
for f in files: |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1800 |
if f[0] == "/": continue |
273
4f8174389001
merge: Fix bug where we overwrote local when local was newer
mpm@selenic.com
parents:
263
diff
changeset
|
1801 |
self.ui.note("getting %s\n" % f) |
276 | 1802 |
t = self.file(f).read(get[f]) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1803 |
try: |
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
1804 |
self.wwrite(f, t) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1805 |
except IOError: |
297
0dbcf3c9ff20
Fixed usage of removed variable 'wp'.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
292
diff
changeset
|
1806 |
os.makedirs(os.path.dirname(self.wjoin(f))) |
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
1807 |
self.wwrite(f, t) |
441 | 1808 |
util.set_exec(self.wjoin(f), mf2[f]) |
588 | 1809 |
if moddirstate: |
993 | 1810 |
if branch_merge: |
1811 |
self.dirstate.update([f], 'n', st_mtime=-1) |
|
992
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
1812 |
else: |
f859e9cba1b9
Fix up some bugs introduced by recent merge changes
mpm@selenic.com
parents:
991
diff
changeset
|
1813 |
self.dirstate.update([f], 'n') |
46 | 1814 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1815 |
# merge the tricky bits |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1816 |
files = merge.keys() |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1817 |
files.sort() |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1818 |
for f in files: |
256 | 1819 |
self.ui.status("merging %s\n" % f) |
993 | 1820 |
my, other, flag = merge[f] |
1821 |
self.merge3(f, my, other) |
|
441 | 1822 |
util.set_exec(self.wjoin(f), flag) |
862
d70c1c31fd45
Fix 3-way-merge of original parent, workdir and new parent.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
861
diff
changeset
|
1823 |
if moddirstate: |
993 | 1824 |
if branch_merge: |
1825 |
# We've done a branch merge, mark this file as merged |
|
1826 |
# so that we properly record the merger later |
|
1827 |
self.dirstate.update([f], 'm') |
|
862
d70c1c31fd45
Fix 3-way-merge of original parent, workdir and new parent.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
861
diff
changeset
|
1828 |
else: |
993 | 1829 |
# We've update-merged a locally modified file, so |
1830 |
# we set the dirstate to emulate a normal checkout |
|
1831 |
# of that file some time in the past. Thus our |
|
1832 |
# merge will appear as a normal local file |
|
1833 |
# modification. |
|
1834 |
f_len = len(self.file(f).read(other)) |
|
1835 |
self.dirstate.update([f], 'n', st_size=f_len, st_mtime=-1) |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1836 |
|
681 | 1837 |
remove.sort() |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1838 |
for f in remove: |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1839 |
self.ui.note("removing %s\n" % f) |
690 | 1840 |
try: |
934
ff484cc157d6
Fix path handling for deleting files on merge
mpm@selenic.com
parents:
933
diff
changeset
|
1841 |
os.unlink(self.wjoin(f)) |
690 | 1842 |
except OSError, inst: |
1843 |
self.ui.warn("update failed to remove %s: %s!\n" % (f, inst)) |
|
578 | 1844 |
# try removing directories that might now be empty |
934
ff484cc157d6
Fix path handling for deleting files on merge
mpm@selenic.com
parents:
933
diff
changeset
|
1845 |
try: os.removedirs(os.path.dirname(self.wjoin(f))) |
578 | 1846 |
except: pass |
588 | 1847 |
if moddirstate: |
993 | 1848 |
if branch_merge: |
1849 |
self.dirstate.update(remove, 'r') |
|
1850 |
else: |
|
588 | 1851 |
self.dirstate.forget(remove) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1852 |
|
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1853 |
def merge3(self, fn, my, other): |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1854 |
"""perform a 3-way merge in the working directory""" |
249 | 1855 |
|
96 | 1856 |
def temp(prefix, node): |
1857 |
pre = "%s~%s." % (os.path.basename(fn), prefix) |
|
1858 |
(fd, name) = tempfile.mkstemp("", pre) |
|
417 | 1859 |
f = os.fdopen(fd, "wb") |
1019
a9cca981c423
Create helper functions for I/O to files in the working directory
mpm@selenic.com
parents:
1013
diff
changeset
|
1860 |
self.wwrite(fn, fl.read(node), f) |
96 | 1861 |
f.close() |
1862 |
return name |
|
1863 |
||
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1864 |
fl = self.file(fn) |
96 | 1865 |
base = fl.ancestor(my, other) |
244 | 1866 |
a = self.wjoin(fn) |
346 | 1867 |
b = temp("base", base) |
1868 |
c = temp("other", other) |
|
96 | 1869 |
|
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1870 |
self.ui.note("resolving %s\n" % fn) |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1871 |
self.ui.debug("file %s: other %s ancestor %s\n" % |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1872 |
(fn, short(other), short(base))) |
96 | 1873 |
|
703
fb6f85ecc863
merge program setting from hgrc wasn't used.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
691
diff
changeset
|
1874 |
cmd = (os.environ.get("HGMERGE") or self.ui.config("ui", "merge") |
fb6f85ecc863
merge program setting from hgrc wasn't used.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
691
diff
changeset
|
1875 |
or "hgmerge") |
240 | 1876 |
r = os.system("%s %s %s %s" % (cmd, a, b, c)) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1877 |
if r: |
275 | 1878 |
self.ui.warn("merging %s failed!\n" % fn) |
232
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1879 |
|
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1880 |
os.unlink(b) |
fc4a6e5b5812
hg resolve: merge a given node into the working directory
mpm@selenic.com
parents:
231
diff
changeset
|
1881 |
os.unlink(c) |
96 | 1882 |
|
247 | 1883 |
def verify(self): |
1884 |
filelinkrevs = {} |
|
1885 |
filenodes = {} |
|
1886 |
changesets = revisions = files = 0 |
|
1887 |
errors = 0 |
|
1888 |
||
302 | 1889 |
seen = {} |
247 | 1890 |
self.ui.status("checking changesets\n") |
1891 |
for i in range(self.changelog.count()): |
|
1892 |
changesets += 1 |
|
1893 |
n = self.changelog.node(i) |
|
302 | 1894 |
if n in seen: |
1895 |
self.ui.warn("duplicate changeset at revision %d\n" % i) |
|
1896 |
errors += 1 |
|
1897 |
seen[n] = 1 |
|
515 | 1898 |
|
247 | 1899 |
for p in self.changelog.parents(n): |
1900 |
if p not in self.changelog.nodemap: |
|
1901 |
self.ui.warn("changeset %s has unknown parent %s\n" % |
|
1902 |
(short(n), short(p))) |
|
1903 |
errors += 1 |
|
1904 |
try: |
|
1905 |
changes = self.changelog.read(n) |
|
1906 |
except Exception, inst: |
|
1907 |
self.ui.warn("unpacking changeset %s: %s\n" % (short(n), inst)) |
|
1908 |
errors += 1 |
|
1909 |
||
1910 |
for f in changes[3]: |
|
1911 |
filelinkrevs.setdefault(f, []).append(i) |
|
1912 |
||
302 | 1913 |
seen = {} |
247 | 1914 |
self.ui.status("checking manifests\n") |
1915 |
for i in range(self.manifest.count()): |
|
1916 |
n = self.manifest.node(i) |
|
302 | 1917 |
if n in seen: |
1918 |
self.ui.warn("duplicate manifest at revision %d\n" % i) |
|
1919 |
errors += 1 |
|
1920 |
seen[n] = 1 |
|
515 | 1921 |
|
247 | 1922 |
for p in self.manifest.parents(n): |
1923 |
if p not in self.manifest.nodemap: |
|
1924 |
self.ui.warn("manifest %s has unknown parent %s\n" % |
|
1925 |
(short(n), short(p))) |
|
1926 |
errors += 1 |
|
1927 |
||
1928 |
try: |
|
1929 |
delta = mdiff.patchtext(self.manifest.delta(n)) |
|
1930 |
except KeyboardInterrupt: |
|
582 | 1931 |
self.ui.warn("aborted") |
247 | 1932 |
sys.exit(0) |
1933 |
except Exception, inst: |
|
1934 |
self.ui.warn("unpacking manifest %s: %s\n" |
|
1935 |
% (short(n), inst)) |
|
1936 |
errors += 1 |
|
1937 |
||
1938 |
ff = [ l.split('\0') for l in delta.splitlines() ] |
|
1939 |
for f, fn in ff: |
|
284 | 1940 |
filenodes.setdefault(f, {})[bin(fn[:40])] = 1 |
247 | 1941 |
|
1942 |
self.ui.status("crosschecking files in changesets and manifests\n") |
|
1943 |
for f in filenodes: |
|
1944 |
if f not in filelinkrevs: |
|
1945 |
self.ui.warn("file %s in manifest but not in changesets\n" % f) |
|
1946 |
errors += 1 |
|
1947 |
||
1948 |
for f in filelinkrevs: |
|
1949 |
if f not in filenodes: |
|
1950 |
self.ui.warn("file %s in changeset but not in manifest\n" % f) |
|
1951 |
errors += 1 |
|
1952 |
||
1953 |
self.ui.status("checking files\n") |
|
1954 |
ff = filenodes.keys() |
|
1955 |
ff.sort() |
|
1956 |
for f in ff: |
|
1957 |
if f == "/dev/null": continue |
|
1958 |
files += 1 |
|
1959 |
fl = self.file(f) |
|
1960 |
nodes = { nullid: 1 } |
|
302 | 1961 |
seen = {} |
247 | 1962 |
for i in range(fl.count()): |
1963 |
revisions += 1 |
|
1964 |
n = fl.node(i) |
|
1965 |
||
302 | 1966 |
if n in seen: |
1967 |
self.ui.warn("%s: duplicate revision %d\n" % (f, i)) |
|
1968 |
errors += 1 |
|
1969 |
||
247 | 1970 |
if n not in filenodes[f]: |
1971 |
self.ui.warn("%s: %d:%s not in manifests\n" |
|
1972 |
% (f, i, short(n))) |
|
1973 |
errors += 1 |
|
1974 |
else: |
|
1975 |
del filenodes[f][n] |
|
1976 |
||
1977 |
flr = fl.linkrev(n) |
|
1978 |
if flr not in filelinkrevs[f]: |
|
1979 |
self.ui.warn("%s:%s points to unexpected changeset %d\n" |
|
1980 |
% (f, short(n), fl.linkrev(n))) |
|
1981 |
errors += 1 |
|
1982 |
else: |
|
1983 |
filelinkrevs[f].remove(flr) |
|
1984 |
||
1985 |
# verify contents |
|
1986 |
try: |
|
1987 |
t = fl.read(n) |
|
1988 |
except Exception, inst: |
|
1989 |
self.ui.warn("unpacking file %s %s: %s\n" |
|
1990 |
% (f, short(n), inst)) |
|
1991 |
errors += 1 |
|
1992 |
||
1993 |
# verify parents |
|
1994 |
(p1, p2) = fl.parents(n) |
|
1995 |
if p1 not in nodes: |
|
1996 |
self.ui.warn("file %s:%s unknown parent 1 %s" % |
|
1997 |
(f, short(n), short(p1))) |
|
1998 |
errors += 1 |
|
1999 |
if p2 not in nodes: |
|
2000 |
self.ui.warn("file %s:%s unknown parent 2 %s" % |
|
2001 |
(f, short(n), short(p1))) |
|
2002 |
errors += 1 |
|
2003 |
nodes[n] = 1 |
|
2004 |
||
2005 |
# cross-check |
|
2006 |
for node in filenodes[f]: |
|
2007 |
self.ui.warn("node %s in manifests not in %s\n" |
|
721 | 2008 |
% (hex(node), f)) |
247 | 2009 |
errors += 1 |
2010 |
||
2011 |
self.ui.status("%d files, %d changesets, %d total revisions\n" % |
|
2012 |
(files, changesets, revisions)) |
|
2013 |
||
2014 |
if errors: |
|
2015 |
self.ui.warn("%d integrity errors encountered!\n" % errors) |
|
2016 |
return 1 |
|
2017 |
||
926 | 2018 |
class remoterepository: |
2019 |
def local(self): |
|
2020 |
return False |
|
2021 |
||
2022 |
class httprepository(remoterepository): |
|
60 | 2023 |
def __init__(self, ui, path): |
765 | 2024 |
# fix missing / after hostname |
2025 |
s = urlparse.urlsplit(path) |
|
2026 |
partial = s[2] |
|
2027 |
if not partial: partial = "/" |
|
2028 |
self.url = urlparse.urlunsplit((s[0], s[1], partial, '', '')) |
|
60 | 2029 |
self.ui = ui |
321 | 2030 |
no_list = [ "localhost", "127.0.0.1" ] |
2031 |
host = ui.config("http_proxy", "host") |
|
424
9294dce4b633
Allow override of HTTP_PROXY, http_proxy and no_proxy; make no_proxy work.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
385
diff
changeset
|
2032 |
if host is None: |
9294dce4b633
Allow override of HTTP_PROXY, http_proxy and no_proxy; make no_proxy work.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
385
diff
changeset
|
2033 |
host = os.environ.get("http_proxy") |
426
8c90ab5644c9
Allow hgrc's proxy host and $http_proxy env var to start with http://
Thomas Arendsen Hein <thomas@intevation.de>
parents:
424
diff
changeset
|
2034 |
if host and host.startswith('http://'): |
8c90ab5644c9
Allow hgrc's proxy host and $http_proxy env var to start with http://
Thomas Arendsen Hein <thomas@intevation.de>
parents:
424
diff
changeset
|
2035 |
host = host[7:] |
321 | 2036 |
user = ui.config("http_proxy", "user") |
2037 |
passwd = ui.config("http_proxy", "passwd") |
|
2038 |
no = ui.config("http_proxy", "no") |
|
424
9294dce4b633
Allow override of HTTP_PROXY, http_proxy and no_proxy; make no_proxy work.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
385
diff
changeset
|
2039 |
if no is None: |
9294dce4b633
Allow override of HTTP_PROXY, http_proxy and no_proxy; make no_proxy work.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
385
diff
changeset
|
2040 |
no = os.environ.get("no_proxy") |
321 | 2041 |
if no: |
2042 |
no_list = no_list + no.split(",") |
|
515 | 2043 |
|
321 | 2044 |
no_proxy = 0 |
2045 |
for h in no_list: |
|
2046 |
if (path.startswith("http://" + h + "/") or |
|
2047 |
path.startswith("http://" + h + ":") or |
|
2048 |
path == "http://" + h): |
|
2049 |
no_proxy = 1 |
|
2050 |
||
2051 |
# Note: urllib2 takes proxy values from the environment and those will |
|
2052 |
# take precedence |
|
424
9294dce4b633
Allow override of HTTP_PROXY, http_proxy and no_proxy; make no_proxy work.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
385
diff
changeset
|
2053 |
for env in ["HTTP_PROXY", "http_proxy", "no_proxy"]: |
859
6390c377a9e6
Trap OSError when deleting env vars
Edouard Gomez <ed.gomez@free.fr>
parents:
856
diff
changeset
|
2054 |
try: |
6390c377a9e6
Trap OSError when deleting env vars
Edouard Gomez <ed.gomez@free.fr>
parents:
856
diff
changeset
|
2055 |
if os.environ.has_key(env): |
6390c377a9e6
Trap OSError when deleting env vars
Edouard Gomez <ed.gomez@free.fr>
parents:
856
diff
changeset
|
2056 |
del os.environ[env] |
6390c377a9e6
Trap OSError when deleting env vars
Edouard Gomez <ed.gomez@free.fr>
parents:
856
diff
changeset
|
2057 |
except OSError: |
6390c377a9e6
Trap OSError when deleting env vars
Edouard Gomez <ed.gomez@free.fr>
parents:
856
diff
changeset
|
2058 |
pass |
321 | 2059 |
|
2060 |
proxy_handler = urllib2.BaseHandler() |
|
2061 |
if host and not no_proxy: |
|
2062 |
proxy_handler = urllib2.ProxyHandler({"http" : "http://" + host}) |
|
2063 |
||
2064 |
authinfo = None |
|
2065 |
if user and passwd: |
|
2066 |
passmgr = urllib2.HTTPPasswordMgrWithDefaultRealm() |
|
2067 |
passmgr.add_password(None, host, user, passwd) |
|
2068 |
authinfo = urllib2.ProxyBasicAuthHandler(passmgr) |
|
2069 |
||
2070 |
opener = urllib2.build_opener(proxy_handler, authinfo) |
|
2071 |
urllib2.install_opener(opener) |
|
60 | 2072 |
|
634
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
2073 |
def dev(self): |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
2074 |
return -1 |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
2075 |
|
60 | 2076 |
def do_cmd(self, cmd, **args): |
83 | 2077 |
self.ui.debug("sending %s command\n" % cmd) |
60 | 2078 |
q = {"cmd": cmd} |
2079 |
q.update(args) |
|
2080 |
qs = urllib.urlencode(q) |
|
2081 |
cu = "%s?%s" % (self.url, qs) |
|
752 | 2082 |
resp = urllib2.urlopen(cu) |
753 | 2083 |
proto = resp.headers['content-type'] |
752 | 2084 |
|
753 | 2085 |
# accept old "text/plain" and "application/hg-changegroup" for now |
2086 |
if not proto.startswith('application/mercurial') and \ |
|
2087 |
not proto.startswith('text/plain') and \ |
|
2088 |
not proto.startswith('application/hg-changegroup'): |
|
752 | 2089 |
raise RepoError("'%s' does not appear to be an hg repository" |
2090 |
% self.url) |
|
2091 |
||
753 | 2092 |
if proto.startswith('application/mercurial'): |
2093 |
version = proto[22:] |
|
2094 |
if float(version) > 0.1: |
|
2095 |
raise RepoError("'%s' uses newer protocol %s" % |
|
2096 |
(self.url, version)) |
|
2097 |
||
752 | 2098 |
return resp |
60 | 2099 |
|
222 | 2100 |
def heads(self): |
2101 |
d = self.do_cmd("heads").read() |
|
2102 |
try: |
|
2103 |
return map(bin, d[:-1].split(" ")) |
|
2104 |
except: |
|
2105 |
self.ui.warn("unexpected response:\n" + d[:400] + "\n...\n") |
|
2106 |
raise |
|
2107 |
||
60 | 2108 |
def branches(self, nodes): |
2109 |
n = " ".join(map(hex, nodes)) |
|
752 | 2110 |
d = self.do_cmd("branches", nodes=n).read() |
217 | 2111 |
try: |
2112 |
br = [ tuple(map(bin, b.split(" "))) for b in d.splitlines() ] |
|
2113 |
return br |
|
2114 |
except: |
|
2115 |
self.ui.warn("unexpected response:\n" + d[:400] + "\n...\n") |
|
2116 |
raise |
|
60 | 2117 |
|
2118 |
def between(self, pairs): |
|
2119 |
n = "\n".join(["-".join(map(hex, p)) for p in pairs]) |
|
752 | 2120 |
d = self.do_cmd("between", pairs=n).read() |
217 | 2121 |
try: |
2122 |
p = [ l and map(bin, l.split(" ")) or [] for l in d.splitlines() ] |
|
2123 |
return p |
|
2124 |
except: |
|
2125 |
self.ui.warn("unexpected response:\n" + d[:400] + "\n...\n") |
|
2126 |
raise |
|
60 | 2127 |
|
2128 |
def changegroup(self, nodes): |
|
2129 |
n = " ".join(map(hex, nodes)) |
|
752 | 2130 |
f = self.do_cmd("changegroup", roots=n) |
192 | 2131 |
bytes = 0 |
635
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2132 |
|
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2133 |
class zread: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2134 |
def __init__(self, f): |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2135 |
self.zd = zlib.decompressobj() |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2136 |
self.f = f |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2137 |
self.buf = "" |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2138 |
def read(self, l): |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2139 |
while l > len(self.buf): |
751
0b245edec124
When pulling from a non hg repository URL (e.g. http://www.kernel.org/hg)
Muli Ben-Yehuda <mulix@mulix.org>
parents:
741
diff
changeset
|
2140 |
r = self.f.read(4096) |
635
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2141 |
if r: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2142 |
self.buf += self.zd.decompress(r) |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2143 |
else: |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2144 |
self.buf += self.zd.flush() |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2145 |
break |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2146 |
d, self.buf = self.buf[:l], self.buf[l:] |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2147 |
return d |
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2148 |
|
752 | 2149 |
return zread(f) |
635
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2150 |
|
638
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2151 |
class remotelock: |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2152 |
def __init__(self, repo): |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2153 |
self.repo = repo |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2154 |
def release(self): |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2155 |
self.repo.unlock() |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2156 |
self.repo = None |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2157 |
def __del__(self): |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2158 |
if self.repo: |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2159 |
self.release() |
60 | 2160 |
|
926 | 2161 |
class sshrepository(remoterepository): |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2162 |
def __init__(self, ui, path): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2163 |
self.url = path |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2164 |
self.ui = ui |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2165 |
|
1069
4337cd845a2a
Allow using a ssh repository without a path.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1062
diff
changeset
|
2166 |
m = re.match(r'ssh://(([^@]+)@)?([^:/]+)(:(\d+))?(/(.*))?', path) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2167 |
if not m: |
817 | 2168 |
raise RepoError("couldn't parse destination %s" % path) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2169 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2170 |
self.user = m.group(2) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2171 |
self.host = m.group(3) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2172 |
self.port = m.group(5) |
1069
4337cd845a2a
Allow using a ssh repository without a path.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1062
diff
changeset
|
2173 |
self.path = m.group(7) or "." |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2174 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2175 |
args = self.user and ("%s@%s" % (self.user, self.host)) or self.host |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2176 |
args = self.port and ("%s -p %s") % (args, self.port) or args |
817 | 2177 |
|
961 | 2178 |
sshcmd = self.ui.config("ui", "ssh", "ssh") |
2179 |
remotecmd = self.ui.config("ui", "remotecmd", "hg") |
|
2180 |
cmd = "%s %s '%s -R %s serve --stdio'" |
|
1069
4337cd845a2a
Allow using a ssh repository without a path.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1062
diff
changeset
|
2181 |
cmd = cmd % (sshcmd, args, remotecmd, self.path) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2182 |
|
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2183 |
self.pipeo, self.pipei, self.pipee = os.popen3(cmd) |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2184 |
|
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2185 |
def readerr(self): |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2186 |
while 1: |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2187 |
r,w,x = select.select([self.pipee], [], [], 0) |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2188 |
if not r: break |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2189 |
l = self.pipee.readline() |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2190 |
if not l: break |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2191 |
self.ui.status("remote: ", l) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2192 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2193 |
def __del__(self): |
817 | 2194 |
try: |
2195 |
self.pipeo.close() |
|
2196 |
self.pipei.close() |
|
2197 |
for l in self.pipee: |
|
2198 |
self.ui.status("remote: ", l) |
|
2199 |
self.pipee.close() |
|
2200 |
except: |
|
2201 |
pass |
|
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2202 |
|
634
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
2203 |
def dev(self): |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
2204 |
return -1 |
da5378d39269
Add a repo method to report repo device
Matt Mackall <mpm@selenic.com>
parents:
627
diff
changeset
|
2205 |
|
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2206 |
def do_cmd(self, cmd, **args): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2207 |
self.ui.debug("sending %s command\n" % cmd) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2208 |
self.pipeo.write("%s\n" % cmd) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2209 |
for k, v in args.items(): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2210 |
self.pipeo.write("%s %d\n" % (k, len(v))) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2211 |
self.pipeo.write(v) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2212 |
self.pipeo.flush() |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2213 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2214 |
return self.pipei |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2215 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2216 |
def call(self, cmd, **args): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2217 |
r = self.do_cmd(cmd, **args) |
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2218 |
l = r.readline() |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2219 |
self.readerr() |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2220 |
try: |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2221 |
l = int(l) |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2222 |
except: |
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2223 |
raise RepoError("unexpected response '%s'" % l) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2224 |
return r.read(l) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2225 |
|
638
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2226 |
def lock(self): |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2227 |
self.call("lock") |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2228 |
return remotelock(self) |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2229 |
|
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2230 |
def unlock(self): |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2231 |
self.call("unlock") |
35f7adfefa69
Add a scheme for handling remote locking
Matt Mackall <mpm@selenic.com>
parents:
637
diff
changeset
|
2232 |
|
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2233 |
def heads(self): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2234 |
d = self.call("heads") |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2235 |
try: |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2236 |
return map(bin, d[:-1].split(" ")) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2237 |
except: |
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2238 |
raise RepoError("unexpected response '%s'" % (d[:400] + "...")) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2239 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2240 |
def branches(self, nodes): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2241 |
n = " ".join(map(hex, nodes)) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2242 |
d = self.call("branches", nodes=n) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2243 |
try: |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2244 |
br = [ tuple(map(bin, b.split(" "))) for b in d.splitlines() ] |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2245 |
return br |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2246 |
except: |
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2247 |
raise RepoError("unexpected response '%s'" % (d[:400] + "...")) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2248 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2249 |
def between(self, pairs): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2250 |
n = "\n".join(["-".join(map(hex, p)) for p in pairs]) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2251 |
d = self.call("between", pairs=n) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2252 |
try: |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2253 |
p = [ l and map(bin, l.split(" ")) or [] for l in d.splitlines() ] |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2254 |
return p |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2255 |
except: |
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2256 |
raise RepoError("unexpected response '%s'" % (d[:400] + "...")) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2257 |
|
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2258 |
def changegroup(self, nodes): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2259 |
n = " ".join(map(hex, nodes)) |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2260 |
f = self.do_cmd("changegroup", roots=n) |
635
85e2209d401c
Protocol switch from using generators to stream-like objects.
Matt Mackall <mpm@selenic.com>
parents:
634
diff
changeset
|
2261 |
return self.pipei |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2262 |
|
639
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2263 |
def addchangegroup(self, cg): |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2264 |
d = self.call("addchangegroup") |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2265 |
if d: |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2266 |
raise RepoError("push refused: %s", d) |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2267 |
|
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2268 |
while 1: |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2269 |
d = cg.read(4096) |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2270 |
if not d: break |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2271 |
self.pipeo.write(d) |
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2272 |
self.readerr() |
639
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2273 |
|
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2274 |
self.pipeo.flush() |
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2275 |
|
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2276 |
self.readerr() |
639
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2277 |
l = int(self.pipei.readline()) |
646
342927da4f4c
Show remote client output with "remote:"
Matt Mackall <mpm@selenic.com>
parents:
644
diff
changeset
|
2278 |
return self.pipei.read(l) != "" |
639
31cebba881a0
Add addchangegroup to the ssh protocol
Matt Mackall <mpm@selenic.com>
parents:
638
diff
changeset
|
2279 |
|
923 | 2280 |
class httpsrepository(httprepository): |
2281 |
pass |
|
2282 |
||
60 | 2283 |
def repository(ui, path=None, create=0): |
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2284 |
if path: |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2285 |
if path.startswith("http://"): |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2286 |
return httprepository(ui, path) |
923 | 2287 |
if path.startswith("https://"): |
2288 |
return httpsrepository(ui, path) |
|
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2289 |
if path.startswith("hg://"): |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2290 |
return httprepository(ui, path.replace("hg://", "http://")) |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2291 |
if path.startswith("old-http://"): |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2292 |
return localrepository(ui, path.replace("old-http://", "http://")) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2293 |
if path.startswith("ssh://"): |
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
2294 |
return sshrepository(ui, path) |
60 | 2295 |
|
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
2296 |
return localrepository(ui, path, create) |