##// END OF EJS Templates
small changes to revert command....
Vadim Gelfer -
r2042:a514c750 default
parent child Browse files
Show More
@@ -1,3447 +1,3468 b''
1 # commands.py - command processing for mercurial
1 # commands.py - command processing for mercurial
2 #
2 #
3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms
5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference.
6 # of the GNU General Public License, incorporated herein by reference.
7
7
8 from demandload import demandload
8 from demandload import demandload
9 from node import *
9 from node import *
10 from i18n import gettext as _
10 from i18n import gettext as _
11 demandload(globals(), "os re sys signal shutil imp urllib pdb")
11 demandload(globals(), "os re sys signal shutil imp urllib pdb")
12 demandload(globals(), "fancyopts ui hg util lock revlog templater bundlerepo")
12 demandload(globals(), "fancyopts ui hg util lock revlog templater bundlerepo")
13 demandload(globals(), "fnmatch hgweb mdiff random signal tempfile time")
13 demandload(globals(), "fnmatch hgweb mdiff random signal tempfile time")
14 demandload(globals(), "traceback errno socket version struct atexit sets bz2")
14 demandload(globals(), "traceback errno socket version struct atexit sets bz2")
15 demandload(globals(), "changegroup")
15 demandload(globals(), "changegroup")
16
16
17 class UnknownCommand(Exception):
17 class UnknownCommand(Exception):
18 """Exception raised if command is not in the command table."""
18 """Exception raised if command is not in the command table."""
19 class AmbiguousCommand(Exception):
19 class AmbiguousCommand(Exception):
20 """Exception raised if command shortcut matches more than one command."""
20 """Exception raised if command shortcut matches more than one command."""
21
21
22 def filterfiles(filters, files):
22 def filterfiles(filters, files):
23 l = [x for x in files if x in filters]
23 l = [x for x in files if x in filters]
24
24
25 for t in filters:
25 for t in filters:
26 if t and t[-1] != "/":
26 if t and t[-1] != "/":
27 t += "/"
27 t += "/"
28 l += [x for x in files if x.startswith(t)]
28 l += [x for x in files if x.startswith(t)]
29 return l
29 return l
30
30
31 def relpath(repo, args):
31 def relpath(repo, args):
32 cwd = repo.getcwd()
32 cwd = repo.getcwd()
33 if cwd:
33 if cwd:
34 return [util.normpath(os.path.join(cwd, x)) for x in args]
34 return [util.normpath(os.path.join(cwd, x)) for x in args]
35 return args
35 return args
36
36
37 def matchpats(repo, pats=[], opts={}, head=''):
37 def matchpats(repo, pats=[], opts={}, head=''):
38 cwd = repo.getcwd()
38 cwd = repo.getcwd()
39 if not pats and cwd:
39 if not pats and cwd:
40 opts['include'] = [os.path.join(cwd, i) for i in opts['include']]
40 opts['include'] = [os.path.join(cwd, i) for i in opts['include']]
41 opts['exclude'] = [os.path.join(cwd, x) for x in opts['exclude']]
41 opts['exclude'] = [os.path.join(cwd, x) for x in opts['exclude']]
42 cwd = ''
42 cwd = ''
43 return util.cmdmatcher(repo.root, cwd, pats or ['.'], opts.get('include'),
43 return util.cmdmatcher(repo.root, cwd, pats or ['.'], opts.get('include'),
44 opts.get('exclude'), head)
44 opts.get('exclude'), head)
45
45
46 def makewalk(repo, pats, opts, node=None, head='', badmatch=None):
46 def makewalk(repo, pats, opts, node=None, head='', badmatch=None):
47 files, matchfn, anypats = matchpats(repo, pats, opts, head)
47 files, matchfn, anypats = matchpats(repo, pats, opts, head)
48 exact = dict(zip(files, files))
48 exact = dict(zip(files, files))
49 def walk():
49 def walk():
50 for src, fn in repo.walk(node=node, files=files, match=matchfn,
50 for src, fn in repo.walk(node=node, files=files, match=matchfn,
51 badmatch=None):
51 badmatch=badmatch):
52 yield src, fn, util.pathto(repo.getcwd(), fn), fn in exact
52 yield src, fn, util.pathto(repo.getcwd(), fn), fn in exact
53 return files, matchfn, walk()
53 return files, matchfn, walk()
54
54
55 def walk(repo, pats, opts, node=None, head='', badmatch=None):
55 def walk(repo, pats, opts, node=None, head='', badmatch=None):
56 files, matchfn, results = makewalk(repo, pats, opts, node, head, badmatch)
56 files, matchfn, results = makewalk(repo, pats, opts, node, head, badmatch)
57 for r in results:
57 for r in results:
58 yield r
58 yield r
59
59
60 def walkchangerevs(ui, repo, pats, opts):
60 def walkchangerevs(ui, repo, pats, opts):
61 '''Iterate over files and the revs they changed in.
61 '''Iterate over files and the revs they changed in.
62
62
63 Callers most commonly need to iterate backwards over the history
63 Callers most commonly need to iterate backwards over the history
64 it is interested in. Doing so has awful (quadratic-looking)
64 it is interested in. Doing so has awful (quadratic-looking)
65 performance, so we use iterators in a "windowed" way.
65 performance, so we use iterators in a "windowed" way.
66
66
67 We walk a window of revisions in the desired order. Within the
67 We walk a window of revisions in the desired order. Within the
68 window, we first walk forwards to gather data, then in the desired
68 window, we first walk forwards to gather data, then in the desired
69 order (usually backwards) to display it.
69 order (usually backwards) to display it.
70
70
71 This function returns an (iterator, getchange, matchfn) tuple. The
71 This function returns an (iterator, getchange, matchfn) tuple. The
72 getchange function returns the changelog entry for a numeric
72 getchange function returns the changelog entry for a numeric
73 revision. The iterator yields 3-tuples. They will be of one of
73 revision. The iterator yields 3-tuples. They will be of one of
74 the following forms:
74 the following forms:
75
75
76 "window", incrementing, lastrev: stepping through a window,
76 "window", incrementing, lastrev: stepping through a window,
77 positive if walking forwards through revs, last rev in the
77 positive if walking forwards through revs, last rev in the
78 sequence iterated over - use to reset state for the current window
78 sequence iterated over - use to reset state for the current window
79
79
80 "add", rev, fns: out-of-order traversal of the given file names
80 "add", rev, fns: out-of-order traversal of the given file names
81 fns, which changed during revision rev - use to gather data for
81 fns, which changed during revision rev - use to gather data for
82 possible display
82 possible display
83
83
84 "iter", rev, None: in-order traversal of the revs earlier iterated
84 "iter", rev, None: in-order traversal of the revs earlier iterated
85 over with "add" - use to display data'''
85 over with "add" - use to display data'''
86
86
87 def increasing_windows(start, end, windowsize=8, sizelimit=512):
87 def increasing_windows(start, end, windowsize=8, sizelimit=512):
88 if start < end:
88 if start < end:
89 while start < end:
89 while start < end:
90 yield start, min(windowsize, end-start)
90 yield start, min(windowsize, end-start)
91 start += windowsize
91 start += windowsize
92 if windowsize < sizelimit:
92 if windowsize < sizelimit:
93 windowsize *= 2
93 windowsize *= 2
94 else:
94 else:
95 while start > end:
95 while start > end:
96 yield start, min(windowsize, start-end-1)
96 yield start, min(windowsize, start-end-1)
97 start -= windowsize
97 start -= windowsize
98 if windowsize < sizelimit:
98 if windowsize < sizelimit:
99 windowsize *= 2
99 windowsize *= 2
100
100
101
101
102 files, matchfn, anypats = matchpats(repo, pats, opts)
102 files, matchfn, anypats = matchpats(repo, pats, opts)
103
103
104 if repo.changelog.count() == 0:
104 if repo.changelog.count() == 0:
105 return [], False, matchfn
105 return [], False, matchfn
106
106
107 revs = map(int, revrange(ui, repo, opts['rev'] or ['tip:0']))
107 revs = map(int, revrange(ui, repo, opts['rev'] or ['tip:0']))
108 wanted = {}
108 wanted = {}
109 slowpath = anypats
109 slowpath = anypats
110 fncache = {}
110 fncache = {}
111
111
112 chcache = {}
112 chcache = {}
113 def getchange(rev):
113 def getchange(rev):
114 ch = chcache.get(rev)
114 ch = chcache.get(rev)
115 if ch is None:
115 if ch is None:
116 chcache[rev] = ch = repo.changelog.read(repo.lookup(str(rev)))
116 chcache[rev] = ch = repo.changelog.read(repo.lookup(str(rev)))
117 return ch
117 return ch
118
118
119 if not slowpath and not files:
119 if not slowpath and not files:
120 # No files, no patterns. Display all revs.
120 # No files, no patterns. Display all revs.
121 wanted = dict(zip(revs, revs))
121 wanted = dict(zip(revs, revs))
122 if not slowpath:
122 if not slowpath:
123 # Only files, no patterns. Check the history of each file.
123 # Only files, no patterns. Check the history of each file.
124 def filerevgen(filelog):
124 def filerevgen(filelog):
125 for i, window in increasing_windows(filelog.count()-1, -1):
125 for i, window in increasing_windows(filelog.count()-1, -1):
126 revs = []
126 revs = []
127 for j in xrange(i - window, i + 1):
127 for j in xrange(i - window, i + 1):
128 revs.append(filelog.linkrev(filelog.node(j)))
128 revs.append(filelog.linkrev(filelog.node(j)))
129 revs.reverse()
129 revs.reverse()
130 for rev in revs:
130 for rev in revs:
131 yield rev
131 yield rev
132
132
133 minrev, maxrev = min(revs), max(revs)
133 minrev, maxrev = min(revs), max(revs)
134 for file_ in files:
134 for file_ in files:
135 filelog = repo.file(file_)
135 filelog = repo.file(file_)
136 # A zero count may be a directory or deleted file, so
136 # A zero count may be a directory or deleted file, so
137 # try to find matching entries on the slow path.
137 # try to find matching entries on the slow path.
138 if filelog.count() == 0:
138 if filelog.count() == 0:
139 slowpath = True
139 slowpath = True
140 break
140 break
141 for rev in filerevgen(filelog):
141 for rev in filerevgen(filelog):
142 if rev <= maxrev:
142 if rev <= maxrev:
143 if rev < minrev:
143 if rev < minrev:
144 break
144 break
145 fncache.setdefault(rev, [])
145 fncache.setdefault(rev, [])
146 fncache[rev].append(file_)
146 fncache[rev].append(file_)
147 wanted[rev] = 1
147 wanted[rev] = 1
148 if slowpath:
148 if slowpath:
149 # The slow path checks files modified in every changeset.
149 # The slow path checks files modified in every changeset.
150 def changerevgen():
150 def changerevgen():
151 for i, window in increasing_windows(repo.changelog.count()-1, -1):
151 for i, window in increasing_windows(repo.changelog.count()-1, -1):
152 for j in xrange(i - window, i + 1):
152 for j in xrange(i - window, i + 1):
153 yield j, getchange(j)[3]
153 yield j, getchange(j)[3]
154
154
155 for rev, changefiles in changerevgen():
155 for rev, changefiles in changerevgen():
156 matches = filter(matchfn, changefiles)
156 matches = filter(matchfn, changefiles)
157 if matches:
157 if matches:
158 fncache[rev] = matches
158 fncache[rev] = matches
159 wanted[rev] = 1
159 wanted[rev] = 1
160
160
161 def iterate():
161 def iterate():
162 for i, window in increasing_windows(0, len(revs)):
162 for i, window in increasing_windows(0, len(revs)):
163 yield 'window', revs[0] < revs[-1], revs[-1]
163 yield 'window', revs[0] < revs[-1], revs[-1]
164 nrevs = [rev for rev in revs[i:i+window]
164 nrevs = [rev for rev in revs[i:i+window]
165 if rev in wanted]
165 if rev in wanted]
166 srevs = list(nrevs)
166 srevs = list(nrevs)
167 srevs.sort()
167 srevs.sort()
168 for rev in srevs:
168 for rev in srevs:
169 fns = fncache.get(rev) or filter(matchfn, getchange(rev)[3])
169 fns = fncache.get(rev) or filter(matchfn, getchange(rev)[3])
170 yield 'add', rev, fns
170 yield 'add', rev, fns
171 for rev in nrevs:
171 for rev in nrevs:
172 yield 'iter', rev, None
172 yield 'iter', rev, None
173 return iterate(), getchange, matchfn
173 return iterate(), getchange, matchfn
174
174
175 revrangesep = ':'
175 revrangesep = ':'
176
176
177 def revrange(ui, repo, revs, revlog=None):
177 def revrange(ui, repo, revs, revlog=None):
178 """Yield revision as strings from a list of revision specifications."""
178 """Yield revision as strings from a list of revision specifications."""
179 if revlog is None:
179 if revlog is None:
180 revlog = repo.changelog
180 revlog = repo.changelog
181 revcount = revlog.count()
181 revcount = revlog.count()
182 def fix(val, defval):
182 def fix(val, defval):
183 if not val:
183 if not val:
184 return defval
184 return defval
185 try:
185 try:
186 num = int(val)
186 num = int(val)
187 if str(num) != val:
187 if str(num) != val:
188 raise ValueError
188 raise ValueError
189 if num < 0:
189 if num < 0:
190 num += revcount
190 num += revcount
191 if num < 0:
191 if num < 0:
192 num = 0
192 num = 0
193 elif num >= revcount:
193 elif num >= revcount:
194 raise ValueError
194 raise ValueError
195 except ValueError:
195 except ValueError:
196 try:
196 try:
197 num = repo.changelog.rev(repo.lookup(val))
197 num = repo.changelog.rev(repo.lookup(val))
198 except KeyError:
198 except KeyError:
199 try:
199 try:
200 num = revlog.rev(revlog.lookup(val))
200 num = revlog.rev(revlog.lookup(val))
201 except KeyError:
201 except KeyError:
202 raise util.Abort(_('invalid revision identifier %s'), val)
202 raise util.Abort(_('invalid revision identifier %s'), val)
203 return num
203 return num
204 seen = {}
204 seen = {}
205 for spec in revs:
205 for spec in revs:
206 if spec.find(revrangesep) >= 0:
206 if spec.find(revrangesep) >= 0:
207 start, end = spec.split(revrangesep, 1)
207 start, end = spec.split(revrangesep, 1)
208 start = fix(start, 0)
208 start = fix(start, 0)
209 end = fix(end, revcount - 1)
209 end = fix(end, revcount - 1)
210 step = start > end and -1 or 1
210 step = start > end and -1 or 1
211 for rev in xrange(start, end+step, step):
211 for rev in xrange(start, end+step, step):
212 if rev in seen:
212 if rev in seen:
213 continue
213 continue
214 seen[rev] = 1
214 seen[rev] = 1
215 yield str(rev)
215 yield str(rev)
216 else:
216 else:
217 rev = fix(spec, None)
217 rev = fix(spec, None)
218 if rev in seen:
218 if rev in seen:
219 continue
219 continue
220 seen[rev] = 1
220 seen[rev] = 1
221 yield str(rev)
221 yield str(rev)
222
222
223 def make_filename(repo, r, pat, node=None,
223 def make_filename(repo, r, pat, node=None,
224 total=None, seqno=None, revwidth=None, pathname=None):
224 total=None, seqno=None, revwidth=None, pathname=None):
225 node_expander = {
225 node_expander = {
226 'H': lambda: hex(node),
226 'H': lambda: hex(node),
227 'R': lambda: str(r.rev(node)),
227 'R': lambda: str(r.rev(node)),
228 'h': lambda: short(node),
228 'h': lambda: short(node),
229 }
229 }
230 expander = {
230 expander = {
231 '%': lambda: '%',
231 '%': lambda: '%',
232 'b': lambda: os.path.basename(repo.root),
232 'b': lambda: os.path.basename(repo.root),
233 }
233 }
234
234
235 try:
235 try:
236 if node:
236 if node:
237 expander.update(node_expander)
237 expander.update(node_expander)
238 if node and revwidth is not None:
238 if node and revwidth is not None:
239 expander['r'] = lambda: str(r.rev(node)).zfill(revwidth)
239 expander['r'] = lambda: str(r.rev(node)).zfill(revwidth)
240 if total is not None:
240 if total is not None:
241 expander['N'] = lambda: str(total)
241 expander['N'] = lambda: str(total)
242 if seqno is not None:
242 if seqno is not None:
243 expander['n'] = lambda: str(seqno)
243 expander['n'] = lambda: str(seqno)
244 if total is not None and seqno is not None:
244 if total is not None and seqno is not None:
245 expander['n'] = lambda:str(seqno).zfill(len(str(total)))
245 expander['n'] = lambda:str(seqno).zfill(len(str(total)))
246 if pathname is not None:
246 if pathname is not None:
247 expander['s'] = lambda: os.path.basename(pathname)
247 expander['s'] = lambda: os.path.basename(pathname)
248 expander['d'] = lambda: os.path.dirname(pathname) or '.'
248 expander['d'] = lambda: os.path.dirname(pathname) or '.'
249 expander['p'] = lambda: pathname
249 expander['p'] = lambda: pathname
250
250
251 newname = []
251 newname = []
252 patlen = len(pat)
252 patlen = len(pat)
253 i = 0
253 i = 0
254 while i < patlen:
254 while i < patlen:
255 c = pat[i]
255 c = pat[i]
256 if c == '%':
256 if c == '%':
257 i += 1
257 i += 1
258 c = pat[i]
258 c = pat[i]
259 c = expander[c]()
259 c = expander[c]()
260 newname.append(c)
260 newname.append(c)
261 i += 1
261 i += 1
262 return ''.join(newname)
262 return ''.join(newname)
263 except KeyError, inst:
263 except KeyError, inst:
264 raise util.Abort(_("invalid format spec '%%%s' in output file name"),
264 raise util.Abort(_("invalid format spec '%%%s' in output file name"),
265 inst.args[0])
265 inst.args[0])
266
266
267 def make_file(repo, r, pat, node=None,
267 def make_file(repo, r, pat, node=None,
268 total=None, seqno=None, revwidth=None, mode='wb', pathname=None):
268 total=None, seqno=None, revwidth=None, mode='wb', pathname=None):
269 if not pat or pat == '-':
269 if not pat or pat == '-':
270 return 'w' in mode and sys.stdout or sys.stdin
270 return 'w' in mode and sys.stdout or sys.stdin
271 if hasattr(pat, 'write') and 'w' in mode:
271 if hasattr(pat, 'write') and 'w' in mode:
272 return pat
272 return pat
273 if hasattr(pat, 'read') and 'r' in mode:
273 if hasattr(pat, 'read') and 'r' in mode:
274 return pat
274 return pat
275 return open(make_filename(repo, r, pat, node, total, seqno, revwidth,
275 return open(make_filename(repo, r, pat, node, total, seqno, revwidth,
276 pathname),
276 pathname),
277 mode)
277 mode)
278
278
279 def write_bundle(cg, filename=None, compress=True):
279 def write_bundle(cg, filename=None, compress=True):
280 """Write a bundle file and return its filename.
280 """Write a bundle file and return its filename.
281
281
282 Existing files will not be overwritten.
282 Existing files will not be overwritten.
283 If no filename is specified, a temporary file is created.
283 If no filename is specified, a temporary file is created.
284 bz2 compression can be turned off.
284 bz2 compression can be turned off.
285 The bundle file will be deleted in case of errors.
285 The bundle file will be deleted in case of errors.
286 """
286 """
287 class nocompress(object):
287 class nocompress(object):
288 def compress(self, x):
288 def compress(self, x):
289 return x
289 return x
290 def flush(self):
290 def flush(self):
291 return ""
291 return ""
292
292
293 fh = None
293 fh = None
294 cleanup = None
294 cleanup = None
295 try:
295 try:
296 if filename:
296 if filename:
297 if os.path.exists(filename):
297 if os.path.exists(filename):
298 raise util.Abort(_("file '%s' already exists"), filename)
298 raise util.Abort(_("file '%s' already exists"), filename)
299 fh = open(filename, "wb")
299 fh = open(filename, "wb")
300 else:
300 else:
301 fd, filename = tempfile.mkstemp(suffix=".hg", prefix="hg-bundle-")
301 fd, filename = tempfile.mkstemp(suffix=".hg", prefix="hg-bundle-")
302 fh = os.fdopen(fd, "wb")
302 fh = os.fdopen(fd, "wb")
303 cleanup = filename
303 cleanup = filename
304
304
305 if compress:
305 if compress:
306 fh.write("HG10")
306 fh.write("HG10")
307 z = bz2.BZ2Compressor(9)
307 z = bz2.BZ2Compressor(9)
308 else:
308 else:
309 fh.write("HG10UN")
309 fh.write("HG10UN")
310 z = nocompress()
310 z = nocompress()
311 # parse the changegroup data, otherwise we will block
311 # parse the changegroup data, otherwise we will block
312 # in case of sshrepo because we don't know the end of the stream
312 # in case of sshrepo because we don't know the end of the stream
313
313
314 # an empty chunkiter is the end of the changegroup
314 # an empty chunkiter is the end of the changegroup
315 empty = False
315 empty = False
316 while not empty:
316 while not empty:
317 empty = True
317 empty = True
318 for chunk in changegroup.chunkiter(cg):
318 for chunk in changegroup.chunkiter(cg):
319 empty = False
319 empty = False
320 fh.write(z.compress(changegroup.genchunk(chunk)))
320 fh.write(z.compress(changegroup.genchunk(chunk)))
321 fh.write(z.compress(changegroup.closechunk()))
321 fh.write(z.compress(changegroup.closechunk()))
322 fh.write(z.flush())
322 fh.write(z.flush())
323 cleanup = None
323 cleanup = None
324 return filename
324 return filename
325 finally:
325 finally:
326 if fh is not None:
326 if fh is not None:
327 fh.close()
327 fh.close()
328 if cleanup is not None:
328 if cleanup is not None:
329 os.unlink(cleanup)
329 os.unlink(cleanup)
330
330
331 def dodiff(fp, ui, repo, node1, node2, files=None, match=util.always,
331 def dodiff(fp, ui, repo, node1, node2, files=None, match=util.always,
332 changes=None, text=False, opts={}):
332 changes=None, text=False, opts={}):
333 if not node1:
333 if not node1:
334 node1 = repo.dirstate.parents()[0]
334 node1 = repo.dirstate.parents()[0]
335 # reading the data for node1 early allows it to play nicely
335 # reading the data for node1 early allows it to play nicely
336 # with repo.changes and the revlog cache.
336 # with repo.changes and the revlog cache.
337 change = repo.changelog.read(node1)
337 change = repo.changelog.read(node1)
338 mmap = repo.manifest.read(change[0])
338 mmap = repo.manifest.read(change[0])
339 date1 = util.datestr(change[2])
339 date1 = util.datestr(change[2])
340
340
341 if not changes:
341 if not changes:
342 changes = repo.changes(node1, node2, files, match=match)
342 changes = repo.changes(node1, node2, files, match=match)
343 modified, added, removed, deleted, unknown = changes
343 modified, added, removed, deleted, unknown = changes
344 if files:
344 if files:
345 modified, added, removed = map(lambda x: filterfiles(files, x),
345 modified, added, removed = map(lambda x: filterfiles(files, x),
346 (modified, added, removed))
346 (modified, added, removed))
347
347
348 if not modified and not added and not removed:
348 if not modified and not added and not removed:
349 return
349 return
350
350
351 if node2:
351 if node2:
352 change = repo.changelog.read(node2)
352 change = repo.changelog.read(node2)
353 mmap2 = repo.manifest.read(change[0])
353 mmap2 = repo.manifest.read(change[0])
354 date2 = util.datestr(change[2])
354 date2 = util.datestr(change[2])
355 def read(f):
355 def read(f):
356 return repo.file(f).read(mmap2[f])
356 return repo.file(f).read(mmap2[f])
357 else:
357 else:
358 date2 = util.datestr()
358 date2 = util.datestr()
359 def read(f):
359 def read(f):
360 return repo.wread(f)
360 return repo.wread(f)
361
361
362 if ui.quiet:
362 if ui.quiet:
363 r = None
363 r = None
364 else:
364 else:
365 hexfunc = ui.verbose and hex or short
365 hexfunc = ui.verbose and hex or short
366 r = [hexfunc(node) for node in [node1, node2] if node]
366 r = [hexfunc(node) for node in [node1, node2] if node]
367
367
368 diffopts = ui.diffopts()
368 diffopts = ui.diffopts()
369 showfunc = opts.get('show_function') or diffopts['showfunc']
369 showfunc = opts.get('show_function') or diffopts['showfunc']
370 ignorews = opts.get('ignore_all_space') or diffopts['ignorews']
370 ignorews = opts.get('ignore_all_space') or diffopts['ignorews']
371 for f in modified:
371 for f in modified:
372 to = None
372 to = None
373 if f in mmap:
373 if f in mmap:
374 to = repo.file(f).read(mmap[f])
374 to = repo.file(f).read(mmap[f])
375 tn = read(f)
375 tn = read(f)
376 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
376 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
377 showfunc=showfunc, ignorews=ignorews))
377 showfunc=showfunc, ignorews=ignorews))
378 for f in added:
378 for f in added:
379 to = None
379 to = None
380 tn = read(f)
380 tn = read(f)
381 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
381 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
382 showfunc=showfunc, ignorews=ignorews))
382 showfunc=showfunc, ignorews=ignorews))
383 for f in removed:
383 for f in removed:
384 to = repo.file(f).read(mmap[f])
384 to = repo.file(f).read(mmap[f])
385 tn = None
385 tn = None
386 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
386 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
387 showfunc=showfunc, ignorews=ignorews))
387 showfunc=showfunc, ignorews=ignorews))
388
388
389 def trimuser(ui, name, rev, revcache):
389 def trimuser(ui, name, rev, revcache):
390 """trim the name of the user who committed a change"""
390 """trim the name of the user who committed a change"""
391 user = revcache.get(rev)
391 user = revcache.get(rev)
392 if user is None:
392 if user is None:
393 user = revcache[rev] = ui.shortuser(name)
393 user = revcache[rev] = ui.shortuser(name)
394 return user
394 return user
395
395
396 class changeset_templater(object):
396 class changeset_templater(object):
397 '''use templater module to format changeset information.'''
397 '''use templater module to format changeset information.'''
398
398
399 def __init__(self, ui, repo, mapfile):
399 def __init__(self, ui, repo, mapfile):
400 self.t = templater.templater(mapfile, templater.common_filters,
400 self.t = templater.templater(mapfile, templater.common_filters,
401 cache={'parent': '{rev}:{node|short} ',
401 cache={'parent': '{rev}:{node|short} ',
402 'manifest': '{rev}:{node|short}'})
402 'manifest': '{rev}:{node|short}'})
403 self.ui = ui
403 self.ui = ui
404 self.repo = repo
404 self.repo = repo
405
405
406 def use_template(self, t):
406 def use_template(self, t):
407 '''set template string to use'''
407 '''set template string to use'''
408 self.t.cache['changeset'] = t
408 self.t.cache['changeset'] = t
409
409
410 def write(self, thing, header=False):
410 def write(self, thing, header=False):
411 '''write expanded template.
411 '''write expanded template.
412 uses in-order recursive traverse of iterators.'''
412 uses in-order recursive traverse of iterators.'''
413 for t in thing:
413 for t in thing:
414 if hasattr(t, '__iter__'):
414 if hasattr(t, '__iter__'):
415 self.write(t, header=header)
415 self.write(t, header=header)
416 elif header:
416 elif header:
417 self.ui.write_header(t)
417 self.ui.write_header(t)
418 else:
418 else:
419 self.ui.write(t)
419 self.ui.write(t)
420
420
421 def write_header(self, thing):
421 def write_header(self, thing):
422 self.write(thing, header=True)
422 self.write(thing, header=True)
423
423
424 def show(self, rev=0, changenode=None, brinfo=None):
424 def show(self, rev=0, changenode=None, brinfo=None):
425 '''show a single changeset or file revision'''
425 '''show a single changeset or file revision'''
426 log = self.repo.changelog
426 log = self.repo.changelog
427 if changenode is None:
427 if changenode is None:
428 changenode = log.node(rev)
428 changenode = log.node(rev)
429 elif not rev:
429 elif not rev:
430 rev = log.rev(changenode)
430 rev = log.rev(changenode)
431
431
432 changes = log.read(changenode)
432 changes = log.read(changenode)
433
433
434 def showlist(name, values, plural=None, **args):
434 def showlist(name, values, plural=None, **args):
435 '''expand set of values.
435 '''expand set of values.
436 name is name of key in template map.
436 name is name of key in template map.
437 values is list of strings or dicts.
437 values is list of strings or dicts.
438 plural is plural of name, if not simply name + 's'.
438 plural is plural of name, if not simply name + 's'.
439
439
440 expansion works like this, given name 'foo'.
440 expansion works like this, given name 'foo'.
441
441
442 if values is empty, expand 'no_foos'.
442 if values is empty, expand 'no_foos'.
443
443
444 if 'foo' not in template map, return values as a string,
444 if 'foo' not in template map, return values as a string,
445 joined by space.
445 joined by space.
446
446
447 expand 'start_foos'.
447 expand 'start_foos'.
448
448
449 for each value, expand 'foo'. if 'last_foo' in template
449 for each value, expand 'foo'. if 'last_foo' in template
450 map, expand it instead of 'foo' for last key.
450 map, expand it instead of 'foo' for last key.
451
451
452 expand 'end_foos'.
452 expand 'end_foos'.
453 '''
453 '''
454 if plural: names = plural
454 if plural: names = plural
455 else: names = name + 's'
455 else: names = name + 's'
456 if not values:
456 if not values:
457 noname = 'no_' + names
457 noname = 'no_' + names
458 if noname in self.t:
458 if noname in self.t:
459 yield self.t(noname, **args)
459 yield self.t(noname, **args)
460 return
460 return
461 if name not in self.t:
461 if name not in self.t:
462 if isinstance(values[0], str):
462 if isinstance(values[0], str):
463 yield ' '.join(values)
463 yield ' '.join(values)
464 else:
464 else:
465 for v in values:
465 for v in values:
466 yield dict(v, **args)
466 yield dict(v, **args)
467 return
467 return
468 startname = 'start_' + names
468 startname = 'start_' + names
469 if startname in self.t:
469 if startname in self.t:
470 yield self.t(startname, **args)
470 yield self.t(startname, **args)
471 vargs = args.copy()
471 vargs = args.copy()
472 def one(v, tag=name):
472 def one(v, tag=name):
473 try:
473 try:
474 vargs.update(v)
474 vargs.update(v)
475 except (AttributeError, ValueError):
475 except (AttributeError, ValueError):
476 try:
476 try:
477 for a, b in v:
477 for a, b in v:
478 vargs[a] = b
478 vargs[a] = b
479 except ValueError:
479 except ValueError:
480 vargs[name] = v
480 vargs[name] = v
481 return self.t(tag, **vargs)
481 return self.t(tag, **vargs)
482 lastname = 'last_' + name
482 lastname = 'last_' + name
483 if lastname in self.t:
483 if lastname in self.t:
484 last = values.pop()
484 last = values.pop()
485 else:
485 else:
486 last = None
486 last = None
487 for v in values:
487 for v in values:
488 yield one(v)
488 yield one(v)
489 if last is not None:
489 if last is not None:
490 yield one(last, tag=lastname)
490 yield one(last, tag=lastname)
491 endname = 'end_' + names
491 endname = 'end_' + names
492 if endname in self.t:
492 if endname in self.t:
493 yield self.t(endname, **args)
493 yield self.t(endname, **args)
494
494
495 if brinfo:
495 if brinfo:
496 def showbranches(**args):
496 def showbranches(**args):
497 if changenode in brinfo:
497 if changenode in brinfo:
498 for x in showlist('branch', brinfo[changenode],
498 for x in showlist('branch', brinfo[changenode],
499 plural='branches', **args):
499 plural='branches', **args):
500 yield x
500 yield x
501 else:
501 else:
502 showbranches = ''
502 showbranches = ''
503
503
504 if self.ui.debugflag:
504 if self.ui.debugflag:
505 def showmanifest(**args):
505 def showmanifest(**args):
506 args = args.copy()
506 args = args.copy()
507 args.update(dict(rev=self.repo.manifest.rev(changes[0]),
507 args.update(dict(rev=self.repo.manifest.rev(changes[0]),
508 node=hex(changes[0])))
508 node=hex(changes[0])))
509 yield self.t('manifest', **args)
509 yield self.t('manifest', **args)
510 else:
510 else:
511 showmanifest = ''
511 showmanifest = ''
512
512
513 def showparents(**args):
513 def showparents(**args):
514 parents = [[('rev', log.rev(p)), ('node', hex(p))]
514 parents = [[('rev', log.rev(p)), ('node', hex(p))]
515 for p in log.parents(changenode)
515 for p in log.parents(changenode)
516 if self.ui.debugflag or p != nullid]
516 if self.ui.debugflag or p != nullid]
517 if (not self.ui.debugflag and len(parents) == 1 and
517 if (not self.ui.debugflag and len(parents) == 1 and
518 parents[0][0][1] == rev - 1):
518 parents[0][0][1] == rev - 1):
519 return
519 return
520 for x in showlist('parent', parents, **args):
520 for x in showlist('parent', parents, **args):
521 yield x
521 yield x
522
522
523 def showtags(**args):
523 def showtags(**args):
524 for x in showlist('tag', self.repo.nodetags(changenode), **args):
524 for x in showlist('tag', self.repo.nodetags(changenode), **args):
525 yield x
525 yield x
526
526
527 if self.ui.debugflag:
527 if self.ui.debugflag:
528 files = self.repo.changes(log.parents(changenode)[0], changenode)
528 files = self.repo.changes(log.parents(changenode)[0], changenode)
529 def showfiles(**args):
529 def showfiles(**args):
530 for x in showlist('file', files[0], **args): yield x
530 for x in showlist('file', files[0], **args): yield x
531 def showadds(**args):
531 def showadds(**args):
532 for x in showlist('file_add', files[1], **args): yield x
532 for x in showlist('file_add', files[1], **args): yield x
533 def showdels(**args):
533 def showdels(**args):
534 for x in showlist('file_del', files[2], **args): yield x
534 for x in showlist('file_del', files[2], **args): yield x
535 else:
535 else:
536 def showfiles(**args):
536 def showfiles(**args):
537 for x in showlist('file', changes[3], **args): yield x
537 for x in showlist('file', changes[3], **args): yield x
538 showadds = ''
538 showadds = ''
539 showdels = ''
539 showdels = ''
540
540
541 props = {
541 props = {
542 'author': changes[1],
542 'author': changes[1],
543 'branches': showbranches,
543 'branches': showbranches,
544 'date': changes[2],
544 'date': changes[2],
545 'desc': changes[4],
545 'desc': changes[4],
546 'file_adds': showadds,
546 'file_adds': showadds,
547 'file_dels': showdels,
547 'file_dels': showdels,
548 'files': showfiles,
548 'files': showfiles,
549 'manifest': showmanifest,
549 'manifest': showmanifest,
550 'node': hex(changenode),
550 'node': hex(changenode),
551 'parents': showparents,
551 'parents': showparents,
552 'rev': rev,
552 'rev': rev,
553 'tags': showtags,
553 'tags': showtags,
554 }
554 }
555
555
556 try:
556 try:
557 if self.ui.debugflag and 'header_debug' in self.t:
557 if self.ui.debugflag and 'header_debug' in self.t:
558 key = 'header_debug'
558 key = 'header_debug'
559 elif self.ui.quiet and 'header_quiet' in self.t:
559 elif self.ui.quiet and 'header_quiet' in self.t:
560 key = 'header_quiet'
560 key = 'header_quiet'
561 elif self.ui.verbose and 'header_verbose' in self.t:
561 elif self.ui.verbose and 'header_verbose' in self.t:
562 key = 'header_verbose'
562 key = 'header_verbose'
563 elif 'header' in self.t:
563 elif 'header' in self.t:
564 key = 'header'
564 key = 'header'
565 else:
565 else:
566 key = ''
566 key = ''
567 if key:
567 if key:
568 self.write_header(self.t(key, **props))
568 self.write_header(self.t(key, **props))
569 if self.ui.debugflag and 'changeset_debug' in self.t:
569 if self.ui.debugflag and 'changeset_debug' in self.t:
570 key = 'changeset_debug'
570 key = 'changeset_debug'
571 elif self.ui.quiet and 'changeset_quiet' in self.t:
571 elif self.ui.quiet and 'changeset_quiet' in self.t:
572 key = 'changeset_quiet'
572 key = 'changeset_quiet'
573 elif self.ui.verbose and 'changeset_verbose' in self.t:
573 elif self.ui.verbose and 'changeset_verbose' in self.t:
574 key = 'changeset_verbose'
574 key = 'changeset_verbose'
575 else:
575 else:
576 key = 'changeset'
576 key = 'changeset'
577 self.write(self.t(key, **props))
577 self.write(self.t(key, **props))
578 except KeyError, inst:
578 except KeyError, inst:
579 raise util.Abort(_("%s: no key named '%s'") % (self.t.mapfile,
579 raise util.Abort(_("%s: no key named '%s'") % (self.t.mapfile,
580 inst.args[0]))
580 inst.args[0]))
581 except SyntaxError, inst:
581 except SyntaxError, inst:
582 raise util.Abort(_('%s: %s') % (self.t.mapfile, inst.args[0]))
582 raise util.Abort(_('%s: %s') % (self.t.mapfile, inst.args[0]))
583
583
584 class changeset_printer(object):
584 class changeset_printer(object):
585 '''show changeset information when templating not requested.'''
585 '''show changeset information when templating not requested.'''
586
586
587 def __init__(self, ui, repo):
587 def __init__(self, ui, repo):
588 self.ui = ui
588 self.ui = ui
589 self.repo = repo
589 self.repo = repo
590
590
591 def show(self, rev=0, changenode=None, brinfo=None):
591 def show(self, rev=0, changenode=None, brinfo=None):
592 '''show a single changeset or file revision'''
592 '''show a single changeset or file revision'''
593 log = self.repo.changelog
593 log = self.repo.changelog
594 if changenode is None:
594 if changenode is None:
595 changenode = log.node(rev)
595 changenode = log.node(rev)
596 elif not rev:
596 elif not rev:
597 rev = log.rev(changenode)
597 rev = log.rev(changenode)
598
598
599 if self.ui.quiet:
599 if self.ui.quiet:
600 self.ui.write("%d:%s\n" % (rev, short(changenode)))
600 self.ui.write("%d:%s\n" % (rev, short(changenode)))
601 return
601 return
602
602
603 changes = log.read(changenode)
603 changes = log.read(changenode)
604 date = util.datestr(changes[2])
604 date = util.datestr(changes[2])
605
605
606 parents = [(log.rev(p), self.ui.verbose and hex(p) or short(p))
606 parents = [(log.rev(p), self.ui.verbose and hex(p) or short(p))
607 for p in log.parents(changenode)
607 for p in log.parents(changenode)
608 if self.ui.debugflag or p != nullid]
608 if self.ui.debugflag or p != nullid]
609 if (not self.ui.debugflag and len(parents) == 1 and
609 if (not self.ui.debugflag and len(parents) == 1 and
610 parents[0][0] == rev-1):
610 parents[0][0] == rev-1):
611 parents = []
611 parents = []
612
612
613 if self.ui.verbose:
613 if self.ui.verbose:
614 self.ui.write(_("changeset: %d:%s\n") % (rev, hex(changenode)))
614 self.ui.write(_("changeset: %d:%s\n") % (rev, hex(changenode)))
615 else:
615 else:
616 self.ui.write(_("changeset: %d:%s\n") % (rev, short(changenode)))
616 self.ui.write(_("changeset: %d:%s\n") % (rev, short(changenode)))
617
617
618 for tag in self.repo.nodetags(changenode):
618 for tag in self.repo.nodetags(changenode):
619 self.ui.status(_("tag: %s\n") % tag)
619 self.ui.status(_("tag: %s\n") % tag)
620 for parent in parents:
620 for parent in parents:
621 self.ui.write(_("parent: %d:%s\n") % parent)
621 self.ui.write(_("parent: %d:%s\n") % parent)
622
622
623 if brinfo and changenode in brinfo:
623 if brinfo and changenode in brinfo:
624 br = brinfo[changenode]
624 br = brinfo[changenode]
625 self.ui.write(_("branch: %s\n") % " ".join(br))
625 self.ui.write(_("branch: %s\n") % " ".join(br))
626
626
627 self.ui.debug(_("manifest: %d:%s\n") %
627 self.ui.debug(_("manifest: %d:%s\n") %
628 (self.repo.manifest.rev(changes[0]), hex(changes[0])))
628 (self.repo.manifest.rev(changes[0]), hex(changes[0])))
629 self.ui.status(_("user: %s\n") % changes[1])
629 self.ui.status(_("user: %s\n") % changes[1])
630 self.ui.status(_("date: %s\n") % date)
630 self.ui.status(_("date: %s\n") % date)
631
631
632 if self.ui.debugflag:
632 if self.ui.debugflag:
633 files = self.repo.changes(log.parents(changenode)[0], changenode)
633 files = self.repo.changes(log.parents(changenode)[0], changenode)
634 for key, value in zip([_("files:"), _("files+:"), _("files-:")],
634 for key, value in zip([_("files:"), _("files+:"), _("files-:")],
635 files):
635 files):
636 if value:
636 if value:
637 self.ui.note("%-12s %s\n" % (key, " ".join(value)))
637 self.ui.note("%-12s %s\n" % (key, " ".join(value)))
638 else:
638 else:
639 self.ui.note(_("files: %s\n") % " ".join(changes[3]))
639 self.ui.note(_("files: %s\n") % " ".join(changes[3]))
640
640
641 description = changes[4].strip()
641 description = changes[4].strip()
642 if description:
642 if description:
643 if self.ui.verbose:
643 if self.ui.verbose:
644 self.ui.status(_("description:\n"))
644 self.ui.status(_("description:\n"))
645 self.ui.status(description)
645 self.ui.status(description)
646 self.ui.status("\n\n")
646 self.ui.status("\n\n")
647 else:
647 else:
648 self.ui.status(_("summary: %s\n") %
648 self.ui.status(_("summary: %s\n") %
649 description.splitlines()[0])
649 description.splitlines()[0])
650 self.ui.status("\n")
650 self.ui.status("\n")
651
651
652 def show_changeset(ui, repo, opts):
652 def show_changeset(ui, repo, opts):
653 '''show one changeset. uses template or regular display. caller
653 '''show one changeset. uses template or regular display. caller
654 can pass in 'style' and 'template' options in opts.'''
654 can pass in 'style' and 'template' options in opts.'''
655
655
656 tmpl = opts.get('template')
656 tmpl = opts.get('template')
657 if tmpl:
657 if tmpl:
658 tmpl = templater.parsestring(tmpl, quoted=False)
658 tmpl = templater.parsestring(tmpl, quoted=False)
659 else:
659 else:
660 tmpl = ui.config('ui', 'logtemplate')
660 tmpl = ui.config('ui', 'logtemplate')
661 if tmpl: tmpl = templater.parsestring(tmpl)
661 if tmpl: tmpl = templater.parsestring(tmpl)
662 mapfile = opts.get('style') or ui.config('ui', 'style')
662 mapfile = opts.get('style') or ui.config('ui', 'style')
663 if tmpl or mapfile:
663 if tmpl or mapfile:
664 if mapfile:
664 if mapfile:
665 if not os.path.isfile(mapfile):
665 if not os.path.isfile(mapfile):
666 mapname = templater.templatepath('map-cmdline.' + mapfile)
666 mapname = templater.templatepath('map-cmdline.' + mapfile)
667 if not mapname: mapname = templater.templatepath(mapfile)
667 if not mapname: mapname = templater.templatepath(mapfile)
668 if mapname: mapfile = mapname
668 if mapname: mapfile = mapname
669 try:
669 try:
670 t = changeset_templater(ui, repo, mapfile)
670 t = changeset_templater(ui, repo, mapfile)
671 except SyntaxError, inst:
671 except SyntaxError, inst:
672 raise util.Abort(inst.args[0])
672 raise util.Abort(inst.args[0])
673 if tmpl: t.use_template(tmpl)
673 if tmpl: t.use_template(tmpl)
674 return t
674 return t
675 return changeset_printer(ui, repo)
675 return changeset_printer(ui, repo)
676
676
677 def show_version(ui):
677 def show_version(ui):
678 """output version and copyright information"""
678 """output version and copyright information"""
679 ui.write(_("Mercurial Distributed SCM (version %s)\n")
679 ui.write(_("Mercurial Distributed SCM (version %s)\n")
680 % version.get_version())
680 % version.get_version())
681 ui.status(_(
681 ui.status(_(
682 "\nCopyright (C) 2005 Matt Mackall <mpm@selenic.com>\n"
682 "\nCopyright (C) 2005 Matt Mackall <mpm@selenic.com>\n"
683 "This is free software; see the source for copying conditions. "
683 "This is free software; see the source for copying conditions. "
684 "There is NO\nwarranty; "
684 "There is NO\nwarranty; "
685 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
685 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
686 ))
686 ))
687
687
688 def help_(ui, cmd=None, with_version=False):
688 def help_(ui, cmd=None, with_version=False):
689 """show help for a given command or all commands"""
689 """show help for a given command or all commands"""
690 option_lists = []
690 option_lists = []
691 if cmd and cmd != 'shortlist':
691 if cmd and cmd != 'shortlist':
692 if with_version:
692 if with_version:
693 show_version(ui)
693 show_version(ui)
694 ui.write('\n')
694 ui.write('\n')
695 aliases, i = find(cmd)
695 aliases, i = find(cmd)
696 # synopsis
696 # synopsis
697 ui.write("%s\n\n" % i[2])
697 ui.write("%s\n\n" % i[2])
698
698
699 # description
699 # description
700 doc = i[0].__doc__
700 doc = i[0].__doc__
701 if not doc:
701 if not doc:
702 doc = _("(No help text available)")
702 doc = _("(No help text available)")
703 if ui.quiet:
703 if ui.quiet:
704 doc = doc.splitlines(0)[0]
704 doc = doc.splitlines(0)[0]
705 ui.write("%s\n" % doc.rstrip())
705 ui.write("%s\n" % doc.rstrip())
706
706
707 if not ui.quiet:
707 if not ui.quiet:
708 # aliases
708 # aliases
709 if len(aliases) > 1:
709 if len(aliases) > 1:
710 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
710 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
711
711
712 # options
712 # options
713 if i[1]:
713 if i[1]:
714 option_lists.append(("options", i[1]))
714 option_lists.append(("options", i[1]))
715
715
716 else:
716 else:
717 # program name
717 # program name
718 if ui.verbose or with_version:
718 if ui.verbose or with_version:
719 show_version(ui)
719 show_version(ui)
720 else:
720 else:
721 ui.status(_("Mercurial Distributed SCM\n"))
721 ui.status(_("Mercurial Distributed SCM\n"))
722 ui.status('\n')
722 ui.status('\n')
723
723
724 # list of commands
724 # list of commands
725 if cmd == "shortlist":
725 if cmd == "shortlist":
726 ui.status(_('basic commands (use "hg help" '
726 ui.status(_('basic commands (use "hg help" '
727 'for the full list or option "-v" for details):\n\n'))
727 'for the full list or option "-v" for details):\n\n'))
728 elif ui.verbose:
728 elif ui.verbose:
729 ui.status(_('list of commands:\n\n'))
729 ui.status(_('list of commands:\n\n'))
730 else:
730 else:
731 ui.status(_('list of commands (use "hg help -v" '
731 ui.status(_('list of commands (use "hg help -v" '
732 'to show aliases and global options):\n\n'))
732 'to show aliases and global options):\n\n'))
733
733
734 h = {}
734 h = {}
735 cmds = {}
735 cmds = {}
736 for c, e in table.items():
736 for c, e in table.items():
737 f = c.split("|")[0]
737 f = c.split("|")[0]
738 if cmd == "shortlist" and not f.startswith("^"):
738 if cmd == "shortlist" and not f.startswith("^"):
739 continue
739 continue
740 f = f.lstrip("^")
740 f = f.lstrip("^")
741 if not ui.debugflag and f.startswith("debug"):
741 if not ui.debugflag and f.startswith("debug"):
742 continue
742 continue
743 doc = e[0].__doc__
743 doc = e[0].__doc__
744 if not doc:
744 if not doc:
745 doc = _("(No help text available)")
745 doc = _("(No help text available)")
746 h[f] = doc.splitlines(0)[0].rstrip()
746 h[f] = doc.splitlines(0)[0].rstrip()
747 cmds[f] = c.lstrip("^")
747 cmds[f] = c.lstrip("^")
748
748
749 fns = h.keys()
749 fns = h.keys()
750 fns.sort()
750 fns.sort()
751 m = max(map(len, fns))
751 m = max(map(len, fns))
752 for f in fns:
752 for f in fns:
753 if ui.verbose:
753 if ui.verbose:
754 commands = cmds[f].replace("|",", ")
754 commands = cmds[f].replace("|",", ")
755 ui.write(" %s:\n %s\n"%(commands, h[f]))
755 ui.write(" %s:\n %s\n"%(commands, h[f]))
756 else:
756 else:
757 ui.write(' %-*s %s\n' % (m, f, h[f]))
757 ui.write(' %-*s %s\n' % (m, f, h[f]))
758
758
759 # global options
759 # global options
760 if ui.verbose:
760 if ui.verbose:
761 option_lists.append(("global options", globalopts))
761 option_lists.append(("global options", globalopts))
762
762
763 # list all option lists
763 # list all option lists
764 opt_output = []
764 opt_output = []
765 for title, options in option_lists:
765 for title, options in option_lists:
766 opt_output.append(("\n%s:\n" % title, None))
766 opt_output.append(("\n%s:\n" % title, None))
767 for shortopt, longopt, default, desc in options:
767 for shortopt, longopt, default, desc in options:
768 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
768 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
769 longopt and " --%s" % longopt),
769 longopt and " --%s" % longopt),
770 "%s%s" % (desc,
770 "%s%s" % (desc,
771 default
771 default
772 and _(" (default: %s)") % default
772 and _(" (default: %s)") % default
773 or "")))
773 or "")))
774
774
775 if opt_output:
775 if opt_output:
776 opts_len = max([len(line[0]) for line in opt_output if line[1]])
776 opts_len = max([len(line[0]) for line in opt_output if line[1]])
777 for first, second in opt_output:
777 for first, second in opt_output:
778 if second:
778 if second:
779 ui.write(" %-*s %s\n" % (opts_len, first, second))
779 ui.write(" %-*s %s\n" % (opts_len, first, second))
780 else:
780 else:
781 ui.write("%s\n" % first)
781 ui.write("%s\n" % first)
782
782
783 # Commands start here, listed alphabetically
783 # Commands start here, listed alphabetically
784
784
785 def add(ui, repo, *pats, **opts):
785 def add(ui, repo, *pats, **opts):
786 """add the specified files on the next commit
786 """add the specified files on the next commit
787
787
788 Schedule files to be version controlled and added to the repository.
788 Schedule files to be version controlled and added to the repository.
789
789
790 The files will be added to the repository at the next commit.
790 The files will be added to the repository at the next commit.
791
791
792 If no names are given, add all files in the repository.
792 If no names are given, add all files in the repository.
793 """
793 """
794
794
795 names = []
795 names = []
796 for src, abs, rel, exact in walk(repo, pats, opts):
796 for src, abs, rel, exact in walk(repo, pats, opts):
797 if exact:
797 if exact:
798 if ui.verbose:
798 if ui.verbose:
799 ui.status(_('adding %s\n') % rel)
799 ui.status(_('adding %s\n') % rel)
800 names.append(abs)
800 names.append(abs)
801 elif repo.dirstate.state(abs) == '?':
801 elif repo.dirstate.state(abs) == '?':
802 ui.status(_('adding %s\n') % rel)
802 ui.status(_('adding %s\n') % rel)
803 names.append(abs)
803 names.append(abs)
804 repo.add(names)
804 repo.add(names)
805
805
806 def addremove(ui, repo, *pats, **opts):
806 def addremove(ui, repo, *pats, **opts):
807 """add all new files, delete all missing files
807 """add all new files, delete all missing files
808
808
809 Add all new files and remove all missing files from the repository.
809 Add all new files and remove all missing files from the repository.
810
810
811 New files are ignored if they match any of the patterns in .hgignore. As
811 New files are ignored if they match any of the patterns in .hgignore. As
812 with add, these changes take effect at the next commit.
812 with add, these changes take effect at the next commit.
813 """
813 """
814 return addremove_lock(ui, repo, pats, opts)
814 return addremove_lock(ui, repo, pats, opts)
815
815
816 def addremove_lock(ui, repo, pats, opts, wlock=None):
816 def addremove_lock(ui, repo, pats, opts, wlock=None):
817 add, remove = [], []
817 add, remove = [], []
818 for src, abs, rel, exact in walk(repo, pats, opts):
818 for src, abs, rel, exact in walk(repo, pats, opts):
819 if src == 'f' and repo.dirstate.state(abs) == '?':
819 if src == 'f' and repo.dirstate.state(abs) == '?':
820 add.append(abs)
820 add.append(abs)
821 if ui.verbose or not exact:
821 if ui.verbose or not exact:
822 ui.status(_('adding %s\n') % ((pats and rel) or abs))
822 ui.status(_('adding %s\n') % ((pats and rel) or abs))
823 if repo.dirstate.state(abs) != 'r' and not os.path.exists(rel):
823 if repo.dirstate.state(abs) != 'r' and not os.path.exists(rel):
824 remove.append(abs)
824 remove.append(abs)
825 if ui.verbose or not exact:
825 if ui.verbose or not exact:
826 ui.status(_('removing %s\n') % ((pats and rel) or abs))
826 ui.status(_('removing %s\n') % ((pats and rel) or abs))
827 repo.add(add, wlock=wlock)
827 repo.add(add, wlock=wlock)
828 repo.remove(remove, wlock=wlock)
828 repo.remove(remove, wlock=wlock)
829
829
830 def annotate(ui, repo, *pats, **opts):
830 def annotate(ui, repo, *pats, **opts):
831 """show changeset information per file line
831 """show changeset information per file line
832
832
833 List changes in files, showing the revision id responsible for each line
833 List changes in files, showing the revision id responsible for each line
834
834
835 This command is useful to discover who did a change or when a change took
835 This command is useful to discover who did a change or when a change took
836 place.
836 place.
837
837
838 Without the -a option, annotate will avoid processing files it
838 Without the -a option, annotate will avoid processing files it
839 detects as binary. With -a, annotate will generate an annotation
839 detects as binary. With -a, annotate will generate an annotation
840 anyway, probably with undesirable results.
840 anyway, probably with undesirable results.
841 """
841 """
842 def getnode(rev):
842 def getnode(rev):
843 return short(repo.changelog.node(rev))
843 return short(repo.changelog.node(rev))
844
844
845 ucache = {}
845 ucache = {}
846 def getname(rev):
846 def getname(rev):
847 cl = repo.changelog.read(repo.changelog.node(rev))
847 cl = repo.changelog.read(repo.changelog.node(rev))
848 return trimuser(ui, cl[1], rev, ucache)
848 return trimuser(ui, cl[1], rev, ucache)
849
849
850 dcache = {}
850 dcache = {}
851 def getdate(rev):
851 def getdate(rev):
852 datestr = dcache.get(rev)
852 datestr = dcache.get(rev)
853 if datestr is None:
853 if datestr is None:
854 cl = repo.changelog.read(repo.changelog.node(rev))
854 cl = repo.changelog.read(repo.changelog.node(rev))
855 datestr = dcache[rev] = util.datestr(cl[2])
855 datestr = dcache[rev] = util.datestr(cl[2])
856 return datestr
856 return datestr
857
857
858 if not pats:
858 if not pats:
859 raise util.Abort(_('at least one file name or pattern required'))
859 raise util.Abort(_('at least one file name or pattern required'))
860
860
861 opmap = [['user', getname], ['number', str], ['changeset', getnode],
861 opmap = [['user', getname], ['number', str], ['changeset', getnode],
862 ['date', getdate]]
862 ['date', getdate]]
863 if not opts['user'] and not opts['changeset'] and not opts['date']:
863 if not opts['user'] and not opts['changeset'] and not opts['date']:
864 opts['number'] = 1
864 opts['number'] = 1
865
865
866 if opts['rev']:
866 if opts['rev']:
867 node = repo.changelog.lookup(opts['rev'])
867 node = repo.changelog.lookup(opts['rev'])
868 else:
868 else:
869 node = repo.dirstate.parents()[0]
869 node = repo.dirstate.parents()[0]
870 change = repo.changelog.read(node)
870 change = repo.changelog.read(node)
871 mmap = repo.manifest.read(change[0])
871 mmap = repo.manifest.read(change[0])
872
872
873 for src, abs, rel, exact in walk(repo, pats, opts, node=node):
873 for src, abs, rel, exact in walk(repo, pats, opts, node=node):
874 f = repo.file(abs)
874 f = repo.file(abs)
875 if not opts['text'] and util.binary(f.read(mmap[abs])):
875 if not opts['text'] and util.binary(f.read(mmap[abs])):
876 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
876 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
877 continue
877 continue
878
878
879 lines = f.annotate(mmap[abs])
879 lines = f.annotate(mmap[abs])
880 pieces = []
880 pieces = []
881
881
882 for o, f in opmap:
882 for o, f in opmap:
883 if opts[o]:
883 if opts[o]:
884 l = [f(n) for n, dummy in lines]
884 l = [f(n) for n, dummy in lines]
885 if l:
885 if l:
886 m = max(map(len, l))
886 m = max(map(len, l))
887 pieces.append(["%*s" % (m, x) for x in l])
887 pieces.append(["%*s" % (m, x) for x in l])
888
888
889 if pieces:
889 if pieces:
890 for p, l in zip(zip(*pieces), lines):
890 for p, l in zip(zip(*pieces), lines):
891 ui.write("%s: %s" % (" ".join(p), l[1]))
891 ui.write("%s: %s" % (" ".join(p), l[1]))
892
892
893 def bundle(ui, repo, fname, dest="default-push", **opts):
893 def bundle(ui, repo, fname, dest="default-push", **opts):
894 """create a changegroup file
894 """create a changegroup file
895
895
896 Generate a compressed changegroup file collecting all changesets
896 Generate a compressed changegroup file collecting all changesets
897 not found in the other repository.
897 not found in the other repository.
898
898
899 This file can then be transferred using conventional means and
899 This file can then be transferred using conventional means and
900 applied to another repository with the unbundle command. This is
900 applied to another repository with the unbundle command. This is
901 useful when native push and pull are not available or when
901 useful when native push and pull are not available or when
902 exporting an entire repository is undesirable. The standard file
902 exporting an entire repository is undesirable. The standard file
903 extension is ".hg".
903 extension is ".hg".
904
904
905 Unlike import/export, this exactly preserves all changeset
905 Unlike import/export, this exactly preserves all changeset
906 contents including permissions, rename data, and revision history.
906 contents including permissions, rename data, and revision history.
907 """
907 """
908 dest = ui.expandpath(dest)
908 dest = ui.expandpath(dest)
909 other = hg.repository(ui, dest)
909 other = hg.repository(ui, dest)
910 o = repo.findoutgoing(other, force=opts['force'])
910 o = repo.findoutgoing(other, force=opts['force'])
911 cg = repo.changegroup(o, 'bundle')
911 cg = repo.changegroup(o, 'bundle')
912 write_bundle(cg, fname)
912 write_bundle(cg, fname)
913
913
914 def cat(ui, repo, file1, *pats, **opts):
914 def cat(ui, repo, file1, *pats, **opts):
915 """output the latest or given revisions of files
915 """output the latest or given revisions of files
916
916
917 Print the specified files as they were at the given revision.
917 Print the specified files as they were at the given revision.
918 If no revision is given then the tip is used.
918 If no revision is given then the tip is used.
919
919
920 Output may be to a file, in which case the name of the file is
920 Output may be to a file, in which case the name of the file is
921 given using a format string. The formatting rules are the same as
921 given using a format string. The formatting rules are the same as
922 for the export command, with the following additions:
922 for the export command, with the following additions:
923
923
924 %s basename of file being printed
924 %s basename of file being printed
925 %d dirname of file being printed, or '.' if in repo root
925 %d dirname of file being printed, or '.' if in repo root
926 %p root-relative path name of file being printed
926 %p root-relative path name of file being printed
927 """
927 """
928 mf = {}
928 mf = {}
929 rev = opts['rev']
929 rev = opts['rev']
930 if rev:
930 if rev:
931 node = repo.lookup(rev)
931 node = repo.lookup(rev)
932 else:
932 else:
933 node = repo.changelog.tip()
933 node = repo.changelog.tip()
934 change = repo.changelog.read(node)
934 change = repo.changelog.read(node)
935 mf = repo.manifest.read(change[0])
935 mf = repo.manifest.read(change[0])
936 for src, abs, rel, exact in walk(repo, (file1,) + pats, opts, node):
936 for src, abs, rel, exact in walk(repo, (file1,) + pats, opts, node):
937 r = repo.file(abs)
937 r = repo.file(abs)
938 n = mf[abs]
938 n = mf[abs]
939 fp = make_file(repo, r, opts['output'], node=n, pathname=abs)
939 fp = make_file(repo, r, opts['output'], node=n, pathname=abs)
940 fp.write(r.read(n))
940 fp.write(r.read(n))
941
941
942 def clone(ui, source, dest=None, **opts):
942 def clone(ui, source, dest=None, **opts):
943 """make a copy of an existing repository
943 """make a copy of an existing repository
944
944
945 Create a copy of an existing repository in a new directory.
945 Create a copy of an existing repository in a new directory.
946
946
947 If no destination directory name is specified, it defaults to the
947 If no destination directory name is specified, it defaults to the
948 basename of the source.
948 basename of the source.
949
949
950 The location of the source is added to the new repository's
950 The location of the source is added to the new repository's
951 .hg/hgrc file, as the default to be used for future pulls.
951 .hg/hgrc file, as the default to be used for future pulls.
952
952
953 For efficiency, hardlinks are used for cloning whenever the source
953 For efficiency, hardlinks are used for cloning whenever the source
954 and destination are on the same filesystem. Some filesystems,
954 and destination are on the same filesystem. Some filesystems,
955 such as AFS, implement hardlinking incorrectly, but do not report
955 such as AFS, implement hardlinking incorrectly, but do not report
956 errors. In these cases, use the --pull option to avoid
956 errors. In these cases, use the --pull option to avoid
957 hardlinking.
957 hardlinking.
958
958
959 See pull for valid source format details.
959 See pull for valid source format details.
960 """
960 """
961 if dest is None:
961 if dest is None:
962 dest = os.path.basename(os.path.normpath(source))
962 dest = os.path.basename(os.path.normpath(source))
963
963
964 if os.path.exists(dest):
964 if os.path.exists(dest):
965 raise util.Abort(_("destination '%s' already exists"), dest)
965 raise util.Abort(_("destination '%s' already exists"), dest)
966
966
967 dest = os.path.realpath(dest)
967 dest = os.path.realpath(dest)
968
968
969 class Dircleanup(object):
969 class Dircleanup(object):
970 def __init__(self, dir_):
970 def __init__(self, dir_):
971 self.rmtree = shutil.rmtree
971 self.rmtree = shutil.rmtree
972 self.dir_ = dir_
972 self.dir_ = dir_
973 os.mkdir(dir_)
973 os.mkdir(dir_)
974 def close(self):
974 def close(self):
975 self.dir_ = None
975 self.dir_ = None
976 def __del__(self):
976 def __del__(self):
977 if self.dir_:
977 if self.dir_:
978 self.rmtree(self.dir_, True)
978 self.rmtree(self.dir_, True)
979
979
980 if opts['ssh']:
980 if opts['ssh']:
981 ui.setconfig("ui", "ssh", opts['ssh'])
981 ui.setconfig("ui", "ssh", opts['ssh'])
982 if opts['remotecmd']:
982 if opts['remotecmd']:
983 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
983 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
984
984
985 source = ui.expandpath(source)
985 source = ui.expandpath(source)
986
986
987 d = Dircleanup(dest)
987 d = Dircleanup(dest)
988 abspath = source
988 abspath = source
989 other = hg.repository(ui, source)
989 other = hg.repository(ui, source)
990
990
991 copy = False
991 copy = False
992 if other.dev() != -1:
992 if other.dev() != -1:
993 abspath = os.path.abspath(source)
993 abspath = os.path.abspath(source)
994 if not opts['pull'] and not opts['rev']:
994 if not opts['pull'] and not opts['rev']:
995 copy = True
995 copy = True
996
996
997 if copy:
997 if copy:
998 try:
998 try:
999 # we use a lock here because if we race with commit, we
999 # we use a lock here because if we race with commit, we
1000 # can end up with extra data in the cloned revlogs that's
1000 # can end up with extra data in the cloned revlogs that's
1001 # not pointed to by changesets, thus causing verify to
1001 # not pointed to by changesets, thus causing verify to
1002 # fail
1002 # fail
1003 l1 = other.lock()
1003 l1 = other.lock()
1004 except lock.LockException:
1004 except lock.LockException:
1005 copy = False
1005 copy = False
1006
1006
1007 if copy:
1007 if copy:
1008 # we lock here to avoid premature writing to the target
1008 # we lock here to avoid premature writing to the target
1009 os.mkdir(os.path.join(dest, ".hg"))
1009 os.mkdir(os.path.join(dest, ".hg"))
1010 l2 = lock.lock(os.path.join(dest, ".hg", "lock"))
1010 l2 = lock.lock(os.path.join(dest, ".hg", "lock"))
1011
1011
1012 files = "data 00manifest.d 00manifest.i 00changelog.d 00changelog.i"
1012 files = "data 00manifest.d 00manifest.i 00changelog.d 00changelog.i"
1013 for f in files.split():
1013 for f in files.split():
1014 src = os.path.join(source, ".hg", f)
1014 src = os.path.join(source, ".hg", f)
1015 dst = os.path.join(dest, ".hg", f)
1015 dst = os.path.join(dest, ".hg", f)
1016 try:
1016 try:
1017 util.copyfiles(src, dst)
1017 util.copyfiles(src, dst)
1018 except OSError, inst:
1018 except OSError, inst:
1019 if inst.errno != errno.ENOENT:
1019 if inst.errno != errno.ENOENT:
1020 raise
1020 raise
1021
1021
1022 repo = hg.repository(ui, dest)
1022 repo = hg.repository(ui, dest)
1023
1023
1024 else:
1024 else:
1025 revs = None
1025 revs = None
1026 if opts['rev']:
1026 if opts['rev']:
1027 if not other.local():
1027 if not other.local():
1028 error = _("clone -r not supported yet for remote repositories.")
1028 error = _("clone -r not supported yet for remote repositories.")
1029 raise util.Abort(error)
1029 raise util.Abort(error)
1030 else:
1030 else:
1031 revs = [other.lookup(rev) for rev in opts['rev']]
1031 revs = [other.lookup(rev) for rev in opts['rev']]
1032 repo = hg.repository(ui, dest, create=1)
1032 repo = hg.repository(ui, dest, create=1)
1033 repo.pull(other, heads = revs)
1033 repo.pull(other, heads = revs)
1034
1034
1035 f = repo.opener("hgrc", "w", text=True)
1035 f = repo.opener("hgrc", "w", text=True)
1036 f.write("[paths]\n")
1036 f.write("[paths]\n")
1037 f.write("default = %s\n" % abspath)
1037 f.write("default = %s\n" % abspath)
1038 f.close()
1038 f.close()
1039
1039
1040 if not opts['noupdate']:
1040 if not opts['noupdate']:
1041 update(repo.ui, repo)
1041 update(repo.ui, repo)
1042
1042
1043 d.close()
1043 d.close()
1044
1044
1045 def commit(ui, repo, *pats, **opts):
1045 def commit(ui, repo, *pats, **opts):
1046 """commit the specified files or all outstanding changes
1046 """commit the specified files or all outstanding changes
1047
1047
1048 Commit changes to the given files into the repository.
1048 Commit changes to the given files into the repository.
1049
1049
1050 If a list of files is omitted, all changes reported by "hg status"
1050 If a list of files is omitted, all changes reported by "hg status"
1051 will be committed.
1051 will be committed.
1052
1052
1053 If no commit message is specified, the editor configured in your hgrc
1053 If no commit message is specified, the editor configured in your hgrc
1054 or in the EDITOR environment variable is started to enter a message.
1054 or in the EDITOR environment variable is started to enter a message.
1055 """
1055 """
1056 message = opts['message']
1056 message = opts['message']
1057 logfile = opts['logfile']
1057 logfile = opts['logfile']
1058
1058
1059 if message and logfile:
1059 if message and logfile:
1060 raise util.Abort(_('options --message and --logfile are mutually '
1060 raise util.Abort(_('options --message and --logfile are mutually '
1061 'exclusive'))
1061 'exclusive'))
1062 if not message and logfile:
1062 if not message and logfile:
1063 try:
1063 try:
1064 if logfile == '-':
1064 if logfile == '-':
1065 message = sys.stdin.read()
1065 message = sys.stdin.read()
1066 else:
1066 else:
1067 message = open(logfile).read()
1067 message = open(logfile).read()
1068 except IOError, inst:
1068 except IOError, inst:
1069 raise util.Abort(_("can't read commit message '%s': %s") %
1069 raise util.Abort(_("can't read commit message '%s': %s") %
1070 (logfile, inst.strerror))
1070 (logfile, inst.strerror))
1071
1071
1072 if opts['addremove']:
1072 if opts['addremove']:
1073 addremove(ui, repo, *pats, **opts)
1073 addremove(ui, repo, *pats, **opts)
1074 fns, match, anypats = matchpats(repo, pats, opts)
1074 fns, match, anypats = matchpats(repo, pats, opts)
1075 if pats:
1075 if pats:
1076 modified, added, removed, deleted, unknown = (
1076 modified, added, removed, deleted, unknown = (
1077 repo.changes(files=fns, match=match))
1077 repo.changes(files=fns, match=match))
1078 files = modified + added + removed
1078 files = modified + added + removed
1079 else:
1079 else:
1080 files = []
1080 files = []
1081 try:
1081 try:
1082 repo.commit(files, message, opts['user'], opts['date'], match)
1082 repo.commit(files, message, opts['user'], opts['date'], match)
1083 except ValueError, inst:
1083 except ValueError, inst:
1084 raise util.Abort(str(inst))
1084 raise util.Abort(str(inst))
1085
1085
1086 def docopy(ui, repo, pats, opts, wlock):
1086 def docopy(ui, repo, pats, opts, wlock):
1087 # called with the repo lock held
1087 # called with the repo lock held
1088 cwd = repo.getcwd()
1088 cwd = repo.getcwd()
1089 errors = 0
1089 errors = 0
1090 copied = []
1090 copied = []
1091 targets = {}
1091 targets = {}
1092
1092
1093 def okaytocopy(abs, rel, exact):
1093 def okaytocopy(abs, rel, exact):
1094 reasons = {'?': _('is not managed'),
1094 reasons = {'?': _('is not managed'),
1095 'a': _('has been marked for add'),
1095 'a': _('has been marked for add'),
1096 'r': _('has been marked for remove')}
1096 'r': _('has been marked for remove')}
1097 state = repo.dirstate.state(abs)
1097 state = repo.dirstate.state(abs)
1098 reason = reasons.get(state)
1098 reason = reasons.get(state)
1099 if reason:
1099 if reason:
1100 if state == 'a':
1100 if state == 'a':
1101 origsrc = repo.dirstate.copied(abs)
1101 origsrc = repo.dirstate.copied(abs)
1102 if origsrc is not None:
1102 if origsrc is not None:
1103 return origsrc
1103 return origsrc
1104 if exact:
1104 if exact:
1105 ui.warn(_('%s: not copying - file %s\n') % (rel, reason))
1105 ui.warn(_('%s: not copying - file %s\n') % (rel, reason))
1106 else:
1106 else:
1107 return abs
1107 return abs
1108
1108
1109 def copy(origsrc, abssrc, relsrc, target, exact):
1109 def copy(origsrc, abssrc, relsrc, target, exact):
1110 abstarget = util.canonpath(repo.root, cwd, target)
1110 abstarget = util.canonpath(repo.root, cwd, target)
1111 reltarget = util.pathto(cwd, abstarget)
1111 reltarget = util.pathto(cwd, abstarget)
1112 prevsrc = targets.get(abstarget)
1112 prevsrc = targets.get(abstarget)
1113 if prevsrc is not None:
1113 if prevsrc is not None:
1114 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
1114 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
1115 (reltarget, abssrc, prevsrc))
1115 (reltarget, abssrc, prevsrc))
1116 return
1116 return
1117 if (not opts['after'] and os.path.exists(reltarget) or
1117 if (not opts['after'] and os.path.exists(reltarget) or
1118 opts['after'] and repo.dirstate.state(abstarget) not in '?r'):
1118 opts['after'] and repo.dirstate.state(abstarget) not in '?r'):
1119 if not opts['force']:
1119 if not opts['force']:
1120 ui.warn(_('%s: not overwriting - file exists\n') %
1120 ui.warn(_('%s: not overwriting - file exists\n') %
1121 reltarget)
1121 reltarget)
1122 return
1122 return
1123 if not opts['after']:
1123 if not opts['after']:
1124 os.unlink(reltarget)
1124 os.unlink(reltarget)
1125 if opts['after']:
1125 if opts['after']:
1126 if not os.path.exists(reltarget):
1126 if not os.path.exists(reltarget):
1127 return
1127 return
1128 else:
1128 else:
1129 targetdir = os.path.dirname(reltarget) or '.'
1129 targetdir = os.path.dirname(reltarget) or '.'
1130 if not os.path.isdir(targetdir):
1130 if not os.path.isdir(targetdir):
1131 os.makedirs(targetdir)
1131 os.makedirs(targetdir)
1132 try:
1132 try:
1133 restore = repo.dirstate.state(abstarget) == 'r'
1133 restore = repo.dirstate.state(abstarget) == 'r'
1134 if restore:
1134 if restore:
1135 repo.undelete([abstarget], wlock)
1135 repo.undelete([abstarget], wlock)
1136 try:
1136 try:
1137 shutil.copyfile(relsrc, reltarget)
1137 shutil.copyfile(relsrc, reltarget)
1138 shutil.copymode(relsrc, reltarget)
1138 shutil.copymode(relsrc, reltarget)
1139 restore = False
1139 restore = False
1140 finally:
1140 finally:
1141 if restore:
1141 if restore:
1142 repo.remove([abstarget], wlock)
1142 repo.remove([abstarget], wlock)
1143 except shutil.Error, inst:
1143 except shutil.Error, inst:
1144 raise util.Abort(str(inst))
1144 raise util.Abort(str(inst))
1145 except IOError, inst:
1145 except IOError, inst:
1146 if inst.errno == errno.ENOENT:
1146 if inst.errno == errno.ENOENT:
1147 ui.warn(_('%s: deleted in working copy\n') % relsrc)
1147 ui.warn(_('%s: deleted in working copy\n') % relsrc)
1148 else:
1148 else:
1149 ui.warn(_('%s: cannot copy - %s\n') %
1149 ui.warn(_('%s: cannot copy - %s\n') %
1150 (relsrc, inst.strerror))
1150 (relsrc, inst.strerror))
1151 errors += 1
1151 errors += 1
1152 return
1152 return
1153 if ui.verbose or not exact:
1153 if ui.verbose or not exact:
1154 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
1154 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
1155 targets[abstarget] = abssrc
1155 targets[abstarget] = abssrc
1156 if abstarget != origsrc:
1156 if abstarget != origsrc:
1157 repo.copy(origsrc, abstarget, wlock)
1157 repo.copy(origsrc, abstarget, wlock)
1158 copied.append((abssrc, relsrc, exact))
1158 copied.append((abssrc, relsrc, exact))
1159
1159
1160 def targetpathfn(pat, dest, srcs):
1160 def targetpathfn(pat, dest, srcs):
1161 if os.path.isdir(pat):
1161 if os.path.isdir(pat):
1162 abspfx = util.canonpath(repo.root, cwd, pat)
1162 abspfx = util.canonpath(repo.root, cwd, pat)
1163 if destdirexists:
1163 if destdirexists:
1164 striplen = len(os.path.split(abspfx)[0])
1164 striplen = len(os.path.split(abspfx)[0])
1165 else:
1165 else:
1166 striplen = len(abspfx)
1166 striplen = len(abspfx)
1167 if striplen:
1167 if striplen:
1168 striplen += len(os.sep)
1168 striplen += len(os.sep)
1169 res = lambda p: os.path.join(dest, p[striplen:])
1169 res = lambda p: os.path.join(dest, p[striplen:])
1170 elif destdirexists:
1170 elif destdirexists:
1171 res = lambda p: os.path.join(dest, os.path.basename(p))
1171 res = lambda p: os.path.join(dest, os.path.basename(p))
1172 else:
1172 else:
1173 res = lambda p: dest
1173 res = lambda p: dest
1174 return res
1174 return res
1175
1175
1176 def targetpathafterfn(pat, dest, srcs):
1176 def targetpathafterfn(pat, dest, srcs):
1177 if util.patkind(pat, None)[0]:
1177 if util.patkind(pat, None)[0]:
1178 # a mercurial pattern
1178 # a mercurial pattern
1179 res = lambda p: os.path.join(dest, os.path.basename(p))
1179 res = lambda p: os.path.join(dest, os.path.basename(p))
1180 else:
1180 else:
1181 abspfx = util.canonpath(repo.root, cwd, pat)
1181 abspfx = util.canonpath(repo.root, cwd, pat)
1182 if len(abspfx) < len(srcs[0][0]):
1182 if len(abspfx) < len(srcs[0][0]):
1183 # A directory. Either the target path contains the last
1183 # A directory. Either the target path contains the last
1184 # component of the source path or it does not.
1184 # component of the source path or it does not.
1185 def evalpath(striplen):
1185 def evalpath(striplen):
1186 score = 0
1186 score = 0
1187 for s in srcs:
1187 for s in srcs:
1188 t = os.path.join(dest, s[0][striplen:])
1188 t = os.path.join(dest, s[0][striplen:])
1189 if os.path.exists(t):
1189 if os.path.exists(t):
1190 score += 1
1190 score += 1
1191 return score
1191 return score
1192
1192
1193 striplen = len(abspfx)
1193 striplen = len(abspfx)
1194 if striplen:
1194 if striplen:
1195 striplen += len(os.sep)
1195 striplen += len(os.sep)
1196 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
1196 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
1197 score = evalpath(striplen)
1197 score = evalpath(striplen)
1198 striplen1 = len(os.path.split(abspfx)[0])
1198 striplen1 = len(os.path.split(abspfx)[0])
1199 if striplen1:
1199 if striplen1:
1200 striplen1 += len(os.sep)
1200 striplen1 += len(os.sep)
1201 if evalpath(striplen1) > score:
1201 if evalpath(striplen1) > score:
1202 striplen = striplen1
1202 striplen = striplen1
1203 res = lambda p: os.path.join(dest, p[striplen:])
1203 res = lambda p: os.path.join(dest, p[striplen:])
1204 else:
1204 else:
1205 # a file
1205 # a file
1206 if destdirexists:
1206 if destdirexists:
1207 res = lambda p: os.path.join(dest, os.path.basename(p))
1207 res = lambda p: os.path.join(dest, os.path.basename(p))
1208 else:
1208 else:
1209 res = lambda p: dest
1209 res = lambda p: dest
1210 return res
1210 return res
1211
1211
1212
1212
1213 pats = list(pats)
1213 pats = list(pats)
1214 if not pats:
1214 if not pats:
1215 raise util.Abort(_('no source or destination specified'))
1215 raise util.Abort(_('no source or destination specified'))
1216 if len(pats) == 1:
1216 if len(pats) == 1:
1217 raise util.Abort(_('no destination specified'))
1217 raise util.Abort(_('no destination specified'))
1218 dest = pats.pop()
1218 dest = pats.pop()
1219 destdirexists = os.path.isdir(dest)
1219 destdirexists = os.path.isdir(dest)
1220 if (len(pats) > 1 or util.patkind(pats[0], None)[0]) and not destdirexists:
1220 if (len(pats) > 1 or util.patkind(pats[0], None)[0]) and not destdirexists:
1221 raise util.Abort(_('with multiple sources, destination must be an '
1221 raise util.Abort(_('with multiple sources, destination must be an '
1222 'existing directory'))
1222 'existing directory'))
1223 if opts['after']:
1223 if opts['after']:
1224 tfn = targetpathafterfn
1224 tfn = targetpathafterfn
1225 else:
1225 else:
1226 tfn = targetpathfn
1226 tfn = targetpathfn
1227 copylist = []
1227 copylist = []
1228 for pat in pats:
1228 for pat in pats:
1229 srcs = []
1229 srcs = []
1230 for tag, abssrc, relsrc, exact in walk(repo, [pat], opts):
1230 for tag, abssrc, relsrc, exact in walk(repo, [pat], opts):
1231 origsrc = okaytocopy(abssrc, relsrc, exact)
1231 origsrc = okaytocopy(abssrc, relsrc, exact)
1232 if origsrc:
1232 if origsrc:
1233 srcs.append((origsrc, abssrc, relsrc, exact))
1233 srcs.append((origsrc, abssrc, relsrc, exact))
1234 if not srcs:
1234 if not srcs:
1235 continue
1235 continue
1236 copylist.append((tfn(pat, dest, srcs), srcs))
1236 copylist.append((tfn(pat, dest, srcs), srcs))
1237 if not copylist:
1237 if not copylist:
1238 raise util.Abort(_('no files to copy'))
1238 raise util.Abort(_('no files to copy'))
1239
1239
1240 for targetpath, srcs in copylist:
1240 for targetpath, srcs in copylist:
1241 for origsrc, abssrc, relsrc, exact in srcs:
1241 for origsrc, abssrc, relsrc, exact in srcs:
1242 copy(origsrc, abssrc, relsrc, targetpath(abssrc), exact)
1242 copy(origsrc, abssrc, relsrc, targetpath(abssrc), exact)
1243
1243
1244 if errors:
1244 if errors:
1245 ui.warn(_('(consider using --after)\n'))
1245 ui.warn(_('(consider using --after)\n'))
1246 return errors, copied
1246 return errors, copied
1247
1247
1248 def copy(ui, repo, *pats, **opts):
1248 def copy(ui, repo, *pats, **opts):
1249 """mark files as copied for the next commit
1249 """mark files as copied for the next commit
1250
1250
1251 Mark dest as having copies of source files. If dest is a
1251 Mark dest as having copies of source files. If dest is a
1252 directory, copies are put in that directory. If dest is a file,
1252 directory, copies are put in that directory. If dest is a file,
1253 there can only be one source.
1253 there can only be one source.
1254
1254
1255 By default, this command copies the contents of files as they
1255 By default, this command copies the contents of files as they
1256 stand in the working directory. If invoked with --after, the
1256 stand in the working directory. If invoked with --after, the
1257 operation is recorded, but no copying is performed.
1257 operation is recorded, but no copying is performed.
1258
1258
1259 This command takes effect in the next commit.
1259 This command takes effect in the next commit.
1260
1260
1261 NOTE: This command should be treated as experimental. While it
1261 NOTE: This command should be treated as experimental. While it
1262 should properly record copied files, this information is not yet
1262 should properly record copied files, this information is not yet
1263 fully used by merge, nor fully reported by log.
1263 fully used by merge, nor fully reported by log.
1264 """
1264 """
1265 wlock = repo.wlock(0)
1265 wlock = repo.wlock(0)
1266 errs, copied = docopy(ui, repo, pats, opts, wlock)
1266 errs, copied = docopy(ui, repo, pats, opts, wlock)
1267 return errs
1267 return errs
1268
1268
1269 def debugancestor(ui, index, rev1, rev2):
1269 def debugancestor(ui, index, rev1, rev2):
1270 """find the ancestor revision of two revisions in a given index"""
1270 """find the ancestor revision of two revisions in a given index"""
1271 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index, "")
1271 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index, "")
1272 a = r.ancestor(r.lookup(rev1), r.lookup(rev2))
1272 a = r.ancestor(r.lookup(rev1), r.lookup(rev2))
1273 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
1273 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
1274
1274
1275 def debugcomplete(ui, cmd='', **opts):
1275 def debugcomplete(ui, cmd='', **opts):
1276 """returns the completion list associated with the given command"""
1276 """returns the completion list associated with the given command"""
1277
1277
1278 if opts['options']:
1278 if opts['options']:
1279 options = []
1279 options = []
1280 otables = [globalopts]
1280 otables = [globalopts]
1281 if cmd:
1281 if cmd:
1282 aliases, entry = find(cmd)
1282 aliases, entry = find(cmd)
1283 otables.append(entry[1])
1283 otables.append(entry[1])
1284 for t in otables:
1284 for t in otables:
1285 for o in t:
1285 for o in t:
1286 if o[0]:
1286 if o[0]:
1287 options.append('-%s' % o[0])
1287 options.append('-%s' % o[0])
1288 options.append('--%s' % o[1])
1288 options.append('--%s' % o[1])
1289 ui.write("%s\n" % "\n".join(options))
1289 ui.write("%s\n" % "\n".join(options))
1290 return
1290 return
1291
1291
1292 clist = findpossible(cmd).keys()
1292 clist = findpossible(cmd).keys()
1293 clist.sort()
1293 clist.sort()
1294 ui.write("%s\n" % "\n".join(clist))
1294 ui.write("%s\n" % "\n".join(clist))
1295
1295
1296 def debugrebuildstate(ui, repo, rev=None):
1296 def debugrebuildstate(ui, repo, rev=None):
1297 """rebuild the dirstate as it would look like for the given revision"""
1297 """rebuild the dirstate as it would look like for the given revision"""
1298 if not rev:
1298 if not rev:
1299 rev = repo.changelog.tip()
1299 rev = repo.changelog.tip()
1300 else:
1300 else:
1301 rev = repo.lookup(rev)
1301 rev = repo.lookup(rev)
1302 change = repo.changelog.read(rev)
1302 change = repo.changelog.read(rev)
1303 n = change[0]
1303 n = change[0]
1304 files = repo.manifest.readflags(n)
1304 files = repo.manifest.readflags(n)
1305 wlock = repo.wlock()
1305 wlock = repo.wlock()
1306 repo.dirstate.rebuild(rev, files.iteritems())
1306 repo.dirstate.rebuild(rev, files.iteritems())
1307
1307
1308 def debugcheckstate(ui, repo):
1308 def debugcheckstate(ui, repo):
1309 """validate the correctness of the current dirstate"""
1309 """validate the correctness of the current dirstate"""
1310 parent1, parent2 = repo.dirstate.parents()
1310 parent1, parent2 = repo.dirstate.parents()
1311 repo.dirstate.read()
1311 repo.dirstate.read()
1312 dc = repo.dirstate.map
1312 dc = repo.dirstate.map
1313 keys = dc.keys()
1313 keys = dc.keys()
1314 keys.sort()
1314 keys.sort()
1315 m1n = repo.changelog.read(parent1)[0]
1315 m1n = repo.changelog.read(parent1)[0]
1316 m2n = repo.changelog.read(parent2)[0]
1316 m2n = repo.changelog.read(parent2)[0]
1317 m1 = repo.manifest.read(m1n)
1317 m1 = repo.manifest.read(m1n)
1318 m2 = repo.manifest.read(m2n)
1318 m2 = repo.manifest.read(m2n)
1319 errors = 0
1319 errors = 0
1320 for f in dc:
1320 for f in dc:
1321 state = repo.dirstate.state(f)
1321 state = repo.dirstate.state(f)
1322 if state in "nr" and f not in m1:
1322 if state in "nr" and f not in m1:
1323 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
1323 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
1324 errors += 1
1324 errors += 1
1325 if state in "a" and f in m1:
1325 if state in "a" and f in m1:
1326 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
1326 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
1327 errors += 1
1327 errors += 1
1328 if state in "m" and f not in m1 and f not in m2:
1328 if state in "m" and f not in m1 and f not in m2:
1329 ui.warn(_("%s in state %s, but not in either manifest\n") %
1329 ui.warn(_("%s in state %s, but not in either manifest\n") %
1330 (f, state))
1330 (f, state))
1331 errors += 1
1331 errors += 1
1332 for f in m1:
1332 for f in m1:
1333 state = repo.dirstate.state(f)
1333 state = repo.dirstate.state(f)
1334 if state not in "nrm":
1334 if state not in "nrm":
1335 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
1335 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
1336 errors += 1
1336 errors += 1
1337 if errors:
1337 if errors:
1338 error = _(".hg/dirstate inconsistent with current parent's manifest")
1338 error = _(".hg/dirstate inconsistent with current parent's manifest")
1339 raise util.Abort(error)
1339 raise util.Abort(error)
1340
1340
1341 def debugconfig(ui, repo):
1341 def debugconfig(ui, repo):
1342 """show combined config settings from all hgrc files"""
1342 """show combined config settings from all hgrc files"""
1343 for section, name, value in ui.walkconfig():
1343 for section, name, value in ui.walkconfig():
1344 ui.write('%s.%s=%s\n' % (section, name, value))
1344 ui.write('%s.%s=%s\n' % (section, name, value))
1345
1345
1346 def debugsetparents(ui, repo, rev1, rev2=None):
1346 def debugsetparents(ui, repo, rev1, rev2=None):
1347 """manually set the parents of the current working directory
1347 """manually set the parents of the current working directory
1348
1348
1349 This is useful for writing repository conversion tools, but should
1349 This is useful for writing repository conversion tools, but should
1350 be used with care.
1350 be used with care.
1351 """
1351 """
1352
1352
1353 if not rev2:
1353 if not rev2:
1354 rev2 = hex(nullid)
1354 rev2 = hex(nullid)
1355
1355
1356 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
1356 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
1357
1357
1358 def debugstate(ui, repo):
1358 def debugstate(ui, repo):
1359 """show the contents of the current dirstate"""
1359 """show the contents of the current dirstate"""
1360 repo.dirstate.read()
1360 repo.dirstate.read()
1361 dc = repo.dirstate.map
1361 dc = repo.dirstate.map
1362 keys = dc.keys()
1362 keys = dc.keys()
1363 keys.sort()
1363 keys.sort()
1364 for file_ in keys:
1364 for file_ in keys:
1365 ui.write("%c %3o %10d %s %s\n"
1365 ui.write("%c %3o %10d %s %s\n"
1366 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
1366 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
1367 time.strftime("%x %X",
1367 time.strftime("%x %X",
1368 time.localtime(dc[file_][3])), file_))
1368 time.localtime(dc[file_][3])), file_))
1369 for f in repo.dirstate.copies:
1369 for f in repo.dirstate.copies:
1370 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copies[f], f))
1370 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copies[f], f))
1371
1371
1372 def debugdata(ui, file_, rev):
1372 def debugdata(ui, file_, rev):
1373 """dump the contents of an data file revision"""
1373 """dump the contents of an data file revision"""
1374 r = revlog.revlog(util.opener(os.getcwd(), audit=False),
1374 r = revlog.revlog(util.opener(os.getcwd(), audit=False),
1375 file_[:-2] + ".i", file_)
1375 file_[:-2] + ".i", file_)
1376 try:
1376 try:
1377 ui.write(r.revision(r.lookup(rev)))
1377 ui.write(r.revision(r.lookup(rev)))
1378 except KeyError:
1378 except KeyError:
1379 raise util.Abort(_('invalid revision identifier %s'), rev)
1379 raise util.Abort(_('invalid revision identifier %s'), rev)
1380
1380
1381 def debugindex(ui, file_):
1381 def debugindex(ui, file_):
1382 """dump the contents of an index file"""
1382 """dump the contents of an index file"""
1383 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_, "")
1383 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_, "")
1384 ui.write(" rev offset length base linkrev" +
1384 ui.write(" rev offset length base linkrev" +
1385 " nodeid p1 p2\n")
1385 " nodeid p1 p2\n")
1386 for i in range(r.count()):
1386 for i in range(r.count()):
1387 e = r.index[i]
1387 e = r.index[i]
1388 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
1388 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
1389 i, e[0], e[1], e[2], e[3],
1389 i, e[0], e[1], e[2], e[3],
1390 short(e[6]), short(e[4]), short(e[5])))
1390 short(e[6]), short(e[4]), short(e[5])))
1391
1391
1392 def debugindexdot(ui, file_):
1392 def debugindexdot(ui, file_):
1393 """dump an index DAG as a .dot file"""
1393 """dump an index DAG as a .dot file"""
1394 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_, "")
1394 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_, "")
1395 ui.write("digraph G {\n")
1395 ui.write("digraph G {\n")
1396 for i in range(r.count()):
1396 for i in range(r.count()):
1397 e = r.index[i]
1397 e = r.index[i]
1398 ui.write("\t%d -> %d\n" % (r.rev(e[4]), i))
1398 ui.write("\t%d -> %d\n" % (r.rev(e[4]), i))
1399 if e[5] != nullid:
1399 if e[5] != nullid:
1400 ui.write("\t%d -> %d\n" % (r.rev(e[5]), i))
1400 ui.write("\t%d -> %d\n" % (r.rev(e[5]), i))
1401 ui.write("}\n")
1401 ui.write("}\n")
1402
1402
1403 def debugrename(ui, repo, file, rev=None):
1403 def debugrename(ui, repo, file, rev=None):
1404 """dump rename information"""
1404 """dump rename information"""
1405 r = repo.file(relpath(repo, [file])[0])
1405 r = repo.file(relpath(repo, [file])[0])
1406 if rev:
1406 if rev:
1407 try:
1407 try:
1408 # assume all revision numbers are for changesets
1408 # assume all revision numbers are for changesets
1409 n = repo.lookup(rev)
1409 n = repo.lookup(rev)
1410 change = repo.changelog.read(n)
1410 change = repo.changelog.read(n)
1411 m = repo.manifest.read(change[0])
1411 m = repo.manifest.read(change[0])
1412 n = m[relpath(repo, [file])[0]]
1412 n = m[relpath(repo, [file])[0]]
1413 except (hg.RepoError, KeyError):
1413 except (hg.RepoError, KeyError):
1414 n = r.lookup(rev)
1414 n = r.lookup(rev)
1415 else:
1415 else:
1416 n = r.tip()
1416 n = r.tip()
1417 m = r.renamed(n)
1417 m = r.renamed(n)
1418 if m:
1418 if m:
1419 ui.write(_("renamed from %s:%s\n") % (m[0], hex(m[1])))
1419 ui.write(_("renamed from %s:%s\n") % (m[0], hex(m[1])))
1420 else:
1420 else:
1421 ui.write(_("not renamed\n"))
1421 ui.write(_("not renamed\n"))
1422
1422
1423 def debugwalk(ui, repo, *pats, **opts):
1423 def debugwalk(ui, repo, *pats, **opts):
1424 """show how files match on given patterns"""
1424 """show how files match on given patterns"""
1425 items = list(walk(repo, pats, opts))
1425 items = list(walk(repo, pats, opts))
1426 if not items:
1426 if not items:
1427 return
1427 return
1428 fmt = '%%s %%-%ds %%-%ds %%s' % (
1428 fmt = '%%s %%-%ds %%-%ds %%s' % (
1429 max([len(abs) for (src, abs, rel, exact) in items]),
1429 max([len(abs) for (src, abs, rel, exact) in items]),
1430 max([len(rel) for (src, abs, rel, exact) in items]))
1430 max([len(rel) for (src, abs, rel, exact) in items]))
1431 for src, abs, rel, exact in items:
1431 for src, abs, rel, exact in items:
1432 line = fmt % (src, abs, rel, exact and 'exact' or '')
1432 line = fmt % (src, abs, rel, exact and 'exact' or '')
1433 ui.write("%s\n" % line.rstrip())
1433 ui.write("%s\n" % line.rstrip())
1434
1434
1435 def diff(ui, repo, *pats, **opts):
1435 def diff(ui, repo, *pats, **opts):
1436 """diff repository (or selected files)
1436 """diff repository (or selected files)
1437
1437
1438 Show differences between revisions for the specified files.
1438 Show differences between revisions for the specified files.
1439
1439
1440 Differences between files are shown using the unified diff format.
1440 Differences between files are shown using the unified diff format.
1441
1441
1442 When two revision arguments are given, then changes are shown
1442 When two revision arguments are given, then changes are shown
1443 between those revisions. If only one revision is specified then
1443 between those revisions. If only one revision is specified then
1444 that revision is compared to the working directory, and, when no
1444 that revision is compared to the working directory, and, when no
1445 revisions are specified, the working directory files are compared
1445 revisions are specified, the working directory files are compared
1446 to its parent.
1446 to its parent.
1447
1447
1448 Without the -a option, diff will avoid generating diffs of files
1448 Without the -a option, diff will avoid generating diffs of files
1449 it detects as binary. With -a, diff will generate a diff anyway,
1449 it detects as binary. With -a, diff will generate a diff anyway,
1450 probably with undesirable results.
1450 probably with undesirable results.
1451 """
1451 """
1452 node1, node2 = None, None
1452 node1, node2 = None, None
1453 revs = [repo.lookup(x) for x in opts['rev']]
1453 revs = [repo.lookup(x) for x in opts['rev']]
1454
1454
1455 if len(revs) > 0:
1455 if len(revs) > 0:
1456 node1 = revs[0]
1456 node1 = revs[0]
1457 if len(revs) > 1:
1457 if len(revs) > 1:
1458 node2 = revs[1]
1458 node2 = revs[1]
1459 if len(revs) > 2:
1459 if len(revs) > 2:
1460 raise util.Abort(_("too many revisions to diff"))
1460 raise util.Abort(_("too many revisions to diff"))
1461
1461
1462 fns, matchfn, anypats = matchpats(repo, pats, opts)
1462 fns, matchfn, anypats = matchpats(repo, pats, opts)
1463
1463
1464 dodiff(sys.stdout, ui, repo, node1, node2, fns, match=matchfn,
1464 dodiff(sys.stdout, ui, repo, node1, node2, fns, match=matchfn,
1465 text=opts['text'], opts=opts)
1465 text=opts['text'], opts=opts)
1466
1466
1467 def doexport(ui, repo, changeset, seqno, total, revwidth, opts):
1467 def doexport(ui, repo, changeset, seqno, total, revwidth, opts):
1468 node = repo.lookup(changeset)
1468 node = repo.lookup(changeset)
1469 parents = [p for p in repo.changelog.parents(node) if p != nullid]
1469 parents = [p for p in repo.changelog.parents(node) if p != nullid]
1470 if opts['switch_parent']:
1470 if opts['switch_parent']:
1471 parents.reverse()
1471 parents.reverse()
1472 prev = (parents and parents[0]) or nullid
1472 prev = (parents and parents[0]) or nullid
1473 change = repo.changelog.read(node)
1473 change = repo.changelog.read(node)
1474
1474
1475 fp = make_file(repo, repo.changelog, opts['output'],
1475 fp = make_file(repo, repo.changelog, opts['output'],
1476 node=node, total=total, seqno=seqno,
1476 node=node, total=total, seqno=seqno,
1477 revwidth=revwidth)
1477 revwidth=revwidth)
1478 if fp != sys.stdout:
1478 if fp != sys.stdout:
1479 ui.note("%s\n" % fp.name)
1479 ui.note("%s\n" % fp.name)
1480
1480
1481 fp.write("# HG changeset patch\n")
1481 fp.write("# HG changeset patch\n")
1482 fp.write("# User %s\n" % change[1])
1482 fp.write("# User %s\n" % change[1])
1483 fp.write("# Node ID %s\n" % hex(node))
1483 fp.write("# Node ID %s\n" % hex(node))
1484 fp.write("# Parent %s\n" % hex(prev))
1484 fp.write("# Parent %s\n" % hex(prev))
1485 if len(parents) > 1:
1485 if len(parents) > 1:
1486 fp.write("# Parent %s\n" % hex(parents[1]))
1486 fp.write("# Parent %s\n" % hex(parents[1]))
1487 fp.write(change[4].rstrip())
1487 fp.write(change[4].rstrip())
1488 fp.write("\n\n")
1488 fp.write("\n\n")
1489
1489
1490 dodiff(fp, ui, repo, prev, node, text=opts['text'])
1490 dodiff(fp, ui, repo, prev, node, text=opts['text'])
1491 if fp != sys.stdout:
1491 if fp != sys.stdout:
1492 fp.close()
1492 fp.close()
1493
1493
1494 def export(ui, repo, *changesets, **opts):
1494 def export(ui, repo, *changesets, **opts):
1495 """dump the header and diffs for one or more changesets
1495 """dump the header and diffs for one or more changesets
1496
1496
1497 Print the changeset header and diffs for one or more revisions.
1497 Print the changeset header and diffs for one or more revisions.
1498
1498
1499 The information shown in the changeset header is: author,
1499 The information shown in the changeset header is: author,
1500 changeset hash, parent and commit comment.
1500 changeset hash, parent and commit comment.
1501
1501
1502 Output may be to a file, in which case the name of the file is
1502 Output may be to a file, in which case the name of the file is
1503 given using a format string. The formatting rules are as follows:
1503 given using a format string. The formatting rules are as follows:
1504
1504
1505 %% literal "%" character
1505 %% literal "%" character
1506 %H changeset hash (40 bytes of hexadecimal)
1506 %H changeset hash (40 bytes of hexadecimal)
1507 %N number of patches being generated
1507 %N number of patches being generated
1508 %R changeset revision number
1508 %R changeset revision number
1509 %b basename of the exporting repository
1509 %b basename of the exporting repository
1510 %h short-form changeset hash (12 bytes of hexadecimal)
1510 %h short-form changeset hash (12 bytes of hexadecimal)
1511 %n zero-padded sequence number, starting at 1
1511 %n zero-padded sequence number, starting at 1
1512 %r zero-padded changeset revision number
1512 %r zero-padded changeset revision number
1513
1513
1514 Without the -a option, export will avoid generating diffs of files
1514 Without the -a option, export will avoid generating diffs of files
1515 it detects as binary. With -a, export will generate a diff anyway,
1515 it detects as binary. With -a, export will generate a diff anyway,
1516 probably with undesirable results.
1516 probably with undesirable results.
1517
1517
1518 With the --switch-parent option, the diff will be against the second
1518 With the --switch-parent option, the diff will be against the second
1519 parent. It can be useful to review a merge.
1519 parent. It can be useful to review a merge.
1520 """
1520 """
1521 if not changesets:
1521 if not changesets:
1522 raise util.Abort(_("export requires at least one changeset"))
1522 raise util.Abort(_("export requires at least one changeset"))
1523 seqno = 0
1523 seqno = 0
1524 revs = list(revrange(ui, repo, changesets))
1524 revs = list(revrange(ui, repo, changesets))
1525 total = len(revs)
1525 total = len(revs)
1526 revwidth = max(map(len, revs))
1526 revwidth = max(map(len, revs))
1527 msg = len(revs) > 1 and _("Exporting patches:\n") or _("Exporting patch:\n")
1527 msg = len(revs) > 1 and _("Exporting patches:\n") or _("Exporting patch:\n")
1528 ui.note(msg)
1528 ui.note(msg)
1529 for cset in revs:
1529 for cset in revs:
1530 seqno += 1
1530 seqno += 1
1531 doexport(ui, repo, cset, seqno, total, revwidth, opts)
1531 doexport(ui, repo, cset, seqno, total, revwidth, opts)
1532
1532
1533 def forget(ui, repo, *pats, **opts):
1533 def forget(ui, repo, *pats, **opts):
1534 """don't add the specified files on the next commit
1534 """don't add the specified files on the next commit
1535
1535
1536 Undo an 'hg add' scheduled for the next commit.
1536 Undo an 'hg add' scheduled for the next commit.
1537 """
1537 """
1538 forget = []
1538 forget = []
1539 for src, abs, rel, exact in walk(repo, pats, opts):
1539 for src, abs, rel, exact in walk(repo, pats, opts):
1540 if repo.dirstate.state(abs) == 'a':
1540 if repo.dirstate.state(abs) == 'a':
1541 forget.append(abs)
1541 forget.append(abs)
1542 if ui.verbose or not exact:
1542 if ui.verbose or not exact:
1543 ui.status(_('forgetting %s\n') % ((pats and rel) or abs))
1543 ui.status(_('forgetting %s\n') % ((pats and rel) or abs))
1544 repo.forget(forget)
1544 repo.forget(forget)
1545
1545
1546 def grep(ui, repo, pattern, *pats, **opts):
1546 def grep(ui, repo, pattern, *pats, **opts):
1547 """search for a pattern in specified files and revisions
1547 """search for a pattern in specified files and revisions
1548
1548
1549 Search revisions of files for a regular expression.
1549 Search revisions of files for a regular expression.
1550
1550
1551 This command behaves differently than Unix grep. It only accepts
1551 This command behaves differently than Unix grep. It only accepts
1552 Python/Perl regexps. It searches repository history, not the
1552 Python/Perl regexps. It searches repository history, not the
1553 working directory. It always prints the revision number in which
1553 working directory. It always prints the revision number in which
1554 a match appears.
1554 a match appears.
1555
1555
1556 By default, grep only prints output for the first revision of a
1556 By default, grep only prints output for the first revision of a
1557 file in which it finds a match. To get it to print every revision
1557 file in which it finds a match. To get it to print every revision
1558 that contains a change in match status ("-" for a match that
1558 that contains a change in match status ("-" for a match that
1559 becomes a non-match, or "+" for a non-match that becomes a match),
1559 becomes a non-match, or "+" for a non-match that becomes a match),
1560 use the --all flag.
1560 use the --all flag.
1561 """
1561 """
1562 reflags = 0
1562 reflags = 0
1563 if opts['ignore_case']:
1563 if opts['ignore_case']:
1564 reflags |= re.I
1564 reflags |= re.I
1565 regexp = re.compile(pattern, reflags)
1565 regexp = re.compile(pattern, reflags)
1566 sep, eol = ':', '\n'
1566 sep, eol = ':', '\n'
1567 if opts['print0']:
1567 if opts['print0']:
1568 sep = eol = '\0'
1568 sep = eol = '\0'
1569
1569
1570 fcache = {}
1570 fcache = {}
1571 def getfile(fn):
1571 def getfile(fn):
1572 if fn not in fcache:
1572 if fn not in fcache:
1573 fcache[fn] = repo.file(fn)
1573 fcache[fn] = repo.file(fn)
1574 return fcache[fn]
1574 return fcache[fn]
1575
1575
1576 def matchlines(body):
1576 def matchlines(body):
1577 begin = 0
1577 begin = 0
1578 linenum = 0
1578 linenum = 0
1579 while True:
1579 while True:
1580 match = regexp.search(body, begin)
1580 match = regexp.search(body, begin)
1581 if not match:
1581 if not match:
1582 break
1582 break
1583 mstart, mend = match.span()
1583 mstart, mend = match.span()
1584 linenum += body.count('\n', begin, mstart) + 1
1584 linenum += body.count('\n', begin, mstart) + 1
1585 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1585 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1586 lend = body.find('\n', mend)
1586 lend = body.find('\n', mend)
1587 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1587 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1588 begin = lend + 1
1588 begin = lend + 1
1589
1589
1590 class linestate(object):
1590 class linestate(object):
1591 def __init__(self, line, linenum, colstart, colend):
1591 def __init__(self, line, linenum, colstart, colend):
1592 self.line = line
1592 self.line = line
1593 self.linenum = linenum
1593 self.linenum = linenum
1594 self.colstart = colstart
1594 self.colstart = colstart
1595 self.colend = colend
1595 self.colend = colend
1596 def __eq__(self, other):
1596 def __eq__(self, other):
1597 return self.line == other.line
1597 return self.line == other.line
1598 def __hash__(self):
1598 def __hash__(self):
1599 return hash(self.line)
1599 return hash(self.line)
1600
1600
1601 matches = {}
1601 matches = {}
1602 def grepbody(fn, rev, body):
1602 def grepbody(fn, rev, body):
1603 matches[rev].setdefault(fn, {})
1603 matches[rev].setdefault(fn, {})
1604 m = matches[rev][fn]
1604 m = matches[rev][fn]
1605 for lnum, cstart, cend, line in matchlines(body):
1605 for lnum, cstart, cend, line in matchlines(body):
1606 s = linestate(line, lnum, cstart, cend)
1606 s = linestate(line, lnum, cstart, cend)
1607 m[s] = s
1607 m[s] = s
1608
1608
1609 # FIXME: prev isn't used, why ?
1609 # FIXME: prev isn't used, why ?
1610 prev = {}
1610 prev = {}
1611 ucache = {}
1611 ucache = {}
1612 def display(fn, rev, states, prevstates):
1612 def display(fn, rev, states, prevstates):
1613 diff = list(sets.Set(states).symmetric_difference(sets.Set(prevstates)))
1613 diff = list(sets.Set(states).symmetric_difference(sets.Set(prevstates)))
1614 diff.sort(lambda x, y: cmp(x.linenum, y.linenum))
1614 diff.sort(lambda x, y: cmp(x.linenum, y.linenum))
1615 counts = {'-': 0, '+': 0}
1615 counts = {'-': 0, '+': 0}
1616 filerevmatches = {}
1616 filerevmatches = {}
1617 for l in diff:
1617 for l in diff:
1618 if incrementing or not opts['all']:
1618 if incrementing or not opts['all']:
1619 change = ((l in prevstates) and '-') or '+'
1619 change = ((l in prevstates) and '-') or '+'
1620 r = rev
1620 r = rev
1621 else:
1621 else:
1622 change = ((l in states) and '-') or '+'
1622 change = ((l in states) and '-') or '+'
1623 r = prev[fn]
1623 r = prev[fn]
1624 cols = [fn, str(rev)]
1624 cols = [fn, str(rev)]
1625 if opts['line_number']:
1625 if opts['line_number']:
1626 cols.append(str(l.linenum))
1626 cols.append(str(l.linenum))
1627 if opts['all']:
1627 if opts['all']:
1628 cols.append(change)
1628 cols.append(change)
1629 if opts['user']:
1629 if opts['user']:
1630 cols.append(trimuser(ui, getchange(rev)[1], rev,
1630 cols.append(trimuser(ui, getchange(rev)[1], rev,
1631 ucache))
1631 ucache))
1632 if opts['files_with_matches']:
1632 if opts['files_with_matches']:
1633 c = (fn, rev)
1633 c = (fn, rev)
1634 if c in filerevmatches:
1634 if c in filerevmatches:
1635 continue
1635 continue
1636 filerevmatches[c] = 1
1636 filerevmatches[c] = 1
1637 else:
1637 else:
1638 cols.append(l.line)
1638 cols.append(l.line)
1639 ui.write(sep.join(cols), eol)
1639 ui.write(sep.join(cols), eol)
1640 counts[change] += 1
1640 counts[change] += 1
1641 return counts['+'], counts['-']
1641 return counts['+'], counts['-']
1642
1642
1643 fstate = {}
1643 fstate = {}
1644 skip = {}
1644 skip = {}
1645 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1645 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1646 count = 0
1646 count = 0
1647 incrementing = False
1647 incrementing = False
1648 for st, rev, fns in changeiter:
1648 for st, rev, fns in changeiter:
1649 if st == 'window':
1649 if st == 'window':
1650 incrementing = rev
1650 incrementing = rev
1651 matches.clear()
1651 matches.clear()
1652 elif st == 'add':
1652 elif st == 'add':
1653 change = repo.changelog.read(repo.lookup(str(rev)))
1653 change = repo.changelog.read(repo.lookup(str(rev)))
1654 mf = repo.manifest.read(change[0])
1654 mf = repo.manifest.read(change[0])
1655 matches[rev] = {}
1655 matches[rev] = {}
1656 for fn in fns:
1656 for fn in fns:
1657 if fn in skip:
1657 if fn in skip:
1658 continue
1658 continue
1659 fstate.setdefault(fn, {})
1659 fstate.setdefault(fn, {})
1660 try:
1660 try:
1661 grepbody(fn, rev, getfile(fn).read(mf[fn]))
1661 grepbody(fn, rev, getfile(fn).read(mf[fn]))
1662 except KeyError:
1662 except KeyError:
1663 pass
1663 pass
1664 elif st == 'iter':
1664 elif st == 'iter':
1665 states = matches[rev].items()
1665 states = matches[rev].items()
1666 states.sort()
1666 states.sort()
1667 for fn, m in states:
1667 for fn, m in states:
1668 if fn in skip:
1668 if fn in skip:
1669 continue
1669 continue
1670 if incrementing or not opts['all'] or fstate[fn]:
1670 if incrementing or not opts['all'] or fstate[fn]:
1671 pos, neg = display(fn, rev, m, fstate[fn])
1671 pos, neg = display(fn, rev, m, fstate[fn])
1672 count += pos + neg
1672 count += pos + neg
1673 if pos and not opts['all']:
1673 if pos and not opts['all']:
1674 skip[fn] = True
1674 skip[fn] = True
1675 fstate[fn] = m
1675 fstate[fn] = m
1676 prev[fn] = rev
1676 prev[fn] = rev
1677
1677
1678 if not incrementing:
1678 if not incrementing:
1679 fstate = fstate.items()
1679 fstate = fstate.items()
1680 fstate.sort()
1680 fstate.sort()
1681 for fn, state in fstate:
1681 for fn, state in fstate:
1682 if fn in skip:
1682 if fn in skip:
1683 continue
1683 continue
1684 display(fn, rev, {}, state)
1684 display(fn, rev, {}, state)
1685 return (count == 0 and 1) or 0
1685 return (count == 0 and 1) or 0
1686
1686
1687 def heads(ui, repo, **opts):
1687 def heads(ui, repo, **opts):
1688 """show current repository heads
1688 """show current repository heads
1689
1689
1690 Show all repository head changesets.
1690 Show all repository head changesets.
1691
1691
1692 Repository "heads" are changesets that don't have children
1692 Repository "heads" are changesets that don't have children
1693 changesets. They are where development generally takes place and
1693 changesets. They are where development generally takes place and
1694 are the usual targets for update and merge operations.
1694 are the usual targets for update and merge operations.
1695 """
1695 """
1696 if opts['rev']:
1696 if opts['rev']:
1697 heads = repo.heads(repo.lookup(opts['rev']))
1697 heads = repo.heads(repo.lookup(opts['rev']))
1698 else:
1698 else:
1699 heads = repo.heads()
1699 heads = repo.heads()
1700 br = None
1700 br = None
1701 if opts['branches']:
1701 if opts['branches']:
1702 br = repo.branchlookup(heads)
1702 br = repo.branchlookup(heads)
1703 displayer = show_changeset(ui, repo, opts)
1703 displayer = show_changeset(ui, repo, opts)
1704 for n in heads:
1704 for n in heads:
1705 displayer.show(changenode=n, brinfo=br)
1705 displayer.show(changenode=n, brinfo=br)
1706
1706
1707 def identify(ui, repo):
1707 def identify(ui, repo):
1708 """print information about the working copy
1708 """print information about the working copy
1709
1709
1710 Print a short summary of the current state of the repo.
1710 Print a short summary of the current state of the repo.
1711
1711
1712 This summary identifies the repository state using one or two parent
1712 This summary identifies the repository state using one or two parent
1713 hash identifiers, followed by a "+" if there are uncommitted changes
1713 hash identifiers, followed by a "+" if there are uncommitted changes
1714 in the working directory, followed by a list of tags for this revision.
1714 in the working directory, followed by a list of tags for this revision.
1715 """
1715 """
1716 parents = [p for p in repo.dirstate.parents() if p != nullid]
1716 parents = [p for p in repo.dirstate.parents() if p != nullid]
1717 if not parents:
1717 if not parents:
1718 ui.write(_("unknown\n"))
1718 ui.write(_("unknown\n"))
1719 return
1719 return
1720
1720
1721 hexfunc = ui.verbose and hex or short
1721 hexfunc = ui.verbose and hex or short
1722 modified, added, removed, deleted, unknown = repo.changes()
1722 modified, added, removed, deleted, unknown = repo.changes()
1723 output = ["%s%s" %
1723 output = ["%s%s" %
1724 ('+'.join([hexfunc(parent) for parent in parents]),
1724 ('+'.join([hexfunc(parent) for parent in parents]),
1725 (modified or added or removed or deleted) and "+" or "")]
1725 (modified or added or removed or deleted) and "+" or "")]
1726
1726
1727 if not ui.quiet:
1727 if not ui.quiet:
1728 # multiple tags for a single parent separated by '/'
1728 # multiple tags for a single parent separated by '/'
1729 parenttags = ['/'.join(tags)
1729 parenttags = ['/'.join(tags)
1730 for tags in map(repo.nodetags, parents) if tags]
1730 for tags in map(repo.nodetags, parents) if tags]
1731 # tags for multiple parents separated by ' + '
1731 # tags for multiple parents separated by ' + '
1732 if parenttags:
1732 if parenttags:
1733 output.append(' + '.join(parenttags))
1733 output.append(' + '.join(parenttags))
1734
1734
1735 ui.write("%s\n" % ' '.join(output))
1735 ui.write("%s\n" % ' '.join(output))
1736
1736
1737 def import_(ui, repo, patch1, *patches, **opts):
1737 def import_(ui, repo, patch1, *patches, **opts):
1738 """import an ordered set of patches
1738 """import an ordered set of patches
1739
1739
1740 Import a list of patches and commit them individually.
1740 Import a list of patches and commit them individually.
1741
1741
1742 If there are outstanding changes in the working directory, import
1742 If there are outstanding changes in the working directory, import
1743 will abort unless given the -f flag.
1743 will abort unless given the -f flag.
1744
1744
1745 If a patch looks like a mail message (its first line starts with
1745 If a patch looks like a mail message (its first line starts with
1746 "From " or looks like an RFC822 header), it will not be applied
1746 "From " or looks like an RFC822 header), it will not be applied
1747 unless the -f option is used. The importer neither parses nor
1747 unless the -f option is used. The importer neither parses nor
1748 discards mail headers, so use -f only to override the "mailness"
1748 discards mail headers, so use -f only to override the "mailness"
1749 safety check, not to import a real mail message.
1749 safety check, not to import a real mail message.
1750 """
1750 """
1751 patches = (patch1,) + patches
1751 patches = (patch1,) + patches
1752
1752
1753 if not opts['force']:
1753 if not opts['force']:
1754 modified, added, removed, deleted, unknown = repo.changes()
1754 modified, added, removed, deleted, unknown = repo.changes()
1755 if modified or added or removed or deleted:
1755 if modified or added or removed or deleted:
1756 raise util.Abort(_("outstanding uncommitted changes"))
1756 raise util.Abort(_("outstanding uncommitted changes"))
1757
1757
1758 d = opts["base"]
1758 d = opts["base"]
1759 strip = opts["strip"]
1759 strip = opts["strip"]
1760
1760
1761 mailre = re.compile(r'(?:From |[\w-]+:)')
1761 mailre = re.compile(r'(?:From |[\w-]+:)')
1762
1762
1763 # attempt to detect the start of a patch
1763 # attempt to detect the start of a patch
1764 # (this heuristic is borrowed from quilt)
1764 # (this heuristic is borrowed from quilt)
1765 diffre = re.compile(r'(?:Index:[ \t]|diff[ \t]|RCS file: |' +
1765 diffre = re.compile(r'(?:Index:[ \t]|diff[ \t]|RCS file: |' +
1766 'retrieving revision [0-9]+(\.[0-9]+)*$|' +
1766 'retrieving revision [0-9]+(\.[0-9]+)*$|' +
1767 '(---|\*\*\*)[ \t])')
1767 '(---|\*\*\*)[ \t])')
1768
1768
1769 for patch in patches:
1769 for patch in patches:
1770 ui.status(_("applying %s\n") % patch)
1770 ui.status(_("applying %s\n") % patch)
1771 pf = os.path.join(d, patch)
1771 pf = os.path.join(d, patch)
1772
1772
1773 message = []
1773 message = []
1774 user = None
1774 user = None
1775 hgpatch = False
1775 hgpatch = False
1776 for line in file(pf):
1776 for line in file(pf):
1777 line = line.rstrip()
1777 line = line.rstrip()
1778 if (not message and not hgpatch and
1778 if (not message and not hgpatch and
1779 mailre.match(line) and not opts['force']):
1779 mailre.match(line) and not opts['force']):
1780 if len(line) > 35:
1780 if len(line) > 35:
1781 line = line[:32] + '...'
1781 line = line[:32] + '...'
1782 raise util.Abort(_('first line looks like a '
1782 raise util.Abort(_('first line looks like a '
1783 'mail header: ') + line)
1783 'mail header: ') + line)
1784 if diffre.match(line):
1784 if diffre.match(line):
1785 break
1785 break
1786 elif hgpatch:
1786 elif hgpatch:
1787 # parse values when importing the result of an hg export
1787 # parse values when importing the result of an hg export
1788 if line.startswith("# User "):
1788 if line.startswith("# User "):
1789 user = line[7:]
1789 user = line[7:]
1790 ui.debug(_('User: %s\n') % user)
1790 ui.debug(_('User: %s\n') % user)
1791 elif not line.startswith("# ") and line:
1791 elif not line.startswith("# ") and line:
1792 message.append(line)
1792 message.append(line)
1793 hgpatch = False
1793 hgpatch = False
1794 elif line == '# HG changeset patch':
1794 elif line == '# HG changeset patch':
1795 hgpatch = True
1795 hgpatch = True
1796 message = [] # We may have collected garbage
1796 message = [] # We may have collected garbage
1797 else:
1797 else:
1798 message.append(line)
1798 message.append(line)
1799
1799
1800 # make sure message isn't empty
1800 # make sure message isn't empty
1801 if not message:
1801 if not message:
1802 message = _("imported patch %s\n") % patch
1802 message = _("imported patch %s\n") % patch
1803 else:
1803 else:
1804 message = "%s\n" % '\n'.join(message)
1804 message = "%s\n" % '\n'.join(message)
1805 ui.debug(_('message:\n%s\n') % message)
1805 ui.debug(_('message:\n%s\n') % message)
1806
1806
1807 files = util.patch(strip, pf, ui)
1807 files = util.patch(strip, pf, ui)
1808
1808
1809 if len(files) > 0:
1809 if len(files) > 0:
1810 addremove(ui, repo, *files)
1810 addremove(ui, repo, *files)
1811 repo.commit(files, message, user)
1811 repo.commit(files, message, user)
1812
1812
1813 def incoming(ui, repo, source="default", **opts):
1813 def incoming(ui, repo, source="default", **opts):
1814 """show new changesets found in source
1814 """show new changesets found in source
1815
1815
1816 Show new changesets found in the specified path/URL or the default
1816 Show new changesets found in the specified path/URL or the default
1817 pull location. These are the changesets that would be pulled if a pull
1817 pull location. These are the changesets that would be pulled if a pull
1818 was requested.
1818 was requested.
1819
1819
1820 For remote repository, using --bundle avoids downloading the changesets
1820 For remote repository, using --bundle avoids downloading the changesets
1821 twice if the incoming is followed by a pull.
1821 twice if the incoming is followed by a pull.
1822
1822
1823 See pull for valid source format details.
1823 See pull for valid source format details.
1824 """
1824 """
1825 source = ui.expandpath(source)
1825 source = ui.expandpath(source)
1826 if opts['ssh']:
1826 if opts['ssh']:
1827 ui.setconfig("ui", "ssh", opts['ssh'])
1827 ui.setconfig("ui", "ssh", opts['ssh'])
1828 if opts['remotecmd']:
1828 if opts['remotecmd']:
1829 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1829 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1830
1830
1831 other = hg.repository(ui, source)
1831 other = hg.repository(ui, source)
1832 incoming = repo.findincoming(other, force=opts["force"])
1832 incoming = repo.findincoming(other, force=opts["force"])
1833 if not incoming:
1833 if not incoming:
1834 ui.status(_("no changes found\n"))
1834 ui.status(_("no changes found\n"))
1835 return
1835 return
1836
1836
1837 cleanup = None
1837 cleanup = None
1838 try:
1838 try:
1839 fname = opts["bundle"]
1839 fname = opts["bundle"]
1840 if fname or not other.local():
1840 if fname or not other.local():
1841 # create a bundle (uncompressed if other repo is not local)
1841 # create a bundle (uncompressed if other repo is not local)
1842 cg = other.changegroup(incoming, "incoming")
1842 cg = other.changegroup(incoming, "incoming")
1843 fname = cleanup = write_bundle(cg, fname, compress=other.local())
1843 fname = cleanup = write_bundle(cg, fname, compress=other.local())
1844 # keep written bundle?
1844 # keep written bundle?
1845 if opts["bundle"]:
1845 if opts["bundle"]:
1846 cleanup = None
1846 cleanup = None
1847 if not other.local():
1847 if not other.local():
1848 # use the created uncompressed bundlerepo
1848 # use the created uncompressed bundlerepo
1849 other = bundlerepo.bundlerepository(ui, repo.root, fname)
1849 other = bundlerepo.bundlerepository(ui, repo.root, fname)
1850
1850
1851 o = other.changelog.nodesbetween(incoming)[0]
1851 o = other.changelog.nodesbetween(incoming)[0]
1852 if opts['newest_first']:
1852 if opts['newest_first']:
1853 o.reverse()
1853 o.reverse()
1854 displayer = show_changeset(ui, other, opts)
1854 displayer = show_changeset(ui, other, opts)
1855 for n in o:
1855 for n in o:
1856 parents = [p for p in other.changelog.parents(n) if p != nullid]
1856 parents = [p for p in other.changelog.parents(n) if p != nullid]
1857 if opts['no_merges'] and len(parents) == 2:
1857 if opts['no_merges'] and len(parents) == 2:
1858 continue
1858 continue
1859 displayer.show(changenode=n)
1859 displayer.show(changenode=n)
1860 if opts['patch']:
1860 if opts['patch']:
1861 prev = (parents and parents[0]) or nullid
1861 prev = (parents and parents[0]) or nullid
1862 dodiff(ui, ui, other, prev, n)
1862 dodiff(ui, ui, other, prev, n)
1863 ui.write("\n")
1863 ui.write("\n")
1864 finally:
1864 finally:
1865 if hasattr(other, 'close'):
1865 if hasattr(other, 'close'):
1866 other.close()
1866 other.close()
1867 if cleanup:
1867 if cleanup:
1868 os.unlink(cleanup)
1868 os.unlink(cleanup)
1869
1869
1870 def init(ui, dest="."):
1870 def init(ui, dest="."):
1871 """create a new repository in the given directory
1871 """create a new repository in the given directory
1872
1872
1873 Initialize a new repository in the given directory. If the given
1873 Initialize a new repository in the given directory. If the given
1874 directory does not exist, it is created.
1874 directory does not exist, it is created.
1875
1875
1876 If no directory is given, the current directory is used.
1876 If no directory is given, the current directory is used.
1877 """
1877 """
1878 if not os.path.exists(dest):
1878 if not os.path.exists(dest):
1879 os.mkdir(dest)
1879 os.mkdir(dest)
1880 hg.repository(ui, dest, create=1)
1880 hg.repository(ui, dest, create=1)
1881
1881
1882 def locate(ui, repo, *pats, **opts):
1882 def locate(ui, repo, *pats, **opts):
1883 """locate files matching specific patterns
1883 """locate files matching specific patterns
1884
1884
1885 Print all files under Mercurial control whose names match the
1885 Print all files under Mercurial control whose names match the
1886 given patterns.
1886 given patterns.
1887
1887
1888 This command searches the current directory and its
1888 This command searches the current directory and its
1889 subdirectories. To search an entire repository, move to the root
1889 subdirectories. To search an entire repository, move to the root
1890 of the repository.
1890 of the repository.
1891
1891
1892 If no patterns are given to match, this command prints all file
1892 If no patterns are given to match, this command prints all file
1893 names.
1893 names.
1894
1894
1895 If you want to feed the output of this command into the "xargs"
1895 If you want to feed the output of this command into the "xargs"
1896 command, use the "-0" option to both this command and "xargs".
1896 command, use the "-0" option to both this command and "xargs".
1897 This will avoid the problem of "xargs" treating single filenames
1897 This will avoid the problem of "xargs" treating single filenames
1898 that contain white space as multiple filenames.
1898 that contain white space as multiple filenames.
1899 """
1899 """
1900 end = opts['print0'] and '\0' or '\n'
1900 end = opts['print0'] and '\0' or '\n'
1901 rev = opts['rev']
1901 rev = opts['rev']
1902 if rev:
1902 if rev:
1903 node = repo.lookup(rev)
1903 node = repo.lookup(rev)
1904 else:
1904 else:
1905 node = None
1905 node = None
1906
1906
1907 for src, abs, rel, exact in walk(repo, pats, opts, node=node,
1907 for src, abs, rel, exact in walk(repo, pats, opts, node=node,
1908 head='(?:.*/|)'):
1908 head='(?:.*/|)'):
1909 if not node and repo.dirstate.state(abs) == '?':
1909 if not node and repo.dirstate.state(abs) == '?':
1910 continue
1910 continue
1911 if opts['fullpath']:
1911 if opts['fullpath']:
1912 ui.write(os.path.join(repo.root, abs), end)
1912 ui.write(os.path.join(repo.root, abs), end)
1913 else:
1913 else:
1914 ui.write(((pats and rel) or abs), end)
1914 ui.write(((pats and rel) or abs), end)
1915
1915
1916 def log(ui, repo, *pats, **opts):
1916 def log(ui, repo, *pats, **opts):
1917 """show revision history of entire repository or files
1917 """show revision history of entire repository or files
1918
1918
1919 Print the revision history of the specified files or the entire project.
1919 Print the revision history of the specified files or the entire project.
1920
1920
1921 By default this command outputs: changeset id and hash, tags,
1921 By default this command outputs: changeset id and hash, tags,
1922 non-trivial parents, user, date and time, and a summary for each
1922 non-trivial parents, user, date and time, and a summary for each
1923 commit. When the -v/--verbose switch is used, the list of changed
1923 commit. When the -v/--verbose switch is used, the list of changed
1924 files and full commit message is shown.
1924 files and full commit message is shown.
1925 """
1925 """
1926 class dui(object):
1926 class dui(object):
1927 # Implement and delegate some ui protocol. Save hunks of
1927 # Implement and delegate some ui protocol. Save hunks of
1928 # output for later display in the desired order.
1928 # output for later display in the desired order.
1929 def __init__(self, ui):
1929 def __init__(self, ui):
1930 self.ui = ui
1930 self.ui = ui
1931 self.hunk = {}
1931 self.hunk = {}
1932 self.header = {}
1932 self.header = {}
1933 def bump(self, rev):
1933 def bump(self, rev):
1934 self.rev = rev
1934 self.rev = rev
1935 self.hunk[rev] = []
1935 self.hunk[rev] = []
1936 self.header[rev] = []
1936 self.header[rev] = []
1937 def note(self, *args):
1937 def note(self, *args):
1938 if self.verbose:
1938 if self.verbose:
1939 self.write(*args)
1939 self.write(*args)
1940 def status(self, *args):
1940 def status(self, *args):
1941 if not self.quiet:
1941 if not self.quiet:
1942 self.write(*args)
1942 self.write(*args)
1943 def write(self, *args):
1943 def write(self, *args):
1944 self.hunk[self.rev].append(args)
1944 self.hunk[self.rev].append(args)
1945 def write_header(self, *args):
1945 def write_header(self, *args):
1946 self.header[self.rev].append(args)
1946 self.header[self.rev].append(args)
1947 def debug(self, *args):
1947 def debug(self, *args):
1948 if self.debugflag:
1948 if self.debugflag:
1949 self.write(*args)
1949 self.write(*args)
1950 def __getattr__(self, key):
1950 def __getattr__(self, key):
1951 return getattr(self.ui, key)
1951 return getattr(self.ui, key)
1952
1952
1953 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1953 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1954
1954
1955 if opts['limit']:
1955 if opts['limit']:
1956 try:
1956 try:
1957 limit = int(opts['limit'])
1957 limit = int(opts['limit'])
1958 except ValueError:
1958 except ValueError:
1959 raise util.Abort(_('limit must be a positive integer'))
1959 raise util.Abort(_('limit must be a positive integer'))
1960 if limit <= 0: raise util.Abort(_('limit must be positive'))
1960 if limit <= 0: raise util.Abort(_('limit must be positive'))
1961 else:
1961 else:
1962 limit = sys.maxint
1962 limit = sys.maxint
1963 count = 0
1963 count = 0
1964
1964
1965 displayer = show_changeset(ui, repo, opts)
1965 displayer = show_changeset(ui, repo, opts)
1966 for st, rev, fns in changeiter:
1966 for st, rev, fns in changeiter:
1967 if st == 'window':
1967 if st == 'window':
1968 du = dui(ui)
1968 du = dui(ui)
1969 displayer.ui = du
1969 displayer.ui = du
1970 elif st == 'add':
1970 elif st == 'add':
1971 du.bump(rev)
1971 du.bump(rev)
1972 changenode = repo.changelog.node(rev)
1972 changenode = repo.changelog.node(rev)
1973 parents = [p for p in repo.changelog.parents(changenode)
1973 parents = [p for p in repo.changelog.parents(changenode)
1974 if p != nullid]
1974 if p != nullid]
1975 if opts['no_merges'] and len(parents) == 2:
1975 if opts['no_merges'] and len(parents) == 2:
1976 continue
1976 continue
1977 if opts['only_merges'] and len(parents) != 2:
1977 if opts['only_merges'] and len(parents) != 2:
1978 continue
1978 continue
1979
1979
1980 if opts['keyword']:
1980 if opts['keyword']:
1981 changes = getchange(rev)
1981 changes = getchange(rev)
1982 miss = 0
1982 miss = 0
1983 for k in [kw.lower() for kw in opts['keyword']]:
1983 for k in [kw.lower() for kw in opts['keyword']]:
1984 if not (k in changes[1].lower() or
1984 if not (k in changes[1].lower() or
1985 k in changes[4].lower() or
1985 k in changes[4].lower() or
1986 k in " ".join(changes[3][:20]).lower()):
1986 k in " ".join(changes[3][:20]).lower()):
1987 miss = 1
1987 miss = 1
1988 break
1988 break
1989 if miss:
1989 if miss:
1990 continue
1990 continue
1991
1991
1992 br = None
1992 br = None
1993 if opts['branches']:
1993 if opts['branches']:
1994 br = repo.branchlookup([repo.changelog.node(rev)])
1994 br = repo.branchlookup([repo.changelog.node(rev)])
1995
1995
1996 displayer.show(rev, brinfo=br)
1996 displayer.show(rev, brinfo=br)
1997 if opts['patch']:
1997 if opts['patch']:
1998 prev = (parents and parents[0]) or nullid
1998 prev = (parents and parents[0]) or nullid
1999 dodiff(du, du, repo, prev, changenode, match=matchfn)
1999 dodiff(du, du, repo, prev, changenode, match=matchfn)
2000 du.write("\n\n")
2000 du.write("\n\n")
2001 elif st == 'iter':
2001 elif st == 'iter':
2002 if count == limit: break
2002 if count == limit: break
2003 if du.header[rev]:
2003 if du.header[rev]:
2004 for args in du.header[rev]:
2004 for args in du.header[rev]:
2005 ui.write_header(*args)
2005 ui.write_header(*args)
2006 if du.hunk[rev]:
2006 if du.hunk[rev]:
2007 count += 1
2007 count += 1
2008 for args in du.hunk[rev]:
2008 for args in du.hunk[rev]:
2009 ui.write(*args)
2009 ui.write(*args)
2010
2010
2011 def manifest(ui, repo, rev=None):
2011 def manifest(ui, repo, rev=None):
2012 """output the latest or given revision of the project manifest
2012 """output the latest or given revision of the project manifest
2013
2013
2014 Print a list of version controlled files for the given revision.
2014 Print a list of version controlled files for the given revision.
2015
2015
2016 The manifest is the list of files being version controlled. If no revision
2016 The manifest is the list of files being version controlled. If no revision
2017 is given then the tip is used.
2017 is given then the tip is used.
2018 """
2018 """
2019 if rev:
2019 if rev:
2020 try:
2020 try:
2021 # assume all revision numbers are for changesets
2021 # assume all revision numbers are for changesets
2022 n = repo.lookup(rev)
2022 n = repo.lookup(rev)
2023 change = repo.changelog.read(n)
2023 change = repo.changelog.read(n)
2024 n = change[0]
2024 n = change[0]
2025 except hg.RepoError:
2025 except hg.RepoError:
2026 n = repo.manifest.lookup(rev)
2026 n = repo.manifest.lookup(rev)
2027 else:
2027 else:
2028 n = repo.manifest.tip()
2028 n = repo.manifest.tip()
2029 m = repo.manifest.read(n)
2029 m = repo.manifest.read(n)
2030 mf = repo.manifest.readflags(n)
2030 mf = repo.manifest.readflags(n)
2031 files = m.keys()
2031 files = m.keys()
2032 files.sort()
2032 files.sort()
2033
2033
2034 for f in files:
2034 for f in files:
2035 ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f))
2035 ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f))
2036
2036
2037 def merge(ui, repo, node=None, **opts):
2037 def merge(ui, repo, node=None, **opts):
2038 """Merge working directory with another revision
2038 """Merge working directory with another revision
2039
2039
2040 Merge the contents of the current working directory and the
2040 Merge the contents of the current working directory and the
2041 requested revision. Files that changed between either parent are
2041 requested revision. Files that changed between either parent are
2042 marked as changed for the next commit and a commit must be
2042 marked as changed for the next commit and a commit must be
2043 performed before any further updates are allowed.
2043 performed before any further updates are allowed.
2044 """
2044 """
2045 return update(ui, repo, node=node, merge=True, **opts)
2045 return update(ui, repo, node=node, merge=True, **opts)
2046
2046
2047 def outgoing(ui, repo, dest="default-push", **opts):
2047 def outgoing(ui, repo, dest="default-push", **opts):
2048 """show changesets not found in destination
2048 """show changesets not found in destination
2049
2049
2050 Show changesets not found in the specified destination repository or
2050 Show changesets not found in the specified destination repository or
2051 the default push location. These are the changesets that would be pushed
2051 the default push location. These are the changesets that would be pushed
2052 if a push was requested.
2052 if a push was requested.
2053
2053
2054 See pull for valid destination format details.
2054 See pull for valid destination format details.
2055 """
2055 """
2056 dest = ui.expandpath(dest)
2056 dest = ui.expandpath(dest)
2057 if opts['ssh']:
2057 if opts['ssh']:
2058 ui.setconfig("ui", "ssh", opts['ssh'])
2058 ui.setconfig("ui", "ssh", opts['ssh'])
2059 if opts['remotecmd']:
2059 if opts['remotecmd']:
2060 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
2060 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
2061
2061
2062 other = hg.repository(ui, dest)
2062 other = hg.repository(ui, dest)
2063 o = repo.findoutgoing(other, force=opts['force'])
2063 o = repo.findoutgoing(other, force=opts['force'])
2064 if not o:
2064 if not o:
2065 ui.status(_("no changes found\n"))
2065 ui.status(_("no changes found\n"))
2066 return
2066 return
2067 o = repo.changelog.nodesbetween(o)[0]
2067 o = repo.changelog.nodesbetween(o)[0]
2068 if opts['newest_first']:
2068 if opts['newest_first']:
2069 o.reverse()
2069 o.reverse()
2070 displayer = show_changeset(ui, repo, opts)
2070 displayer = show_changeset(ui, repo, opts)
2071 for n in o:
2071 for n in o:
2072 parents = [p for p in repo.changelog.parents(n) if p != nullid]
2072 parents = [p for p in repo.changelog.parents(n) if p != nullid]
2073 if opts['no_merges'] and len(parents) == 2:
2073 if opts['no_merges'] and len(parents) == 2:
2074 continue
2074 continue
2075 displayer.show(changenode=n)
2075 displayer.show(changenode=n)
2076 if opts['patch']:
2076 if opts['patch']:
2077 prev = (parents and parents[0]) or nullid
2077 prev = (parents and parents[0]) or nullid
2078 dodiff(ui, ui, repo, prev, n)
2078 dodiff(ui, ui, repo, prev, n)
2079 ui.write("\n")
2079 ui.write("\n")
2080
2080
2081 def parents(ui, repo, rev=None, branches=None, **opts):
2081 def parents(ui, repo, rev=None, branches=None, **opts):
2082 """show the parents of the working dir or revision
2082 """show the parents of the working dir or revision
2083
2083
2084 Print the working directory's parent revisions.
2084 Print the working directory's parent revisions.
2085 """
2085 """
2086 if rev:
2086 if rev:
2087 p = repo.changelog.parents(repo.lookup(rev))
2087 p = repo.changelog.parents(repo.lookup(rev))
2088 else:
2088 else:
2089 p = repo.dirstate.parents()
2089 p = repo.dirstate.parents()
2090
2090
2091 br = None
2091 br = None
2092 if branches is not None:
2092 if branches is not None:
2093 br = repo.branchlookup(p)
2093 br = repo.branchlookup(p)
2094 displayer = show_changeset(ui, repo, opts)
2094 displayer = show_changeset(ui, repo, opts)
2095 for n in p:
2095 for n in p:
2096 if n != nullid:
2096 if n != nullid:
2097 displayer.show(changenode=n, brinfo=br)
2097 displayer.show(changenode=n, brinfo=br)
2098
2098
2099 def paths(ui, repo, search=None):
2099 def paths(ui, repo, search=None):
2100 """show definition of symbolic path names
2100 """show definition of symbolic path names
2101
2101
2102 Show definition of symbolic path name NAME. If no name is given, show
2102 Show definition of symbolic path name NAME. If no name is given, show
2103 definition of available names.
2103 definition of available names.
2104
2104
2105 Path names are defined in the [paths] section of /etc/mercurial/hgrc
2105 Path names are defined in the [paths] section of /etc/mercurial/hgrc
2106 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
2106 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
2107 """
2107 """
2108 if search:
2108 if search:
2109 for name, path in ui.configitems("paths"):
2109 for name, path in ui.configitems("paths"):
2110 if name == search:
2110 if name == search:
2111 ui.write("%s\n" % path)
2111 ui.write("%s\n" % path)
2112 return
2112 return
2113 ui.warn(_("not found!\n"))
2113 ui.warn(_("not found!\n"))
2114 return 1
2114 return 1
2115 else:
2115 else:
2116 for name, path in ui.configitems("paths"):
2116 for name, path in ui.configitems("paths"):
2117 ui.write("%s = %s\n" % (name, path))
2117 ui.write("%s = %s\n" % (name, path))
2118
2118
2119 def postincoming(ui, repo, modheads, optupdate):
2119 def postincoming(ui, repo, modheads, optupdate):
2120 if modheads == 0:
2120 if modheads == 0:
2121 return
2121 return
2122 if optupdate:
2122 if optupdate:
2123 if modheads == 1:
2123 if modheads == 1:
2124 return update(ui, repo)
2124 return update(ui, repo)
2125 else:
2125 else:
2126 ui.status(_("not updating, since new heads added\n"))
2126 ui.status(_("not updating, since new heads added\n"))
2127 if modheads > 1:
2127 if modheads > 1:
2128 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
2128 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
2129 else:
2129 else:
2130 ui.status(_("(run 'hg update' to get a working copy)\n"))
2130 ui.status(_("(run 'hg update' to get a working copy)\n"))
2131
2131
2132 def pull(ui, repo, source="default", **opts):
2132 def pull(ui, repo, source="default", **opts):
2133 """pull changes from the specified source
2133 """pull changes from the specified source
2134
2134
2135 Pull changes from a remote repository to a local one.
2135 Pull changes from a remote repository to a local one.
2136
2136
2137 This finds all changes from the repository at the specified path
2137 This finds all changes from the repository at the specified path
2138 or URL and adds them to the local repository. By default, this
2138 or URL and adds them to the local repository. By default, this
2139 does not update the copy of the project in the working directory.
2139 does not update the copy of the project in the working directory.
2140
2140
2141 Valid URLs are of the form:
2141 Valid URLs are of the form:
2142
2142
2143 local/filesystem/path
2143 local/filesystem/path
2144 http://[user@]host[:port][/path]
2144 http://[user@]host[:port][/path]
2145 https://[user@]host[:port][/path]
2145 https://[user@]host[:port][/path]
2146 ssh://[user@]host[:port][/path]
2146 ssh://[user@]host[:port][/path]
2147
2147
2148 Some notes about using SSH with Mercurial:
2148 Some notes about using SSH with Mercurial:
2149 - SSH requires an accessible shell account on the destination machine
2149 - SSH requires an accessible shell account on the destination machine
2150 and a copy of hg in the remote path or specified with as remotecmd.
2150 and a copy of hg in the remote path or specified with as remotecmd.
2151 - /path is relative to the remote user's home directory by default.
2151 - /path is relative to the remote user's home directory by default.
2152 Use two slashes at the start of a path to specify an absolute path.
2152 Use two slashes at the start of a path to specify an absolute path.
2153 - Mercurial doesn't use its own compression via SSH; the right thing
2153 - Mercurial doesn't use its own compression via SSH; the right thing
2154 to do is to configure it in your ~/.ssh/ssh_config, e.g.:
2154 to do is to configure it in your ~/.ssh/ssh_config, e.g.:
2155 Host *.mylocalnetwork.example.com
2155 Host *.mylocalnetwork.example.com
2156 Compression off
2156 Compression off
2157 Host *
2157 Host *
2158 Compression on
2158 Compression on
2159 Alternatively specify "ssh -C" as your ssh command in your hgrc or
2159 Alternatively specify "ssh -C" as your ssh command in your hgrc or
2160 with the --ssh command line option.
2160 with the --ssh command line option.
2161 """
2161 """
2162 source = ui.expandpath(source)
2162 source = ui.expandpath(source)
2163 ui.status(_('pulling from %s\n') % (source))
2163 ui.status(_('pulling from %s\n') % (source))
2164
2164
2165 if opts['ssh']:
2165 if opts['ssh']:
2166 ui.setconfig("ui", "ssh", opts['ssh'])
2166 ui.setconfig("ui", "ssh", opts['ssh'])
2167 if opts['remotecmd']:
2167 if opts['remotecmd']:
2168 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
2168 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
2169
2169
2170 other = hg.repository(ui, source)
2170 other = hg.repository(ui, source)
2171 revs = None
2171 revs = None
2172 if opts['rev'] and not other.local():
2172 if opts['rev'] and not other.local():
2173 raise util.Abort(_("pull -r doesn't work for remote repositories yet"))
2173 raise util.Abort(_("pull -r doesn't work for remote repositories yet"))
2174 elif opts['rev']:
2174 elif opts['rev']:
2175 revs = [other.lookup(rev) for rev in opts['rev']]
2175 revs = [other.lookup(rev) for rev in opts['rev']]
2176 modheads = repo.pull(other, heads=revs, force=opts['force'])
2176 modheads = repo.pull(other, heads=revs, force=opts['force'])
2177 return postincoming(ui, repo, modheads, opts['update'])
2177 return postincoming(ui, repo, modheads, opts['update'])
2178
2178
2179 def push(ui, repo, dest="default-push", **opts):
2179 def push(ui, repo, dest="default-push", **opts):
2180 """push changes to the specified destination
2180 """push changes to the specified destination
2181
2181
2182 Push changes from the local repository to the given destination.
2182 Push changes from the local repository to the given destination.
2183
2183
2184 This is the symmetrical operation for pull. It helps to move
2184 This is the symmetrical operation for pull. It helps to move
2185 changes from the current repository to a different one. If the
2185 changes from the current repository to a different one. If the
2186 destination is local this is identical to a pull in that directory
2186 destination is local this is identical to a pull in that directory
2187 from the current one.
2187 from the current one.
2188
2188
2189 By default, push will refuse to run if it detects the result would
2189 By default, push will refuse to run if it detects the result would
2190 increase the number of remote heads. This generally indicates the
2190 increase the number of remote heads. This generally indicates the
2191 the client has forgotten to sync and merge before pushing.
2191 the client has forgotten to sync and merge before pushing.
2192
2192
2193 Valid URLs are of the form:
2193 Valid URLs are of the form:
2194
2194
2195 local/filesystem/path
2195 local/filesystem/path
2196 ssh://[user@]host[:port][/path]
2196 ssh://[user@]host[:port][/path]
2197
2197
2198 Look at the help text for the pull command for important details
2198 Look at the help text for the pull command for important details
2199 about ssh:// URLs.
2199 about ssh:// URLs.
2200 """
2200 """
2201 dest = ui.expandpath(dest)
2201 dest = ui.expandpath(dest)
2202 ui.status('pushing to %s\n' % (dest))
2202 ui.status('pushing to %s\n' % (dest))
2203
2203
2204 if opts['ssh']:
2204 if opts['ssh']:
2205 ui.setconfig("ui", "ssh", opts['ssh'])
2205 ui.setconfig("ui", "ssh", opts['ssh'])
2206 if opts['remotecmd']:
2206 if opts['remotecmd']:
2207 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
2207 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
2208
2208
2209 other = hg.repository(ui, dest)
2209 other = hg.repository(ui, dest)
2210 revs = None
2210 revs = None
2211 if opts['rev']:
2211 if opts['rev']:
2212 revs = [repo.lookup(rev) for rev in opts['rev']]
2212 revs = [repo.lookup(rev) for rev in opts['rev']]
2213 r = repo.push(other, opts['force'], revs=revs)
2213 r = repo.push(other, opts['force'], revs=revs)
2214 return r == 0
2214 return r == 0
2215
2215
2216 def rawcommit(ui, repo, *flist, **rc):
2216 def rawcommit(ui, repo, *flist, **rc):
2217 """raw commit interface (DEPRECATED)
2217 """raw commit interface (DEPRECATED)
2218
2218
2219 (DEPRECATED)
2219 (DEPRECATED)
2220 Lowlevel commit, for use in helper scripts.
2220 Lowlevel commit, for use in helper scripts.
2221
2221
2222 This command is not intended to be used by normal users, as it is
2222 This command is not intended to be used by normal users, as it is
2223 primarily useful for importing from other SCMs.
2223 primarily useful for importing from other SCMs.
2224
2224
2225 This command is now deprecated and will be removed in a future
2225 This command is now deprecated and will be removed in a future
2226 release, please use debugsetparents and commit instead.
2226 release, please use debugsetparents and commit instead.
2227 """
2227 """
2228
2228
2229 ui.warn(_("(the rawcommit command is deprecated)\n"))
2229 ui.warn(_("(the rawcommit command is deprecated)\n"))
2230
2230
2231 message = rc['message']
2231 message = rc['message']
2232 if not message and rc['logfile']:
2232 if not message and rc['logfile']:
2233 try:
2233 try:
2234 message = open(rc['logfile']).read()
2234 message = open(rc['logfile']).read()
2235 except IOError:
2235 except IOError:
2236 pass
2236 pass
2237 if not message and not rc['logfile']:
2237 if not message and not rc['logfile']:
2238 raise util.Abort(_("missing commit message"))
2238 raise util.Abort(_("missing commit message"))
2239
2239
2240 files = relpath(repo, list(flist))
2240 files = relpath(repo, list(flist))
2241 if rc['files']:
2241 if rc['files']:
2242 files += open(rc['files']).read().splitlines()
2242 files += open(rc['files']).read().splitlines()
2243
2243
2244 rc['parent'] = map(repo.lookup, rc['parent'])
2244 rc['parent'] = map(repo.lookup, rc['parent'])
2245
2245
2246 try:
2246 try:
2247 repo.rawcommit(files, message, rc['user'], rc['date'], *rc['parent'])
2247 repo.rawcommit(files, message, rc['user'], rc['date'], *rc['parent'])
2248 except ValueError, inst:
2248 except ValueError, inst:
2249 raise util.Abort(str(inst))
2249 raise util.Abort(str(inst))
2250
2250
2251 def recover(ui, repo):
2251 def recover(ui, repo):
2252 """roll back an interrupted transaction
2252 """roll back an interrupted transaction
2253
2253
2254 Recover from an interrupted commit or pull.
2254 Recover from an interrupted commit or pull.
2255
2255
2256 This command tries to fix the repository status after an interrupted
2256 This command tries to fix the repository status after an interrupted
2257 operation. It should only be necessary when Mercurial suggests it.
2257 operation. It should only be necessary when Mercurial suggests it.
2258 """
2258 """
2259 if repo.recover():
2259 if repo.recover():
2260 return repo.verify()
2260 return repo.verify()
2261 return False
2261 return False
2262
2262
2263 def remove(ui, repo, pat, *pats, **opts):
2263 def remove(ui, repo, pat, *pats, **opts):
2264 """remove the specified files on the next commit
2264 """remove the specified files on the next commit
2265
2265
2266 Schedule the indicated files for removal from the repository.
2266 Schedule the indicated files for removal from the repository.
2267
2267
2268 This command schedules the files to be removed at the next commit.
2268 This command schedules the files to be removed at the next commit.
2269 This only removes files from the current branch, not from the
2269 This only removes files from the current branch, not from the
2270 entire project history. If the files still exist in the working
2270 entire project history. If the files still exist in the working
2271 directory, they will be deleted from it.
2271 directory, they will be deleted from it.
2272 """
2272 """
2273 names = []
2273 names = []
2274 def okaytoremove(abs, rel, exact):
2274 def okaytoremove(abs, rel, exact):
2275 modified, added, removed, deleted, unknown = repo.changes(files=[abs])
2275 modified, added, removed, deleted, unknown = repo.changes(files=[abs])
2276 reason = None
2276 reason = None
2277 if modified and not opts['force']:
2277 if modified and not opts['force']:
2278 reason = _('is modified')
2278 reason = _('is modified')
2279 elif added:
2279 elif added:
2280 reason = _('has been marked for add')
2280 reason = _('has been marked for add')
2281 elif unknown:
2281 elif unknown:
2282 reason = _('is not managed')
2282 reason = _('is not managed')
2283 if reason:
2283 if reason:
2284 if exact:
2284 if exact:
2285 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
2285 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
2286 else:
2286 else:
2287 return True
2287 return True
2288 for src, abs, rel, exact in walk(repo, (pat,) + pats, opts):
2288 for src, abs, rel, exact in walk(repo, (pat,) + pats, opts):
2289 if okaytoremove(abs, rel, exact):
2289 if okaytoremove(abs, rel, exact):
2290 if ui.verbose or not exact:
2290 if ui.verbose or not exact:
2291 ui.status(_('removing %s\n') % rel)
2291 ui.status(_('removing %s\n') % rel)
2292 names.append(abs)
2292 names.append(abs)
2293 repo.remove(names, unlink=True)
2293 repo.remove(names, unlink=True)
2294
2294
2295 def rename(ui, repo, *pats, **opts):
2295 def rename(ui, repo, *pats, **opts):
2296 """rename files; equivalent of copy + remove
2296 """rename files; equivalent of copy + remove
2297
2297
2298 Mark dest as copies of sources; mark sources for deletion. If
2298 Mark dest as copies of sources; mark sources for deletion. If
2299 dest is a directory, copies are put in that directory. If dest is
2299 dest is a directory, copies are put in that directory. If dest is
2300 a file, there can only be one source.
2300 a file, there can only be one source.
2301
2301
2302 By default, this command copies the contents of files as they
2302 By default, this command copies the contents of files as they
2303 stand in the working directory. If invoked with --after, the
2303 stand in the working directory. If invoked with --after, the
2304 operation is recorded, but no copying is performed.
2304 operation is recorded, but no copying is performed.
2305
2305
2306 This command takes effect in the next commit.
2306 This command takes effect in the next commit.
2307
2307
2308 NOTE: This command should be treated as experimental. While it
2308 NOTE: This command should be treated as experimental. While it
2309 should properly record rename files, this information is not yet
2309 should properly record rename files, this information is not yet
2310 fully used by merge, nor fully reported by log.
2310 fully used by merge, nor fully reported by log.
2311 """
2311 """
2312 wlock = repo.wlock(0)
2312 wlock = repo.wlock(0)
2313 errs, copied = docopy(ui, repo, pats, opts, wlock)
2313 errs, copied = docopy(ui, repo, pats, opts, wlock)
2314 names = []
2314 names = []
2315 for abs, rel, exact in copied:
2315 for abs, rel, exact in copied:
2316 if ui.verbose or not exact:
2316 if ui.verbose or not exact:
2317 ui.status(_('removing %s\n') % rel)
2317 ui.status(_('removing %s\n') % rel)
2318 names.append(abs)
2318 names.append(abs)
2319 repo.remove(names, True, wlock)
2319 repo.remove(names, True, wlock)
2320 return errs
2320 return errs
2321
2321
2322 def revert(ui, repo, *pats, **opts):
2322 def revert(ui, repo, *pats, **opts):
2323 """revert modified files or dirs back to their unmodified states
2323 """revert modified files or dirs back to their unmodified states
2324
2324
2325 In its default mode, it reverts any uncommitted modifications made
2325 In its default mode, it reverts any uncommitted modifications made
2326 to the named files or directories. This restores the contents of
2326 to the named files or directories. This restores the contents of
2327 the affected files to an unmodified state.
2327 the affected files to an unmodified state.
2328
2328
2329 Modified files are saved with a .orig suffix before reverting.
2329 Modified files are saved with a .orig suffix before reverting.
2330 To disable these backups, use --no-backup.
2330 To disable these backups, use --no-backup.
2331
2331
2332 Using the -r option, it reverts the given files or directories to
2332 Using the -r option, it reverts the given files or directories to
2333 their state as of an earlier revision. This can be helpful to "roll
2333 their state as of an earlier revision. This can be helpful to "roll
2334 back" some or all of a change that should not have been committed.
2334 back" some or all of a change that should not have been committed.
2335
2335
2336 Revert modifies the working directory. It does not commit any
2336 Revert modifies the working directory. It does not commit any
2337 changes, or change the parent of the current working directory.
2337 changes, or change the parent of the current working directory.
2338
2338
2339 If a file has been deleted, it is recreated. If the executable
2339 If a file has been deleted, it is recreated. If the executable
2340 mode of a file was changed, it is reset.
2340 mode of a file was changed, it is reset.
2341
2341
2342 If names are given, all files matching the names are reverted.
2342 If names are given, all files matching the names are reverted.
2343
2343
2344 If no arguments are given, all files in the repository are reverted.
2344 If no arguments are given, all files in the repository are reverted.
2345 """
2345 """
2346 parent = repo.dirstate.parents()[0]
2346 parent = repo.dirstate.parents()[0]
2347 node = opts['rev'] and repo.lookup(opts['rev']) or parent
2347 node = opts['rev'] and repo.lookup(opts['rev']) or parent
2348 mf = repo.manifest.read(repo.changelog.read(node)[0])
2348 mf = repo.manifest.read(repo.changelog.read(node)[0])
2349
2349
2350 wlock = repo.wlock()
2350 wlock = repo.wlock()
2351
2351
2352 entries = []
2352 # need all matching names in dirstate and manifest of target rev,
2353 # so have to walk both. do not print errors if files exist in one
2354 # but not other.
2355
2353 names = {}
2356 names = {}
2357 target_only = {}
2358
2359 # walk dirstate.
2360
2354 for src, abs, rel, exact in walk(repo, pats, opts, badmatch=mf.has_key):
2361 for src, abs, rel, exact in walk(repo, pats, opts, badmatch=mf.has_key):
2355 names[abs] = True
2362 names[abs] = (rel, exact)
2356 entries.append((abs, rel, exact))
2363 if src == 'b':
2364 target_only[abs] = True
2365
2366 # walk target manifest.
2367
2368 for src, abs, rel, exact in walk(repo, pats, opts, node=node,
2369 badmatch=names.has_key):
2370 if abs in names: continue
2371 names[abs] = (rel, exact)
2372 target_only[abs] = True
2357
2373
2358 changes = repo.changes(match=names.has_key, wlock=wlock)
2374 changes = repo.changes(match=names.has_key, wlock=wlock)
2359 modified, added, removed, deleted, unknown = map(dict.fromkeys, changes)
2375 modified, added, removed, deleted, unknown = map(dict.fromkeys, changes)
2360
2376
2361 revert = ([], _('reverting %s\n'))
2377 revert = ([], _('reverting %s\n'))
2362 add = ([], _('adding %s\n'))
2378 add = ([], _('adding %s\n'))
2363 remove = ([], _('removing %s\n'))
2379 remove = ([], _('removing %s\n'))
2364 forget = ([], _('forgetting %s\n'))
2380 forget = ([], _('forgetting %s\n'))
2365 undelete = ([], _('undeleting %s\n'))
2381 undelete = ([], _('undeleting %s\n'))
2366 update = {}
2382 update = {}
2367
2383
2368 disptable = (
2384 disptable = (
2369 # dispatch table:
2385 # dispatch table:
2370 # file state
2386 # file state
2371 # action if in target manifest
2387 # action if in target manifest
2372 # action if not in target manifest
2388 # action if not in target manifest
2373 # make backup if in target manifest
2389 # make backup if in target manifest
2374 # make backup if not in target manifest
2390 # make backup if not in target manifest
2375 (modified, revert, remove, True, True),
2391 (modified, revert, remove, True, True),
2376 (added, revert, forget, True, True),
2392 (added, revert, forget, True, True),
2377 (removed, undelete, None, False, False),
2393 (removed, undelete, None, False, False),
2378 (deleted, revert, remove, False, False),
2394 (deleted, revert, remove, False, False),
2379 (unknown, add, None, True, False),
2395 (unknown, add, None, True, False),
2396 (target_only, add, None, False, False),
2380 )
2397 )
2381
2398
2382 for abs, rel, exact in entries:
2399 entries = names.items()
2400 entries.sort()
2401
2402 for abs, (rel, exact) in entries:
2403 in_mf = abs in mf
2383 def handle(xlist, dobackup):
2404 def handle(xlist, dobackup):
2384 xlist[0].append(abs)
2405 xlist[0].append(abs)
2385 if dobackup and not opts['no_backup'] and os.path.exists(rel):
2406 if dobackup and not opts['no_backup'] and os.path.exists(rel):
2386 bakname = "%s.orig" % rel
2407 bakname = "%s.orig" % rel
2387 ui.note(_('saving current version of %s as %s\n') %
2408 ui.note(_('saving current version of %s as %s\n') %
2388 (rel, bakname))
2409 (rel, bakname))
2389 shutil.copyfile(rel, bakname)
2410 shutil.copyfile(rel, bakname)
2390 shutil.copymode(rel, bakname)
2411 shutil.copymode(rel, bakname)
2391 if ui.verbose or not exact:
2412 if ui.verbose or not exact:
2392 ui.status(xlist[1] % rel)
2413 ui.status(xlist[1] % rel)
2393 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2414 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2394 if abs not in table: continue
2415 if abs not in table: continue
2395 # file has changed in dirstate
2416 # file has changed in dirstate
2396 if abs in mf:
2417 if in_mf:
2397 handle(hitlist, backuphit)
2418 handle(hitlist, backuphit)
2398 elif misslist is not None:
2419 elif misslist is not None:
2399 handle(misslist, backupmiss)
2420 handle(misslist, backupmiss)
2400 else:
2421 else:
2401 if exact: ui.warn(_('file not managed: %s\n' % rel))
2422 if exact: ui.warn(_('file not managed: %s\n' % rel))
2402 break
2423 break
2403 else:
2424 else:
2404 # file has not changed in dirstate
2425 # file has not changed in dirstate
2405 if node == parent:
2426 if node == parent:
2406 if exact: ui.warn(_('no changes needed to %s\n' % rel))
2427 if exact: ui.warn(_('no changes needed to %s\n' % rel))
2407 continue
2428 continue
2408 if abs not in mf:
2429 if not in_mf:
2409 remove[0].append(abs)
2430 handle(remove, False)
2410 update[abs] = True
2431 update[abs] = True
2411
2432
2412 repo.dirstate.forget(forget[0])
2433 repo.dirstate.forget(forget[0])
2413 r = repo.update(node, False, True, update.has_key, False, wlock=wlock)
2434 r = repo.update(node, False, True, update.has_key, False, wlock=wlock)
2414 repo.dirstate.update(add[0], 'a')
2435 repo.dirstate.update(add[0], 'a')
2415 repo.dirstate.update(undelete[0], 'n')
2436 repo.dirstate.update(undelete[0], 'n')
2416 repo.dirstate.update(remove[0], 'r')
2437 repo.dirstate.update(remove[0], 'r')
2417 return r
2438 return r
2418
2439
2419 def root(ui, repo):
2440 def root(ui, repo):
2420 """print the root (top) of the current working dir
2441 """print the root (top) of the current working dir
2421
2442
2422 Print the root directory of the current repository.
2443 Print the root directory of the current repository.
2423 """
2444 """
2424 ui.write(repo.root + "\n")
2445 ui.write(repo.root + "\n")
2425
2446
2426 def serve(ui, repo, **opts):
2447 def serve(ui, repo, **opts):
2427 """export the repository via HTTP
2448 """export the repository via HTTP
2428
2449
2429 Start a local HTTP repository browser and pull server.
2450 Start a local HTTP repository browser and pull server.
2430
2451
2431 By default, the server logs accesses to stdout and errors to
2452 By default, the server logs accesses to stdout and errors to
2432 stderr. Use the "-A" and "-E" options to log to files.
2453 stderr. Use the "-A" and "-E" options to log to files.
2433 """
2454 """
2434
2455
2435 if opts["stdio"]:
2456 if opts["stdio"]:
2436 fin, fout = sys.stdin, sys.stdout
2457 fin, fout = sys.stdin, sys.stdout
2437 sys.stdout = sys.stderr
2458 sys.stdout = sys.stderr
2438
2459
2439 # Prevent insertion/deletion of CRs
2460 # Prevent insertion/deletion of CRs
2440 util.set_binary(fin)
2461 util.set_binary(fin)
2441 util.set_binary(fout)
2462 util.set_binary(fout)
2442
2463
2443 def getarg():
2464 def getarg():
2444 argline = fin.readline()[:-1]
2465 argline = fin.readline()[:-1]
2445 arg, l = argline.split()
2466 arg, l = argline.split()
2446 val = fin.read(int(l))
2467 val = fin.read(int(l))
2447 return arg, val
2468 return arg, val
2448 def respond(v):
2469 def respond(v):
2449 fout.write("%d\n" % len(v))
2470 fout.write("%d\n" % len(v))
2450 fout.write(v)
2471 fout.write(v)
2451 fout.flush()
2472 fout.flush()
2452
2473
2453 lock = None
2474 lock = None
2454
2475
2455 while 1:
2476 while 1:
2456 cmd = fin.readline()[:-1]
2477 cmd = fin.readline()[:-1]
2457 if cmd == '':
2478 if cmd == '':
2458 return
2479 return
2459 if cmd == "heads":
2480 if cmd == "heads":
2460 h = repo.heads()
2481 h = repo.heads()
2461 respond(" ".join(map(hex, h)) + "\n")
2482 respond(" ".join(map(hex, h)) + "\n")
2462 if cmd == "lock":
2483 if cmd == "lock":
2463 lock = repo.lock()
2484 lock = repo.lock()
2464 respond("")
2485 respond("")
2465 if cmd == "unlock":
2486 if cmd == "unlock":
2466 if lock:
2487 if lock:
2467 lock.release()
2488 lock.release()
2468 lock = None
2489 lock = None
2469 respond("")
2490 respond("")
2470 elif cmd == "branches":
2491 elif cmd == "branches":
2471 arg, nodes = getarg()
2492 arg, nodes = getarg()
2472 nodes = map(bin, nodes.split(" "))
2493 nodes = map(bin, nodes.split(" "))
2473 r = []
2494 r = []
2474 for b in repo.branches(nodes):
2495 for b in repo.branches(nodes):
2475 r.append(" ".join(map(hex, b)) + "\n")
2496 r.append(" ".join(map(hex, b)) + "\n")
2476 respond("".join(r))
2497 respond("".join(r))
2477 elif cmd == "between":
2498 elif cmd == "between":
2478 arg, pairs = getarg()
2499 arg, pairs = getarg()
2479 pairs = [map(bin, p.split("-")) for p in pairs.split(" ")]
2500 pairs = [map(bin, p.split("-")) for p in pairs.split(" ")]
2480 r = []
2501 r = []
2481 for b in repo.between(pairs):
2502 for b in repo.between(pairs):
2482 r.append(" ".join(map(hex, b)) + "\n")
2503 r.append(" ".join(map(hex, b)) + "\n")
2483 respond("".join(r))
2504 respond("".join(r))
2484 elif cmd == "changegroup":
2505 elif cmd == "changegroup":
2485 nodes = []
2506 nodes = []
2486 arg, roots = getarg()
2507 arg, roots = getarg()
2487 nodes = map(bin, roots.split(" "))
2508 nodes = map(bin, roots.split(" "))
2488
2509
2489 cg = repo.changegroup(nodes, 'serve')
2510 cg = repo.changegroup(nodes, 'serve')
2490 while 1:
2511 while 1:
2491 d = cg.read(4096)
2512 d = cg.read(4096)
2492 if not d:
2513 if not d:
2493 break
2514 break
2494 fout.write(d)
2515 fout.write(d)
2495
2516
2496 fout.flush()
2517 fout.flush()
2497
2518
2498 elif cmd == "addchangegroup":
2519 elif cmd == "addchangegroup":
2499 if not lock:
2520 if not lock:
2500 respond("not locked")
2521 respond("not locked")
2501 continue
2522 continue
2502 respond("")
2523 respond("")
2503
2524
2504 r = repo.addchangegroup(fin)
2525 r = repo.addchangegroup(fin)
2505 respond(str(r))
2526 respond(str(r))
2506
2527
2507 optlist = "name templates style address port ipv6 accesslog errorlog"
2528 optlist = "name templates style address port ipv6 accesslog errorlog"
2508 for o in optlist.split():
2529 for o in optlist.split():
2509 if opts[o]:
2530 if opts[o]:
2510 ui.setconfig("web", o, opts[o])
2531 ui.setconfig("web", o, opts[o])
2511
2532
2512 if opts['daemon'] and not opts['daemon_pipefds']:
2533 if opts['daemon'] and not opts['daemon_pipefds']:
2513 rfd, wfd = os.pipe()
2534 rfd, wfd = os.pipe()
2514 args = sys.argv[:]
2535 args = sys.argv[:]
2515 args.append('--daemon-pipefds=%d,%d' % (rfd, wfd))
2536 args.append('--daemon-pipefds=%d,%d' % (rfd, wfd))
2516 pid = os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0),
2537 pid = os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0),
2517 args[0], args)
2538 args[0], args)
2518 os.close(wfd)
2539 os.close(wfd)
2519 os.read(rfd, 1)
2540 os.read(rfd, 1)
2520 os._exit(0)
2541 os._exit(0)
2521
2542
2522 try:
2543 try:
2523 httpd = hgweb.create_server(repo)
2544 httpd = hgweb.create_server(repo)
2524 except socket.error, inst:
2545 except socket.error, inst:
2525 raise util.Abort(_('cannot start server: ') + inst.args[1])
2546 raise util.Abort(_('cannot start server: ') + inst.args[1])
2526
2547
2527 if ui.verbose:
2548 if ui.verbose:
2528 addr, port = httpd.socket.getsockname()
2549 addr, port = httpd.socket.getsockname()
2529 if addr == '0.0.0.0':
2550 if addr == '0.0.0.0':
2530 addr = socket.gethostname()
2551 addr = socket.gethostname()
2531 else:
2552 else:
2532 try:
2553 try:
2533 addr = socket.gethostbyaddr(addr)[0]
2554 addr = socket.gethostbyaddr(addr)[0]
2534 except socket.error:
2555 except socket.error:
2535 pass
2556 pass
2536 if port != 80:
2557 if port != 80:
2537 ui.status(_('listening at http://%s:%d/\n') % (addr, port))
2558 ui.status(_('listening at http://%s:%d/\n') % (addr, port))
2538 else:
2559 else:
2539 ui.status(_('listening at http://%s/\n') % addr)
2560 ui.status(_('listening at http://%s/\n') % addr)
2540
2561
2541 if opts['pid_file']:
2562 if opts['pid_file']:
2542 fp = open(opts['pid_file'], 'w')
2563 fp = open(opts['pid_file'], 'w')
2543 fp.write(str(os.getpid()))
2564 fp.write(str(os.getpid()))
2544 fp.close()
2565 fp.close()
2545
2566
2546 if opts['daemon_pipefds']:
2567 if opts['daemon_pipefds']:
2547 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')]
2568 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')]
2548 os.close(rfd)
2569 os.close(rfd)
2549 os.write(wfd, 'y')
2570 os.write(wfd, 'y')
2550 os.close(wfd)
2571 os.close(wfd)
2551 sys.stdout.flush()
2572 sys.stdout.flush()
2552 sys.stderr.flush()
2573 sys.stderr.flush()
2553 fd = os.open(util.nulldev, os.O_RDWR)
2574 fd = os.open(util.nulldev, os.O_RDWR)
2554 if fd != 0: os.dup2(fd, 0)
2575 if fd != 0: os.dup2(fd, 0)
2555 if fd != 1: os.dup2(fd, 1)
2576 if fd != 1: os.dup2(fd, 1)
2556 if fd != 2: os.dup2(fd, 2)
2577 if fd != 2: os.dup2(fd, 2)
2557 if fd not in (0, 1, 2): os.close(fd)
2578 if fd not in (0, 1, 2): os.close(fd)
2558
2579
2559 httpd.serve_forever()
2580 httpd.serve_forever()
2560
2581
2561 def status(ui, repo, *pats, **opts):
2582 def status(ui, repo, *pats, **opts):
2562 """show changed files in the working directory
2583 """show changed files in the working directory
2563
2584
2564 Show changed files in the repository. If names are
2585 Show changed files in the repository. If names are
2565 given, only files that match are shown.
2586 given, only files that match are shown.
2566
2587
2567 The codes used to show the status of files are:
2588 The codes used to show the status of files are:
2568 M = modified
2589 M = modified
2569 A = added
2590 A = added
2570 R = removed
2591 R = removed
2571 ! = deleted, but still tracked
2592 ! = deleted, but still tracked
2572 ? = not tracked
2593 ? = not tracked
2573 I = ignored (not shown by default)
2594 I = ignored (not shown by default)
2574 """
2595 """
2575
2596
2576 show_ignored = opts['ignored'] and True or False
2597 show_ignored = opts['ignored'] and True or False
2577 files, matchfn, anypats = matchpats(repo, pats, opts)
2598 files, matchfn, anypats = matchpats(repo, pats, opts)
2578 cwd = (pats and repo.getcwd()) or ''
2599 cwd = (pats and repo.getcwd()) or ''
2579 modified, added, removed, deleted, unknown, ignored = [
2600 modified, added, removed, deleted, unknown, ignored = [
2580 [util.pathto(cwd, x) for x in n]
2601 [util.pathto(cwd, x) for x in n]
2581 for n in repo.changes(files=files, match=matchfn,
2602 for n in repo.changes(files=files, match=matchfn,
2582 show_ignored=show_ignored)]
2603 show_ignored=show_ignored)]
2583
2604
2584 changetypes = [('modified', 'M', modified),
2605 changetypes = [('modified', 'M', modified),
2585 ('added', 'A', added),
2606 ('added', 'A', added),
2586 ('removed', 'R', removed),
2607 ('removed', 'R', removed),
2587 ('deleted', '!', deleted),
2608 ('deleted', '!', deleted),
2588 ('unknown', '?', unknown),
2609 ('unknown', '?', unknown),
2589 ('ignored', 'I', ignored)]
2610 ('ignored', 'I', ignored)]
2590
2611
2591 end = opts['print0'] and '\0' or '\n'
2612 end = opts['print0'] and '\0' or '\n'
2592
2613
2593 for opt, char, changes in ([ct for ct in changetypes if opts[ct[0]]]
2614 for opt, char, changes in ([ct for ct in changetypes if opts[ct[0]]]
2594 or changetypes):
2615 or changetypes):
2595 if opts['no_status']:
2616 if opts['no_status']:
2596 format = "%%s%s" % end
2617 format = "%%s%s" % end
2597 else:
2618 else:
2598 format = "%s %%s%s" % (char, end)
2619 format = "%s %%s%s" % (char, end)
2599
2620
2600 for f in changes:
2621 for f in changes:
2601 ui.write(format % f)
2622 ui.write(format % f)
2602
2623
2603 def tag(ui, repo, name, rev_=None, **opts):
2624 def tag(ui, repo, name, rev_=None, **opts):
2604 """add a tag for the current tip or a given revision
2625 """add a tag for the current tip or a given revision
2605
2626
2606 Name a particular revision using <name>.
2627 Name a particular revision using <name>.
2607
2628
2608 Tags are used to name particular revisions of the repository and are
2629 Tags are used to name particular revisions of the repository and are
2609 very useful to compare different revision, to go back to significant
2630 very useful to compare different revision, to go back to significant
2610 earlier versions or to mark branch points as releases, etc.
2631 earlier versions or to mark branch points as releases, etc.
2611
2632
2612 If no revision is given, the tip is used.
2633 If no revision is given, the tip is used.
2613
2634
2614 To facilitate version control, distribution, and merging of tags,
2635 To facilitate version control, distribution, and merging of tags,
2615 they are stored as a file named ".hgtags" which is managed
2636 they are stored as a file named ".hgtags" which is managed
2616 similarly to other project files and can be hand-edited if
2637 similarly to other project files and can be hand-edited if
2617 necessary. The file '.hg/localtags' is used for local tags (not
2638 necessary. The file '.hg/localtags' is used for local tags (not
2618 shared among repositories).
2639 shared among repositories).
2619 """
2640 """
2620 if name == "tip":
2641 if name == "tip":
2621 raise util.Abort(_("the name 'tip' is reserved"))
2642 raise util.Abort(_("the name 'tip' is reserved"))
2622 if rev_ is not None:
2643 if rev_ is not None:
2623 ui.warn(_("use of 'hg tag NAME [REV]' is deprecated, "
2644 ui.warn(_("use of 'hg tag NAME [REV]' is deprecated, "
2624 "please use 'hg tag [-r REV] NAME' instead\n"))
2645 "please use 'hg tag [-r REV] NAME' instead\n"))
2625 if opts['rev']:
2646 if opts['rev']:
2626 raise util.Abort(_("use only one form to specify the revision"))
2647 raise util.Abort(_("use only one form to specify the revision"))
2627 if opts['rev']:
2648 if opts['rev']:
2628 rev_ = opts['rev']
2649 rev_ = opts['rev']
2629 if rev_:
2650 if rev_:
2630 r = hex(repo.lookup(rev_))
2651 r = hex(repo.lookup(rev_))
2631 else:
2652 else:
2632 r = hex(repo.changelog.tip())
2653 r = hex(repo.changelog.tip())
2633
2654
2634 disallowed = (revrangesep, '\r', '\n')
2655 disallowed = (revrangesep, '\r', '\n')
2635 for c in disallowed:
2656 for c in disallowed:
2636 if name.find(c) >= 0:
2657 if name.find(c) >= 0:
2637 raise util.Abort(_("%s cannot be used in a tag name") % repr(c))
2658 raise util.Abort(_("%s cannot be used in a tag name") % repr(c))
2638
2659
2639 repo.hook('pretag', throw=True, node=r, tag=name,
2660 repo.hook('pretag', throw=True, node=r, tag=name,
2640 local=int(not not opts['local']))
2661 local=int(not not opts['local']))
2641
2662
2642 if opts['local']:
2663 if opts['local']:
2643 repo.opener("localtags", "a").write("%s %s\n" % (r, name))
2664 repo.opener("localtags", "a").write("%s %s\n" % (r, name))
2644 repo.hook('tag', node=r, tag=name, local=1)
2665 repo.hook('tag', node=r, tag=name, local=1)
2645 return
2666 return
2646
2667
2647 for x in repo.changes():
2668 for x in repo.changes():
2648 if ".hgtags" in x:
2669 if ".hgtags" in x:
2649 raise util.Abort(_("working copy of .hgtags is changed "
2670 raise util.Abort(_("working copy of .hgtags is changed "
2650 "(please commit .hgtags manually)"))
2671 "(please commit .hgtags manually)"))
2651
2672
2652 repo.wfile(".hgtags", "ab").write("%s %s\n" % (r, name))
2673 repo.wfile(".hgtags", "ab").write("%s %s\n" % (r, name))
2653 if repo.dirstate.state(".hgtags") == '?':
2674 if repo.dirstate.state(".hgtags") == '?':
2654 repo.add([".hgtags"])
2675 repo.add([".hgtags"])
2655
2676
2656 message = (opts['message'] or
2677 message = (opts['message'] or
2657 _("Added tag %s for changeset %s") % (name, r))
2678 _("Added tag %s for changeset %s") % (name, r))
2658 try:
2679 try:
2659 repo.commit([".hgtags"], message, opts['user'], opts['date'])
2680 repo.commit([".hgtags"], message, opts['user'], opts['date'])
2660 repo.hook('tag', node=r, tag=name, local=0)
2681 repo.hook('tag', node=r, tag=name, local=0)
2661 except ValueError, inst:
2682 except ValueError, inst:
2662 raise util.Abort(str(inst))
2683 raise util.Abort(str(inst))
2663
2684
2664 def tags(ui, repo):
2685 def tags(ui, repo):
2665 """list repository tags
2686 """list repository tags
2666
2687
2667 List the repository tags.
2688 List the repository tags.
2668
2689
2669 This lists both regular and local tags.
2690 This lists both regular and local tags.
2670 """
2691 """
2671
2692
2672 l = repo.tagslist()
2693 l = repo.tagslist()
2673 l.reverse()
2694 l.reverse()
2674 for t, n in l:
2695 for t, n in l:
2675 try:
2696 try:
2676 r = "%5d:%s" % (repo.changelog.rev(n), hex(n))
2697 r = "%5d:%s" % (repo.changelog.rev(n), hex(n))
2677 except KeyError:
2698 except KeyError:
2678 r = " ?:?"
2699 r = " ?:?"
2679 if ui.quiet:
2700 if ui.quiet:
2680 ui.write("%s\n" % t)
2701 ui.write("%s\n" % t)
2681 else:
2702 else:
2682 ui.write("%-30s %s\n" % (t, r))
2703 ui.write("%-30s %s\n" % (t, r))
2683
2704
2684 def tip(ui, repo, **opts):
2705 def tip(ui, repo, **opts):
2685 """show the tip revision
2706 """show the tip revision
2686
2707
2687 Show the tip revision.
2708 Show the tip revision.
2688 """
2709 """
2689 n = repo.changelog.tip()
2710 n = repo.changelog.tip()
2690 br = None
2711 br = None
2691 if opts['branches']:
2712 if opts['branches']:
2692 br = repo.branchlookup([n])
2713 br = repo.branchlookup([n])
2693 show_changeset(ui, repo, opts).show(changenode=n, brinfo=br)
2714 show_changeset(ui, repo, opts).show(changenode=n, brinfo=br)
2694 if opts['patch']:
2715 if opts['patch']:
2695 dodiff(ui, ui, repo, repo.changelog.parents(n)[0], n)
2716 dodiff(ui, ui, repo, repo.changelog.parents(n)[0], n)
2696
2717
2697 def unbundle(ui, repo, fname, **opts):
2718 def unbundle(ui, repo, fname, **opts):
2698 """apply a changegroup file
2719 """apply a changegroup file
2699
2720
2700 Apply a compressed changegroup file generated by the bundle
2721 Apply a compressed changegroup file generated by the bundle
2701 command.
2722 command.
2702 """
2723 """
2703 f = urllib.urlopen(fname)
2724 f = urllib.urlopen(fname)
2704
2725
2705 header = f.read(6)
2726 header = f.read(6)
2706 if not header.startswith("HG"):
2727 if not header.startswith("HG"):
2707 raise util.Abort(_("%s: not a Mercurial bundle file") % fname)
2728 raise util.Abort(_("%s: not a Mercurial bundle file") % fname)
2708 elif not header.startswith("HG10"):
2729 elif not header.startswith("HG10"):
2709 raise util.Abort(_("%s: unknown bundle version") % fname)
2730 raise util.Abort(_("%s: unknown bundle version") % fname)
2710 elif header == "HG10BZ":
2731 elif header == "HG10BZ":
2711 def generator(f):
2732 def generator(f):
2712 zd = bz2.BZ2Decompressor()
2733 zd = bz2.BZ2Decompressor()
2713 zd.decompress("BZ")
2734 zd.decompress("BZ")
2714 for chunk in f:
2735 for chunk in f:
2715 yield zd.decompress(chunk)
2736 yield zd.decompress(chunk)
2716 elif header == "HG10UN":
2737 elif header == "HG10UN":
2717 def generator(f):
2738 def generator(f):
2718 for chunk in f:
2739 for chunk in f:
2719 yield chunk
2740 yield chunk
2720 else:
2741 else:
2721 raise util.Abort(_("%s: unknown bundle compression type")
2742 raise util.Abort(_("%s: unknown bundle compression type")
2722 % fname)
2743 % fname)
2723 gen = generator(util.filechunkiter(f, 4096))
2744 gen = generator(util.filechunkiter(f, 4096))
2724 modheads = repo.addchangegroup(util.chunkbuffer(gen))
2745 modheads = repo.addchangegroup(util.chunkbuffer(gen))
2725 return postincoming(ui, repo, modheads, opts['update'])
2746 return postincoming(ui, repo, modheads, opts['update'])
2726
2747
2727 def undo(ui, repo):
2748 def undo(ui, repo):
2728 """undo the last commit or pull
2749 """undo the last commit or pull
2729
2750
2730 Roll back the last pull or commit transaction on the
2751 Roll back the last pull or commit transaction on the
2731 repository, restoring the project to its earlier state.
2752 repository, restoring the project to its earlier state.
2732
2753
2733 This command should be used with care. There is only one level of
2754 This command should be used with care. There is only one level of
2734 undo and there is no redo.
2755 undo and there is no redo.
2735
2756
2736 This command is not intended for use on public repositories. Once
2757 This command is not intended for use on public repositories. Once
2737 a change is visible for pull by other users, undoing it locally is
2758 a change is visible for pull by other users, undoing it locally is
2738 ineffective.
2759 ineffective.
2739 """
2760 """
2740 repo.undo()
2761 repo.undo()
2741
2762
2742 def update(ui, repo, node=None, merge=False, clean=False, force=None,
2763 def update(ui, repo, node=None, merge=False, clean=False, force=None,
2743 branch=None, **opts):
2764 branch=None, **opts):
2744 """update or merge working directory
2765 """update or merge working directory
2745
2766
2746 Update the working directory to the specified revision.
2767 Update the working directory to the specified revision.
2747
2768
2748 If there are no outstanding changes in the working directory and
2769 If there are no outstanding changes in the working directory and
2749 there is a linear relationship between the current version and the
2770 there is a linear relationship between the current version and the
2750 requested version, the result is the requested version.
2771 requested version, the result is the requested version.
2751
2772
2752 Otherwise the result is a merge between the contents of the
2773 Otherwise the result is a merge between the contents of the
2753 current working directory and the requested version. Files that
2774 current working directory and the requested version. Files that
2754 changed between either parent are marked as changed for the next
2775 changed between either parent are marked as changed for the next
2755 commit and a commit must be performed before any further updates
2776 commit and a commit must be performed before any further updates
2756 are allowed.
2777 are allowed.
2757
2778
2758 By default, update will refuse to run if doing so would require
2779 By default, update will refuse to run if doing so would require
2759 merging or discarding local changes.
2780 merging or discarding local changes.
2760 """
2781 """
2761 if branch:
2782 if branch:
2762 br = repo.branchlookup(branch=branch)
2783 br = repo.branchlookup(branch=branch)
2763 found = []
2784 found = []
2764 for x in br:
2785 for x in br:
2765 if branch in br[x]:
2786 if branch in br[x]:
2766 found.append(x)
2787 found.append(x)
2767 if len(found) > 1:
2788 if len(found) > 1:
2768 ui.warn(_("Found multiple heads for %s\n") % branch)
2789 ui.warn(_("Found multiple heads for %s\n") % branch)
2769 for x in found:
2790 for x in found:
2770 show_changeset(ui, repo, opts).show(changenode=x, brinfo=br)
2791 show_changeset(ui, repo, opts).show(changenode=x, brinfo=br)
2771 return 1
2792 return 1
2772 if len(found) == 1:
2793 if len(found) == 1:
2773 node = found[0]
2794 node = found[0]
2774 ui.warn(_("Using head %s for branch %s\n") % (short(node), branch))
2795 ui.warn(_("Using head %s for branch %s\n") % (short(node), branch))
2775 else:
2796 else:
2776 ui.warn(_("branch %s not found\n") % (branch))
2797 ui.warn(_("branch %s not found\n") % (branch))
2777 return 1
2798 return 1
2778 else:
2799 else:
2779 node = node and repo.lookup(node) or repo.changelog.tip()
2800 node = node and repo.lookup(node) or repo.changelog.tip()
2780 return repo.update(node, allow=merge, force=clean, forcemerge=force)
2801 return repo.update(node, allow=merge, force=clean, forcemerge=force)
2781
2802
2782 def verify(ui, repo):
2803 def verify(ui, repo):
2783 """verify the integrity of the repository
2804 """verify the integrity of the repository
2784
2805
2785 Verify the integrity of the current repository.
2806 Verify the integrity of the current repository.
2786
2807
2787 This will perform an extensive check of the repository's
2808 This will perform an extensive check of the repository's
2788 integrity, validating the hashes and checksums of each entry in
2809 integrity, validating the hashes and checksums of each entry in
2789 the changelog, manifest, and tracked files, as well as the
2810 the changelog, manifest, and tracked files, as well as the
2790 integrity of their crosslinks and indices.
2811 integrity of their crosslinks and indices.
2791 """
2812 """
2792 return repo.verify()
2813 return repo.verify()
2793
2814
2794 # Command options and aliases are listed here, alphabetically
2815 # Command options and aliases are listed here, alphabetically
2795
2816
2796 table = {
2817 table = {
2797 "^add":
2818 "^add":
2798 (add,
2819 (add,
2799 [('I', 'include', [], _('include names matching the given patterns')),
2820 [('I', 'include', [], _('include names matching the given patterns')),
2800 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2821 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2801 _('hg add [OPTION]... [FILE]...')),
2822 _('hg add [OPTION]... [FILE]...')),
2802 "addremove":
2823 "addremove":
2803 (addremove,
2824 (addremove,
2804 [('I', 'include', [], _('include names matching the given patterns')),
2825 [('I', 'include', [], _('include names matching the given patterns')),
2805 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2826 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2806 _('hg addremove [OPTION]... [FILE]...')),
2827 _('hg addremove [OPTION]... [FILE]...')),
2807 "^annotate":
2828 "^annotate":
2808 (annotate,
2829 (annotate,
2809 [('r', 'rev', '', _('annotate the specified revision')),
2830 [('r', 'rev', '', _('annotate the specified revision')),
2810 ('a', 'text', None, _('treat all files as text')),
2831 ('a', 'text', None, _('treat all files as text')),
2811 ('u', 'user', None, _('list the author')),
2832 ('u', 'user', None, _('list the author')),
2812 ('d', 'date', None, _('list the date')),
2833 ('d', 'date', None, _('list the date')),
2813 ('n', 'number', None, _('list the revision number (default)')),
2834 ('n', 'number', None, _('list the revision number (default)')),
2814 ('c', 'changeset', None, _('list the changeset')),
2835 ('c', 'changeset', None, _('list the changeset')),
2815 ('I', 'include', [], _('include names matching the given patterns')),
2836 ('I', 'include', [], _('include names matching the given patterns')),
2816 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2837 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2817 _('hg annotate [-r REV] [-a] [-u] [-d] [-n] [-c] FILE...')),
2838 _('hg annotate [-r REV] [-a] [-u] [-d] [-n] [-c] FILE...')),
2818 "bundle":
2839 "bundle":
2819 (bundle,
2840 (bundle,
2820 [('f', 'force', None,
2841 [('f', 'force', None,
2821 _('run even when remote repository is unrelated'))],
2842 _('run even when remote repository is unrelated'))],
2822 _('hg bundle FILE DEST')),
2843 _('hg bundle FILE DEST')),
2823 "cat":
2844 "cat":
2824 (cat,
2845 (cat,
2825 [('o', 'output', '', _('print output to file with formatted name')),
2846 [('o', 'output', '', _('print output to file with formatted name')),
2826 ('r', 'rev', '', _('print the given revision')),
2847 ('r', 'rev', '', _('print the given revision')),
2827 ('I', 'include', [], _('include names matching the given patterns')),
2848 ('I', 'include', [], _('include names matching the given patterns')),
2828 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2849 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2829 _('hg cat [OPTION]... FILE...')),
2850 _('hg cat [OPTION]... FILE...')),
2830 "^clone":
2851 "^clone":
2831 (clone,
2852 (clone,
2832 [('U', 'noupdate', None, _('do not update the new working directory')),
2853 [('U', 'noupdate', None, _('do not update the new working directory')),
2833 ('r', 'rev', [],
2854 ('r', 'rev', [],
2834 _('a changeset you would like to have after cloning')),
2855 _('a changeset you would like to have after cloning')),
2835 ('', 'pull', None, _('use pull protocol to copy metadata')),
2856 ('', 'pull', None, _('use pull protocol to copy metadata')),
2836 ('e', 'ssh', '', _('specify ssh command to use')),
2857 ('e', 'ssh', '', _('specify ssh command to use')),
2837 ('', 'remotecmd', '',
2858 ('', 'remotecmd', '',
2838 _('specify hg command to run on the remote side'))],
2859 _('specify hg command to run on the remote side'))],
2839 _('hg clone [OPTION]... SOURCE [DEST]')),
2860 _('hg clone [OPTION]... SOURCE [DEST]')),
2840 "^commit|ci":
2861 "^commit|ci":
2841 (commit,
2862 (commit,
2842 [('A', 'addremove', None, _('run addremove during commit')),
2863 [('A', 'addremove', None, _('run addremove during commit')),
2843 ('m', 'message', '', _('use <text> as commit message')),
2864 ('m', 'message', '', _('use <text> as commit message')),
2844 ('l', 'logfile', '', _('read the commit message from <file>')),
2865 ('l', 'logfile', '', _('read the commit message from <file>')),
2845 ('d', 'date', '', _('record datecode as commit date')),
2866 ('d', 'date', '', _('record datecode as commit date')),
2846 ('u', 'user', '', _('record user as commiter')),
2867 ('u', 'user', '', _('record user as commiter')),
2847 ('I', 'include', [], _('include names matching the given patterns')),
2868 ('I', 'include', [], _('include names matching the given patterns')),
2848 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2869 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2849 _('hg commit [OPTION]... [FILE]...')),
2870 _('hg commit [OPTION]... [FILE]...')),
2850 "copy|cp":
2871 "copy|cp":
2851 (copy,
2872 (copy,
2852 [('A', 'after', None, _('record a copy that has already occurred')),
2873 [('A', 'after', None, _('record a copy that has already occurred')),
2853 ('f', 'force', None,
2874 ('f', 'force', None,
2854 _('forcibly copy over an existing managed file')),
2875 _('forcibly copy over an existing managed file')),
2855 ('I', 'include', [], _('include names matching the given patterns')),
2876 ('I', 'include', [], _('include names matching the given patterns')),
2856 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2877 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2857 _('hg copy [OPTION]... [SOURCE]... DEST')),
2878 _('hg copy [OPTION]... [SOURCE]... DEST')),
2858 "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')),
2879 "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')),
2859 "debugcomplete":
2880 "debugcomplete":
2860 (debugcomplete,
2881 (debugcomplete,
2861 [('o', 'options', None, _('show the command options'))],
2882 [('o', 'options', None, _('show the command options'))],
2862 _('debugcomplete [-o] CMD')),
2883 _('debugcomplete [-o] CMD')),
2863 "debugrebuildstate":
2884 "debugrebuildstate":
2864 (debugrebuildstate,
2885 (debugrebuildstate,
2865 [('r', 'rev', '', _('revision to rebuild to'))],
2886 [('r', 'rev', '', _('revision to rebuild to'))],
2866 _('debugrebuildstate [-r REV] [REV]')),
2887 _('debugrebuildstate [-r REV] [REV]')),
2867 "debugcheckstate": (debugcheckstate, [], _('debugcheckstate')),
2888 "debugcheckstate": (debugcheckstate, [], _('debugcheckstate')),
2868 "debugconfig": (debugconfig, [], _('debugconfig')),
2889 "debugconfig": (debugconfig, [], _('debugconfig')),
2869 "debugsetparents": (debugsetparents, [], _('debugsetparents REV1 [REV2]')),
2890 "debugsetparents": (debugsetparents, [], _('debugsetparents REV1 [REV2]')),
2870 "debugstate": (debugstate, [], _('debugstate')),
2891 "debugstate": (debugstate, [], _('debugstate')),
2871 "debugdata": (debugdata, [], _('debugdata FILE REV')),
2892 "debugdata": (debugdata, [], _('debugdata FILE REV')),
2872 "debugindex": (debugindex, [], _('debugindex FILE')),
2893 "debugindex": (debugindex, [], _('debugindex FILE')),
2873 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')),
2894 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')),
2874 "debugrename": (debugrename, [], _('debugrename FILE [REV]')),
2895 "debugrename": (debugrename, [], _('debugrename FILE [REV]')),
2875 "debugwalk":
2896 "debugwalk":
2876 (debugwalk,
2897 (debugwalk,
2877 [('I', 'include', [], _('include names matching the given patterns')),
2898 [('I', 'include', [], _('include names matching the given patterns')),
2878 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2899 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2879 _('debugwalk [OPTION]... [FILE]...')),
2900 _('debugwalk [OPTION]... [FILE]...')),
2880 "^diff":
2901 "^diff":
2881 (diff,
2902 (diff,
2882 [('r', 'rev', [], _('revision')),
2903 [('r', 'rev', [], _('revision')),
2883 ('a', 'text', None, _('treat all files as text')),
2904 ('a', 'text', None, _('treat all files as text')),
2884 ('p', 'show-function', None,
2905 ('p', 'show-function', None,
2885 _('show which function each change is in')),
2906 _('show which function each change is in')),
2886 ('w', 'ignore-all-space', None,
2907 ('w', 'ignore-all-space', None,
2887 _('ignore white space when comparing lines')),
2908 _('ignore white space when comparing lines')),
2888 ('I', 'include', [], _('include names matching the given patterns')),
2909 ('I', 'include', [], _('include names matching the given patterns')),
2889 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2910 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2890 _('hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...')),
2911 _('hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...')),
2891 "^export":
2912 "^export":
2892 (export,
2913 (export,
2893 [('o', 'output', '', _('print output to file with formatted name')),
2914 [('o', 'output', '', _('print output to file with formatted name')),
2894 ('a', 'text', None, _('treat all files as text')),
2915 ('a', 'text', None, _('treat all files as text')),
2895 ('', 'switch-parent', None, _('diff against the second parent'))],
2916 ('', 'switch-parent', None, _('diff against the second parent'))],
2896 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2917 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2897 "forget":
2918 "forget":
2898 (forget,
2919 (forget,
2899 [('I', 'include', [], _('include names matching the given patterns')),
2920 [('I', 'include', [], _('include names matching the given patterns')),
2900 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2921 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2901 _('hg forget [OPTION]... FILE...')),
2922 _('hg forget [OPTION]... FILE...')),
2902 "grep":
2923 "grep":
2903 (grep,
2924 (grep,
2904 [('0', 'print0', None, _('end fields with NUL')),
2925 [('0', 'print0', None, _('end fields with NUL')),
2905 ('', 'all', None, _('print all revisions that match')),
2926 ('', 'all', None, _('print all revisions that match')),
2906 ('i', 'ignore-case', None, _('ignore case when matching')),
2927 ('i', 'ignore-case', None, _('ignore case when matching')),
2907 ('l', 'files-with-matches', None,
2928 ('l', 'files-with-matches', None,
2908 _('print only filenames and revs that match')),
2929 _('print only filenames and revs that match')),
2909 ('n', 'line-number', None, _('print matching line numbers')),
2930 ('n', 'line-number', None, _('print matching line numbers')),
2910 ('r', 'rev', [], _('search in given revision range')),
2931 ('r', 'rev', [], _('search in given revision range')),
2911 ('u', 'user', None, _('print user who committed change')),
2932 ('u', 'user', None, _('print user who committed change')),
2912 ('I', 'include', [], _('include names matching the given patterns')),
2933 ('I', 'include', [], _('include names matching the given patterns')),
2913 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2934 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2914 _('hg grep [OPTION]... PATTERN [FILE]...')),
2935 _('hg grep [OPTION]... PATTERN [FILE]...')),
2915 "heads":
2936 "heads":
2916 (heads,
2937 (heads,
2917 [('b', 'branches', None, _('show branches')),
2938 [('b', 'branches', None, _('show branches')),
2918 ('', 'style', '', _('display using template map file')),
2939 ('', 'style', '', _('display using template map file')),
2919 ('r', 'rev', '', _('show only heads which are descendants of rev')),
2940 ('r', 'rev', '', _('show only heads which are descendants of rev')),
2920 ('', 'template', '', _('display with template'))],
2941 ('', 'template', '', _('display with template'))],
2921 _('hg heads [-b] [-r <rev>]')),
2942 _('hg heads [-b] [-r <rev>]')),
2922 "help": (help_, [], _('hg help [COMMAND]')),
2943 "help": (help_, [], _('hg help [COMMAND]')),
2923 "identify|id": (identify, [], _('hg identify')),
2944 "identify|id": (identify, [], _('hg identify')),
2924 "import|patch":
2945 "import|patch":
2925 (import_,
2946 (import_,
2926 [('p', 'strip', 1,
2947 [('p', 'strip', 1,
2927 _('directory strip option for patch. This has the same\n') +
2948 _('directory strip option for patch. This has the same\n') +
2928 _('meaning as the corresponding patch option')),
2949 _('meaning as the corresponding patch option')),
2929 ('b', 'base', '', _('base path')),
2950 ('b', 'base', '', _('base path')),
2930 ('f', 'force', None,
2951 ('f', 'force', None,
2931 _('skip check for outstanding uncommitted changes'))],
2952 _('skip check for outstanding uncommitted changes'))],
2932 _('hg import [-p NUM] [-b BASE] [-f] PATCH...')),
2953 _('hg import [-p NUM] [-b BASE] [-f] PATCH...')),
2933 "incoming|in": (incoming,
2954 "incoming|in": (incoming,
2934 [('M', 'no-merges', None, _('do not show merges')),
2955 [('M', 'no-merges', None, _('do not show merges')),
2935 ('f', 'force', None,
2956 ('f', 'force', None,
2936 _('run even when remote repository is unrelated')),
2957 _('run even when remote repository is unrelated')),
2937 ('', 'style', '', _('display using template map file')),
2958 ('', 'style', '', _('display using template map file')),
2938 ('n', 'newest-first', None, _('show newest record first')),
2959 ('n', 'newest-first', None, _('show newest record first')),
2939 ('', 'bundle', '', _('file to store the bundles into')),
2960 ('', 'bundle', '', _('file to store the bundles into')),
2940 ('p', 'patch', None, _('show patch')),
2961 ('p', 'patch', None, _('show patch')),
2941 ('', 'template', '', _('display with template')),
2962 ('', 'template', '', _('display with template')),
2942 ('e', 'ssh', '', _('specify ssh command to use')),
2963 ('e', 'ssh', '', _('specify ssh command to use')),
2943 ('', 'remotecmd', '',
2964 ('', 'remotecmd', '',
2944 _('specify hg command to run on the remote side'))],
2965 _('specify hg command to run on the remote side'))],
2945 _('hg incoming [-p] [-n] [-M] [--bundle FILENAME] [SOURCE]')),
2966 _('hg incoming [-p] [-n] [-M] [--bundle FILENAME] [SOURCE]')),
2946 "^init": (init, [], _('hg init [DEST]')),
2967 "^init": (init, [], _('hg init [DEST]')),
2947 "locate":
2968 "locate":
2948 (locate,
2969 (locate,
2949 [('r', 'rev', '', _('search the repository as it stood at rev')),
2970 [('r', 'rev', '', _('search the repository as it stood at rev')),
2950 ('0', 'print0', None,
2971 ('0', 'print0', None,
2951 _('end filenames with NUL, for use with xargs')),
2972 _('end filenames with NUL, for use with xargs')),
2952 ('f', 'fullpath', None,
2973 ('f', 'fullpath', None,
2953 _('print complete paths from the filesystem root')),
2974 _('print complete paths from the filesystem root')),
2954 ('I', 'include', [], _('include names matching the given patterns')),
2975 ('I', 'include', [], _('include names matching the given patterns')),
2955 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2976 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2956 _('hg locate [OPTION]... [PATTERN]...')),
2977 _('hg locate [OPTION]... [PATTERN]...')),
2957 "^log|history":
2978 "^log|history":
2958 (log,
2979 (log,
2959 [('b', 'branches', None, _('show branches')),
2980 [('b', 'branches', None, _('show branches')),
2960 ('k', 'keyword', [], _('search for a keyword')),
2981 ('k', 'keyword', [], _('search for a keyword')),
2961 ('l', 'limit', '', _('limit number of changes displayed')),
2982 ('l', 'limit', '', _('limit number of changes displayed')),
2962 ('r', 'rev', [], _('show the specified revision or range')),
2983 ('r', 'rev', [], _('show the specified revision or range')),
2963 ('M', 'no-merges', None, _('do not show merges')),
2984 ('M', 'no-merges', None, _('do not show merges')),
2964 ('', 'style', '', _('display using template map file')),
2985 ('', 'style', '', _('display using template map file')),
2965 ('m', 'only-merges', None, _('show only merges')),
2986 ('m', 'only-merges', None, _('show only merges')),
2966 ('p', 'patch', None, _('show patch')),
2987 ('p', 'patch', None, _('show patch')),
2967 ('', 'template', '', _('display with template')),
2988 ('', 'template', '', _('display with template')),
2968 ('I', 'include', [], _('include names matching the given patterns')),
2989 ('I', 'include', [], _('include names matching the given patterns')),
2969 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2990 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2970 _('hg log [OPTION]... [FILE]')),
2991 _('hg log [OPTION]... [FILE]')),
2971 "manifest": (manifest, [], _('hg manifest [REV]')),
2992 "manifest": (manifest, [], _('hg manifest [REV]')),
2972 "merge":
2993 "merge":
2973 (merge,
2994 (merge,
2974 [('b', 'branch', '', _('merge with head of a specific branch')),
2995 [('b', 'branch', '', _('merge with head of a specific branch')),
2975 ('', 'style', '', _('display using template map file')),
2996 ('', 'style', '', _('display using template map file')),
2976 ('f', 'force', None, _('force a merge with outstanding changes')),
2997 ('f', 'force', None, _('force a merge with outstanding changes')),
2977 ('', 'template', '', _('display with template'))],
2998 ('', 'template', '', _('display with template'))],
2978 _('hg merge [-b TAG] [-f] [REV]')),
2999 _('hg merge [-b TAG] [-f] [REV]')),
2979 "outgoing|out": (outgoing,
3000 "outgoing|out": (outgoing,
2980 [('M', 'no-merges', None, _('do not show merges')),
3001 [('M', 'no-merges', None, _('do not show merges')),
2981 ('f', 'force', None,
3002 ('f', 'force', None,
2982 _('run even when remote repository is unrelated')),
3003 _('run even when remote repository is unrelated')),
2983 ('p', 'patch', None, _('show patch')),
3004 ('p', 'patch', None, _('show patch')),
2984 ('', 'style', '', _('display using template map file')),
3005 ('', 'style', '', _('display using template map file')),
2985 ('n', 'newest-first', None, _('show newest record first')),
3006 ('n', 'newest-first', None, _('show newest record first')),
2986 ('', 'template', '', _('display with template')),
3007 ('', 'template', '', _('display with template')),
2987 ('e', 'ssh', '', _('specify ssh command to use')),
3008 ('e', 'ssh', '', _('specify ssh command to use')),
2988 ('', 'remotecmd', '',
3009 ('', 'remotecmd', '',
2989 _('specify hg command to run on the remote side'))],
3010 _('specify hg command to run on the remote side'))],
2990 _('hg outgoing [-M] [-p] [-n] [DEST]')),
3011 _('hg outgoing [-M] [-p] [-n] [DEST]')),
2991 "^parents":
3012 "^parents":
2992 (parents,
3013 (parents,
2993 [('b', 'branches', None, _('show branches')),
3014 [('b', 'branches', None, _('show branches')),
2994 ('', 'style', '', _('display using template map file')),
3015 ('', 'style', '', _('display using template map file')),
2995 ('', 'template', '', _('display with template'))],
3016 ('', 'template', '', _('display with template'))],
2996 _('hg parents [-b] [REV]')),
3017 _('hg parents [-b] [REV]')),
2997 "paths": (paths, [], _('hg paths [NAME]')),
3018 "paths": (paths, [], _('hg paths [NAME]')),
2998 "^pull":
3019 "^pull":
2999 (pull,
3020 (pull,
3000 [('u', 'update', None,
3021 [('u', 'update', None,
3001 _('update the working directory to tip after pull')),
3022 _('update the working directory to tip after pull')),
3002 ('e', 'ssh', '', _('specify ssh command to use')),
3023 ('e', 'ssh', '', _('specify ssh command to use')),
3003 ('f', 'force', None,
3024 ('f', 'force', None,
3004 _('run even when remote repository is unrelated')),
3025 _('run even when remote repository is unrelated')),
3005 ('r', 'rev', [], _('a specific revision you would like to pull')),
3026 ('r', 'rev', [], _('a specific revision you would like to pull')),
3006 ('', 'remotecmd', '',
3027 ('', 'remotecmd', '',
3007 _('specify hg command to run on the remote side'))],
3028 _('specify hg command to run on the remote side'))],
3008 _('hg pull [-u] [-e FILE] [-r REV]... [--remotecmd FILE] [SOURCE]')),
3029 _('hg pull [-u] [-e FILE] [-r REV]... [--remotecmd FILE] [SOURCE]')),
3009 "^push":
3030 "^push":
3010 (push,
3031 (push,
3011 [('f', 'force', None, _('force push')),
3032 [('f', 'force', None, _('force push')),
3012 ('e', 'ssh', '', _('specify ssh command to use')),
3033 ('e', 'ssh', '', _('specify ssh command to use')),
3013 ('r', 'rev', [], _('a specific revision you would like to push')),
3034 ('r', 'rev', [], _('a specific revision you would like to push')),
3014 ('', 'remotecmd', '',
3035 ('', 'remotecmd', '',
3015 _('specify hg command to run on the remote side'))],
3036 _('specify hg command to run on the remote side'))],
3016 _('hg push [-f] [-e FILE] [-r REV]... [--remotecmd FILE] [DEST]')),
3037 _('hg push [-f] [-e FILE] [-r REV]... [--remotecmd FILE] [DEST]')),
3017 "debugrawcommit|rawcommit":
3038 "debugrawcommit|rawcommit":
3018 (rawcommit,
3039 (rawcommit,
3019 [('p', 'parent', [], _('parent')),
3040 [('p', 'parent', [], _('parent')),
3020 ('d', 'date', '', _('date code')),
3041 ('d', 'date', '', _('date code')),
3021 ('u', 'user', '', _('user')),
3042 ('u', 'user', '', _('user')),
3022 ('F', 'files', '', _('file list')),
3043 ('F', 'files', '', _('file list')),
3023 ('m', 'message', '', _('commit message')),
3044 ('m', 'message', '', _('commit message')),
3024 ('l', 'logfile', '', _('commit message file'))],
3045 ('l', 'logfile', '', _('commit message file'))],
3025 _('hg debugrawcommit [OPTION]... [FILE]...')),
3046 _('hg debugrawcommit [OPTION]... [FILE]...')),
3026 "recover": (recover, [], _('hg recover')),
3047 "recover": (recover, [], _('hg recover')),
3027 "^remove|rm":
3048 "^remove|rm":
3028 (remove,
3049 (remove,
3029 [('f', 'force', None, _('remove file even if modified')),
3050 [('f', 'force', None, _('remove file even if modified')),
3030 ('I', 'include', [], _('include names matching the given patterns')),
3051 ('I', 'include', [], _('include names matching the given patterns')),
3031 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
3052 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
3032 _('hg remove [OPTION]... FILE...')),
3053 _('hg remove [OPTION]... FILE...')),
3033 "rename|mv":
3054 "rename|mv":
3034 (rename,
3055 (rename,
3035 [('A', 'after', None, _('record a rename that has already occurred')),
3056 [('A', 'after', None, _('record a rename that has already occurred')),
3036 ('f', 'force', None,
3057 ('f', 'force', None,
3037 _('forcibly copy over an existing managed file')),
3058 _('forcibly copy over an existing managed file')),
3038 ('I', 'include', [], _('include names matching the given patterns')),
3059 ('I', 'include', [], _('include names matching the given patterns')),
3039 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
3060 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
3040 _('hg rename [OPTION]... SOURCE... DEST')),
3061 _('hg rename [OPTION]... SOURCE... DEST')),
3041 "^revert":
3062 "^revert":
3042 (revert,
3063 (revert,
3043 [('r', 'rev', '', _('revision to revert to')),
3064 [('r', 'rev', '', _('revision to revert to')),
3044 ('', 'no-backup', None, _('do not save backup copies of files')),
3065 ('', 'no-backup', None, _('do not save backup copies of files')),
3045 ('I', 'include', [], _('include names matching given patterns')),
3066 ('I', 'include', [], _('include names matching given patterns')),
3046 ('X', 'exclude', [], _('exclude names matching given patterns'))],
3067 ('X', 'exclude', [], _('exclude names matching given patterns'))],
3047 _('hg revert [-r REV] [NAME]...')),
3068 _('hg revert [-r REV] [NAME]...')),
3048 "root": (root, [], _('hg root')),
3069 "root": (root, [], _('hg root')),
3049 "^serve":
3070 "^serve":
3050 (serve,
3071 (serve,
3051 [('A', 'accesslog', '', _('name of access log file to write to')),
3072 [('A', 'accesslog', '', _('name of access log file to write to')),
3052 ('d', 'daemon', None, _('run server in background')),
3073 ('d', 'daemon', None, _('run server in background')),
3053 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
3074 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
3054 ('E', 'errorlog', '', _('name of error log file to write to')),
3075 ('E', 'errorlog', '', _('name of error log file to write to')),
3055 ('p', 'port', 0, _('port to use (default: 8000)')),
3076 ('p', 'port', 0, _('port to use (default: 8000)')),
3056 ('a', 'address', '', _('address to use')),
3077 ('a', 'address', '', _('address to use')),
3057 ('n', 'name', '',
3078 ('n', 'name', '',
3058 _('name to show in web pages (default: working dir)')),
3079 _('name to show in web pages (default: working dir)')),
3059 ('', 'pid-file', '', _('name of file to write process ID to')),
3080 ('', 'pid-file', '', _('name of file to write process ID to')),
3060 ('', 'stdio', None, _('for remote clients')),
3081 ('', 'stdio', None, _('for remote clients')),
3061 ('t', 'templates', '', _('web templates to use')),
3082 ('t', 'templates', '', _('web templates to use')),
3062 ('', 'style', '', _('template style to use')),
3083 ('', 'style', '', _('template style to use')),
3063 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4'))],
3084 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4'))],
3064 _('hg serve [OPTION]...')),
3085 _('hg serve [OPTION]...')),
3065 "^status|st":
3086 "^status|st":
3066 (status,
3087 (status,
3067 [('m', 'modified', None, _('show only modified files')),
3088 [('m', 'modified', None, _('show only modified files')),
3068 ('a', 'added', None, _('show only added files')),
3089 ('a', 'added', None, _('show only added files')),
3069 ('r', 'removed', None, _('show only removed files')),
3090 ('r', 'removed', None, _('show only removed files')),
3070 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
3091 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
3071 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
3092 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
3072 ('i', 'ignored', None, _('show ignored files')),
3093 ('i', 'ignored', None, _('show ignored files')),
3073 ('n', 'no-status', None, _('hide status prefix')),
3094 ('n', 'no-status', None, _('hide status prefix')),
3074 ('0', 'print0', None,
3095 ('0', 'print0', None,
3075 _('end filenames with NUL, for use with xargs')),
3096 _('end filenames with NUL, for use with xargs')),
3076 ('I', 'include', [], _('include names matching the given patterns')),
3097 ('I', 'include', [], _('include names matching the given patterns')),
3077 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
3098 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
3078 _('hg status [OPTION]... [FILE]...')),
3099 _('hg status [OPTION]... [FILE]...')),
3079 "tag":
3100 "tag":
3080 (tag,
3101 (tag,
3081 [('l', 'local', None, _('make the tag local')),
3102 [('l', 'local', None, _('make the tag local')),
3082 ('m', 'message', '', _('message for tag commit log entry')),
3103 ('m', 'message', '', _('message for tag commit log entry')),
3083 ('d', 'date', '', _('record datecode as commit date')),
3104 ('d', 'date', '', _('record datecode as commit date')),
3084 ('u', 'user', '', _('record user as commiter')),
3105 ('u', 'user', '', _('record user as commiter')),
3085 ('r', 'rev', '', _('revision to tag'))],
3106 ('r', 'rev', '', _('revision to tag'))],
3086 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')),
3107 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')),
3087 "tags": (tags, [], _('hg tags')),
3108 "tags": (tags, [], _('hg tags')),
3088 "tip":
3109 "tip":
3089 (tip,
3110 (tip,
3090 [('b', 'branches', None, _('show branches')),
3111 [('b', 'branches', None, _('show branches')),
3091 ('', 'style', '', _('display using template map file')),
3112 ('', 'style', '', _('display using template map file')),
3092 ('p', 'patch', None, _('show patch')),
3113 ('p', 'patch', None, _('show patch')),
3093 ('', 'template', '', _('display with template'))],
3114 ('', 'template', '', _('display with template'))],
3094 _('hg tip [-b] [-p]')),
3115 _('hg tip [-b] [-p]')),
3095 "unbundle":
3116 "unbundle":
3096 (unbundle,
3117 (unbundle,
3097 [('u', 'update', None,
3118 [('u', 'update', None,
3098 _('update the working directory to tip after unbundle'))],
3119 _('update the working directory to tip after unbundle'))],
3099 _('hg unbundle [-u] FILE')),
3120 _('hg unbundle [-u] FILE')),
3100 "undo": (undo, [], _('hg undo')),
3121 "undo": (undo, [], _('hg undo')),
3101 "^update|up|checkout|co":
3122 "^update|up|checkout|co":
3102 (update,
3123 (update,
3103 [('b', 'branch', '', _('checkout the head of a specific branch')),
3124 [('b', 'branch', '', _('checkout the head of a specific branch')),
3104 ('', 'style', '', _('display using template map file')),
3125 ('', 'style', '', _('display using template map file')),
3105 ('m', 'merge', None, _('allow merging of branches')),
3126 ('m', 'merge', None, _('allow merging of branches')),
3106 ('C', 'clean', None, _('overwrite locally modified files')),
3127 ('C', 'clean', None, _('overwrite locally modified files')),
3107 ('f', 'force', None, _('force a merge with outstanding changes')),
3128 ('f', 'force', None, _('force a merge with outstanding changes')),
3108 ('', 'template', '', _('display with template'))],
3129 ('', 'template', '', _('display with template'))],
3109 _('hg update [-b TAG] [-m] [-C] [-f] [REV]')),
3130 _('hg update [-b TAG] [-m] [-C] [-f] [REV]')),
3110 "verify": (verify, [], _('hg verify')),
3131 "verify": (verify, [], _('hg verify')),
3111 "version": (show_version, [], _('hg version')),
3132 "version": (show_version, [], _('hg version')),
3112 }
3133 }
3113
3134
3114 globalopts = [
3135 globalopts = [
3115 ('R', 'repository', '',
3136 ('R', 'repository', '',
3116 _('repository root directory or symbolic path name')),
3137 _('repository root directory or symbolic path name')),
3117 ('', 'cwd', '', _('change working directory')),
3138 ('', 'cwd', '', _('change working directory')),
3118 ('y', 'noninteractive', None,
3139 ('y', 'noninteractive', None,
3119 _('do not prompt, assume \'yes\' for any required answers')),
3140 _('do not prompt, assume \'yes\' for any required answers')),
3120 ('q', 'quiet', None, _('suppress output')),
3141 ('q', 'quiet', None, _('suppress output')),
3121 ('v', 'verbose', None, _('enable additional output')),
3142 ('v', 'verbose', None, _('enable additional output')),
3122 ('', 'debug', None, _('enable debugging output')),
3143 ('', 'debug', None, _('enable debugging output')),
3123 ('', 'debugger', None, _('start debugger')),
3144 ('', 'debugger', None, _('start debugger')),
3124 ('', 'traceback', None, _('print traceback on exception')),
3145 ('', 'traceback', None, _('print traceback on exception')),
3125 ('', 'time', None, _('time how long the command takes')),
3146 ('', 'time', None, _('time how long the command takes')),
3126 ('', 'profile', None, _('print command execution profile')),
3147 ('', 'profile', None, _('print command execution profile')),
3127 ('', 'version', None, _('output version information and exit')),
3148 ('', 'version', None, _('output version information and exit')),
3128 ('h', 'help', None, _('display help and exit')),
3149 ('h', 'help', None, _('display help and exit')),
3129 ]
3150 ]
3130
3151
3131 norepo = ("clone init version help debugancestor debugcomplete debugdata"
3152 norepo = ("clone init version help debugancestor debugcomplete debugdata"
3132 " debugindex debugindexdot")
3153 " debugindex debugindexdot")
3133 optionalrepo = ("paths debugconfig")
3154 optionalrepo = ("paths debugconfig")
3134
3155
3135 def findpossible(cmd):
3156 def findpossible(cmd):
3136 """
3157 """
3137 Return cmd -> (aliases, command table entry)
3158 Return cmd -> (aliases, command table entry)
3138 for each matching command
3159 for each matching command
3139 """
3160 """
3140 choice = {}
3161 choice = {}
3141 debugchoice = {}
3162 debugchoice = {}
3142 for e in table.keys():
3163 for e in table.keys():
3143 aliases = e.lstrip("^").split("|")
3164 aliases = e.lstrip("^").split("|")
3144 if cmd in aliases:
3165 if cmd in aliases:
3145 choice[cmd] = (aliases, table[e])
3166 choice[cmd] = (aliases, table[e])
3146 continue
3167 continue
3147 for a in aliases:
3168 for a in aliases:
3148 if a.startswith(cmd):
3169 if a.startswith(cmd):
3149 if aliases[0].startswith("debug"):
3170 if aliases[0].startswith("debug"):
3150 debugchoice[a] = (aliases, table[e])
3171 debugchoice[a] = (aliases, table[e])
3151 else:
3172 else:
3152 choice[a] = (aliases, table[e])
3173 choice[a] = (aliases, table[e])
3153 break
3174 break
3154
3175
3155 if not choice and debugchoice:
3176 if not choice and debugchoice:
3156 choice = debugchoice
3177 choice = debugchoice
3157
3178
3158 return choice
3179 return choice
3159
3180
3160 def find(cmd):
3181 def find(cmd):
3161 """Return (aliases, command table entry) for command string."""
3182 """Return (aliases, command table entry) for command string."""
3162 choice = findpossible(cmd)
3183 choice = findpossible(cmd)
3163
3184
3164 if choice.has_key(cmd):
3185 if choice.has_key(cmd):
3165 return choice[cmd]
3186 return choice[cmd]
3166
3187
3167 if len(choice) > 1:
3188 if len(choice) > 1:
3168 clist = choice.keys()
3189 clist = choice.keys()
3169 clist.sort()
3190 clist.sort()
3170 raise AmbiguousCommand(cmd, clist)
3191 raise AmbiguousCommand(cmd, clist)
3171
3192
3172 if choice:
3193 if choice:
3173 return choice.values()[0]
3194 return choice.values()[0]
3174
3195
3175 raise UnknownCommand(cmd)
3196 raise UnknownCommand(cmd)
3176
3197
3177 class SignalInterrupt(Exception):
3198 class SignalInterrupt(Exception):
3178 """Exception raised on SIGTERM and SIGHUP."""
3199 """Exception raised on SIGTERM and SIGHUP."""
3179
3200
3180 def catchterm(*args):
3201 def catchterm(*args):
3181 raise SignalInterrupt
3202 raise SignalInterrupt
3182
3203
3183 def run():
3204 def run():
3184 sys.exit(dispatch(sys.argv[1:]))
3205 sys.exit(dispatch(sys.argv[1:]))
3185
3206
3186 class ParseError(Exception):
3207 class ParseError(Exception):
3187 """Exception raised on errors in parsing the command line."""
3208 """Exception raised on errors in parsing the command line."""
3188
3209
3189 def parse(ui, args):
3210 def parse(ui, args):
3190 options = {}
3211 options = {}
3191 cmdoptions = {}
3212 cmdoptions = {}
3192
3213
3193 try:
3214 try:
3194 args = fancyopts.fancyopts(args, globalopts, options)
3215 args = fancyopts.fancyopts(args, globalopts, options)
3195 except fancyopts.getopt.GetoptError, inst:
3216 except fancyopts.getopt.GetoptError, inst:
3196 raise ParseError(None, inst)
3217 raise ParseError(None, inst)
3197
3218
3198 if args:
3219 if args:
3199 cmd, args = args[0], args[1:]
3220 cmd, args = args[0], args[1:]
3200 aliases, i = find(cmd)
3221 aliases, i = find(cmd)
3201 cmd = aliases[0]
3222 cmd = aliases[0]
3202 defaults = ui.config("defaults", cmd)
3223 defaults = ui.config("defaults", cmd)
3203 if defaults:
3224 if defaults:
3204 args = defaults.split() + args
3225 args = defaults.split() + args
3205 c = list(i[1])
3226 c = list(i[1])
3206 else:
3227 else:
3207 cmd = None
3228 cmd = None
3208 c = []
3229 c = []
3209
3230
3210 # combine global options into local
3231 # combine global options into local
3211 for o in globalopts:
3232 for o in globalopts:
3212 c.append((o[0], o[1], options[o[1]], o[3]))
3233 c.append((o[0], o[1], options[o[1]], o[3]))
3213
3234
3214 try:
3235 try:
3215 args = fancyopts.fancyopts(args, c, cmdoptions)
3236 args = fancyopts.fancyopts(args, c, cmdoptions)
3216 except fancyopts.getopt.GetoptError, inst:
3237 except fancyopts.getopt.GetoptError, inst:
3217 raise ParseError(cmd, inst)
3238 raise ParseError(cmd, inst)
3218
3239
3219 # separate global options back out
3240 # separate global options back out
3220 for o in globalopts:
3241 for o in globalopts:
3221 n = o[1]
3242 n = o[1]
3222 options[n] = cmdoptions[n]
3243 options[n] = cmdoptions[n]
3223 del cmdoptions[n]
3244 del cmdoptions[n]
3224
3245
3225 return (cmd, cmd and i[0] or None, args, options, cmdoptions)
3246 return (cmd, cmd and i[0] or None, args, options, cmdoptions)
3226
3247
3227 def dispatch(args):
3248 def dispatch(args):
3228 signal.signal(signal.SIGTERM, catchterm)
3249 signal.signal(signal.SIGTERM, catchterm)
3229 try:
3250 try:
3230 signal.signal(signal.SIGHUP, catchterm)
3251 signal.signal(signal.SIGHUP, catchterm)
3231 except AttributeError:
3252 except AttributeError:
3232 pass
3253 pass
3233
3254
3234 try:
3255 try:
3235 u = ui.ui()
3256 u = ui.ui()
3236 except util.Abort, inst:
3257 except util.Abort, inst:
3237 sys.stderr.write(_("abort: %s\n") % inst)
3258 sys.stderr.write(_("abort: %s\n") % inst)
3238 sys.exit(1)
3259 sys.exit(1)
3239
3260
3240 external = []
3261 external = []
3241 for x in u.extensions():
3262 for x in u.extensions():
3242 def on_exception(exc, inst):
3263 def on_exception(exc, inst):
3243 u.warn(_("*** failed to import extension %s\n") % x[1])
3264 u.warn(_("*** failed to import extension %s\n") % x[1])
3244 u.warn("%s\n" % inst)
3265 u.warn("%s\n" % inst)
3245 if "--traceback" in sys.argv[1:]:
3266 if "--traceback" in sys.argv[1:]:
3246 traceback.print_exc()
3267 traceback.print_exc()
3247 if x[1]:
3268 if x[1]:
3248 try:
3269 try:
3249 mod = imp.load_source(x[0], x[1])
3270 mod = imp.load_source(x[0], x[1])
3250 except Exception, inst:
3271 except Exception, inst:
3251 on_exception(Exception, inst)
3272 on_exception(Exception, inst)
3252 continue
3273 continue
3253 else:
3274 else:
3254 def importh(name):
3275 def importh(name):
3255 mod = __import__(name)
3276 mod = __import__(name)
3256 components = name.split('.')
3277 components = name.split('.')
3257 for comp in components[1:]:
3278 for comp in components[1:]:
3258 mod = getattr(mod, comp)
3279 mod = getattr(mod, comp)
3259 return mod
3280 return mod
3260 try:
3281 try:
3261 try:
3282 try:
3262 mod = importh("hgext." + x[0])
3283 mod = importh("hgext." + x[0])
3263 except ImportError:
3284 except ImportError:
3264 mod = importh(x[0])
3285 mod = importh(x[0])
3265 except Exception, inst:
3286 except Exception, inst:
3266 on_exception(Exception, inst)
3287 on_exception(Exception, inst)
3267 continue
3288 continue
3268
3289
3269 external.append(mod)
3290 external.append(mod)
3270 for x in external:
3291 for x in external:
3271 cmdtable = getattr(x, 'cmdtable', {})
3292 cmdtable = getattr(x, 'cmdtable', {})
3272 for t in cmdtable:
3293 for t in cmdtable:
3273 if t in table:
3294 if t in table:
3274 u.warn(_("module %s overrides %s\n") % (x.__name__, t))
3295 u.warn(_("module %s overrides %s\n") % (x.__name__, t))
3275 table.update(cmdtable)
3296 table.update(cmdtable)
3276
3297
3277 try:
3298 try:
3278 cmd, func, args, options, cmdoptions = parse(u, args)
3299 cmd, func, args, options, cmdoptions = parse(u, args)
3279 if options["time"]:
3300 if options["time"]:
3280 def get_times():
3301 def get_times():
3281 t = os.times()
3302 t = os.times()
3282 if t[4] == 0.0: # Windows leaves this as zero, so use time.clock()
3303 if t[4] == 0.0: # Windows leaves this as zero, so use time.clock()
3283 t = (t[0], t[1], t[2], t[3], time.clock())
3304 t = (t[0], t[1], t[2], t[3], time.clock())
3284 return t
3305 return t
3285 s = get_times()
3306 s = get_times()
3286 def print_time():
3307 def print_time():
3287 t = get_times()
3308 t = get_times()
3288 u.warn(_("Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
3309 u.warn(_("Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
3289 (t[4]-s[4], t[0]-s[0], t[2]-s[2], t[1]-s[1], t[3]-s[3]))
3310 (t[4]-s[4], t[0]-s[0], t[2]-s[2], t[1]-s[1], t[3]-s[3]))
3290 atexit.register(print_time)
3311 atexit.register(print_time)
3291
3312
3292 u.updateopts(options["verbose"], options["debug"], options["quiet"],
3313 u.updateopts(options["verbose"], options["debug"], options["quiet"],
3293 not options["noninteractive"])
3314 not options["noninteractive"])
3294
3315
3295 # enter the debugger before command execution
3316 # enter the debugger before command execution
3296 if options['debugger']:
3317 if options['debugger']:
3297 pdb.set_trace()
3318 pdb.set_trace()
3298
3319
3299 try:
3320 try:
3300 if options['cwd']:
3321 if options['cwd']:
3301 try:
3322 try:
3302 os.chdir(options['cwd'])
3323 os.chdir(options['cwd'])
3303 except OSError, inst:
3324 except OSError, inst:
3304 raise util.Abort('%s: %s' %
3325 raise util.Abort('%s: %s' %
3305 (options['cwd'], inst.strerror))
3326 (options['cwd'], inst.strerror))
3306
3327
3307 path = u.expandpath(options["repository"]) or ""
3328 path = u.expandpath(options["repository"]) or ""
3308 repo = path and hg.repository(u, path=path) or None
3329 repo = path and hg.repository(u, path=path) or None
3309
3330
3310 if options['help']:
3331 if options['help']:
3311 help_(u, cmd, options['version'])
3332 help_(u, cmd, options['version'])
3312 sys.exit(0)
3333 sys.exit(0)
3313 elif options['version']:
3334 elif options['version']:
3314 show_version(u)
3335 show_version(u)
3315 sys.exit(0)
3336 sys.exit(0)
3316 elif not cmd:
3337 elif not cmd:
3317 help_(u, 'shortlist')
3338 help_(u, 'shortlist')
3318 sys.exit(0)
3339 sys.exit(0)
3319
3340
3320 if cmd not in norepo.split():
3341 if cmd not in norepo.split():
3321 try:
3342 try:
3322 if not repo:
3343 if not repo:
3323 repo = hg.repository(u, path=path)
3344 repo = hg.repository(u, path=path)
3324 u = repo.ui
3345 u = repo.ui
3325 for x in external:
3346 for x in external:
3326 if hasattr(x, 'reposetup'):
3347 if hasattr(x, 'reposetup'):
3327 x.reposetup(u, repo)
3348 x.reposetup(u, repo)
3328 except hg.RepoError:
3349 except hg.RepoError:
3329 if cmd not in optionalrepo.split():
3350 if cmd not in optionalrepo.split():
3330 raise
3351 raise
3331 d = lambda: func(u, repo, *args, **cmdoptions)
3352 d = lambda: func(u, repo, *args, **cmdoptions)
3332 else:
3353 else:
3333 d = lambda: func(u, *args, **cmdoptions)
3354 d = lambda: func(u, *args, **cmdoptions)
3334
3355
3335 try:
3356 try:
3336 if options['profile']:
3357 if options['profile']:
3337 import hotshot, hotshot.stats
3358 import hotshot, hotshot.stats
3338 prof = hotshot.Profile("hg.prof")
3359 prof = hotshot.Profile("hg.prof")
3339 try:
3360 try:
3340 try:
3361 try:
3341 return prof.runcall(d)
3362 return prof.runcall(d)
3342 except:
3363 except:
3343 try:
3364 try:
3344 u.warn(_('exception raised - generating '
3365 u.warn(_('exception raised - generating '
3345 'profile anyway\n'))
3366 'profile anyway\n'))
3346 except:
3367 except:
3347 pass
3368 pass
3348 raise
3369 raise
3349 finally:
3370 finally:
3350 prof.close()
3371 prof.close()
3351 stats = hotshot.stats.load("hg.prof")
3372 stats = hotshot.stats.load("hg.prof")
3352 stats.strip_dirs()
3373 stats.strip_dirs()
3353 stats.sort_stats('time', 'calls')
3374 stats.sort_stats('time', 'calls')
3354 stats.print_stats(40)
3375 stats.print_stats(40)
3355 else:
3376 else:
3356 return d()
3377 return d()
3357 finally:
3378 finally:
3358 u.flush()
3379 u.flush()
3359 except:
3380 except:
3360 # enter the debugger when we hit an exception
3381 # enter the debugger when we hit an exception
3361 if options['debugger']:
3382 if options['debugger']:
3362 pdb.post_mortem(sys.exc_info()[2])
3383 pdb.post_mortem(sys.exc_info()[2])
3363 if options['traceback']:
3384 if options['traceback']:
3364 traceback.print_exc()
3385 traceback.print_exc()
3365 raise
3386 raise
3366 except ParseError, inst:
3387 except ParseError, inst:
3367 if inst.args[0]:
3388 if inst.args[0]:
3368 u.warn(_("hg %s: %s\n") % (inst.args[0], inst.args[1]))
3389 u.warn(_("hg %s: %s\n") % (inst.args[0], inst.args[1]))
3369 help_(u, inst.args[0])
3390 help_(u, inst.args[0])
3370 else:
3391 else:
3371 u.warn(_("hg: %s\n") % inst.args[1])
3392 u.warn(_("hg: %s\n") % inst.args[1])
3372 help_(u, 'shortlist')
3393 help_(u, 'shortlist')
3373 sys.exit(-1)
3394 sys.exit(-1)
3374 except AmbiguousCommand, inst:
3395 except AmbiguousCommand, inst:
3375 u.warn(_("hg: command '%s' is ambiguous:\n %s\n") %
3396 u.warn(_("hg: command '%s' is ambiguous:\n %s\n") %
3376 (inst.args[0], " ".join(inst.args[1])))
3397 (inst.args[0], " ".join(inst.args[1])))
3377 sys.exit(1)
3398 sys.exit(1)
3378 except UnknownCommand, inst:
3399 except UnknownCommand, inst:
3379 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
3400 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
3380 help_(u, 'shortlist')
3401 help_(u, 'shortlist')
3381 sys.exit(1)
3402 sys.exit(1)
3382 except hg.RepoError, inst:
3403 except hg.RepoError, inst:
3383 u.warn(_("abort: "), inst, "!\n")
3404 u.warn(_("abort: "), inst, "!\n")
3384 except lock.LockHeld, inst:
3405 except lock.LockHeld, inst:
3385 if inst.errno == errno.ETIMEDOUT:
3406 if inst.errno == errno.ETIMEDOUT:
3386 reason = _('timed out waiting for lock held by %s') % inst.locker
3407 reason = _('timed out waiting for lock held by %s') % inst.locker
3387 else:
3408 else:
3388 reason = _('lock held by %s') % inst.locker
3409 reason = _('lock held by %s') % inst.locker
3389 u.warn(_("abort: %s: %s\n") % (inst.desc or inst.filename, reason))
3410 u.warn(_("abort: %s: %s\n") % (inst.desc or inst.filename, reason))
3390 except lock.LockUnavailable, inst:
3411 except lock.LockUnavailable, inst:
3391 u.warn(_("abort: could not lock %s: %s\n") %
3412 u.warn(_("abort: could not lock %s: %s\n") %
3392 (inst.desc or inst.filename, inst.strerror))
3413 (inst.desc or inst.filename, inst.strerror))
3393 except revlog.RevlogError, inst:
3414 except revlog.RevlogError, inst:
3394 u.warn(_("abort: "), inst, "!\n")
3415 u.warn(_("abort: "), inst, "!\n")
3395 except SignalInterrupt:
3416 except SignalInterrupt:
3396 u.warn(_("killed!\n"))
3417 u.warn(_("killed!\n"))
3397 except KeyboardInterrupt:
3418 except KeyboardInterrupt:
3398 try:
3419 try:
3399 u.warn(_("interrupted!\n"))
3420 u.warn(_("interrupted!\n"))
3400 except IOError, inst:
3421 except IOError, inst:
3401 if inst.errno == errno.EPIPE:
3422 if inst.errno == errno.EPIPE:
3402 if u.debugflag:
3423 if u.debugflag:
3403 u.warn(_("\nbroken pipe\n"))
3424 u.warn(_("\nbroken pipe\n"))
3404 else:
3425 else:
3405 raise
3426 raise
3406 except IOError, inst:
3427 except IOError, inst:
3407 if hasattr(inst, "code"):
3428 if hasattr(inst, "code"):
3408 u.warn(_("abort: %s\n") % inst)
3429 u.warn(_("abort: %s\n") % inst)
3409 elif hasattr(inst, "reason"):
3430 elif hasattr(inst, "reason"):
3410 u.warn(_("abort: error: %s\n") % inst.reason[1])
3431 u.warn(_("abort: error: %s\n") % inst.reason[1])
3411 elif hasattr(inst, "args") and inst[0] == errno.EPIPE:
3432 elif hasattr(inst, "args") and inst[0] == errno.EPIPE:
3412 if u.debugflag:
3433 if u.debugflag:
3413 u.warn(_("broken pipe\n"))
3434 u.warn(_("broken pipe\n"))
3414 elif getattr(inst, "strerror", None):
3435 elif getattr(inst, "strerror", None):
3415 if getattr(inst, "filename", None):
3436 if getattr(inst, "filename", None):
3416 u.warn(_("abort: %s - %s\n") % (inst.strerror, inst.filename))
3437 u.warn(_("abort: %s - %s\n") % (inst.strerror, inst.filename))
3417 else:
3438 else:
3418 u.warn(_("abort: %s\n") % inst.strerror)
3439 u.warn(_("abort: %s\n") % inst.strerror)
3419 else:
3440 else:
3420 raise
3441 raise
3421 except OSError, inst:
3442 except OSError, inst:
3422 if hasattr(inst, "filename"):
3443 if hasattr(inst, "filename"):
3423 u.warn(_("abort: %s: %s\n") % (inst.strerror, inst.filename))
3444 u.warn(_("abort: %s: %s\n") % (inst.strerror, inst.filename))
3424 else:
3445 else:
3425 u.warn(_("abort: %s\n") % inst.strerror)
3446 u.warn(_("abort: %s\n") % inst.strerror)
3426 except util.Abort, inst:
3447 except util.Abort, inst:
3427 u.warn(_('abort: '), inst.args[0] % inst.args[1:], '\n')
3448 u.warn(_('abort: '), inst.args[0] % inst.args[1:], '\n')
3428 sys.exit(1)
3449 sys.exit(1)
3429 except TypeError, inst:
3450 except TypeError, inst:
3430 # was this an argument error?
3451 # was this an argument error?
3431 tb = traceback.extract_tb(sys.exc_info()[2])
3452 tb = traceback.extract_tb(sys.exc_info()[2])
3432 if len(tb) > 2: # no
3453 if len(tb) > 2: # no
3433 raise
3454 raise
3434 u.debug(inst, "\n")
3455 u.debug(inst, "\n")
3435 u.warn(_("%s: invalid arguments\n") % cmd)
3456 u.warn(_("%s: invalid arguments\n") % cmd)
3436 help_(u, cmd)
3457 help_(u, cmd)
3437 except SystemExit:
3458 except SystemExit:
3438 # don't catch this in the catch-all below
3459 # don't catch this in the catch-all below
3439 raise
3460 raise
3440 except:
3461 except:
3441 u.warn(_("** unknown exception encountered, details follow\n"))
3462 u.warn(_("** unknown exception encountered, details follow\n"))
3442 u.warn(_("** report bug details to mercurial@selenic.com\n"))
3463 u.warn(_("** report bug details to mercurial@selenic.com\n"))
3443 u.warn(_("** Mercurial Distributed SCM (version %s)\n")
3464 u.warn(_("** Mercurial Distributed SCM (version %s)\n")
3444 % version.get_version())
3465 % version.get_version())
3445 raise
3466 raise
3446
3467
3447 sys.exit(-1)
3468 sys.exit(-1)
@@ -1,459 +1,464 b''
1 """
1 """
2 dirstate.py - working directory tracking for mercurial
2 dirstate.py - working directory tracking for mercurial
3
3
4 Copyright 2005 Matt Mackall <mpm@selenic.com>
4 Copyright 2005 Matt Mackall <mpm@selenic.com>
5
5
6 This software may be used and distributed according to the terms
6 This software may be used and distributed according to the terms
7 of the GNU General Public License, incorporated herein by reference.
7 of the GNU General Public License, incorporated herein by reference.
8 """
8 """
9
9
10 import struct, os
10 import struct, os
11 from node import *
11 from node import *
12 from i18n import gettext as _
12 from i18n import gettext as _
13 from demandload import *
13 from demandload import *
14 demandload(globals(), "time bisect stat util re errno")
14 demandload(globals(), "time bisect stat util re errno")
15
15
16 class dirstate(object):
16 class dirstate(object):
17 def __init__(self, opener, ui, root):
17 def __init__(self, opener, ui, root):
18 self.opener = opener
18 self.opener = opener
19 self.root = root
19 self.root = root
20 self.dirty = 0
20 self.dirty = 0
21 self.ui = ui
21 self.ui = ui
22 self.map = None
22 self.map = None
23 self.pl = None
23 self.pl = None
24 self.copies = {}
24 self.copies = {}
25 self.ignorefunc = None
25 self.ignorefunc = None
26 self.blockignore = False
26 self.blockignore = False
27
27
28 def wjoin(self, f):
28 def wjoin(self, f):
29 return os.path.join(self.root, f)
29 return os.path.join(self.root, f)
30
30
31 def getcwd(self):
31 def getcwd(self):
32 cwd = os.getcwd()
32 cwd = os.getcwd()
33 if cwd == self.root: return ''
33 if cwd == self.root: return ''
34 return cwd[len(self.root) + 1:]
34 return cwd[len(self.root) + 1:]
35
35
36 def hgignore(self):
36 def hgignore(self):
37 '''return the contents of .hgignore files as a list of patterns.
37 '''return the contents of .hgignore files as a list of patterns.
38
38
39 the files parsed for patterns include:
39 the files parsed for patterns include:
40 .hgignore in the repository root
40 .hgignore in the repository root
41 any additional files specified in the [ui] section of ~/.hgrc
41 any additional files specified in the [ui] section of ~/.hgrc
42
42
43 trailing white space is dropped.
43 trailing white space is dropped.
44 the escape character is backslash.
44 the escape character is backslash.
45 comments start with #.
45 comments start with #.
46 empty lines are skipped.
46 empty lines are skipped.
47
47
48 lines can be of the following formats:
48 lines can be of the following formats:
49
49
50 syntax: regexp # defaults following lines to non-rooted regexps
50 syntax: regexp # defaults following lines to non-rooted regexps
51 syntax: glob # defaults following lines to non-rooted globs
51 syntax: glob # defaults following lines to non-rooted globs
52 re:pattern # non-rooted regular expression
52 re:pattern # non-rooted regular expression
53 glob:pattern # non-rooted glob
53 glob:pattern # non-rooted glob
54 pattern # pattern of the current default type'''
54 pattern # pattern of the current default type'''
55 syntaxes = {'re': 'relre:', 'regexp': 'relre:', 'glob': 'relglob:'}
55 syntaxes = {'re': 'relre:', 'regexp': 'relre:', 'glob': 'relglob:'}
56 def parselines(fp):
56 def parselines(fp):
57 for line in fp:
57 for line in fp:
58 escape = False
58 escape = False
59 for i in xrange(len(line)):
59 for i in xrange(len(line)):
60 if escape: escape = False
60 if escape: escape = False
61 elif line[i] == '\\': escape = True
61 elif line[i] == '\\': escape = True
62 elif line[i] == '#': break
62 elif line[i] == '#': break
63 line = line[:i].rstrip()
63 line = line[:i].rstrip()
64 if line: yield line
64 if line: yield line
65 repoignore = self.wjoin('.hgignore')
65 repoignore = self.wjoin('.hgignore')
66 files = [repoignore]
66 files = [repoignore]
67 files.extend(self.ui.hgignorefiles())
67 files.extend(self.ui.hgignorefiles())
68 pats = {}
68 pats = {}
69 for f in files:
69 for f in files:
70 try:
70 try:
71 pats[f] = []
71 pats[f] = []
72 fp = open(f)
72 fp = open(f)
73 syntax = 'relre:'
73 syntax = 'relre:'
74 for line in parselines(fp):
74 for line in parselines(fp):
75 if line.startswith('syntax:'):
75 if line.startswith('syntax:'):
76 s = line[7:].strip()
76 s = line[7:].strip()
77 try:
77 try:
78 syntax = syntaxes[s]
78 syntax = syntaxes[s]
79 except KeyError:
79 except KeyError:
80 self.ui.warn(_("%s: ignoring invalid "
80 self.ui.warn(_("%s: ignoring invalid "
81 "syntax '%s'\n") % (f, s))
81 "syntax '%s'\n") % (f, s))
82 continue
82 continue
83 pat = syntax + line
83 pat = syntax + line
84 for s in syntaxes.values():
84 for s in syntaxes.values():
85 if line.startswith(s):
85 if line.startswith(s):
86 pat = line
86 pat = line
87 break
87 break
88 pats[f].append(pat)
88 pats[f].append(pat)
89 except IOError, inst:
89 except IOError, inst:
90 if f != repoignore:
90 if f != repoignore:
91 self.ui.warn(_("skipping unreadable ignore file"
91 self.ui.warn(_("skipping unreadable ignore file"
92 " '%s': %s\n") % (f, inst.strerror))
92 " '%s': %s\n") % (f, inst.strerror))
93 return pats
93 return pats
94
94
95 def ignore(self, fn):
95 def ignore(self, fn):
96 '''default match function used by dirstate and
96 '''default match function used by dirstate and
97 localrepository. this honours the repository .hgignore file
97 localrepository. this honours the repository .hgignore file
98 and any other files specified in the [ui] section of .hgrc.'''
98 and any other files specified in the [ui] section of .hgrc.'''
99 if self.blockignore:
99 if self.blockignore:
100 return False
100 return False
101 if not self.ignorefunc:
101 if not self.ignorefunc:
102 ignore = self.hgignore()
102 ignore = self.hgignore()
103 allpats = []
103 allpats = []
104 [allpats.extend(patlist) for patlist in ignore.values()]
104 [allpats.extend(patlist) for patlist in ignore.values()]
105 if allpats:
105 if allpats:
106 try:
106 try:
107 files, self.ignorefunc, anypats = (
107 files, self.ignorefunc, anypats = (
108 util.matcher(self.root, inc=allpats, src='.hgignore'))
108 util.matcher(self.root, inc=allpats, src='.hgignore'))
109 except util.Abort:
109 except util.Abort:
110 # Re-raise an exception where the src is the right file
110 # Re-raise an exception where the src is the right file
111 for f, patlist in ignore.items():
111 for f, patlist in ignore.items():
112 files, self.ignorefunc, anypats = (
112 files, self.ignorefunc, anypats = (
113 util.matcher(self.root, inc=patlist, src=f))
113 util.matcher(self.root, inc=patlist, src=f))
114 else:
114 else:
115 self.ignorefunc = util.never
115 self.ignorefunc = util.never
116 return self.ignorefunc(fn)
116 return self.ignorefunc(fn)
117
117
118 def __del__(self):
118 def __del__(self):
119 if self.dirty:
119 if self.dirty:
120 self.write()
120 self.write()
121
121
122 def __getitem__(self, key):
122 def __getitem__(self, key):
123 try:
123 try:
124 return self.map[key]
124 return self.map[key]
125 except TypeError:
125 except TypeError:
126 self.lazyread()
126 self.lazyread()
127 return self[key]
127 return self[key]
128
128
129 def __contains__(self, key):
129 def __contains__(self, key):
130 self.lazyread()
130 self.lazyread()
131 return key in self.map
131 return key in self.map
132
132
133 def parents(self):
133 def parents(self):
134 self.lazyread()
134 self.lazyread()
135 return self.pl
135 return self.pl
136
136
137 def markdirty(self):
137 def markdirty(self):
138 if not self.dirty:
138 if not self.dirty:
139 self.dirty = 1
139 self.dirty = 1
140
140
141 def setparents(self, p1, p2=nullid):
141 def setparents(self, p1, p2=nullid):
142 self.lazyread()
142 self.lazyread()
143 self.markdirty()
143 self.markdirty()
144 self.pl = p1, p2
144 self.pl = p1, p2
145
145
146 def state(self, key):
146 def state(self, key):
147 try:
147 try:
148 return self[key][0]
148 return self[key][0]
149 except KeyError:
149 except KeyError:
150 return "?"
150 return "?"
151
151
152 def lazyread(self):
152 def lazyread(self):
153 if self.map is None:
153 if self.map is None:
154 self.read()
154 self.read()
155
155
156 def read(self):
156 def read(self):
157 self.map = {}
157 self.map = {}
158 self.pl = [nullid, nullid]
158 self.pl = [nullid, nullid]
159 try:
159 try:
160 st = self.opener("dirstate").read()
160 st = self.opener("dirstate").read()
161 if not st: return
161 if not st: return
162 except: return
162 except: return
163
163
164 self.pl = [st[:20], st[20: 40]]
164 self.pl = [st[:20], st[20: 40]]
165
165
166 pos = 40
166 pos = 40
167 while pos < len(st):
167 while pos < len(st):
168 e = struct.unpack(">cllll", st[pos:pos+17])
168 e = struct.unpack(">cllll", st[pos:pos+17])
169 l = e[4]
169 l = e[4]
170 pos += 17
170 pos += 17
171 f = st[pos:pos + l]
171 f = st[pos:pos + l]
172 if '\0' in f:
172 if '\0' in f:
173 f, c = f.split('\0')
173 f, c = f.split('\0')
174 self.copies[f] = c
174 self.copies[f] = c
175 self.map[f] = e[:4]
175 self.map[f] = e[:4]
176 pos += l
176 pos += l
177
177
178 def copy(self, source, dest):
178 def copy(self, source, dest):
179 self.lazyread()
179 self.lazyread()
180 self.markdirty()
180 self.markdirty()
181 self.copies[dest] = source
181 self.copies[dest] = source
182
182
183 def copied(self, file):
183 def copied(self, file):
184 return self.copies.get(file, None)
184 return self.copies.get(file, None)
185
185
186 def update(self, files, state, **kw):
186 def update(self, files, state, **kw):
187 ''' current states:
187 ''' current states:
188 n normal
188 n normal
189 m needs merging
189 m needs merging
190 r marked for removal
190 r marked for removal
191 a marked for addition'''
191 a marked for addition'''
192
192
193 if not files: return
193 if not files: return
194 self.lazyread()
194 self.lazyread()
195 self.markdirty()
195 self.markdirty()
196 for f in files:
196 for f in files:
197 if state == "r":
197 if state == "r":
198 self.map[f] = ('r', 0, 0, 0)
198 self.map[f] = ('r', 0, 0, 0)
199 else:
199 else:
200 s = os.lstat(self.wjoin(f))
200 s = os.lstat(self.wjoin(f))
201 st_size = kw.get('st_size', s.st_size)
201 st_size = kw.get('st_size', s.st_size)
202 st_mtime = kw.get('st_mtime', s.st_mtime)
202 st_mtime = kw.get('st_mtime', s.st_mtime)
203 self.map[f] = (state, s.st_mode, st_size, st_mtime)
203 self.map[f] = (state, s.st_mode, st_size, st_mtime)
204 if self.copies.has_key(f):
204 if self.copies.has_key(f):
205 del self.copies[f]
205 del self.copies[f]
206
206
207 def forget(self, files):
207 def forget(self, files):
208 if not files: return
208 if not files: return
209 self.lazyread()
209 self.lazyread()
210 self.markdirty()
210 self.markdirty()
211 for f in files:
211 for f in files:
212 try:
212 try:
213 del self.map[f]
213 del self.map[f]
214 except KeyError:
214 except KeyError:
215 self.ui.warn(_("not in dirstate: %s!\n") % f)
215 self.ui.warn(_("not in dirstate: %s!\n") % f)
216 pass
216 pass
217
217
218 def clear(self):
218 def clear(self):
219 self.map = {}
219 self.map = {}
220 self.copies = {}
220 self.copies = {}
221 self.markdirty()
221 self.markdirty()
222
222
223 def rebuild(self, parent, files):
223 def rebuild(self, parent, files):
224 self.clear()
224 self.clear()
225 umask = os.umask(0)
225 umask = os.umask(0)
226 os.umask(umask)
226 os.umask(umask)
227 for f, mode in files:
227 for f, mode in files:
228 if mode:
228 if mode:
229 self.map[f] = ('n', ~umask, -1, 0)
229 self.map[f] = ('n', ~umask, -1, 0)
230 else:
230 else:
231 self.map[f] = ('n', ~umask & 0666, -1, 0)
231 self.map[f] = ('n', ~umask & 0666, -1, 0)
232 self.pl = (parent, nullid)
232 self.pl = (parent, nullid)
233 self.markdirty()
233 self.markdirty()
234
234
235 def write(self):
235 def write(self):
236 if not self.dirty:
236 if not self.dirty:
237 return
237 return
238 st = self.opener("dirstate", "w", atomic=True)
238 st = self.opener("dirstate", "w", atomic=True)
239 st.write("".join(self.pl))
239 st.write("".join(self.pl))
240 for f, e in self.map.items():
240 for f, e in self.map.items():
241 c = self.copied(f)
241 c = self.copied(f)
242 if c:
242 if c:
243 f = f + "\0" + c
243 f = f + "\0" + c
244 e = struct.pack(">cllll", e[0], e[1], e[2], e[3], len(f))
244 e = struct.pack(">cllll", e[0], e[1], e[2], e[3], len(f))
245 st.write(e + f)
245 st.write(e + f)
246 self.dirty = 0
246 self.dirty = 0
247
247
248 def filterfiles(self, files):
248 def filterfiles(self, files):
249 ret = {}
249 ret = {}
250 unknown = []
250 unknown = []
251
251
252 for x in files:
252 for x in files:
253 if x == '.':
253 if x == '.':
254 return self.map.copy()
254 return self.map.copy()
255 if x not in self.map:
255 if x not in self.map:
256 unknown.append(x)
256 unknown.append(x)
257 else:
257 else:
258 ret[x] = self.map[x]
258 ret[x] = self.map[x]
259
259
260 if not unknown:
260 if not unknown:
261 return ret
261 return ret
262
262
263 b = self.map.keys()
263 b = self.map.keys()
264 b.sort()
264 b.sort()
265 blen = len(b)
265 blen = len(b)
266
266
267 for x in unknown:
267 for x in unknown:
268 bs = bisect.bisect(b, x)
268 bs = bisect.bisect(b, x)
269 if bs != 0 and b[bs-1] == x:
269 if bs != 0 and b[bs-1] == x:
270 ret[x] = self.map[x]
270 ret[x] = self.map[x]
271 continue
271 continue
272 while bs < blen:
272 while bs < blen:
273 s = b[bs]
273 s = b[bs]
274 if len(s) > len(x) and s.startswith(x) and s[len(x)] == '/':
274 if len(s) > len(x) and s.startswith(x) and s[len(x)] == '/':
275 ret[s] = self.map[s]
275 ret[s] = self.map[s]
276 else:
276 else:
277 break
277 break
278 bs += 1
278 bs += 1
279 return ret
279 return ret
280
280
281 def supported_type(self, f, st, verbose=False):
281 def supported_type(self, f, st, verbose=False):
282 if stat.S_ISREG(st.st_mode):
282 if stat.S_ISREG(st.st_mode):
283 return True
283 return True
284 if verbose:
284 if verbose:
285 kind = 'unknown'
285 kind = 'unknown'
286 if stat.S_ISCHR(st.st_mode): kind = _('character device')
286 if stat.S_ISCHR(st.st_mode): kind = _('character device')
287 elif stat.S_ISBLK(st.st_mode): kind = _('block device')
287 elif stat.S_ISBLK(st.st_mode): kind = _('block device')
288 elif stat.S_ISFIFO(st.st_mode): kind = _('fifo')
288 elif stat.S_ISFIFO(st.st_mode): kind = _('fifo')
289 elif stat.S_ISLNK(st.st_mode): kind = _('symbolic link')
289 elif stat.S_ISLNK(st.st_mode): kind = _('symbolic link')
290 elif stat.S_ISSOCK(st.st_mode): kind = _('socket')
290 elif stat.S_ISSOCK(st.st_mode): kind = _('socket')
291 elif stat.S_ISDIR(st.st_mode): kind = _('directory')
291 elif stat.S_ISDIR(st.st_mode): kind = _('directory')
292 self.ui.warn(_('%s: unsupported file type (type is %s)\n') % (
292 self.ui.warn(_('%s: unsupported file type (type is %s)\n') % (
293 util.pathto(self.getcwd(), f),
293 util.pathto(self.getcwd(), f),
294 kind))
294 kind))
295 return False
295 return False
296
296
297 def statwalk(self, files=None, match=util.always, dc=None, ignored=False):
297 def statwalk(self, files=None, match=util.always, dc=None, ignored=False,
298 badmatch=None):
298 self.lazyread()
299 self.lazyread()
299
300
300 # walk all files by default
301 # walk all files by default
301 if not files:
302 if not files:
302 files = [self.root]
303 files = [self.root]
303 if not dc:
304 if not dc:
304 dc = self.map.copy()
305 dc = self.map.copy()
305 elif not dc:
306 elif not dc:
306 dc = self.filterfiles(files)
307 dc = self.filterfiles(files)
307
308
308 def statmatch(file_, stat):
309 def statmatch(file_, stat):
309 file_ = util.pconvert(file_)
310 file_ = util.pconvert(file_)
310 if not ignored and file_ not in dc and self.ignore(file_):
311 if not ignored and file_ not in dc and self.ignore(file_):
311 return False
312 return False
312 return match(file_)
313 return match(file_)
313
314
314 return self.walkhelper(files=files, statmatch=statmatch, dc=dc)
315 return self.walkhelper(files=files, statmatch=statmatch, dc=dc,
316 badmatch=badmatch)
315
317
316 def walk(self, files=None, match=util.always, dc=None):
318 def walk(self, files=None, match=util.always, dc=None, badmatch=None):
317 # filter out the stat
319 # filter out the stat
318 for src, f, st in self.statwalk(files, match, dc):
320 for src, f, st in self.statwalk(files, match, dc, badmatch=badmatch):
319 yield src, f
321 yield src, f
320
322
321 # walk recursively through the directory tree, finding all files
323 # walk recursively through the directory tree, finding all files
322 # matched by the statmatch function
324 # matched by the statmatch function
323 #
325 #
324 # results are yielded in a tuple (src, filename, st), where src
326 # results are yielded in a tuple (src, filename, st), where src
325 # is one of:
327 # is one of:
326 # 'f' the file was found in the directory tree
328 # 'f' the file was found in the directory tree
327 # 'm' the file was only in the dirstate and not in the tree
329 # 'm' the file was only in the dirstate and not in the tree
328 # and st is the stat result if the file was found in the directory.
330 # and st is the stat result if the file was found in the directory.
329 #
331 #
330 # dc is an optional arg for the current dirstate. dc is not modified
332 # dc is an optional arg for the current dirstate. dc is not modified
331 # directly by this function, but might be modified by your statmatch call.
333 # directly by this function, but might be modified by your statmatch call.
332 #
334 #
333 def walkhelper(self, files, statmatch, dc):
335 def walkhelper(self, files, statmatch, dc, badmatch=None):
334 # recursion free walker, faster than os.walk.
336 # recursion free walker, faster than os.walk.
335 def findfiles(s):
337 def findfiles(s):
336 work = [s]
338 work = [s]
337 while work:
339 while work:
338 top = work.pop()
340 top = work.pop()
339 names = os.listdir(top)
341 names = os.listdir(top)
340 names.sort()
342 names.sort()
341 # nd is the top of the repository dir tree
343 # nd is the top of the repository dir tree
342 nd = util.normpath(top[len(self.root) + 1:])
344 nd = util.normpath(top[len(self.root) + 1:])
343 if nd == '.': nd = ''
345 if nd == '.': nd = ''
344 for f in names:
346 for f in names:
345 np = util.pconvert(os.path.join(nd, f))
347 np = util.pconvert(os.path.join(nd, f))
346 if seen(np):
348 if seen(np):
347 continue
349 continue
348 p = os.path.join(top, f)
350 p = os.path.join(top, f)
349 # don't trip over symlinks
351 # don't trip over symlinks
350 st = os.lstat(p)
352 st = os.lstat(p)
351 if stat.S_ISDIR(st.st_mode):
353 if stat.S_ISDIR(st.st_mode):
352 ds = os.path.join(nd, f +'/')
354 ds = os.path.join(nd, f +'/')
353 if statmatch(ds, st):
355 if statmatch(ds, st):
354 work.append(p)
356 work.append(p)
355 if statmatch(np, st) and np in dc:
357 if statmatch(np, st) and np in dc:
356 yield 'm', np, st
358 yield 'm', np, st
357 elif statmatch(np, st):
359 elif statmatch(np, st):
358 if self.supported_type(np, st):
360 if self.supported_type(np, st):
359 yield 'f', np, st
361 yield 'f', np, st
360 elif np in dc:
362 elif np in dc:
361 yield 'm', np, st
363 yield 'm', np, st
362
364
363 known = {'.hg': 1}
365 known = {'.hg': 1}
364 def seen(fn):
366 def seen(fn):
365 if fn in known: return True
367 if fn in known: return True
366 known[fn] = 1
368 known[fn] = 1
367
369
368 # step one, find all files that match our criteria
370 # step one, find all files that match our criteria
369 files.sort()
371 files.sort()
370 for ff in util.unique(files):
372 for ff in util.unique(files):
371 f = self.wjoin(ff)
373 f = self.wjoin(ff)
372 try:
374 try:
373 st = os.lstat(f)
375 st = os.lstat(f)
374 except OSError, inst:
376 except OSError, inst:
375 nf = util.normpath(ff)
377 nf = util.normpath(ff)
376 found = False
378 found = False
377 for fn in dc:
379 for fn in dc:
378 if nf == fn or (fn.startswith(nf) and fn[len(nf)] == '/'):
380 if nf == fn or (fn.startswith(nf) and fn[len(nf)] == '/'):
379 found = True
381 found = True
380 break
382 break
381 if not found:
383 if not found:
382 self.ui.warn('%s: %s\n' % (
384 if inst.errno != errno.ENOENT or not badmatch:
383 util.pathto(self.getcwd(), ff),
385 self.ui.warn('%s: %s\n' % (
384 inst.strerror))
386 util.pathto(self.getcwd(), ff),
387 inst.strerror))
388 elif badmatch and badmatch(ff) and statmatch(ff, None):
389 yield 'b', ff, None
385 continue
390 continue
386 if stat.S_ISDIR(st.st_mode):
391 if stat.S_ISDIR(st.st_mode):
387 cmp1 = (lambda x, y: cmp(x[1], y[1]))
392 cmp1 = (lambda x, y: cmp(x[1], y[1]))
388 sorted_ = [ x for x in findfiles(f) ]
393 sorted_ = [ x for x in findfiles(f) ]
389 sorted_.sort(cmp1)
394 sorted_.sort(cmp1)
390 for e in sorted_:
395 for e in sorted_:
391 yield e
396 yield e
392 else:
397 else:
393 ff = util.normpath(ff)
398 ff = util.normpath(ff)
394 if seen(ff):
399 if seen(ff):
395 continue
400 continue
396 self.blockignore = True
401 self.blockignore = True
397 if statmatch(ff, st):
402 if statmatch(ff, st):
398 if self.supported_type(ff, st, verbose=True):
403 if self.supported_type(ff, st, verbose=True):
399 yield 'f', ff, st
404 yield 'f', ff, st
400 elif ff in dc:
405 elif ff in dc:
401 yield 'm', ff, st
406 yield 'm', ff, st
402 self.blockignore = False
407 self.blockignore = False
403
408
404 # step two run through anything left in the dc hash and yield
409 # step two run through anything left in the dc hash and yield
405 # if we haven't already seen it
410 # if we haven't already seen it
406 ks = dc.keys()
411 ks = dc.keys()
407 ks.sort()
412 ks.sort()
408 for k in ks:
413 for k in ks:
409 if not seen(k) and (statmatch(k, None)):
414 if not seen(k) and (statmatch(k, None)):
410 yield 'm', k, None
415 yield 'm', k, None
411
416
412 def changes(self, files=None, match=util.always, show_ignored=None):
417 def changes(self, files=None, match=util.always, show_ignored=None):
413 lookup, modified, added, unknown, ignored = [], [], [], [], []
418 lookup, modified, added, unknown, ignored = [], [], [], [], []
414 removed, deleted = [], []
419 removed, deleted = [], []
415
420
416 for src, fn, st in self.statwalk(files, match, ignored=show_ignored):
421 for src, fn, st in self.statwalk(files, match, ignored=show_ignored):
417 try:
422 try:
418 type_, mode, size, time = self[fn]
423 type_, mode, size, time = self[fn]
419 except KeyError:
424 except KeyError:
420 if show_ignored and self.ignore(fn):
425 if show_ignored and self.ignore(fn):
421 ignored.append(fn)
426 ignored.append(fn)
422 else:
427 else:
423 unknown.append(fn)
428 unknown.append(fn)
424 continue
429 continue
425 if src == 'm':
430 if src == 'm':
426 nonexistent = True
431 nonexistent = True
427 if not st:
432 if not st:
428 try:
433 try:
429 f = self.wjoin(fn)
434 f = self.wjoin(fn)
430 st = os.lstat(f)
435 st = os.lstat(f)
431 except OSError, inst:
436 except OSError, inst:
432 if inst.errno != errno.ENOENT:
437 if inst.errno != errno.ENOENT:
433 raise
438 raise
434 st = None
439 st = None
435 # We need to re-check that it is a valid file
440 # We need to re-check that it is a valid file
436 if st and self.supported_type(fn, st):
441 if st and self.supported_type(fn, st):
437 nonexistent = False
442 nonexistent = False
438 # XXX: what to do with file no longer present in the fs
443 # XXX: what to do with file no longer present in the fs
439 # who are not removed in the dirstate ?
444 # who are not removed in the dirstate ?
440 if nonexistent and type_ in "nm":
445 if nonexistent and type_ in "nm":
441 deleted.append(fn)
446 deleted.append(fn)
442 continue
447 continue
443 # check the common case first
448 # check the common case first
444 if type_ == 'n':
449 if type_ == 'n':
445 if not st:
450 if not st:
446 st = os.stat(fn)
451 st = os.stat(fn)
447 if size >= 0 and (size != st.st_size
452 if size >= 0 and (size != st.st_size
448 or (mode ^ st.st_mode) & 0100):
453 or (mode ^ st.st_mode) & 0100):
449 modified.append(fn)
454 modified.append(fn)
450 elif time != st.st_mtime:
455 elif time != st.st_mtime:
451 lookup.append(fn)
456 lookup.append(fn)
452 elif type_ == 'm':
457 elif type_ == 'm':
453 modified.append(fn)
458 modified.append(fn)
454 elif type_ == 'a':
459 elif type_ == 'a':
455 added.append(fn)
460 added.append(fn)
456 elif type_ == 'r':
461 elif type_ == 'r':
457 removed.append(fn)
462 removed.append(fn)
458
463
459 return (lookup, modified, added, removed, deleted, unknown, ignored)
464 return (lookup, modified, added, removed, deleted, unknown, ignored)
@@ -1,1956 +1,1956 b''
1 # localrepo.py - read/write repository class for mercurial
1 # localrepo.py - read/write repository class for mercurial
2 #
2 #
3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms
5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference.
6 # of the GNU General Public License, incorporated herein by reference.
7
7
8 import os, util
8 import os, util
9 import filelog, manifest, changelog, dirstate, repo
9 import filelog, manifest, changelog, dirstate, repo
10 from node import *
10 from node import *
11 from i18n import gettext as _
11 from i18n import gettext as _
12 from demandload import *
12 from demandload import *
13 demandload(globals(), "re lock transaction tempfile stat mdiff errno ui")
13 demandload(globals(), "re lock transaction tempfile stat mdiff errno ui")
14 demandload(globals(), "appendfile changegroup")
14 demandload(globals(), "appendfile changegroup")
15
15
16 class localrepository(object):
16 class localrepository(object):
17 def __del__(self):
17 def __del__(self):
18 self.transhandle = None
18 self.transhandle = None
19 def __init__(self, parentui, path=None, create=0):
19 def __init__(self, parentui, path=None, create=0):
20 if not path:
20 if not path:
21 p = os.getcwd()
21 p = os.getcwd()
22 while not os.path.isdir(os.path.join(p, ".hg")):
22 while not os.path.isdir(os.path.join(p, ".hg")):
23 oldp = p
23 oldp = p
24 p = os.path.dirname(p)
24 p = os.path.dirname(p)
25 if p == oldp:
25 if p == oldp:
26 raise repo.RepoError(_("no repo found"))
26 raise repo.RepoError(_("no repo found"))
27 path = p
27 path = p
28 self.path = os.path.join(path, ".hg")
28 self.path = os.path.join(path, ".hg")
29
29
30 if not create and not os.path.isdir(self.path):
30 if not create and not os.path.isdir(self.path):
31 raise repo.RepoError(_("repository %s not found") % path)
31 raise repo.RepoError(_("repository %s not found") % path)
32
32
33 self.root = os.path.abspath(path)
33 self.root = os.path.abspath(path)
34 self.origroot = path
34 self.origroot = path
35 self.ui = ui.ui(parentui=parentui)
35 self.ui = ui.ui(parentui=parentui)
36 self.opener = util.opener(self.path)
36 self.opener = util.opener(self.path)
37 self.wopener = util.opener(self.root)
37 self.wopener = util.opener(self.root)
38 self.manifest = manifest.manifest(self.opener)
38 self.manifest = manifest.manifest(self.opener)
39 self.changelog = changelog.changelog(self.opener)
39 self.changelog = changelog.changelog(self.opener)
40 self.tagscache = None
40 self.tagscache = None
41 self.nodetagscache = None
41 self.nodetagscache = None
42 self.encodepats = None
42 self.encodepats = None
43 self.decodepats = None
43 self.decodepats = None
44 self.transhandle = None
44 self.transhandle = None
45
45
46 if create:
46 if create:
47 os.mkdir(self.path)
47 os.mkdir(self.path)
48 os.mkdir(self.join("data"))
48 os.mkdir(self.join("data"))
49
49
50 self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root)
50 self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root)
51 try:
51 try:
52 self.ui.readconfig(self.join("hgrc"), self.root)
52 self.ui.readconfig(self.join("hgrc"), self.root)
53 except IOError:
53 except IOError:
54 pass
54 pass
55
55
56 def hook(self, name, throw=False, **args):
56 def hook(self, name, throw=False, **args):
57 def runhook(name, cmd):
57 def runhook(name, cmd):
58 self.ui.note(_("running hook %s: %s\n") % (name, cmd))
58 self.ui.note(_("running hook %s: %s\n") % (name, cmd))
59 env = dict([('HG_' + k.upper(), v) for k, v in args.iteritems()] +
59 env = dict([('HG_' + k.upper(), v) for k, v in args.iteritems()] +
60 [(k.upper(), v) for k, v in args.iteritems()])
60 [(k.upper(), v) for k, v in args.iteritems()])
61 r = util.system(cmd, environ=env, cwd=self.root)
61 r = util.system(cmd, environ=env, cwd=self.root)
62 if r:
62 if r:
63 desc, r = util.explain_exit(r)
63 desc, r = util.explain_exit(r)
64 if throw:
64 if throw:
65 raise util.Abort(_('%s hook %s') % (name, desc))
65 raise util.Abort(_('%s hook %s') % (name, desc))
66 self.ui.warn(_('error: %s hook %s\n') % (name, desc))
66 self.ui.warn(_('error: %s hook %s\n') % (name, desc))
67 return False
67 return False
68 return True
68 return True
69
69
70 r = True
70 r = True
71 hooks = [(hname, cmd) for hname, cmd in self.ui.configitems("hooks")
71 hooks = [(hname, cmd) for hname, cmd in self.ui.configitems("hooks")
72 if hname.split(".", 1)[0] == name and cmd]
72 if hname.split(".", 1)[0] == name and cmd]
73 hooks.sort()
73 hooks.sort()
74 for hname, cmd in hooks:
74 for hname, cmd in hooks:
75 r = runhook(hname, cmd) and r
75 r = runhook(hname, cmd) and r
76 return r
76 return r
77
77
78 def tags(self):
78 def tags(self):
79 '''return a mapping of tag to node'''
79 '''return a mapping of tag to node'''
80 if not self.tagscache:
80 if not self.tagscache:
81 self.tagscache = {}
81 self.tagscache = {}
82
82
83 def parsetag(line, context):
83 def parsetag(line, context):
84 if not line:
84 if not line:
85 return
85 return
86 s = l.split(" ", 1)
86 s = l.split(" ", 1)
87 if len(s) != 2:
87 if len(s) != 2:
88 self.ui.warn(_("%s: ignoring invalid tag\n") % context)
88 self.ui.warn(_("%s: ignoring invalid tag\n") % context)
89 return
89 return
90 node, key = s
90 node, key = s
91 try:
91 try:
92 bin_n = bin(node)
92 bin_n = bin(node)
93 except TypeError:
93 except TypeError:
94 self.ui.warn(_("%s: ignoring invalid tag\n") % context)
94 self.ui.warn(_("%s: ignoring invalid tag\n") % context)
95 return
95 return
96 if bin_n not in self.changelog.nodemap:
96 if bin_n not in self.changelog.nodemap:
97 self.ui.warn(_("%s: ignoring invalid tag\n") % context)
97 self.ui.warn(_("%s: ignoring invalid tag\n") % context)
98 return
98 return
99 self.tagscache[key.strip()] = bin_n
99 self.tagscache[key.strip()] = bin_n
100
100
101 # read each head of the tags file, ending with the tip
101 # read each head of the tags file, ending with the tip
102 # and add each tag found to the map, with "newer" ones
102 # and add each tag found to the map, with "newer" ones
103 # taking precedence
103 # taking precedence
104 fl = self.file(".hgtags")
104 fl = self.file(".hgtags")
105 h = fl.heads()
105 h = fl.heads()
106 h.reverse()
106 h.reverse()
107 for r in h:
107 for r in h:
108 count = 0
108 count = 0
109 for l in fl.read(r).splitlines():
109 for l in fl.read(r).splitlines():
110 count += 1
110 count += 1
111 parsetag(l, ".hgtags:%d" % count)
111 parsetag(l, ".hgtags:%d" % count)
112
112
113 try:
113 try:
114 f = self.opener("localtags")
114 f = self.opener("localtags")
115 count = 0
115 count = 0
116 for l in f:
116 for l in f:
117 count += 1
117 count += 1
118 parsetag(l, "localtags:%d" % count)
118 parsetag(l, "localtags:%d" % count)
119 except IOError:
119 except IOError:
120 pass
120 pass
121
121
122 self.tagscache['tip'] = self.changelog.tip()
122 self.tagscache['tip'] = self.changelog.tip()
123
123
124 return self.tagscache
124 return self.tagscache
125
125
126 def tagslist(self):
126 def tagslist(self):
127 '''return a list of tags ordered by revision'''
127 '''return a list of tags ordered by revision'''
128 l = []
128 l = []
129 for t, n in self.tags().items():
129 for t, n in self.tags().items():
130 try:
130 try:
131 r = self.changelog.rev(n)
131 r = self.changelog.rev(n)
132 except:
132 except:
133 r = -2 # sort to the beginning of the list if unknown
133 r = -2 # sort to the beginning of the list if unknown
134 l.append((r, t, n))
134 l.append((r, t, n))
135 l.sort()
135 l.sort()
136 return [(t, n) for r, t, n in l]
136 return [(t, n) for r, t, n in l]
137
137
138 def nodetags(self, node):
138 def nodetags(self, node):
139 '''return the tags associated with a node'''
139 '''return the tags associated with a node'''
140 if not self.nodetagscache:
140 if not self.nodetagscache:
141 self.nodetagscache = {}
141 self.nodetagscache = {}
142 for t, n in self.tags().items():
142 for t, n in self.tags().items():
143 self.nodetagscache.setdefault(n, []).append(t)
143 self.nodetagscache.setdefault(n, []).append(t)
144 return self.nodetagscache.get(node, [])
144 return self.nodetagscache.get(node, [])
145
145
146 def lookup(self, key):
146 def lookup(self, key):
147 try:
147 try:
148 return self.tags()[key]
148 return self.tags()[key]
149 except KeyError:
149 except KeyError:
150 try:
150 try:
151 return self.changelog.lookup(key)
151 return self.changelog.lookup(key)
152 except:
152 except:
153 raise repo.RepoError(_("unknown revision '%s'") % key)
153 raise repo.RepoError(_("unknown revision '%s'") % key)
154
154
155 def dev(self):
155 def dev(self):
156 return os.stat(self.path).st_dev
156 return os.stat(self.path).st_dev
157
157
158 def local(self):
158 def local(self):
159 return True
159 return True
160
160
161 def join(self, f):
161 def join(self, f):
162 return os.path.join(self.path, f)
162 return os.path.join(self.path, f)
163
163
164 def wjoin(self, f):
164 def wjoin(self, f):
165 return os.path.join(self.root, f)
165 return os.path.join(self.root, f)
166
166
167 def file(self, f):
167 def file(self, f):
168 if f[0] == '/':
168 if f[0] == '/':
169 f = f[1:]
169 f = f[1:]
170 return filelog.filelog(self.opener, f)
170 return filelog.filelog(self.opener, f)
171
171
172 def getcwd(self):
172 def getcwd(self):
173 return self.dirstate.getcwd()
173 return self.dirstate.getcwd()
174
174
175 def wfile(self, f, mode='r'):
175 def wfile(self, f, mode='r'):
176 return self.wopener(f, mode)
176 return self.wopener(f, mode)
177
177
178 def wread(self, filename):
178 def wread(self, filename):
179 if self.encodepats == None:
179 if self.encodepats == None:
180 l = []
180 l = []
181 for pat, cmd in self.ui.configitems("encode"):
181 for pat, cmd in self.ui.configitems("encode"):
182 mf = util.matcher(self.root, "", [pat], [], [])[1]
182 mf = util.matcher(self.root, "", [pat], [], [])[1]
183 l.append((mf, cmd))
183 l.append((mf, cmd))
184 self.encodepats = l
184 self.encodepats = l
185
185
186 data = self.wopener(filename, 'r').read()
186 data = self.wopener(filename, 'r').read()
187
187
188 for mf, cmd in self.encodepats:
188 for mf, cmd in self.encodepats:
189 if mf(filename):
189 if mf(filename):
190 self.ui.debug(_("filtering %s through %s\n") % (filename, cmd))
190 self.ui.debug(_("filtering %s through %s\n") % (filename, cmd))
191 data = util.filter(data, cmd)
191 data = util.filter(data, cmd)
192 break
192 break
193
193
194 return data
194 return data
195
195
196 def wwrite(self, filename, data, fd=None):
196 def wwrite(self, filename, data, fd=None):
197 if self.decodepats == None:
197 if self.decodepats == None:
198 l = []
198 l = []
199 for pat, cmd in self.ui.configitems("decode"):
199 for pat, cmd in self.ui.configitems("decode"):
200 mf = util.matcher(self.root, "", [pat], [], [])[1]
200 mf = util.matcher(self.root, "", [pat], [], [])[1]
201 l.append((mf, cmd))
201 l.append((mf, cmd))
202 self.decodepats = l
202 self.decodepats = l
203
203
204 for mf, cmd in self.decodepats:
204 for mf, cmd in self.decodepats:
205 if mf(filename):
205 if mf(filename):
206 self.ui.debug(_("filtering %s through %s\n") % (filename, cmd))
206 self.ui.debug(_("filtering %s through %s\n") % (filename, cmd))
207 data = util.filter(data, cmd)
207 data = util.filter(data, cmd)
208 break
208 break
209
209
210 if fd:
210 if fd:
211 return fd.write(data)
211 return fd.write(data)
212 return self.wopener(filename, 'w').write(data)
212 return self.wopener(filename, 'w').write(data)
213
213
214 def transaction(self):
214 def transaction(self):
215 tr = self.transhandle
215 tr = self.transhandle
216 if tr != None and tr.running():
216 if tr != None and tr.running():
217 return tr.nest()
217 return tr.nest()
218
218
219 # save dirstate for undo
219 # save dirstate for undo
220 try:
220 try:
221 ds = self.opener("dirstate").read()
221 ds = self.opener("dirstate").read()
222 except IOError:
222 except IOError:
223 ds = ""
223 ds = ""
224 self.opener("journal.dirstate", "w").write(ds)
224 self.opener("journal.dirstate", "w").write(ds)
225
225
226 tr = transaction.transaction(self.ui.warn, self.opener,
226 tr = transaction.transaction(self.ui.warn, self.opener,
227 self.join("journal"),
227 self.join("journal"),
228 aftertrans(self.path))
228 aftertrans(self.path))
229 self.transhandle = tr
229 self.transhandle = tr
230 return tr
230 return tr
231
231
232 def recover(self):
232 def recover(self):
233 l = self.lock()
233 l = self.lock()
234 if os.path.exists(self.join("journal")):
234 if os.path.exists(self.join("journal")):
235 self.ui.status(_("rolling back interrupted transaction\n"))
235 self.ui.status(_("rolling back interrupted transaction\n"))
236 transaction.rollback(self.opener, self.join("journal"))
236 transaction.rollback(self.opener, self.join("journal"))
237 self.reload()
237 self.reload()
238 return True
238 return True
239 else:
239 else:
240 self.ui.warn(_("no interrupted transaction available\n"))
240 self.ui.warn(_("no interrupted transaction available\n"))
241 return False
241 return False
242
242
243 def undo(self, wlock=None):
243 def undo(self, wlock=None):
244 if not wlock:
244 if not wlock:
245 wlock = self.wlock()
245 wlock = self.wlock()
246 l = self.lock()
246 l = self.lock()
247 if os.path.exists(self.join("undo")):
247 if os.path.exists(self.join("undo")):
248 self.ui.status(_("rolling back last transaction\n"))
248 self.ui.status(_("rolling back last transaction\n"))
249 transaction.rollback(self.opener, self.join("undo"))
249 transaction.rollback(self.opener, self.join("undo"))
250 util.rename(self.join("undo.dirstate"), self.join("dirstate"))
250 util.rename(self.join("undo.dirstate"), self.join("dirstate"))
251 self.reload()
251 self.reload()
252 self.wreload()
252 self.wreload()
253 else:
253 else:
254 self.ui.warn(_("no undo information available\n"))
254 self.ui.warn(_("no undo information available\n"))
255
255
256 def wreload(self):
256 def wreload(self):
257 self.dirstate.read()
257 self.dirstate.read()
258
258
259 def reload(self):
259 def reload(self):
260 self.changelog.load()
260 self.changelog.load()
261 self.manifest.load()
261 self.manifest.load()
262 self.tagscache = None
262 self.tagscache = None
263 self.nodetagscache = None
263 self.nodetagscache = None
264
264
265 def do_lock(self, lockname, wait, releasefn=None, acquirefn=None,
265 def do_lock(self, lockname, wait, releasefn=None, acquirefn=None,
266 desc=None):
266 desc=None):
267 try:
267 try:
268 l = lock.lock(self.join(lockname), 0, releasefn, desc=desc)
268 l = lock.lock(self.join(lockname), 0, releasefn, desc=desc)
269 except lock.LockHeld, inst:
269 except lock.LockHeld, inst:
270 if not wait:
270 if not wait:
271 raise
271 raise
272 self.ui.warn(_("waiting for lock on %s held by %s\n") %
272 self.ui.warn(_("waiting for lock on %s held by %s\n") %
273 (desc, inst.args[0]))
273 (desc, inst.args[0]))
274 # default to 600 seconds timeout
274 # default to 600 seconds timeout
275 l = lock.lock(self.join(lockname),
275 l = lock.lock(self.join(lockname),
276 int(self.ui.config("ui", "timeout") or 600),
276 int(self.ui.config("ui", "timeout") or 600),
277 releasefn, desc=desc)
277 releasefn, desc=desc)
278 if acquirefn:
278 if acquirefn:
279 acquirefn()
279 acquirefn()
280 return l
280 return l
281
281
282 def lock(self, wait=1):
282 def lock(self, wait=1):
283 return self.do_lock("lock", wait, acquirefn=self.reload,
283 return self.do_lock("lock", wait, acquirefn=self.reload,
284 desc=_('repository %s') % self.origroot)
284 desc=_('repository %s') % self.origroot)
285
285
286 def wlock(self, wait=1):
286 def wlock(self, wait=1):
287 return self.do_lock("wlock", wait, self.dirstate.write,
287 return self.do_lock("wlock", wait, self.dirstate.write,
288 self.wreload,
288 self.wreload,
289 desc=_('working directory of %s') % self.origroot)
289 desc=_('working directory of %s') % self.origroot)
290
290
291 def checkfilemerge(self, filename, text, filelog, manifest1, manifest2):
291 def checkfilemerge(self, filename, text, filelog, manifest1, manifest2):
292 "determine whether a new filenode is needed"
292 "determine whether a new filenode is needed"
293 fp1 = manifest1.get(filename, nullid)
293 fp1 = manifest1.get(filename, nullid)
294 fp2 = manifest2.get(filename, nullid)
294 fp2 = manifest2.get(filename, nullid)
295
295
296 if fp2 != nullid:
296 if fp2 != nullid:
297 # is one parent an ancestor of the other?
297 # is one parent an ancestor of the other?
298 fpa = filelog.ancestor(fp1, fp2)
298 fpa = filelog.ancestor(fp1, fp2)
299 if fpa == fp1:
299 if fpa == fp1:
300 fp1, fp2 = fp2, nullid
300 fp1, fp2 = fp2, nullid
301 elif fpa == fp2:
301 elif fpa == fp2:
302 fp2 = nullid
302 fp2 = nullid
303
303
304 # is the file unmodified from the parent? report existing entry
304 # is the file unmodified from the parent? report existing entry
305 if fp2 == nullid and text == filelog.read(fp1):
305 if fp2 == nullid and text == filelog.read(fp1):
306 return (fp1, None, None)
306 return (fp1, None, None)
307
307
308 return (None, fp1, fp2)
308 return (None, fp1, fp2)
309
309
310 def rawcommit(self, files, text, user, date, p1=None, p2=None, wlock=None):
310 def rawcommit(self, files, text, user, date, p1=None, p2=None, wlock=None):
311 orig_parent = self.dirstate.parents()[0] or nullid
311 orig_parent = self.dirstate.parents()[0] or nullid
312 p1 = p1 or self.dirstate.parents()[0] or nullid
312 p1 = p1 or self.dirstate.parents()[0] or nullid
313 p2 = p2 or self.dirstate.parents()[1] or nullid
313 p2 = p2 or self.dirstate.parents()[1] or nullid
314 c1 = self.changelog.read(p1)
314 c1 = self.changelog.read(p1)
315 c2 = self.changelog.read(p2)
315 c2 = self.changelog.read(p2)
316 m1 = self.manifest.read(c1[0])
316 m1 = self.manifest.read(c1[0])
317 mf1 = self.manifest.readflags(c1[0])
317 mf1 = self.manifest.readflags(c1[0])
318 m2 = self.manifest.read(c2[0])
318 m2 = self.manifest.read(c2[0])
319 changed = []
319 changed = []
320
320
321 if orig_parent == p1:
321 if orig_parent == p1:
322 update_dirstate = 1
322 update_dirstate = 1
323 else:
323 else:
324 update_dirstate = 0
324 update_dirstate = 0
325
325
326 if not wlock:
326 if not wlock:
327 wlock = self.wlock()
327 wlock = self.wlock()
328 l = self.lock()
328 l = self.lock()
329 tr = self.transaction()
329 tr = self.transaction()
330 mm = m1.copy()
330 mm = m1.copy()
331 mfm = mf1.copy()
331 mfm = mf1.copy()
332 linkrev = self.changelog.count()
332 linkrev = self.changelog.count()
333 for f in files:
333 for f in files:
334 try:
334 try:
335 t = self.wread(f)
335 t = self.wread(f)
336 tm = util.is_exec(self.wjoin(f), mfm.get(f, False))
336 tm = util.is_exec(self.wjoin(f), mfm.get(f, False))
337 r = self.file(f)
337 r = self.file(f)
338 mfm[f] = tm
338 mfm[f] = tm
339
339
340 (entry, fp1, fp2) = self.checkfilemerge(f, t, r, m1, m2)
340 (entry, fp1, fp2) = self.checkfilemerge(f, t, r, m1, m2)
341 if entry:
341 if entry:
342 mm[f] = entry
342 mm[f] = entry
343 continue
343 continue
344
344
345 mm[f] = r.add(t, {}, tr, linkrev, fp1, fp2)
345 mm[f] = r.add(t, {}, tr, linkrev, fp1, fp2)
346 changed.append(f)
346 changed.append(f)
347 if update_dirstate:
347 if update_dirstate:
348 self.dirstate.update([f], "n")
348 self.dirstate.update([f], "n")
349 except IOError:
349 except IOError:
350 try:
350 try:
351 del mm[f]
351 del mm[f]
352 del mfm[f]
352 del mfm[f]
353 if update_dirstate:
353 if update_dirstate:
354 self.dirstate.forget([f])
354 self.dirstate.forget([f])
355 except:
355 except:
356 # deleted from p2?
356 # deleted from p2?
357 pass
357 pass
358
358
359 mnode = self.manifest.add(mm, mfm, tr, linkrev, c1[0], c2[0])
359 mnode = self.manifest.add(mm, mfm, tr, linkrev, c1[0], c2[0])
360 user = user or self.ui.username()
360 user = user or self.ui.username()
361 n = self.changelog.add(mnode, changed, text, tr, p1, p2, user, date)
361 n = self.changelog.add(mnode, changed, text, tr, p1, p2, user, date)
362 tr.close()
362 tr.close()
363 if update_dirstate:
363 if update_dirstate:
364 self.dirstate.setparents(n, nullid)
364 self.dirstate.setparents(n, nullid)
365
365
366 def commit(self, files=None, text="", user=None, date=None,
366 def commit(self, files=None, text="", user=None, date=None,
367 match=util.always, force=False, lock=None, wlock=None):
367 match=util.always, force=False, lock=None, wlock=None):
368 commit = []
368 commit = []
369 remove = []
369 remove = []
370 changed = []
370 changed = []
371
371
372 if files:
372 if files:
373 for f in files:
373 for f in files:
374 s = self.dirstate.state(f)
374 s = self.dirstate.state(f)
375 if s in 'nmai':
375 if s in 'nmai':
376 commit.append(f)
376 commit.append(f)
377 elif s == 'r':
377 elif s == 'r':
378 remove.append(f)
378 remove.append(f)
379 else:
379 else:
380 self.ui.warn(_("%s not tracked!\n") % f)
380 self.ui.warn(_("%s not tracked!\n") % f)
381 else:
381 else:
382 modified, added, removed, deleted, unknown = self.changes(match=match)
382 modified, added, removed, deleted, unknown = self.changes(match=match)
383 commit = modified + added
383 commit = modified + added
384 remove = removed
384 remove = removed
385
385
386 p1, p2 = self.dirstate.parents()
386 p1, p2 = self.dirstate.parents()
387 c1 = self.changelog.read(p1)
387 c1 = self.changelog.read(p1)
388 c2 = self.changelog.read(p2)
388 c2 = self.changelog.read(p2)
389 m1 = self.manifest.read(c1[0])
389 m1 = self.manifest.read(c1[0])
390 mf1 = self.manifest.readflags(c1[0])
390 mf1 = self.manifest.readflags(c1[0])
391 m2 = self.manifest.read(c2[0])
391 m2 = self.manifest.read(c2[0])
392
392
393 if not commit and not remove and not force and p2 == nullid:
393 if not commit and not remove and not force and p2 == nullid:
394 self.ui.status(_("nothing changed\n"))
394 self.ui.status(_("nothing changed\n"))
395 return None
395 return None
396
396
397 xp1 = hex(p1)
397 xp1 = hex(p1)
398 if p2 == nullid: xp2 = ''
398 if p2 == nullid: xp2 = ''
399 else: xp2 = hex(p2)
399 else: xp2 = hex(p2)
400
400
401 self.hook("precommit", throw=True, parent1=xp1, parent2=xp2)
401 self.hook("precommit", throw=True, parent1=xp1, parent2=xp2)
402
402
403 if not wlock:
403 if not wlock:
404 wlock = self.wlock()
404 wlock = self.wlock()
405 if not lock:
405 if not lock:
406 lock = self.lock()
406 lock = self.lock()
407 tr = self.transaction()
407 tr = self.transaction()
408
408
409 # check in files
409 # check in files
410 new = {}
410 new = {}
411 linkrev = self.changelog.count()
411 linkrev = self.changelog.count()
412 commit.sort()
412 commit.sort()
413 for f in commit:
413 for f in commit:
414 self.ui.note(f + "\n")
414 self.ui.note(f + "\n")
415 try:
415 try:
416 mf1[f] = util.is_exec(self.wjoin(f), mf1.get(f, False))
416 mf1[f] = util.is_exec(self.wjoin(f), mf1.get(f, False))
417 t = self.wread(f)
417 t = self.wread(f)
418 except IOError:
418 except IOError:
419 self.ui.warn(_("trouble committing %s!\n") % f)
419 self.ui.warn(_("trouble committing %s!\n") % f)
420 raise
420 raise
421
421
422 r = self.file(f)
422 r = self.file(f)
423
423
424 meta = {}
424 meta = {}
425 cp = self.dirstate.copied(f)
425 cp = self.dirstate.copied(f)
426 if cp:
426 if cp:
427 meta["copy"] = cp
427 meta["copy"] = cp
428 meta["copyrev"] = hex(m1.get(cp, m2.get(cp, nullid)))
428 meta["copyrev"] = hex(m1.get(cp, m2.get(cp, nullid)))
429 self.ui.debug(_(" %s: copy %s:%s\n") % (f, cp, meta["copyrev"]))
429 self.ui.debug(_(" %s: copy %s:%s\n") % (f, cp, meta["copyrev"]))
430 fp1, fp2 = nullid, nullid
430 fp1, fp2 = nullid, nullid
431 else:
431 else:
432 entry, fp1, fp2 = self.checkfilemerge(f, t, r, m1, m2)
432 entry, fp1, fp2 = self.checkfilemerge(f, t, r, m1, m2)
433 if entry:
433 if entry:
434 new[f] = entry
434 new[f] = entry
435 continue
435 continue
436
436
437 new[f] = r.add(t, meta, tr, linkrev, fp1, fp2)
437 new[f] = r.add(t, meta, tr, linkrev, fp1, fp2)
438 # remember what we've added so that we can later calculate
438 # remember what we've added so that we can later calculate
439 # the files to pull from a set of changesets
439 # the files to pull from a set of changesets
440 changed.append(f)
440 changed.append(f)
441
441
442 # update manifest
442 # update manifest
443 m1 = m1.copy()
443 m1 = m1.copy()
444 m1.update(new)
444 m1.update(new)
445 for f in remove:
445 for f in remove:
446 if f in m1:
446 if f in m1:
447 del m1[f]
447 del m1[f]
448 mn = self.manifest.add(m1, mf1, tr, linkrev, c1[0], c2[0],
448 mn = self.manifest.add(m1, mf1, tr, linkrev, c1[0], c2[0],
449 (new, remove))
449 (new, remove))
450
450
451 # add changeset
451 # add changeset
452 new = new.keys()
452 new = new.keys()
453 new.sort()
453 new.sort()
454
454
455 user = user or self.ui.username()
455 user = user or self.ui.username()
456 if not text:
456 if not text:
457 edittext = [""]
457 edittext = [""]
458 if p2 != nullid:
458 if p2 != nullid:
459 edittext.append("HG: branch merge")
459 edittext.append("HG: branch merge")
460 edittext.extend(["HG: changed %s" % f for f in changed])
460 edittext.extend(["HG: changed %s" % f for f in changed])
461 edittext.extend(["HG: removed %s" % f for f in remove])
461 edittext.extend(["HG: removed %s" % f for f in remove])
462 if not changed and not remove:
462 if not changed and not remove:
463 edittext.append("HG: no files changed")
463 edittext.append("HG: no files changed")
464 edittext.append("")
464 edittext.append("")
465 # run editor in the repository root
465 # run editor in the repository root
466 olddir = os.getcwd()
466 olddir = os.getcwd()
467 os.chdir(self.root)
467 os.chdir(self.root)
468 edittext = self.ui.edit("\n".join(edittext), user)
468 edittext = self.ui.edit("\n".join(edittext), user)
469 os.chdir(olddir)
469 os.chdir(olddir)
470 if not edittext.rstrip():
470 if not edittext.rstrip():
471 return None
471 return None
472 text = edittext
472 text = edittext
473
473
474 n = self.changelog.add(mn, changed + remove, text, tr, p1, p2, user, date)
474 n = self.changelog.add(mn, changed + remove, text, tr, p1, p2, user, date)
475 self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1,
475 self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1,
476 parent2=xp2)
476 parent2=xp2)
477 tr.close()
477 tr.close()
478
478
479 self.dirstate.setparents(n)
479 self.dirstate.setparents(n)
480 self.dirstate.update(new, "n")
480 self.dirstate.update(new, "n")
481 self.dirstate.forget(remove)
481 self.dirstate.forget(remove)
482
482
483 self.hook("commit", node=hex(n), parent1=xp1, parent2=xp2)
483 self.hook("commit", node=hex(n), parent1=xp1, parent2=xp2)
484 return n
484 return n
485
485
486 def walk(self, node=None, files=[], match=util.always, badmatch=None):
486 def walk(self, node=None, files=[], match=util.always, badmatch=None):
487 if node:
487 if node:
488 fdict = dict.fromkeys(files)
488 fdict = dict.fromkeys(files)
489 for fn in self.manifest.read(self.changelog.read(node)[0]):
489 for fn in self.manifest.read(self.changelog.read(node)[0]):
490 fdict.pop(fn, None)
490 fdict.pop(fn, None)
491 if match(fn):
491 if match(fn):
492 yield 'm', fn
492 yield 'm', fn
493 for fn in fdict:
493 for fn in fdict:
494 if badmatch and badmatch(fn):
494 if badmatch and badmatch(fn):
495 if match(fn):
495 if match(fn):
496 yield 'b', fn
496 yield 'b', fn
497 else:
497 else:
498 self.ui.warn(_('%s: No such file in rev %s\n') % (
498 self.ui.warn(_('%s: No such file in rev %s\n') % (
499 util.pathto(self.getcwd(), fn), short(node)))
499 util.pathto(self.getcwd(), fn), short(node)))
500 else:
500 else:
501 for src, fn in self.dirstate.walk(files, match):
501 for src, fn in self.dirstate.walk(files, match, badmatch=badmatch):
502 yield src, fn
502 yield src, fn
503
503
504 def changes(self, node1=None, node2=None, files=[], match=util.always,
504 def changes(self, node1=None, node2=None, files=[], match=util.always,
505 wlock=None, show_ignored=None):
505 wlock=None, show_ignored=None):
506 """return changes between two nodes or node and working directory
506 """return changes between two nodes or node and working directory
507
507
508 If node1 is None, use the first dirstate parent instead.
508 If node1 is None, use the first dirstate parent instead.
509 If node2 is None, compare node1 with working directory.
509 If node2 is None, compare node1 with working directory.
510 """
510 """
511
511
512 def fcmp(fn, mf):
512 def fcmp(fn, mf):
513 t1 = self.wread(fn)
513 t1 = self.wread(fn)
514 t2 = self.file(fn).read(mf.get(fn, nullid))
514 t2 = self.file(fn).read(mf.get(fn, nullid))
515 return cmp(t1, t2)
515 return cmp(t1, t2)
516
516
517 def mfmatches(node):
517 def mfmatches(node):
518 change = self.changelog.read(node)
518 change = self.changelog.read(node)
519 mf = dict(self.manifest.read(change[0]))
519 mf = dict(self.manifest.read(change[0]))
520 for fn in mf.keys():
520 for fn in mf.keys():
521 if not match(fn):
521 if not match(fn):
522 del mf[fn]
522 del mf[fn]
523 return mf
523 return mf
524
524
525 if node1:
525 if node1:
526 # read the manifest from node1 before the manifest from node2,
526 # read the manifest from node1 before the manifest from node2,
527 # so that we'll hit the manifest cache if we're going through
527 # so that we'll hit the manifest cache if we're going through
528 # all the revisions in parent->child order.
528 # all the revisions in parent->child order.
529 mf1 = mfmatches(node1)
529 mf1 = mfmatches(node1)
530
530
531 # are we comparing the working directory?
531 # are we comparing the working directory?
532 if not node2:
532 if not node2:
533 if not wlock:
533 if not wlock:
534 try:
534 try:
535 wlock = self.wlock(wait=0)
535 wlock = self.wlock(wait=0)
536 except lock.LockException:
536 except lock.LockException:
537 wlock = None
537 wlock = None
538 lookup, modified, added, removed, deleted, unknown, ignored = (
538 lookup, modified, added, removed, deleted, unknown, ignored = (
539 self.dirstate.changes(files, match, show_ignored))
539 self.dirstate.changes(files, match, show_ignored))
540
540
541 # are we comparing working dir against its parent?
541 # are we comparing working dir against its parent?
542 if not node1:
542 if not node1:
543 if lookup:
543 if lookup:
544 # do a full compare of any files that might have changed
544 # do a full compare of any files that might have changed
545 mf2 = mfmatches(self.dirstate.parents()[0])
545 mf2 = mfmatches(self.dirstate.parents()[0])
546 for f in lookup:
546 for f in lookup:
547 if fcmp(f, mf2):
547 if fcmp(f, mf2):
548 modified.append(f)
548 modified.append(f)
549 elif wlock is not None:
549 elif wlock is not None:
550 self.dirstate.update([f], "n")
550 self.dirstate.update([f], "n")
551 else:
551 else:
552 # we are comparing working dir against non-parent
552 # we are comparing working dir against non-parent
553 # generate a pseudo-manifest for the working dir
553 # generate a pseudo-manifest for the working dir
554 mf2 = mfmatches(self.dirstate.parents()[0])
554 mf2 = mfmatches(self.dirstate.parents()[0])
555 for f in lookup + modified + added:
555 for f in lookup + modified + added:
556 mf2[f] = ""
556 mf2[f] = ""
557 for f in removed:
557 for f in removed:
558 if f in mf2:
558 if f in mf2:
559 del mf2[f]
559 del mf2[f]
560 else:
560 else:
561 # we are comparing two revisions
561 # we are comparing two revisions
562 deleted, unknown, ignored = [], [], []
562 deleted, unknown, ignored = [], [], []
563 mf2 = mfmatches(node2)
563 mf2 = mfmatches(node2)
564
564
565 if node1:
565 if node1:
566 # flush lists from dirstate before comparing manifests
566 # flush lists from dirstate before comparing manifests
567 modified, added = [], []
567 modified, added = [], []
568
568
569 for fn in mf2:
569 for fn in mf2:
570 if mf1.has_key(fn):
570 if mf1.has_key(fn):
571 if mf1[fn] != mf2[fn] and (mf2[fn] != "" or fcmp(fn, mf1)):
571 if mf1[fn] != mf2[fn] and (mf2[fn] != "" or fcmp(fn, mf1)):
572 modified.append(fn)
572 modified.append(fn)
573 del mf1[fn]
573 del mf1[fn]
574 else:
574 else:
575 added.append(fn)
575 added.append(fn)
576
576
577 removed = mf1.keys()
577 removed = mf1.keys()
578
578
579 # sort and return results:
579 # sort and return results:
580 for l in modified, added, removed, deleted, unknown, ignored:
580 for l in modified, added, removed, deleted, unknown, ignored:
581 l.sort()
581 l.sort()
582 if show_ignored is None:
582 if show_ignored is None:
583 return (modified, added, removed, deleted, unknown)
583 return (modified, added, removed, deleted, unknown)
584 else:
584 else:
585 return (modified, added, removed, deleted, unknown, ignored)
585 return (modified, added, removed, deleted, unknown, ignored)
586
586
587 def add(self, list, wlock=None):
587 def add(self, list, wlock=None):
588 if not wlock:
588 if not wlock:
589 wlock = self.wlock()
589 wlock = self.wlock()
590 for f in list:
590 for f in list:
591 p = self.wjoin(f)
591 p = self.wjoin(f)
592 if not os.path.exists(p):
592 if not os.path.exists(p):
593 self.ui.warn(_("%s does not exist!\n") % f)
593 self.ui.warn(_("%s does not exist!\n") % f)
594 elif not os.path.isfile(p):
594 elif not os.path.isfile(p):
595 self.ui.warn(_("%s not added: only files supported currently\n")
595 self.ui.warn(_("%s not added: only files supported currently\n")
596 % f)
596 % f)
597 elif self.dirstate.state(f) in 'an':
597 elif self.dirstate.state(f) in 'an':
598 self.ui.warn(_("%s already tracked!\n") % f)
598 self.ui.warn(_("%s already tracked!\n") % f)
599 else:
599 else:
600 self.dirstate.update([f], "a")
600 self.dirstate.update([f], "a")
601
601
602 def forget(self, list, wlock=None):
602 def forget(self, list, wlock=None):
603 if not wlock:
603 if not wlock:
604 wlock = self.wlock()
604 wlock = self.wlock()
605 for f in list:
605 for f in list:
606 if self.dirstate.state(f) not in 'ai':
606 if self.dirstate.state(f) not in 'ai':
607 self.ui.warn(_("%s not added!\n") % f)
607 self.ui.warn(_("%s not added!\n") % f)
608 else:
608 else:
609 self.dirstate.forget([f])
609 self.dirstate.forget([f])
610
610
611 def remove(self, list, unlink=False, wlock=None):
611 def remove(self, list, unlink=False, wlock=None):
612 if unlink:
612 if unlink:
613 for f in list:
613 for f in list:
614 try:
614 try:
615 util.unlink(self.wjoin(f))
615 util.unlink(self.wjoin(f))
616 except OSError, inst:
616 except OSError, inst:
617 if inst.errno != errno.ENOENT:
617 if inst.errno != errno.ENOENT:
618 raise
618 raise
619 if not wlock:
619 if not wlock:
620 wlock = self.wlock()
620 wlock = self.wlock()
621 for f in list:
621 for f in list:
622 p = self.wjoin(f)
622 p = self.wjoin(f)
623 if os.path.exists(p):
623 if os.path.exists(p):
624 self.ui.warn(_("%s still exists!\n") % f)
624 self.ui.warn(_("%s still exists!\n") % f)
625 elif self.dirstate.state(f) == 'a':
625 elif self.dirstate.state(f) == 'a':
626 self.dirstate.forget([f])
626 self.dirstate.forget([f])
627 elif f not in self.dirstate:
627 elif f not in self.dirstate:
628 self.ui.warn(_("%s not tracked!\n") % f)
628 self.ui.warn(_("%s not tracked!\n") % f)
629 else:
629 else:
630 self.dirstate.update([f], "r")
630 self.dirstate.update([f], "r")
631
631
632 def undelete(self, list, wlock=None):
632 def undelete(self, list, wlock=None):
633 p = self.dirstate.parents()[0]
633 p = self.dirstate.parents()[0]
634 mn = self.changelog.read(p)[0]
634 mn = self.changelog.read(p)[0]
635 mf = self.manifest.readflags(mn)
635 mf = self.manifest.readflags(mn)
636 m = self.manifest.read(mn)
636 m = self.manifest.read(mn)
637 if not wlock:
637 if not wlock:
638 wlock = self.wlock()
638 wlock = self.wlock()
639 for f in list:
639 for f in list:
640 if self.dirstate.state(f) not in "r":
640 if self.dirstate.state(f) not in "r":
641 self.ui.warn("%s not removed!\n" % f)
641 self.ui.warn("%s not removed!\n" % f)
642 else:
642 else:
643 t = self.file(f).read(m[f])
643 t = self.file(f).read(m[f])
644 self.wwrite(f, t)
644 self.wwrite(f, t)
645 util.set_exec(self.wjoin(f), mf[f])
645 util.set_exec(self.wjoin(f), mf[f])
646 self.dirstate.update([f], "n")
646 self.dirstate.update([f], "n")
647
647
648 def copy(self, source, dest, wlock=None):
648 def copy(self, source, dest, wlock=None):
649 p = self.wjoin(dest)
649 p = self.wjoin(dest)
650 if not os.path.exists(p):
650 if not os.path.exists(p):
651 self.ui.warn(_("%s does not exist!\n") % dest)
651 self.ui.warn(_("%s does not exist!\n") % dest)
652 elif not os.path.isfile(p):
652 elif not os.path.isfile(p):
653 self.ui.warn(_("copy failed: %s is not a file\n") % dest)
653 self.ui.warn(_("copy failed: %s is not a file\n") % dest)
654 else:
654 else:
655 if not wlock:
655 if not wlock:
656 wlock = self.wlock()
656 wlock = self.wlock()
657 if self.dirstate.state(dest) == '?':
657 if self.dirstate.state(dest) == '?':
658 self.dirstate.update([dest], "a")
658 self.dirstate.update([dest], "a")
659 self.dirstate.copy(source, dest)
659 self.dirstate.copy(source, dest)
660
660
661 def heads(self, start=None):
661 def heads(self, start=None):
662 heads = self.changelog.heads(start)
662 heads = self.changelog.heads(start)
663 # sort the output in rev descending order
663 # sort the output in rev descending order
664 heads = [(-self.changelog.rev(h), h) for h in heads]
664 heads = [(-self.changelog.rev(h), h) for h in heads]
665 heads.sort()
665 heads.sort()
666 return [n for (r, n) in heads]
666 return [n for (r, n) in heads]
667
667
668 # branchlookup returns a dict giving a list of branches for
668 # branchlookup returns a dict giving a list of branches for
669 # each head. A branch is defined as the tag of a node or
669 # each head. A branch is defined as the tag of a node or
670 # the branch of the node's parents. If a node has multiple
670 # the branch of the node's parents. If a node has multiple
671 # branch tags, tags are eliminated if they are visible from other
671 # branch tags, tags are eliminated if they are visible from other
672 # branch tags.
672 # branch tags.
673 #
673 #
674 # So, for this graph: a->b->c->d->e
674 # So, for this graph: a->b->c->d->e
675 # \ /
675 # \ /
676 # aa -----/
676 # aa -----/
677 # a has tag 2.6.12
677 # a has tag 2.6.12
678 # d has tag 2.6.13
678 # d has tag 2.6.13
679 # e would have branch tags for 2.6.12 and 2.6.13. Because the node
679 # e would have branch tags for 2.6.12 and 2.6.13. Because the node
680 # for 2.6.12 can be reached from the node 2.6.13, that is eliminated
680 # for 2.6.12 can be reached from the node 2.6.13, that is eliminated
681 # from the list.
681 # from the list.
682 #
682 #
683 # It is possible that more than one head will have the same branch tag.
683 # It is possible that more than one head will have the same branch tag.
684 # callers need to check the result for multiple heads under the same
684 # callers need to check the result for multiple heads under the same
685 # branch tag if that is a problem for them (ie checkout of a specific
685 # branch tag if that is a problem for them (ie checkout of a specific
686 # branch).
686 # branch).
687 #
687 #
688 # passing in a specific branch will limit the depth of the search
688 # passing in a specific branch will limit the depth of the search
689 # through the parents. It won't limit the branches returned in the
689 # through the parents. It won't limit the branches returned in the
690 # result though.
690 # result though.
691 def branchlookup(self, heads=None, branch=None):
691 def branchlookup(self, heads=None, branch=None):
692 if not heads:
692 if not heads:
693 heads = self.heads()
693 heads = self.heads()
694 headt = [ h for h in heads ]
694 headt = [ h for h in heads ]
695 chlog = self.changelog
695 chlog = self.changelog
696 branches = {}
696 branches = {}
697 merges = []
697 merges = []
698 seenmerge = {}
698 seenmerge = {}
699
699
700 # traverse the tree once for each head, recording in the branches
700 # traverse the tree once for each head, recording in the branches
701 # dict which tags are visible from this head. The branches
701 # dict which tags are visible from this head. The branches
702 # dict also records which tags are visible from each tag
702 # dict also records which tags are visible from each tag
703 # while we traverse.
703 # while we traverse.
704 while headt or merges:
704 while headt or merges:
705 if merges:
705 if merges:
706 n, found = merges.pop()
706 n, found = merges.pop()
707 visit = [n]
707 visit = [n]
708 else:
708 else:
709 h = headt.pop()
709 h = headt.pop()
710 visit = [h]
710 visit = [h]
711 found = [h]
711 found = [h]
712 seen = {}
712 seen = {}
713 while visit:
713 while visit:
714 n = visit.pop()
714 n = visit.pop()
715 if n in seen:
715 if n in seen:
716 continue
716 continue
717 pp = chlog.parents(n)
717 pp = chlog.parents(n)
718 tags = self.nodetags(n)
718 tags = self.nodetags(n)
719 if tags:
719 if tags:
720 for x in tags:
720 for x in tags:
721 if x == 'tip':
721 if x == 'tip':
722 continue
722 continue
723 for f in found:
723 for f in found:
724 branches.setdefault(f, {})[n] = 1
724 branches.setdefault(f, {})[n] = 1
725 branches.setdefault(n, {})[n] = 1
725 branches.setdefault(n, {})[n] = 1
726 break
726 break
727 if n not in found:
727 if n not in found:
728 found.append(n)
728 found.append(n)
729 if branch in tags:
729 if branch in tags:
730 continue
730 continue
731 seen[n] = 1
731 seen[n] = 1
732 if pp[1] != nullid and n not in seenmerge:
732 if pp[1] != nullid and n not in seenmerge:
733 merges.append((pp[1], [x for x in found]))
733 merges.append((pp[1], [x for x in found]))
734 seenmerge[n] = 1
734 seenmerge[n] = 1
735 if pp[0] != nullid:
735 if pp[0] != nullid:
736 visit.append(pp[0])
736 visit.append(pp[0])
737 # traverse the branches dict, eliminating branch tags from each
737 # traverse the branches dict, eliminating branch tags from each
738 # head that are visible from another branch tag for that head.
738 # head that are visible from another branch tag for that head.
739 out = {}
739 out = {}
740 viscache = {}
740 viscache = {}
741 for h in heads:
741 for h in heads:
742 def visible(node):
742 def visible(node):
743 if node in viscache:
743 if node in viscache:
744 return viscache[node]
744 return viscache[node]
745 ret = {}
745 ret = {}
746 visit = [node]
746 visit = [node]
747 while visit:
747 while visit:
748 x = visit.pop()
748 x = visit.pop()
749 if x in viscache:
749 if x in viscache:
750 ret.update(viscache[x])
750 ret.update(viscache[x])
751 elif x not in ret:
751 elif x not in ret:
752 ret[x] = 1
752 ret[x] = 1
753 if x in branches:
753 if x in branches:
754 visit[len(visit):] = branches[x].keys()
754 visit[len(visit):] = branches[x].keys()
755 viscache[node] = ret
755 viscache[node] = ret
756 return ret
756 return ret
757 if h not in branches:
757 if h not in branches:
758 continue
758 continue
759 # O(n^2), but somewhat limited. This only searches the
759 # O(n^2), but somewhat limited. This only searches the
760 # tags visible from a specific head, not all the tags in the
760 # tags visible from a specific head, not all the tags in the
761 # whole repo.
761 # whole repo.
762 for b in branches[h]:
762 for b in branches[h]:
763 vis = False
763 vis = False
764 for bb in branches[h].keys():
764 for bb in branches[h].keys():
765 if b != bb:
765 if b != bb:
766 if b in visible(bb):
766 if b in visible(bb):
767 vis = True
767 vis = True
768 break
768 break
769 if not vis:
769 if not vis:
770 l = out.setdefault(h, [])
770 l = out.setdefault(h, [])
771 l[len(l):] = self.nodetags(b)
771 l[len(l):] = self.nodetags(b)
772 return out
772 return out
773
773
774 def branches(self, nodes):
774 def branches(self, nodes):
775 if not nodes:
775 if not nodes:
776 nodes = [self.changelog.tip()]
776 nodes = [self.changelog.tip()]
777 b = []
777 b = []
778 for n in nodes:
778 for n in nodes:
779 t = n
779 t = n
780 while n:
780 while n:
781 p = self.changelog.parents(n)
781 p = self.changelog.parents(n)
782 if p[1] != nullid or p[0] == nullid:
782 if p[1] != nullid or p[0] == nullid:
783 b.append((t, n, p[0], p[1]))
783 b.append((t, n, p[0], p[1]))
784 break
784 break
785 n = p[0]
785 n = p[0]
786 return b
786 return b
787
787
788 def between(self, pairs):
788 def between(self, pairs):
789 r = []
789 r = []
790
790
791 for top, bottom in pairs:
791 for top, bottom in pairs:
792 n, l, i = top, [], 0
792 n, l, i = top, [], 0
793 f = 1
793 f = 1
794
794
795 while n != bottom:
795 while n != bottom:
796 p = self.changelog.parents(n)[0]
796 p = self.changelog.parents(n)[0]
797 if i == f:
797 if i == f:
798 l.append(n)
798 l.append(n)
799 f = f * 2
799 f = f * 2
800 n = p
800 n = p
801 i += 1
801 i += 1
802
802
803 r.append(l)
803 r.append(l)
804
804
805 return r
805 return r
806
806
807 def findincoming(self, remote, base=None, heads=None, force=False):
807 def findincoming(self, remote, base=None, heads=None, force=False):
808 m = self.changelog.nodemap
808 m = self.changelog.nodemap
809 search = []
809 search = []
810 fetch = {}
810 fetch = {}
811 seen = {}
811 seen = {}
812 seenbranch = {}
812 seenbranch = {}
813 if base == None:
813 if base == None:
814 base = {}
814 base = {}
815
815
816 # assume we're closer to the tip than the root
816 # assume we're closer to the tip than the root
817 # and start by examining the heads
817 # and start by examining the heads
818 self.ui.status(_("searching for changes\n"))
818 self.ui.status(_("searching for changes\n"))
819
819
820 if not heads:
820 if not heads:
821 heads = remote.heads()
821 heads = remote.heads()
822
822
823 unknown = []
823 unknown = []
824 for h in heads:
824 for h in heads:
825 if h not in m:
825 if h not in m:
826 unknown.append(h)
826 unknown.append(h)
827 else:
827 else:
828 base[h] = 1
828 base[h] = 1
829
829
830 if not unknown:
830 if not unknown:
831 return []
831 return []
832
832
833 rep = {}
833 rep = {}
834 reqcnt = 0
834 reqcnt = 0
835
835
836 # search through remote branches
836 # search through remote branches
837 # a 'branch' here is a linear segment of history, with four parts:
837 # a 'branch' here is a linear segment of history, with four parts:
838 # head, root, first parent, second parent
838 # head, root, first parent, second parent
839 # (a branch always has two parents (or none) by definition)
839 # (a branch always has two parents (or none) by definition)
840 unknown = remote.branches(unknown)
840 unknown = remote.branches(unknown)
841 while unknown:
841 while unknown:
842 r = []
842 r = []
843 while unknown:
843 while unknown:
844 n = unknown.pop(0)
844 n = unknown.pop(0)
845 if n[0] in seen:
845 if n[0] in seen:
846 continue
846 continue
847
847
848 self.ui.debug(_("examining %s:%s\n")
848 self.ui.debug(_("examining %s:%s\n")
849 % (short(n[0]), short(n[1])))
849 % (short(n[0]), short(n[1])))
850 if n[0] == nullid:
850 if n[0] == nullid:
851 break
851 break
852 if n in seenbranch:
852 if n in seenbranch:
853 self.ui.debug(_("branch already found\n"))
853 self.ui.debug(_("branch already found\n"))
854 continue
854 continue
855 if n[1] and n[1] in m: # do we know the base?
855 if n[1] and n[1] in m: # do we know the base?
856 self.ui.debug(_("found incomplete branch %s:%s\n")
856 self.ui.debug(_("found incomplete branch %s:%s\n")
857 % (short(n[0]), short(n[1])))
857 % (short(n[0]), short(n[1])))
858 search.append(n) # schedule branch range for scanning
858 search.append(n) # schedule branch range for scanning
859 seenbranch[n] = 1
859 seenbranch[n] = 1
860 else:
860 else:
861 if n[1] not in seen and n[1] not in fetch:
861 if n[1] not in seen and n[1] not in fetch:
862 if n[2] in m and n[3] in m:
862 if n[2] in m and n[3] in m:
863 self.ui.debug(_("found new changeset %s\n") %
863 self.ui.debug(_("found new changeset %s\n") %
864 short(n[1]))
864 short(n[1]))
865 fetch[n[1]] = 1 # earliest unknown
865 fetch[n[1]] = 1 # earliest unknown
866 base[n[2]] = 1 # latest known
866 base[n[2]] = 1 # latest known
867 continue
867 continue
868
868
869 for a in n[2:4]:
869 for a in n[2:4]:
870 if a not in rep:
870 if a not in rep:
871 r.append(a)
871 r.append(a)
872 rep[a] = 1
872 rep[a] = 1
873
873
874 seen[n[0]] = 1
874 seen[n[0]] = 1
875
875
876 if r:
876 if r:
877 reqcnt += 1
877 reqcnt += 1
878 self.ui.debug(_("request %d: %s\n") %
878 self.ui.debug(_("request %d: %s\n") %
879 (reqcnt, " ".join(map(short, r))))
879 (reqcnt, " ".join(map(short, r))))
880 for p in range(0, len(r), 10):
880 for p in range(0, len(r), 10):
881 for b in remote.branches(r[p:p+10]):
881 for b in remote.branches(r[p:p+10]):
882 self.ui.debug(_("received %s:%s\n") %
882 self.ui.debug(_("received %s:%s\n") %
883 (short(b[0]), short(b[1])))
883 (short(b[0]), short(b[1])))
884 if b[0] in m:
884 if b[0] in m:
885 self.ui.debug(_("found base node %s\n")
885 self.ui.debug(_("found base node %s\n")
886 % short(b[0]))
886 % short(b[0]))
887 base[b[0]] = 1
887 base[b[0]] = 1
888 elif b[0] not in seen:
888 elif b[0] not in seen:
889 unknown.append(b)
889 unknown.append(b)
890
890
891 # do binary search on the branches we found
891 # do binary search on the branches we found
892 while search:
892 while search:
893 n = search.pop(0)
893 n = search.pop(0)
894 reqcnt += 1
894 reqcnt += 1
895 l = remote.between([(n[0], n[1])])[0]
895 l = remote.between([(n[0], n[1])])[0]
896 l.append(n[1])
896 l.append(n[1])
897 p = n[0]
897 p = n[0]
898 f = 1
898 f = 1
899 for i in l:
899 for i in l:
900 self.ui.debug(_("narrowing %d:%d %s\n") % (f, len(l), short(i)))
900 self.ui.debug(_("narrowing %d:%d %s\n") % (f, len(l), short(i)))
901 if i in m:
901 if i in m:
902 if f <= 2:
902 if f <= 2:
903 self.ui.debug(_("found new branch changeset %s\n") %
903 self.ui.debug(_("found new branch changeset %s\n") %
904 short(p))
904 short(p))
905 fetch[p] = 1
905 fetch[p] = 1
906 base[i] = 1
906 base[i] = 1
907 else:
907 else:
908 self.ui.debug(_("narrowed branch search to %s:%s\n")
908 self.ui.debug(_("narrowed branch search to %s:%s\n")
909 % (short(p), short(i)))
909 % (short(p), short(i)))
910 search.append((p, i))
910 search.append((p, i))
911 break
911 break
912 p, f = i, f * 2
912 p, f = i, f * 2
913
913
914 # sanity check our fetch list
914 # sanity check our fetch list
915 for f in fetch.keys():
915 for f in fetch.keys():
916 if f in m:
916 if f in m:
917 raise repo.RepoError(_("already have changeset ") + short(f[:4]))
917 raise repo.RepoError(_("already have changeset ") + short(f[:4]))
918
918
919 if base.keys() == [nullid]:
919 if base.keys() == [nullid]:
920 if force:
920 if force:
921 self.ui.warn(_("warning: repository is unrelated\n"))
921 self.ui.warn(_("warning: repository is unrelated\n"))
922 else:
922 else:
923 raise util.Abort(_("repository is unrelated"))
923 raise util.Abort(_("repository is unrelated"))
924
924
925 self.ui.note(_("found new changesets starting at ") +
925 self.ui.note(_("found new changesets starting at ") +
926 " ".join([short(f) for f in fetch]) + "\n")
926 " ".join([short(f) for f in fetch]) + "\n")
927
927
928 self.ui.debug(_("%d total queries\n") % reqcnt)
928 self.ui.debug(_("%d total queries\n") % reqcnt)
929
929
930 return fetch.keys()
930 return fetch.keys()
931
931
932 def findoutgoing(self, remote, base=None, heads=None, force=False):
932 def findoutgoing(self, remote, base=None, heads=None, force=False):
933 """Return list of nodes that are roots of subsets not in remote
933 """Return list of nodes that are roots of subsets not in remote
934
934
935 If base dict is specified, assume that these nodes and their parents
935 If base dict is specified, assume that these nodes and their parents
936 exist on the remote side.
936 exist on the remote side.
937 If a list of heads is specified, return only nodes which are heads
937 If a list of heads is specified, return only nodes which are heads
938 or ancestors of these heads, and return a second element which
938 or ancestors of these heads, and return a second element which
939 contains all remote heads which get new children.
939 contains all remote heads which get new children.
940 """
940 """
941 if base == None:
941 if base == None:
942 base = {}
942 base = {}
943 self.findincoming(remote, base, heads, force=force)
943 self.findincoming(remote, base, heads, force=force)
944
944
945 self.ui.debug(_("common changesets up to ")
945 self.ui.debug(_("common changesets up to ")
946 + " ".join(map(short, base.keys())) + "\n")
946 + " ".join(map(short, base.keys())) + "\n")
947
947
948 remain = dict.fromkeys(self.changelog.nodemap)
948 remain = dict.fromkeys(self.changelog.nodemap)
949
949
950 # prune everything remote has from the tree
950 # prune everything remote has from the tree
951 del remain[nullid]
951 del remain[nullid]
952 remove = base.keys()
952 remove = base.keys()
953 while remove:
953 while remove:
954 n = remove.pop(0)
954 n = remove.pop(0)
955 if n in remain:
955 if n in remain:
956 del remain[n]
956 del remain[n]
957 for p in self.changelog.parents(n):
957 for p in self.changelog.parents(n):
958 remove.append(p)
958 remove.append(p)
959
959
960 # find every node whose parents have been pruned
960 # find every node whose parents have been pruned
961 subset = []
961 subset = []
962 # find every remote head that will get new children
962 # find every remote head that will get new children
963 updated_heads = {}
963 updated_heads = {}
964 for n in remain:
964 for n in remain:
965 p1, p2 = self.changelog.parents(n)
965 p1, p2 = self.changelog.parents(n)
966 if p1 not in remain and p2 not in remain:
966 if p1 not in remain and p2 not in remain:
967 subset.append(n)
967 subset.append(n)
968 if heads:
968 if heads:
969 if p1 in heads:
969 if p1 in heads:
970 updated_heads[p1] = True
970 updated_heads[p1] = True
971 if p2 in heads:
971 if p2 in heads:
972 updated_heads[p2] = True
972 updated_heads[p2] = True
973
973
974 # this is the set of all roots we have to push
974 # this is the set of all roots we have to push
975 if heads:
975 if heads:
976 return subset, updated_heads.keys()
976 return subset, updated_heads.keys()
977 else:
977 else:
978 return subset
978 return subset
979
979
980 def pull(self, remote, heads=None, force=False):
980 def pull(self, remote, heads=None, force=False):
981 l = self.lock()
981 l = self.lock()
982
982
983 # if we have an empty repo, fetch everything
983 # if we have an empty repo, fetch everything
984 if self.changelog.tip() == nullid:
984 if self.changelog.tip() == nullid:
985 self.ui.status(_("requesting all changes\n"))
985 self.ui.status(_("requesting all changes\n"))
986 fetch = [nullid]
986 fetch = [nullid]
987 else:
987 else:
988 fetch = self.findincoming(remote, force=force)
988 fetch = self.findincoming(remote, force=force)
989
989
990 if not fetch:
990 if not fetch:
991 self.ui.status(_("no changes found\n"))
991 self.ui.status(_("no changes found\n"))
992 return 0
992 return 0
993
993
994 if heads is None:
994 if heads is None:
995 cg = remote.changegroup(fetch, 'pull')
995 cg = remote.changegroup(fetch, 'pull')
996 else:
996 else:
997 cg = remote.changegroupsubset(fetch, heads, 'pull')
997 cg = remote.changegroupsubset(fetch, heads, 'pull')
998 return self.addchangegroup(cg)
998 return self.addchangegroup(cg)
999
999
1000 def push(self, remote, force=False, revs=None):
1000 def push(self, remote, force=False, revs=None):
1001 lock = remote.lock()
1001 lock = remote.lock()
1002
1002
1003 base = {}
1003 base = {}
1004 remote_heads = remote.heads()
1004 remote_heads = remote.heads()
1005 inc = self.findincoming(remote, base, remote_heads, force=force)
1005 inc = self.findincoming(remote, base, remote_heads, force=force)
1006 if not force and inc:
1006 if not force and inc:
1007 self.ui.warn(_("abort: unsynced remote changes!\n"))
1007 self.ui.warn(_("abort: unsynced remote changes!\n"))
1008 self.ui.status(_("(did you forget to sync?"
1008 self.ui.status(_("(did you forget to sync?"
1009 " use push -f to force)\n"))
1009 " use push -f to force)\n"))
1010 return 1
1010 return 1
1011
1011
1012 update, updated_heads = self.findoutgoing(remote, base, remote_heads)
1012 update, updated_heads = self.findoutgoing(remote, base, remote_heads)
1013 if revs is not None:
1013 if revs is not None:
1014 msng_cl, bases, heads = self.changelog.nodesbetween(update, revs)
1014 msng_cl, bases, heads = self.changelog.nodesbetween(update, revs)
1015 else:
1015 else:
1016 bases, heads = update, self.changelog.heads()
1016 bases, heads = update, self.changelog.heads()
1017
1017
1018 if not bases:
1018 if not bases:
1019 self.ui.status(_("no changes found\n"))
1019 self.ui.status(_("no changes found\n"))
1020 return 1
1020 return 1
1021 elif not force:
1021 elif not force:
1022 if revs is not None:
1022 if revs is not None:
1023 updated_heads = {}
1023 updated_heads = {}
1024 for base in msng_cl:
1024 for base in msng_cl:
1025 for parent in self.changelog.parents(base):
1025 for parent in self.changelog.parents(base):
1026 if parent in remote_heads:
1026 if parent in remote_heads:
1027 updated_heads[parent] = True
1027 updated_heads[parent] = True
1028 updated_heads = updated_heads.keys()
1028 updated_heads = updated_heads.keys()
1029 if len(updated_heads) < len(heads):
1029 if len(updated_heads) < len(heads):
1030 self.ui.warn(_("abort: push creates new remote branches!\n"))
1030 self.ui.warn(_("abort: push creates new remote branches!\n"))
1031 self.ui.status(_("(did you forget to merge?"
1031 self.ui.status(_("(did you forget to merge?"
1032 " use push -f to force)\n"))
1032 " use push -f to force)\n"))
1033 return 1
1033 return 1
1034
1034
1035 if revs is None:
1035 if revs is None:
1036 cg = self.changegroup(update, 'push')
1036 cg = self.changegroup(update, 'push')
1037 else:
1037 else:
1038 cg = self.changegroupsubset(update, revs, 'push')
1038 cg = self.changegroupsubset(update, revs, 'push')
1039 return remote.addchangegroup(cg)
1039 return remote.addchangegroup(cg)
1040
1040
1041 def changegroupsubset(self, bases, heads, source):
1041 def changegroupsubset(self, bases, heads, source):
1042 """This function generates a changegroup consisting of all the nodes
1042 """This function generates a changegroup consisting of all the nodes
1043 that are descendents of any of the bases, and ancestors of any of
1043 that are descendents of any of the bases, and ancestors of any of
1044 the heads.
1044 the heads.
1045
1045
1046 It is fairly complex as determining which filenodes and which
1046 It is fairly complex as determining which filenodes and which
1047 manifest nodes need to be included for the changeset to be complete
1047 manifest nodes need to be included for the changeset to be complete
1048 is non-trivial.
1048 is non-trivial.
1049
1049
1050 Another wrinkle is doing the reverse, figuring out which changeset in
1050 Another wrinkle is doing the reverse, figuring out which changeset in
1051 the changegroup a particular filenode or manifestnode belongs to."""
1051 the changegroup a particular filenode or manifestnode belongs to."""
1052
1052
1053 self.hook('preoutgoing', throw=True, source=source)
1053 self.hook('preoutgoing', throw=True, source=source)
1054
1054
1055 # Set up some initial variables
1055 # Set up some initial variables
1056 # Make it easy to refer to self.changelog
1056 # Make it easy to refer to self.changelog
1057 cl = self.changelog
1057 cl = self.changelog
1058 # msng is short for missing - compute the list of changesets in this
1058 # msng is short for missing - compute the list of changesets in this
1059 # changegroup.
1059 # changegroup.
1060 msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads)
1060 msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads)
1061 # Some bases may turn out to be superfluous, and some heads may be
1061 # Some bases may turn out to be superfluous, and some heads may be
1062 # too. nodesbetween will return the minimal set of bases and heads
1062 # too. nodesbetween will return the minimal set of bases and heads
1063 # necessary to re-create the changegroup.
1063 # necessary to re-create the changegroup.
1064
1064
1065 # Known heads are the list of heads that it is assumed the recipient
1065 # Known heads are the list of heads that it is assumed the recipient
1066 # of this changegroup will know about.
1066 # of this changegroup will know about.
1067 knownheads = {}
1067 knownheads = {}
1068 # We assume that all parents of bases are known heads.
1068 # We assume that all parents of bases are known heads.
1069 for n in bases:
1069 for n in bases:
1070 for p in cl.parents(n):
1070 for p in cl.parents(n):
1071 if p != nullid:
1071 if p != nullid:
1072 knownheads[p] = 1
1072 knownheads[p] = 1
1073 knownheads = knownheads.keys()
1073 knownheads = knownheads.keys()
1074 if knownheads:
1074 if knownheads:
1075 # Now that we know what heads are known, we can compute which
1075 # Now that we know what heads are known, we can compute which
1076 # changesets are known. The recipient must know about all
1076 # changesets are known. The recipient must know about all
1077 # changesets required to reach the known heads from the null
1077 # changesets required to reach the known heads from the null
1078 # changeset.
1078 # changeset.
1079 has_cl_set, junk, junk = cl.nodesbetween(None, knownheads)
1079 has_cl_set, junk, junk = cl.nodesbetween(None, knownheads)
1080 junk = None
1080 junk = None
1081 # Transform the list into an ersatz set.
1081 # Transform the list into an ersatz set.
1082 has_cl_set = dict.fromkeys(has_cl_set)
1082 has_cl_set = dict.fromkeys(has_cl_set)
1083 else:
1083 else:
1084 # If there were no known heads, the recipient cannot be assumed to
1084 # If there were no known heads, the recipient cannot be assumed to
1085 # know about any changesets.
1085 # know about any changesets.
1086 has_cl_set = {}
1086 has_cl_set = {}
1087
1087
1088 # Make it easy to refer to self.manifest
1088 # Make it easy to refer to self.manifest
1089 mnfst = self.manifest
1089 mnfst = self.manifest
1090 # We don't know which manifests are missing yet
1090 # We don't know which manifests are missing yet
1091 msng_mnfst_set = {}
1091 msng_mnfst_set = {}
1092 # Nor do we know which filenodes are missing.
1092 # Nor do we know which filenodes are missing.
1093 msng_filenode_set = {}
1093 msng_filenode_set = {}
1094
1094
1095 junk = mnfst.index[mnfst.count() - 1] # Get around a bug in lazyindex
1095 junk = mnfst.index[mnfst.count() - 1] # Get around a bug in lazyindex
1096 junk = None
1096 junk = None
1097
1097
1098 # A changeset always belongs to itself, so the changenode lookup
1098 # A changeset always belongs to itself, so the changenode lookup
1099 # function for a changenode is identity.
1099 # function for a changenode is identity.
1100 def identity(x):
1100 def identity(x):
1101 return x
1101 return x
1102
1102
1103 # A function generating function. Sets up an environment for the
1103 # A function generating function. Sets up an environment for the
1104 # inner function.
1104 # inner function.
1105 def cmp_by_rev_func(revlog):
1105 def cmp_by_rev_func(revlog):
1106 # Compare two nodes by their revision number in the environment's
1106 # Compare two nodes by their revision number in the environment's
1107 # revision history. Since the revision number both represents the
1107 # revision history. Since the revision number both represents the
1108 # most efficient order to read the nodes in, and represents a
1108 # most efficient order to read the nodes in, and represents a
1109 # topological sorting of the nodes, this function is often useful.
1109 # topological sorting of the nodes, this function is often useful.
1110 def cmp_by_rev(a, b):
1110 def cmp_by_rev(a, b):
1111 return cmp(revlog.rev(a), revlog.rev(b))
1111 return cmp(revlog.rev(a), revlog.rev(b))
1112 return cmp_by_rev
1112 return cmp_by_rev
1113
1113
1114 # If we determine that a particular file or manifest node must be a
1114 # If we determine that a particular file or manifest node must be a
1115 # node that the recipient of the changegroup will already have, we can
1115 # node that the recipient of the changegroup will already have, we can
1116 # also assume the recipient will have all the parents. This function
1116 # also assume the recipient will have all the parents. This function
1117 # prunes them from the set of missing nodes.
1117 # prunes them from the set of missing nodes.
1118 def prune_parents(revlog, hasset, msngset):
1118 def prune_parents(revlog, hasset, msngset):
1119 haslst = hasset.keys()
1119 haslst = hasset.keys()
1120 haslst.sort(cmp_by_rev_func(revlog))
1120 haslst.sort(cmp_by_rev_func(revlog))
1121 for node in haslst:
1121 for node in haslst:
1122 parentlst = [p for p in revlog.parents(node) if p != nullid]
1122 parentlst = [p for p in revlog.parents(node) if p != nullid]
1123 while parentlst:
1123 while parentlst:
1124 n = parentlst.pop()
1124 n = parentlst.pop()
1125 if n not in hasset:
1125 if n not in hasset:
1126 hasset[n] = 1
1126 hasset[n] = 1
1127 p = [p for p in revlog.parents(n) if p != nullid]
1127 p = [p for p in revlog.parents(n) if p != nullid]
1128 parentlst.extend(p)
1128 parentlst.extend(p)
1129 for n in hasset:
1129 for n in hasset:
1130 msngset.pop(n, None)
1130 msngset.pop(n, None)
1131
1131
1132 # This is a function generating function used to set up an environment
1132 # This is a function generating function used to set up an environment
1133 # for the inner function to execute in.
1133 # for the inner function to execute in.
1134 def manifest_and_file_collector(changedfileset):
1134 def manifest_and_file_collector(changedfileset):
1135 # This is an information gathering function that gathers
1135 # This is an information gathering function that gathers
1136 # information from each changeset node that goes out as part of
1136 # information from each changeset node that goes out as part of
1137 # the changegroup. The information gathered is a list of which
1137 # the changegroup. The information gathered is a list of which
1138 # manifest nodes are potentially required (the recipient may
1138 # manifest nodes are potentially required (the recipient may
1139 # already have them) and total list of all files which were
1139 # already have them) and total list of all files which were
1140 # changed in any changeset in the changegroup.
1140 # changed in any changeset in the changegroup.
1141 #
1141 #
1142 # We also remember the first changenode we saw any manifest
1142 # We also remember the first changenode we saw any manifest
1143 # referenced by so we can later determine which changenode 'owns'
1143 # referenced by so we can later determine which changenode 'owns'
1144 # the manifest.
1144 # the manifest.
1145 def collect_manifests_and_files(clnode):
1145 def collect_manifests_and_files(clnode):
1146 c = cl.read(clnode)
1146 c = cl.read(clnode)
1147 for f in c[3]:
1147 for f in c[3]:
1148 # This is to make sure we only have one instance of each
1148 # This is to make sure we only have one instance of each
1149 # filename string for each filename.
1149 # filename string for each filename.
1150 changedfileset.setdefault(f, f)
1150 changedfileset.setdefault(f, f)
1151 msng_mnfst_set.setdefault(c[0], clnode)
1151 msng_mnfst_set.setdefault(c[0], clnode)
1152 return collect_manifests_and_files
1152 return collect_manifests_and_files
1153
1153
1154 # Figure out which manifest nodes (of the ones we think might be part
1154 # Figure out which manifest nodes (of the ones we think might be part
1155 # of the changegroup) the recipient must know about and remove them
1155 # of the changegroup) the recipient must know about and remove them
1156 # from the changegroup.
1156 # from the changegroup.
1157 def prune_manifests():
1157 def prune_manifests():
1158 has_mnfst_set = {}
1158 has_mnfst_set = {}
1159 for n in msng_mnfst_set:
1159 for n in msng_mnfst_set:
1160 # If a 'missing' manifest thinks it belongs to a changenode
1160 # If a 'missing' manifest thinks it belongs to a changenode
1161 # the recipient is assumed to have, obviously the recipient
1161 # the recipient is assumed to have, obviously the recipient
1162 # must have that manifest.
1162 # must have that manifest.
1163 linknode = cl.node(mnfst.linkrev(n))
1163 linknode = cl.node(mnfst.linkrev(n))
1164 if linknode in has_cl_set:
1164 if linknode in has_cl_set:
1165 has_mnfst_set[n] = 1
1165 has_mnfst_set[n] = 1
1166 prune_parents(mnfst, has_mnfst_set, msng_mnfst_set)
1166 prune_parents(mnfst, has_mnfst_set, msng_mnfst_set)
1167
1167
1168 # Use the information collected in collect_manifests_and_files to say
1168 # Use the information collected in collect_manifests_and_files to say
1169 # which changenode any manifestnode belongs to.
1169 # which changenode any manifestnode belongs to.
1170 def lookup_manifest_link(mnfstnode):
1170 def lookup_manifest_link(mnfstnode):
1171 return msng_mnfst_set[mnfstnode]
1171 return msng_mnfst_set[mnfstnode]
1172
1172
1173 # A function generating function that sets up the initial environment
1173 # A function generating function that sets up the initial environment
1174 # the inner function.
1174 # the inner function.
1175 def filenode_collector(changedfiles):
1175 def filenode_collector(changedfiles):
1176 next_rev = [0]
1176 next_rev = [0]
1177 # This gathers information from each manifestnode included in the
1177 # This gathers information from each manifestnode included in the
1178 # changegroup about which filenodes the manifest node references
1178 # changegroup about which filenodes the manifest node references
1179 # so we can include those in the changegroup too.
1179 # so we can include those in the changegroup too.
1180 #
1180 #
1181 # It also remembers which changenode each filenode belongs to. It
1181 # It also remembers which changenode each filenode belongs to. It
1182 # does this by assuming the a filenode belongs to the changenode
1182 # does this by assuming the a filenode belongs to the changenode
1183 # the first manifest that references it belongs to.
1183 # the first manifest that references it belongs to.
1184 def collect_msng_filenodes(mnfstnode):
1184 def collect_msng_filenodes(mnfstnode):
1185 r = mnfst.rev(mnfstnode)
1185 r = mnfst.rev(mnfstnode)
1186 if r == next_rev[0]:
1186 if r == next_rev[0]:
1187 # If the last rev we looked at was the one just previous,
1187 # If the last rev we looked at was the one just previous,
1188 # we only need to see a diff.
1188 # we only need to see a diff.
1189 delta = mdiff.patchtext(mnfst.delta(mnfstnode))
1189 delta = mdiff.patchtext(mnfst.delta(mnfstnode))
1190 # For each line in the delta
1190 # For each line in the delta
1191 for dline in delta.splitlines():
1191 for dline in delta.splitlines():
1192 # get the filename and filenode for that line
1192 # get the filename and filenode for that line
1193 f, fnode = dline.split('\0')
1193 f, fnode = dline.split('\0')
1194 fnode = bin(fnode[:40])
1194 fnode = bin(fnode[:40])
1195 f = changedfiles.get(f, None)
1195 f = changedfiles.get(f, None)
1196 # And if the file is in the list of files we care
1196 # And if the file is in the list of files we care
1197 # about.
1197 # about.
1198 if f is not None:
1198 if f is not None:
1199 # Get the changenode this manifest belongs to
1199 # Get the changenode this manifest belongs to
1200 clnode = msng_mnfst_set[mnfstnode]
1200 clnode = msng_mnfst_set[mnfstnode]
1201 # Create the set of filenodes for the file if
1201 # Create the set of filenodes for the file if
1202 # there isn't one already.
1202 # there isn't one already.
1203 ndset = msng_filenode_set.setdefault(f, {})
1203 ndset = msng_filenode_set.setdefault(f, {})
1204 # And set the filenode's changelog node to the
1204 # And set the filenode's changelog node to the
1205 # manifest's if it hasn't been set already.
1205 # manifest's if it hasn't been set already.
1206 ndset.setdefault(fnode, clnode)
1206 ndset.setdefault(fnode, clnode)
1207 else:
1207 else:
1208 # Otherwise we need a full manifest.
1208 # Otherwise we need a full manifest.
1209 m = mnfst.read(mnfstnode)
1209 m = mnfst.read(mnfstnode)
1210 # For every file in we care about.
1210 # For every file in we care about.
1211 for f in changedfiles:
1211 for f in changedfiles:
1212 fnode = m.get(f, None)
1212 fnode = m.get(f, None)
1213 # If it's in the manifest
1213 # If it's in the manifest
1214 if fnode is not None:
1214 if fnode is not None:
1215 # See comments above.
1215 # See comments above.
1216 clnode = msng_mnfst_set[mnfstnode]
1216 clnode = msng_mnfst_set[mnfstnode]
1217 ndset = msng_filenode_set.setdefault(f, {})
1217 ndset = msng_filenode_set.setdefault(f, {})
1218 ndset.setdefault(fnode, clnode)
1218 ndset.setdefault(fnode, clnode)
1219 # Remember the revision we hope to see next.
1219 # Remember the revision we hope to see next.
1220 next_rev[0] = r + 1
1220 next_rev[0] = r + 1
1221 return collect_msng_filenodes
1221 return collect_msng_filenodes
1222
1222
1223 # We have a list of filenodes we think we need for a file, lets remove
1223 # We have a list of filenodes we think we need for a file, lets remove
1224 # all those we now the recipient must have.
1224 # all those we now the recipient must have.
1225 def prune_filenodes(f, filerevlog):
1225 def prune_filenodes(f, filerevlog):
1226 msngset = msng_filenode_set[f]
1226 msngset = msng_filenode_set[f]
1227 hasset = {}
1227 hasset = {}
1228 # If a 'missing' filenode thinks it belongs to a changenode we
1228 # If a 'missing' filenode thinks it belongs to a changenode we
1229 # assume the recipient must have, then the recipient must have
1229 # assume the recipient must have, then the recipient must have
1230 # that filenode.
1230 # that filenode.
1231 for n in msngset:
1231 for n in msngset:
1232 clnode = cl.node(filerevlog.linkrev(n))
1232 clnode = cl.node(filerevlog.linkrev(n))
1233 if clnode in has_cl_set:
1233 if clnode in has_cl_set:
1234 hasset[n] = 1
1234 hasset[n] = 1
1235 prune_parents(filerevlog, hasset, msngset)
1235 prune_parents(filerevlog, hasset, msngset)
1236
1236
1237 # A function generator function that sets up the a context for the
1237 # A function generator function that sets up the a context for the
1238 # inner function.
1238 # inner function.
1239 def lookup_filenode_link_func(fname):
1239 def lookup_filenode_link_func(fname):
1240 msngset = msng_filenode_set[fname]
1240 msngset = msng_filenode_set[fname]
1241 # Lookup the changenode the filenode belongs to.
1241 # Lookup the changenode the filenode belongs to.
1242 def lookup_filenode_link(fnode):
1242 def lookup_filenode_link(fnode):
1243 return msngset[fnode]
1243 return msngset[fnode]
1244 return lookup_filenode_link
1244 return lookup_filenode_link
1245
1245
1246 # Now that we have all theses utility functions to help out and
1246 # Now that we have all theses utility functions to help out and
1247 # logically divide up the task, generate the group.
1247 # logically divide up the task, generate the group.
1248 def gengroup():
1248 def gengroup():
1249 # The set of changed files starts empty.
1249 # The set of changed files starts empty.
1250 changedfiles = {}
1250 changedfiles = {}
1251 # Create a changenode group generator that will call our functions
1251 # Create a changenode group generator that will call our functions
1252 # back to lookup the owning changenode and collect information.
1252 # back to lookup the owning changenode and collect information.
1253 group = cl.group(msng_cl_lst, identity,
1253 group = cl.group(msng_cl_lst, identity,
1254 manifest_and_file_collector(changedfiles))
1254 manifest_and_file_collector(changedfiles))
1255 for chnk in group:
1255 for chnk in group:
1256 yield chnk
1256 yield chnk
1257
1257
1258 # The list of manifests has been collected by the generator
1258 # The list of manifests has been collected by the generator
1259 # calling our functions back.
1259 # calling our functions back.
1260 prune_manifests()
1260 prune_manifests()
1261 msng_mnfst_lst = msng_mnfst_set.keys()
1261 msng_mnfst_lst = msng_mnfst_set.keys()
1262 # Sort the manifestnodes by revision number.
1262 # Sort the manifestnodes by revision number.
1263 msng_mnfst_lst.sort(cmp_by_rev_func(mnfst))
1263 msng_mnfst_lst.sort(cmp_by_rev_func(mnfst))
1264 # Create a generator for the manifestnodes that calls our lookup
1264 # Create a generator for the manifestnodes that calls our lookup
1265 # and data collection functions back.
1265 # and data collection functions back.
1266 group = mnfst.group(msng_mnfst_lst, lookup_manifest_link,
1266 group = mnfst.group(msng_mnfst_lst, lookup_manifest_link,
1267 filenode_collector(changedfiles))
1267 filenode_collector(changedfiles))
1268 for chnk in group:
1268 for chnk in group:
1269 yield chnk
1269 yield chnk
1270
1270
1271 # These are no longer needed, dereference and toss the memory for
1271 # These are no longer needed, dereference and toss the memory for
1272 # them.
1272 # them.
1273 msng_mnfst_lst = None
1273 msng_mnfst_lst = None
1274 msng_mnfst_set.clear()
1274 msng_mnfst_set.clear()
1275
1275
1276 changedfiles = changedfiles.keys()
1276 changedfiles = changedfiles.keys()
1277 changedfiles.sort()
1277 changedfiles.sort()
1278 # Go through all our files in order sorted by name.
1278 # Go through all our files in order sorted by name.
1279 for fname in changedfiles:
1279 for fname in changedfiles:
1280 filerevlog = self.file(fname)
1280 filerevlog = self.file(fname)
1281 # Toss out the filenodes that the recipient isn't really
1281 # Toss out the filenodes that the recipient isn't really
1282 # missing.
1282 # missing.
1283 if msng_filenode_set.has_key(fname):
1283 if msng_filenode_set.has_key(fname):
1284 prune_filenodes(fname, filerevlog)
1284 prune_filenodes(fname, filerevlog)
1285 msng_filenode_lst = msng_filenode_set[fname].keys()
1285 msng_filenode_lst = msng_filenode_set[fname].keys()
1286 else:
1286 else:
1287 msng_filenode_lst = []
1287 msng_filenode_lst = []
1288 # If any filenodes are left, generate the group for them,
1288 # If any filenodes are left, generate the group for them,
1289 # otherwise don't bother.
1289 # otherwise don't bother.
1290 if len(msng_filenode_lst) > 0:
1290 if len(msng_filenode_lst) > 0:
1291 yield changegroup.genchunk(fname)
1291 yield changegroup.genchunk(fname)
1292 # Sort the filenodes by their revision #
1292 # Sort the filenodes by their revision #
1293 msng_filenode_lst.sort(cmp_by_rev_func(filerevlog))
1293 msng_filenode_lst.sort(cmp_by_rev_func(filerevlog))
1294 # Create a group generator and only pass in a changenode
1294 # Create a group generator and only pass in a changenode
1295 # lookup function as we need to collect no information
1295 # lookup function as we need to collect no information
1296 # from filenodes.
1296 # from filenodes.
1297 group = filerevlog.group(msng_filenode_lst,
1297 group = filerevlog.group(msng_filenode_lst,
1298 lookup_filenode_link_func(fname))
1298 lookup_filenode_link_func(fname))
1299 for chnk in group:
1299 for chnk in group:
1300 yield chnk
1300 yield chnk
1301 if msng_filenode_set.has_key(fname):
1301 if msng_filenode_set.has_key(fname):
1302 # Don't need this anymore, toss it to free memory.
1302 # Don't need this anymore, toss it to free memory.
1303 del msng_filenode_set[fname]
1303 del msng_filenode_set[fname]
1304 # Signal that no more groups are left.
1304 # Signal that no more groups are left.
1305 yield changegroup.closechunk()
1305 yield changegroup.closechunk()
1306
1306
1307 self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source)
1307 self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source)
1308
1308
1309 return util.chunkbuffer(gengroup())
1309 return util.chunkbuffer(gengroup())
1310
1310
1311 def changegroup(self, basenodes, source):
1311 def changegroup(self, basenodes, source):
1312 """Generate a changegroup of all nodes that we have that a recipient
1312 """Generate a changegroup of all nodes that we have that a recipient
1313 doesn't.
1313 doesn't.
1314
1314
1315 This is much easier than the previous function as we can assume that
1315 This is much easier than the previous function as we can assume that
1316 the recipient has any changenode we aren't sending them."""
1316 the recipient has any changenode we aren't sending them."""
1317
1317
1318 self.hook('preoutgoing', throw=True, source=source)
1318 self.hook('preoutgoing', throw=True, source=source)
1319
1319
1320 cl = self.changelog
1320 cl = self.changelog
1321 nodes = cl.nodesbetween(basenodes, None)[0]
1321 nodes = cl.nodesbetween(basenodes, None)[0]
1322 revset = dict.fromkeys([cl.rev(n) for n in nodes])
1322 revset = dict.fromkeys([cl.rev(n) for n in nodes])
1323
1323
1324 def identity(x):
1324 def identity(x):
1325 return x
1325 return x
1326
1326
1327 def gennodelst(revlog):
1327 def gennodelst(revlog):
1328 for r in xrange(0, revlog.count()):
1328 for r in xrange(0, revlog.count()):
1329 n = revlog.node(r)
1329 n = revlog.node(r)
1330 if revlog.linkrev(n) in revset:
1330 if revlog.linkrev(n) in revset:
1331 yield n
1331 yield n
1332
1332
1333 def changed_file_collector(changedfileset):
1333 def changed_file_collector(changedfileset):
1334 def collect_changed_files(clnode):
1334 def collect_changed_files(clnode):
1335 c = cl.read(clnode)
1335 c = cl.read(clnode)
1336 for fname in c[3]:
1336 for fname in c[3]:
1337 changedfileset[fname] = 1
1337 changedfileset[fname] = 1
1338 return collect_changed_files
1338 return collect_changed_files
1339
1339
1340 def lookuprevlink_func(revlog):
1340 def lookuprevlink_func(revlog):
1341 def lookuprevlink(n):
1341 def lookuprevlink(n):
1342 return cl.node(revlog.linkrev(n))
1342 return cl.node(revlog.linkrev(n))
1343 return lookuprevlink
1343 return lookuprevlink
1344
1344
1345 def gengroup():
1345 def gengroup():
1346 # construct a list of all changed files
1346 # construct a list of all changed files
1347 changedfiles = {}
1347 changedfiles = {}
1348
1348
1349 for chnk in cl.group(nodes, identity,
1349 for chnk in cl.group(nodes, identity,
1350 changed_file_collector(changedfiles)):
1350 changed_file_collector(changedfiles)):
1351 yield chnk
1351 yield chnk
1352 changedfiles = changedfiles.keys()
1352 changedfiles = changedfiles.keys()
1353 changedfiles.sort()
1353 changedfiles.sort()
1354
1354
1355 mnfst = self.manifest
1355 mnfst = self.manifest
1356 nodeiter = gennodelst(mnfst)
1356 nodeiter = gennodelst(mnfst)
1357 for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)):
1357 for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)):
1358 yield chnk
1358 yield chnk
1359
1359
1360 for fname in changedfiles:
1360 for fname in changedfiles:
1361 filerevlog = self.file(fname)
1361 filerevlog = self.file(fname)
1362 nodeiter = gennodelst(filerevlog)
1362 nodeiter = gennodelst(filerevlog)
1363 nodeiter = list(nodeiter)
1363 nodeiter = list(nodeiter)
1364 if nodeiter:
1364 if nodeiter:
1365 yield changegroup.genchunk(fname)
1365 yield changegroup.genchunk(fname)
1366 lookup = lookuprevlink_func(filerevlog)
1366 lookup = lookuprevlink_func(filerevlog)
1367 for chnk in filerevlog.group(nodeiter, lookup):
1367 for chnk in filerevlog.group(nodeiter, lookup):
1368 yield chnk
1368 yield chnk
1369
1369
1370 yield changegroup.closechunk()
1370 yield changegroup.closechunk()
1371 self.hook('outgoing', node=hex(nodes[0]), source=source)
1371 self.hook('outgoing', node=hex(nodes[0]), source=source)
1372
1372
1373 return util.chunkbuffer(gengroup())
1373 return util.chunkbuffer(gengroup())
1374
1374
1375 def addchangegroup(self, source):
1375 def addchangegroup(self, source):
1376 """add changegroup to repo.
1376 """add changegroup to repo.
1377 returns number of heads modified or added + 1."""
1377 returns number of heads modified or added + 1."""
1378
1378
1379 def csmap(x):
1379 def csmap(x):
1380 self.ui.debug(_("add changeset %s\n") % short(x))
1380 self.ui.debug(_("add changeset %s\n") % short(x))
1381 return cl.count()
1381 return cl.count()
1382
1382
1383 def revmap(x):
1383 def revmap(x):
1384 return cl.rev(x)
1384 return cl.rev(x)
1385
1385
1386 if not source:
1386 if not source:
1387 return 0
1387 return 0
1388
1388
1389 self.hook('prechangegroup', throw=True)
1389 self.hook('prechangegroup', throw=True)
1390
1390
1391 changesets = files = revisions = 0
1391 changesets = files = revisions = 0
1392
1392
1393 tr = self.transaction()
1393 tr = self.transaction()
1394
1394
1395 # write changelog and manifest data to temp files so
1395 # write changelog and manifest data to temp files so
1396 # concurrent readers will not see inconsistent view
1396 # concurrent readers will not see inconsistent view
1397 cl = appendfile.appendchangelog(self.opener)
1397 cl = appendfile.appendchangelog(self.opener)
1398
1398
1399 oldheads = len(cl.heads())
1399 oldheads = len(cl.heads())
1400
1400
1401 # pull off the changeset group
1401 # pull off the changeset group
1402 self.ui.status(_("adding changesets\n"))
1402 self.ui.status(_("adding changesets\n"))
1403 co = cl.tip()
1403 co = cl.tip()
1404 chunkiter = changegroup.chunkiter(source)
1404 chunkiter = changegroup.chunkiter(source)
1405 cn = cl.addgroup(chunkiter, csmap, tr, 1) # unique
1405 cn = cl.addgroup(chunkiter, csmap, tr, 1) # unique
1406 cnr, cor = map(cl.rev, (cn, co))
1406 cnr, cor = map(cl.rev, (cn, co))
1407 if cn == nullid:
1407 if cn == nullid:
1408 cnr = cor
1408 cnr = cor
1409 changesets = cnr - cor
1409 changesets = cnr - cor
1410
1410
1411 mf = appendfile.appendmanifest(self.opener)
1411 mf = appendfile.appendmanifest(self.opener)
1412
1412
1413 # pull off the manifest group
1413 # pull off the manifest group
1414 self.ui.status(_("adding manifests\n"))
1414 self.ui.status(_("adding manifests\n"))
1415 mm = mf.tip()
1415 mm = mf.tip()
1416 chunkiter = changegroup.chunkiter(source)
1416 chunkiter = changegroup.chunkiter(source)
1417 mo = mf.addgroup(chunkiter, revmap, tr)
1417 mo = mf.addgroup(chunkiter, revmap, tr)
1418
1418
1419 # process the files
1419 # process the files
1420 self.ui.status(_("adding file changes\n"))
1420 self.ui.status(_("adding file changes\n"))
1421 while 1:
1421 while 1:
1422 f = changegroup.getchunk(source)
1422 f = changegroup.getchunk(source)
1423 if not f:
1423 if not f:
1424 break
1424 break
1425 self.ui.debug(_("adding %s revisions\n") % f)
1425 self.ui.debug(_("adding %s revisions\n") % f)
1426 fl = self.file(f)
1426 fl = self.file(f)
1427 o = fl.count()
1427 o = fl.count()
1428 chunkiter = changegroup.chunkiter(source)
1428 chunkiter = changegroup.chunkiter(source)
1429 n = fl.addgroup(chunkiter, revmap, tr)
1429 n = fl.addgroup(chunkiter, revmap, tr)
1430 revisions += fl.count() - o
1430 revisions += fl.count() - o
1431 files += 1
1431 files += 1
1432
1432
1433 # write order here is important so concurrent readers will see
1433 # write order here is important so concurrent readers will see
1434 # consistent view of repo
1434 # consistent view of repo
1435 mf.writedata()
1435 mf.writedata()
1436 cl.writedata()
1436 cl.writedata()
1437
1437
1438 # make changelog and manifest see real files again
1438 # make changelog and manifest see real files again
1439 self.changelog = changelog.changelog(self.opener)
1439 self.changelog = changelog.changelog(self.opener)
1440 self.manifest = manifest.manifest(self.opener)
1440 self.manifest = manifest.manifest(self.opener)
1441
1441
1442 newheads = len(self.changelog.heads())
1442 newheads = len(self.changelog.heads())
1443 heads = ""
1443 heads = ""
1444 if oldheads and newheads > oldheads:
1444 if oldheads and newheads > oldheads:
1445 heads = _(" (+%d heads)") % (newheads - oldheads)
1445 heads = _(" (+%d heads)") % (newheads - oldheads)
1446
1446
1447 self.ui.status(_("added %d changesets"
1447 self.ui.status(_("added %d changesets"
1448 " with %d changes to %d files%s\n")
1448 " with %d changes to %d files%s\n")
1449 % (changesets, revisions, files, heads))
1449 % (changesets, revisions, files, heads))
1450
1450
1451 self.hook('pretxnchangegroup', throw=True,
1451 self.hook('pretxnchangegroup', throw=True,
1452 node=hex(self.changelog.node(cor+1)))
1452 node=hex(self.changelog.node(cor+1)))
1453
1453
1454 tr.close()
1454 tr.close()
1455
1455
1456 if changesets > 0:
1456 if changesets > 0:
1457 self.hook("changegroup", node=hex(self.changelog.node(cor+1)))
1457 self.hook("changegroup", node=hex(self.changelog.node(cor+1)))
1458
1458
1459 for i in range(cor + 1, cnr + 1):
1459 for i in range(cor + 1, cnr + 1):
1460 self.hook("incoming", node=hex(self.changelog.node(i)))
1460 self.hook("incoming", node=hex(self.changelog.node(i)))
1461
1461
1462 return newheads - oldheads + 1
1462 return newheads - oldheads + 1
1463
1463
1464 def update(self, node, allow=False, force=False, choose=None,
1464 def update(self, node, allow=False, force=False, choose=None,
1465 moddirstate=True, forcemerge=False, wlock=None):
1465 moddirstate=True, forcemerge=False, wlock=None):
1466 pl = self.dirstate.parents()
1466 pl = self.dirstate.parents()
1467 if not force and pl[1] != nullid:
1467 if not force and pl[1] != nullid:
1468 self.ui.warn(_("aborting: outstanding uncommitted merges\n"))
1468 self.ui.warn(_("aborting: outstanding uncommitted merges\n"))
1469 return 1
1469 return 1
1470
1470
1471 err = False
1471 err = False
1472
1472
1473 p1, p2 = pl[0], node
1473 p1, p2 = pl[0], node
1474 pa = self.changelog.ancestor(p1, p2)
1474 pa = self.changelog.ancestor(p1, p2)
1475 m1n = self.changelog.read(p1)[0]
1475 m1n = self.changelog.read(p1)[0]
1476 m2n = self.changelog.read(p2)[0]
1476 m2n = self.changelog.read(p2)[0]
1477 man = self.manifest.ancestor(m1n, m2n)
1477 man = self.manifest.ancestor(m1n, m2n)
1478 m1 = self.manifest.read(m1n)
1478 m1 = self.manifest.read(m1n)
1479 mf1 = self.manifest.readflags(m1n)
1479 mf1 = self.manifest.readflags(m1n)
1480 m2 = self.manifest.read(m2n).copy()
1480 m2 = self.manifest.read(m2n).copy()
1481 mf2 = self.manifest.readflags(m2n)
1481 mf2 = self.manifest.readflags(m2n)
1482 ma = self.manifest.read(man)
1482 ma = self.manifest.read(man)
1483 mfa = self.manifest.readflags(man)
1483 mfa = self.manifest.readflags(man)
1484
1484
1485 modified, added, removed, deleted, unknown = self.changes()
1485 modified, added, removed, deleted, unknown = self.changes()
1486
1486
1487 # is this a jump, or a merge? i.e. is there a linear path
1487 # is this a jump, or a merge? i.e. is there a linear path
1488 # from p1 to p2?
1488 # from p1 to p2?
1489 linear_path = (pa == p1 or pa == p2)
1489 linear_path = (pa == p1 or pa == p2)
1490
1490
1491 if allow and linear_path:
1491 if allow and linear_path:
1492 raise util.Abort(_("there is nothing to merge, "
1492 raise util.Abort(_("there is nothing to merge, "
1493 "just use 'hg update'"))
1493 "just use 'hg update'"))
1494 if allow and not forcemerge:
1494 if allow and not forcemerge:
1495 if modified or added or removed:
1495 if modified or added or removed:
1496 raise util.Abort(_("outstanding uncommitted changes"))
1496 raise util.Abort(_("outstanding uncommitted changes"))
1497 if not forcemerge and not force:
1497 if not forcemerge and not force:
1498 for f in unknown:
1498 for f in unknown:
1499 if f in m2:
1499 if f in m2:
1500 t1 = self.wread(f)
1500 t1 = self.wread(f)
1501 t2 = self.file(f).read(m2[f])
1501 t2 = self.file(f).read(m2[f])
1502 if cmp(t1, t2) != 0:
1502 if cmp(t1, t2) != 0:
1503 raise util.Abort(_("'%s' already exists in the working"
1503 raise util.Abort(_("'%s' already exists in the working"
1504 " dir and differs from remote") % f)
1504 " dir and differs from remote") % f)
1505
1505
1506 # resolve the manifest to determine which files
1506 # resolve the manifest to determine which files
1507 # we care about merging
1507 # we care about merging
1508 self.ui.note(_("resolving manifests\n"))
1508 self.ui.note(_("resolving manifests\n"))
1509 self.ui.debug(_(" force %s allow %s moddirstate %s linear %s\n") %
1509 self.ui.debug(_(" force %s allow %s moddirstate %s linear %s\n") %
1510 (force, allow, moddirstate, linear_path))
1510 (force, allow, moddirstate, linear_path))
1511 self.ui.debug(_(" ancestor %s local %s remote %s\n") %
1511 self.ui.debug(_(" ancestor %s local %s remote %s\n") %
1512 (short(man), short(m1n), short(m2n)))
1512 (short(man), short(m1n), short(m2n)))
1513
1513
1514 merge = {}
1514 merge = {}
1515 get = {}
1515 get = {}
1516 remove = []
1516 remove = []
1517
1517
1518 # construct a working dir manifest
1518 # construct a working dir manifest
1519 mw = m1.copy()
1519 mw = m1.copy()
1520 mfw = mf1.copy()
1520 mfw = mf1.copy()
1521 umap = dict.fromkeys(unknown)
1521 umap = dict.fromkeys(unknown)
1522
1522
1523 for f in added + modified + unknown:
1523 for f in added + modified + unknown:
1524 mw[f] = ""
1524 mw[f] = ""
1525 mfw[f] = util.is_exec(self.wjoin(f), mfw.get(f, False))
1525 mfw[f] = util.is_exec(self.wjoin(f), mfw.get(f, False))
1526
1526
1527 if moddirstate and not wlock:
1527 if moddirstate and not wlock:
1528 wlock = self.wlock()
1528 wlock = self.wlock()
1529
1529
1530 for f in deleted + removed:
1530 for f in deleted + removed:
1531 if f in mw:
1531 if f in mw:
1532 del mw[f]
1532 del mw[f]
1533
1533
1534 # If we're jumping between revisions (as opposed to merging),
1534 # If we're jumping between revisions (as opposed to merging),
1535 # and if neither the working directory nor the target rev has
1535 # and if neither the working directory nor the target rev has
1536 # the file, then we need to remove it from the dirstate, to
1536 # the file, then we need to remove it from the dirstate, to
1537 # prevent the dirstate from listing the file when it is no
1537 # prevent the dirstate from listing the file when it is no
1538 # longer in the manifest.
1538 # longer in the manifest.
1539 if moddirstate and linear_path and f not in m2:
1539 if moddirstate and linear_path and f not in m2:
1540 self.dirstate.forget((f,))
1540 self.dirstate.forget((f,))
1541
1541
1542 # Compare manifests
1542 # Compare manifests
1543 for f, n in mw.iteritems():
1543 for f, n in mw.iteritems():
1544 if choose and not choose(f):
1544 if choose and not choose(f):
1545 continue
1545 continue
1546 if f in m2:
1546 if f in m2:
1547 s = 0
1547 s = 0
1548
1548
1549 # is the wfile new since m1, and match m2?
1549 # is the wfile new since m1, and match m2?
1550 if f not in m1:
1550 if f not in m1:
1551 t1 = self.wread(f)
1551 t1 = self.wread(f)
1552 t2 = self.file(f).read(m2[f])
1552 t2 = self.file(f).read(m2[f])
1553 if cmp(t1, t2) == 0:
1553 if cmp(t1, t2) == 0:
1554 n = m2[f]
1554 n = m2[f]
1555 del t1, t2
1555 del t1, t2
1556
1556
1557 # are files different?
1557 # are files different?
1558 if n != m2[f]:
1558 if n != m2[f]:
1559 a = ma.get(f, nullid)
1559 a = ma.get(f, nullid)
1560 # are both different from the ancestor?
1560 # are both different from the ancestor?
1561 if n != a and m2[f] != a:
1561 if n != a and m2[f] != a:
1562 self.ui.debug(_(" %s versions differ, resolve\n") % f)
1562 self.ui.debug(_(" %s versions differ, resolve\n") % f)
1563 # merge executable bits
1563 # merge executable bits
1564 # "if we changed or they changed, change in merge"
1564 # "if we changed or they changed, change in merge"
1565 a, b, c = mfa.get(f, 0), mfw[f], mf2[f]
1565 a, b, c = mfa.get(f, 0), mfw[f], mf2[f]
1566 mode = ((a^b) | (a^c)) ^ a
1566 mode = ((a^b) | (a^c)) ^ a
1567 merge[f] = (m1.get(f, nullid), m2[f], mode)
1567 merge[f] = (m1.get(f, nullid), m2[f], mode)
1568 s = 1
1568 s = 1
1569 # are we clobbering?
1569 # are we clobbering?
1570 # is remote's version newer?
1570 # is remote's version newer?
1571 # or are we going back in time?
1571 # or are we going back in time?
1572 elif force or m2[f] != a or (p2 == pa and mw[f] == m1[f]):
1572 elif force or m2[f] != a or (p2 == pa and mw[f] == m1[f]):
1573 self.ui.debug(_(" remote %s is newer, get\n") % f)
1573 self.ui.debug(_(" remote %s is newer, get\n") % f)
1574 get[f] = m2[f]
1574 get[f] = m2[f]
1575 s = 1
1575 s = 1
1576 elif f in umap:
1576 elif f in umap:
1577 # this unknown file is the same as the checkout
1577 # this unknown file is the same as the checkout
1578 get[f] = m2[f]
1578 get[f] = m2[f]
1579
1579
1580 if not s and mfw[f] != mf2[f]:
1580 if not s and mfw[f] != mf2[f]:
1581 if force:
1581 if force:
1582 self.ui.debug(_(" updating permissions for %s\n") % f)
1582 self.ui.debug(_(" updating permissions for %s\n") % f)
1583 util.set_exec(self.wjoin(f), mf2[f])
1583 util.set_exec(self.wjoin(f), mf2[f])
1584 else:
1584 else:
1585 a, b, c = mfa.get(f, 0), mfw[f], mf2[f]
1585 a, b, c = mfa.get(f, 0), mfw[f], mf2[f]
1586 mode = ((a^b) | (a^c)) ^ a
1586 mode = ((a^b) | (a^c)) ^ a
1587 if mode != b:
1587 if mode != b:
1588 self.ui.debug(_(" updating permissions for %s\n")
1588 self.ui.debug(_(" updating permissions for %s\n")
1589 % f)
1589 % f)
1590 util.set_exec(self.wjoin(f), mode)
1590 util.set_exec(self.wjoin(f), mode)
1591 del m2[f]
1591 del m2[f]
1592 elif f in ma:
1592 elif f in ma:
1593 if n != ma[f]:
1593 if n != ma[f]:
1594 r = _("d")
1594 r = _("d")
1595 if not force and (linear_path or allow):
1595 if not force and (linear_path or allow):
1596 r = self.ui.prompt(
1596 r = self.ui.prompt(
1597 (_(" local changed %s which remote deleted\n") % f) +
1597 (_(" local changed %s which remote deleted\n") % f) +
1598 _("(k)eep or (d)elete?"), _("[kd]"), _("k"))
1598 _("(k)eep or (d)elete?"), _("[kd]"), _("k"))
1599 if r == _("d"):
1599 if r == _("d"):
1600 remove.append(f)
1600 remove.append(f)
1601 else:
1601 else:
1602 self.ui.debug(_("other deleted %s\n") % f)
1602 self.ui.debug(_("other deleted %s\n") % f)
1603 remove.append(f) # other deleted it
1603 remove.append(f) # other deleted it
1604 else:
1604 else:
1605 # file is created on branch or in working directory
1605 # file is created on branch or in working directory
1606 if force and f not in umap:
1606 if force and f not in umap:
1607 self.ui.debug(_("remote deleted %s, clobbering\n") % f)
1607 self.ui.debug(_("remote deleted %s, clobbering\n") % f)
1608 remove.append(f)
1608 remove.append(f)
1609 elif n == m1.get(f, nullid): # same as parent
1609 elif n == m1.get(f, nullid): # same as parent
1610 if p2 == pa: # going backwards?
1610 if p2 == pa: # going backwards?
1611 self.ui.debug(_("remote deleted %s\n") % f)
1611 self.ui.debug(_("remote deleted %s\n") % f)
1612 remove.append(f)
1612 remove.append(f)
1613 else:
1613 else:
1614 self.ui.debug(_("local modified %s, keeping\n") % f)
1614 self.ui.debug(_("local modified %s, keeping\n") % f)
1615 else:
1615 else:
1616 self.ui.debug(_("working dir created %s, keeping\n") % f)
1616 self.ui.debug(_("working dir created %s, keeping\n") % f)
1617
1617
1618 for f, n in m2.iteritems():
1618 for f, n in m2.iteritems():
1619 if choose and not choose(f):
1619 if choose and not choose(f):
1620 continue
1620 continue
1621 if f[0] == "/":
1621 if f[0] == "/":
1622 continue
1622 continue
1623 if f in ma and n != ma[f]:
1623 if f in ma and n != ma[f]:
1624 r = _("k")
1624 r = _("k")
1625 if not force and (linear_path or allow):
1625 if not force and (linear_path or allow):
1626 r = self.ui.prompt(
1626 r = self.ui.prompt(
1627 (_("remote changed %s which local deleted\n") % f) +
1627 (_("remote changed %s which local deleted\n") % f) +
1628 _("(k)eep or (d)elete?"), _("[kd]"), _("k"))
1628 _("(k)eep or (d)elete?"), _("[kd]"), _("k"))
1629 if r == _("k"):
1629 if r == _("k"):
1630 get[f] = n
1630 get[f] = n
1631 elif f not in ma:
1631 elif f not in ma:
1632 self.ui.debug(_("remote created %s\n") % f)
1632 self.ui.debug(_("remote created %s\n") % f)
1633 get[f] = n
1633 get[f] = n
1634 else:
1634 else:
1635 if force or p2 == pa: # going backwards?
1635 if force or p2 == pa: # going backwards?
1636 self.ui.debug(_("local deleted %s, recreating\n") % f)
1636 self.ui.debug(_("local deleted %s, recreating\n") % f)
1637 get[f] = n
1637 get[f] = n
1638 else:
1638 else:
1639 self.ui.debug(_("local deleted %s\n") % f)
1639 self.ui.debug(_("local deleted %s\n") % f)
1640
1640
1641 del mw, m1, m2, ma
1641 del mw, m1, m2, ma
1642
1642
1643 if force:
1643 if force:
1644 for f in merge:
1644 for f in merge:
1645 get[f] = merge[f][1]
1645 get[f] = merge[f][1]
1646 merge = {}
1646 merge = {}
1647
1647
1648 if linear_path or force:
1648 if linear_path or force:
1649 # we don't need to do any magic, just jump to the new rev
1649 # we don't need to do any magic, just jump to the new rev
1650 branch_merge = False
1650 branch_merge = False
1651 p1, p2 = p2, nullid
1651 p1, p2 = p2, nullid
1652 else:
1652 else:
1653 if not allow:
1653 if not allow:
1654 self.ui.status(_("this update spans a branch"
1654 self.ui.status(_("this update spans a branch"
1655 " affecting the following files:\n"))
1655 " affecting the following files:\n"))
1656 fl = merge.keys() + get.keys()
1656 fl = merge.keys() + get.keys()
1657 fl.sort()
1657 fl.sort()
1658 for f in fl:
1658 for f in fl:
1659 cf = ""
1659 cf = ""
1660 if f in merge:
1660 if f in merge:
1661 cf = _(" (resolve)")
1661 cf = _(" (resolve)")
1662 self.ui.status(" %s%s\n" % (f, cf))
1662 self.ui.status(" %s%s\n" % (f, cf))
1663 self.ui.warn(_("aborting update spanning branches!\n"))
1663 self.ui.warn(_("aborting update spanning branches!\n"))
1664 self.ui.status(_("(use 'hg merge' to merge across branches"
1664 self.ui.status(_("(use 'hg merge' to merge across branches"
1665 " or 'hg update -C' to lose changes)\n"))
1665 " or 'hg update -C' to lose changes)\n"))
1666 return 1
1666 return 1
1667 branch_merge = True
1667 branch_merge = True
1668
1668
1669 # get the files we don't need to change
1669 # get the files we don't need to change
1670 files = get.keys()
1670 files = get.keys()
1671 files.sort()
1671 files.sort()
1672 for f in files:
1672 for f in files:
1673 if f[0] == "/":
1673 if f[0] == "/":
1674 continue
1674 continue
1675 self.ui.note(_("getting %s\n") % f)
1675 self.ui.note(_("getting %s\n") % f)
1676 t = self.file(f).read(get[f])
1676 t = self.file(f).read(get[f])
1677 self.wwrite(f, t)
1677 self.wwrite(f, t)
1678 util.set_exec(self.wjoin(f), mf2[f])
1678 util.set_exec(self.wjoin(f), mf2[f])
1679 if moddirstate:
1679 if moddirstate:
1680 if branch_merge:
1680 if branch_merge:
1681 self.dirstate.update([f], 'n', st_mtime=-1)
1681 self.dirstate.update([f], 'n', st_mtime=-1)
1682 else:
1682 else:
1683 self.dirstate.update([f], 'n')
1683 self.dirstate.update([f], 'n')
1684
1684
1685 # merge the tricky bits
1685 # merge the tricky bits
1686 failedmerge = []
1686 failedmerge = []
1687 files = merge.keys()
1687 files = merge.keys()
1688 files.sort()
1688 files.sort()
1689 xp1 = hex(p1)
1689 xp1 = hex(p1)
1690 xp2 = hex(p2)
1690 xp2 = hex(p2)
1691 for f in files:
1691 for f in files:
1692 self.ui.status(_("merging %s\n") % f)
1692 self.ui.status(_("merging %s\n") % f)
1693 my, other, flag = merge[f]
1693 my, other, flag = merge[f]
1694 ret = self.merge3(f, my, other, xp1, xp2)
1694 ret = self.merge3(f, my, other, xp1, xp2)
1695 if ret:
1695 if ret:
1696 err = True
1696 err = True
1697 failedmerge.append(f)
1697 failedmerge.append(f)
1698 util.set_exec(self.wjoin(f), flag)
1698 util.set_exec(self.wjoin(f), flag)
1699 if moddirstate:
1699 if moddirstate:
1700 if branch_merge:
1700 if branch_merge:
1701 # We've done a branch merge, mark this file as merged
1701 # We've done a branch merge, mark this file as merged
1702 # so that we properly record the merger later
1702 # so that we properly record the merger later
1703 self.dirstate.update([f], 'm')
1703 self.dirstate.update([f], 'm')
1704 else:
1704 else:
1705 # We've update-merged a locally modified file, so
1705 # We've update-merged a locally modified file, so
1706 # we set the dirstate to emulate a normal checkout
1706 # we set the dirstate to emulate a normal checkout
1707 # of that file some time in the past. Thus our
1707 # of that file some time in the past. Thus our
1708 # merge will appear as a normal local file
1708 # merge will appear as a normal local file
1709 # modification.
1709 # modification.
1710 f_len = len(self.file(f).read(other))
1710 f_len = len(self.file(f).read(other))
1711 self.dirstate.update([f], 'n', st_size=f_len, st_mtime=-1)
1711 self.dirstate.update([f], 'n', st_size=f_len, st_mtime=-1)
1712
1712
1713 remove.sort()
1713 remove.sort()
1714 for f in remove:
1714 for f in remove:
1715 self.ui.note(_("removing %s\n") % f)
1715 self.ui.note(_("removing %s\n") % f)
1716 util.audit_path(f)
1716 util.audit_path(f)
1717 try:
1717 try:
1718 util.unlink(self.wjoin(f))
1718 util.unlink(self.wjoin(f))
1719 except OSError, inst:
1719 except OSError, inst:
1720 if inst.errno != errno.ENOENT:
1720 if inst.errno != errno.ENOENT:
1721 self.ui.warn(_("update failed to remove %s: %s!\n") %
1721 self.ui.warn(_("update failed to remove %s: %s!\n") %
1722 (f, inst.strerror))
1722 (f, inst.strerror))
1723 if moddirstate:
1723 if moddirstate:
1724 if branch_merge:
1724 if branch_merge:
1725 self.dirstate.update(remove, 'r')
1725 self.dirstate.update(remove, 'r')
1726 else:
1726 else:
1727 self.dirstate.forget(remove)
1727 self.dirstate.forget(remove)
1728
1728
1729 if moddirstate:
1729 if moddirstate:
1730 self.dirstate.setparents(p1, p2)
1730 self.dirstate.setparents(p1, p2)
1731
1731
1732 stat = ((len(get), _("updated")),
1732 stat = ((len(get), _("updated")),
1733 (len(merge) - len(failedmerge), _("merged")),
1733 (len(merge) - len(failedmerge), _("merged")),
1734 (len(remove), _("removed")),
1734 (len(remove), _("removed")),
1735 (len(failedmerge), _("unresolved")))
1735 (len(failedmerge), _("unresolved")))
1736 note = ", ".join([_("%d files %s") % s for s in stat])
1736 note = ", ".join([_("%d files %s") % s for s in stat])
1737 self.ui.note("%s\n" % note)
1737 self.ui.note("%s\n" % note)
1738 if moddirstate and branch_merge:
1738 if moddirstate and branch_merge:
1739 self.ui.note(_("(branch merge, don't forget to commit)\n"))
1739 self.ui.note(_("(branch merge, don't forget to commit)\n"))
1740
1740
1741 return err
1741 return err
1742
1742
1743 def merge3(self, fn, my, other, p1, p2):
1743 def merge3(self, fn, my, other, p1, p2):
1744 """perform a 3-way merge in the working directory"""
1744 """perform a 3-way merge in the working directory"""
1745
1745
1746 def temp(prefix, node):
1746 def temp(prefix, node):
1747 pre = "%s~%s." % (os.path.basename(fn), prefix)
1747 pre = "%s~%s." % (os.path.basename(fn), prefix)
1748 (fd, name) = tempfile.mkstemp("", pre)
1748 (fd, name) = tempfile.mkstemp("", pre)
1749 f = os.fdopen(fd, "wb")
1749 f = os.fdopen(fd, "wb")
1750 self.wwrite(fn, fl.read(node), f)
1750 self.wwrite(fn, fl.read(node), f)
1751 f.close()
1751 f.close()
1752 return name
1752 return name
1753
1753
1754 fl = self.file(fn)
1754 fl = self.file(fn)
1755 base = fl.ancestor(my, other)
1755 base = fl.ancestor(my, other)
1756 a = self.wjoin(fn)
1756 a = self.wjoin(fn)
1757 b = temp("base", base)
1757 b = temp("base", base)
1758 c = temp("other", other)
1758 c = temp("other", other)
1759
1759
1760 self.ui.note(_("resolving %s\n") % fn)
1760 self.ui.note(_("resolving %s\n") % fn)
1761 self.ui.debug(_("file %s: my %s other %s ancestor %s\n") %
1761 self.ui.debug(_("file %s: my %s other %s ancestor %s\n") %
1762 (fn, short(my), short(other), short(base)))
1762 (fn, short(my), short(other), short(base)))
1763
1763
1764 cmd = (os.environ.get("HGMERGE") or self.ui.config("ui", "merge")
1764 cmd = (os.environ.get("HGMERGE") or self.ui.config("ui", "merge")
1765 or "hgmerge")
1765 or "hgmerge")
1766 r = util.system('%s "%s" "%s" "%s"' % (cmd, a, b, c), cwd=self.root,
1766 r = util.system('%s "%s" "%s" "%s"' % (cmd, a, b, c), cwd=self.root,
1767 environ={'HG_FILE': fn,
1767 environ={'HG_FILE': fn,
1768 'HG_MY_NODE': p1,
1768 'HG_MY_NODE': p1,
1769 'HG_OTHER_NODE': p2,
1769 'HG_OTHER_NODE': p2,
1770 'HG_FILE_MY_NODE': hex(my),
1770 'HG_FILE_MY_NODE': hex(my),
1771 'HG_FILE_OTHER_NODE': hex(other),
1771 'HG_FILE_OTHER_NODE': hex(other),
1772 'HG_FILE_BASE_NODE': hex(base)})
1772 'HG_FILE_BASE_NODE': hex(base)})
1773 if r:
1773 if r:
1774 self.ui.warn(_("merging %s failed!\n") % fn)
1774 self.ui.warn(_("merging %s failed!\n") % fn)
1775
1775
1776 os.unlink(b)
1776 os.unlink(b)
1777 os.unlink(c)
1777 os.unlink(c)
1778 return r
1778 return r
1779
1779
1780 def verify(self):
1780 def verify(self):
1781 filelinkrevs = {}
1781 filelinkrevs = {}
1782 filenodes = {}
1782 filenodes = {}
1783 changesets = revisions = files = 0
1783 changesets = revisions = files = 0
1784 errors = [0]
1784 errors = [0]
1785 neededmanifests = {}
1785 neededmanifests = {}
1786
1786
1787 def err(msg):
1787 def err(msg):
1788 self.ui.warn(msg + "\n")
1788 self.ui.warn(msg + "\n")
1789 errors[0] += 1
1789 errors[0] += 1
1790
1790
1791 def checksize(obj, name):
1791 def checksize(obj, name):
1792 d = obj.checksize()
1792 d = obj.checksize()
1793 if d[0]:
1793 if d[0]:
1794 err(_("%s data length off by %d bytes") % (name, d[0]))
1794 err(_("%s data length off by %d bytes") % (name, d[0]))
1795 if d[1]:
1795 if d[1]:
1796 err(_("%s index contains %d extra bytes") % (name, d[1]))
1796 err(_("%s index contains %d extra bytes") % (name, d[1]))
1797
1797
1798 seen = {}
1798 seen = {}
1799 self.ui.status(_("checking changesets\n"))
1799 self.ui.status(_("checking changesets\n"))
1800 checksize(self.changelog, "changelog")
1800 checksize(self.changelog, "changelog")
1801
1801
1802 for i in range(self.changelog.count()):
1802 for i in range(self.changelog.count()):
1803 changesets += 1
1803 changesets += 1
1804 n = self.changelog.node(i)
1804 n = self.changelog.node(i)
1805 l = self.changelog.linkrev(n)
1805 l = self.changelog.linkrev(n)
1806 if l != i:
1806 if l != i:
1807 err(_("incorrect link (%d) for changeset revision %d") %(l, i))
1807 err(_("incorrect link (%d) for changeset revision %d") %(l, i))
1808 if n in seen:
1808 if n in seen:
1809 err(_("duplicate changeset at revision %d") % i)
1809 err(_("duplicate changeset at revision %d") % i)
1810 seen[n] = 1
1810 seen[n] = 1
1811
1811
1812 for p in self.changelog.parents(n):
1812 for p in self.changelog.parents(n):
1813 if p not in self.changelog.nodemap:
1813 if p not in self.changelog.nodemap:
1814 err(_("changeset %s has unknown parent %s") %
1814 err(_("changeset %s has unknown parent %s") %
1815 (short(n), short(p)))
1815 (short(n), short(p)))
1816 try:
1816 try:
1817 changes = self.changelog.read(n)
1817 changes = self.changelog.read(n)
1818 except KeyboardInterrupt:
1818 except KeyboardInterrupt:
1819 self.ui.warn(_("interrupted"))
1819 self.ui.warn(_("interrupted"))
1820 raise
1820 raise
1821 except Exception, inst:
1821 except Exception, inst:
1822 err(_("unpacking changeset %s: %s") % (short(n), inst))
1822 err(_("unpacking changeset %s: %s") % (short(n), inst))
1823 continue
1823 continue
1824
1824
1825 neededmanifests[changes[0]] = n
1825 neededmanifests[changes[0]] = n
1826
1826
1827 for f in changes[3]:
1827 for f in changes[3]:
1828 filelinkrevs.setdefault(f, []).append(i)
1828 filelinkrevs.setdefault(f, []).append(i)
1829
1829
1830 seen = {}
1830 seen = {}
1831 self.ui.status(_("checking manifests\n"))
1831 self.ui.status(_("checking manifests\n"))
1832 checksize(self.manifest, "manifest")
1832 checksize(self.manifest, "manifest")
1833
1833
1834 for i in range(self.manifest.count()):
1834 for i in range(self.manifest.count()):
1835 n = self.manifest.node(i)
1835 n = self.manifest.node(i)
1836 l = self.manifest.linkrev(n)
1836 l = self.manifest.linkrev(n)
1837
1837
1838 if l < 0 or l >= self.changelog.count():
1838 if l < 0 or l >= self.changelog.count():
1839 err(_("bad manifest link (%d) at revision %d") % (l, i))
1839 err(_("bad manifest link (%d) at revision %d") % (l, i))
1840
1840
1841 if n in neededmanifests:
1841 if n in neededmanifests:
1842 del neededmanifests[n]
1842 del neededmanifests[n]
1843
1843
1844 if n in seen:
1844 if n in seen:
1845 err(_("duplicate manifest at revision %d") % i)
1845 err(_("duplicate manifest at revision %d") % i)
1846
1846
1847 seen[n] = 1
1847 seen[n] = 1
1848
1848
1849 for p in self.manifest.parents(n):
1849 for p in self.manifest.parents(n):
1850 if p not in self.manifest.nodemap:
1850 if p not in self.manifest.nodemap:
1851 err(_("manifest %s has unknown parent %s") %
1851 err(_("manifest %s has unknown parent %s") %
1852 (short(n), short(p)))
1852 (short(n), short(p)))
1853
1853
1854 try:
1854 try:
1855 delta = mdiff.patchtext(self.manifest.delta(n))
1855 delta = mdiff.patchtext(self.manifest.delta(n))
1856 except KeyboardInterrupt:
1856 except KeyboardInterrupt:
1857 self.ui.warn(_("interrupted"))
1857 self.ui.warn(_("interrupted"))
1858 raise
1858 raise
1859 except Exception, inst:
1859 except Exception, inst:
1860 err(_("unpacking manifest %s: %s") % (short(n), inst))
1860 err(_("unpacking manifest %s: %s") % (short(n), inst))
1861 continue
1861 continue
1862
1862
1863 try:
1863 try:
1864 ff = [ l.split('\0') for l in delta.splitlines() ]
1864 ff = [ l.split('\0') for l in delta.splitlines() ]
1865 for f, fn in ff:
1865 for f, fn in ff:
1866 filenodes.setdefault(f, {})[bin(fn[:40])] = 1
1866 filenodes.setdefault(f, {})[bin(fn[:40])] = 1
1867 except (ValueError, TypeError), inst:
1867 except (ValueError, TypeError), inst:
1868 err(_("broken delta in manifest %s: %s") % (short(n), inst))
1868 err(_("broken delta in manifest %s: %s") % (short(n), inst))
1869
1869
1870 self.ui.status(_("crosschecking files in changesets and manifests\n"))
1870 self.ui.status(_("crosschecking files in changesets and manifests\n"))
1871
1871
1872 for m, c in neededmanifests.items():
1872 for m, c in neededmanifests.items():
1873 err(_("Changeset %s refers to unknown manifest %s") %
1873 err(_("Changeset %s refers to unknown manifest %s") %
1874 (short(m), short(c)))
1874 (short(m), short(c)))
1875 del neededmanifests
1875 del neededmanifests
1876
1876
1877 for f in filenodes:
1877 for f in filenodes:
1878 if f not in filelinkrevs:
1878 if f not in filelinkrevs:
1879 err(_("file %s in manifest but not in changesets") % f)
1879 err(_("file %s in manifest but not in changesets") % f)
1880
1880
1881 for f in filelinkrevs:
1881 for f in filelinkrevs:
1882 if f not in filenodes:
1882 if f not in filenodes:
1883 err(_("file %s in changeset but not in manifest") % f)
1883 err(_("file %s in changeset but not in manifest") % f)
1884
1884
1885 self.ui.status(_("checking files\n"))
1885 self.ui.status(_("checking files\n"))
1886 ff = filenodes.keys()
1886 ff = filenodes.keys()
1887 ff.sort()
1887 ff.sort()
1888 for f in ff:
1888 for f in ff:
1889 if f == "/dev/null":
1889 if f == "/dev/null":
1890 continue
1890 continue
1891 files += 1
1891 files += 1
1892 if not f:
1892 if not f:
1893 err(_("file without name in manifest %s") % short(n))
1893 err(_("file without name in manifest %s") % short(n))
1894 continue
1894 continue
1895 fl = self.file(f)
1895 fl = self.file(f)
1896 checksize(fl, f)
1896 checksize(fl, f)
1897
1897
1898 nodes = {nullid: 1}
1898 nodes = {nullid: 1}
1899 seen = {}
1899 seen = {}
1900 for i in range(fl.count()):
1900 for i in range(fl.count()):
1901 revisions += 1
1901 revisions += 1
1902 n = fl.node(i)
1902 n = fl.node(i)
1903
1903
1904 if n in seen:
1904 if n in seen:
1905 err(_("%s: duplicate revision %d") % (f, i))
1905 err(_("%s: duplicate revision %d") % (f, i))
1906 if n not in filenodes[f]:
1906 if n not in filenodes[f]:
1907 err(_("%s: %d:%s not in manifests") % (f, i, short(n)))
1907 err(_("%s: %d:%s not in manifests") % (f, i, short(n)))
1908 else:
1908 else:
1909 del filenodes[f][n]
1909 del filenodes[f][n]
1910
1910
1911 flr = fl.linkrev(n)
1911 flr = fl.linkrev(n)
1912 if flr not in filelinkrevs.get(f, []):
1912 if flr not in filelinkrevs.get(f, []):
1913 err(_("%s:%s points to unexpected changeset %d")
1913 err(_("%s:%s points to unexpected changeset %d")
1914 % (f, short(n), flr))
1914 % (f, short(n), flr))
1915 else:
1915 else:
1916 filelinkrevs[f].remove(flr)
1916 filelinkrevs[f].remove(flr)
1917
1917
1918 # verify contents
1918 # verify contents
1919 try:
1919 try:
1920 t = fl.read(n)
1920 t = fl.read(n)
1921 except KeyboardInterrupt:
1921 except KeyboardInterrupt:
1922 self.ui.warn(_("interrupted"))
1922 self.ui.warn(_("interrupted"))
1923 raise
1923 raise
1924 except Exception, inst:
1924 except Exception, inst:
1925 err(_("unpacking file %s %s: %s") % (f, short(n), inst))
1925 err(_("unpacking file %s %s: %s") % (f, short(n), inst))
1926
1926
1927 # verify parents
1927 # verify parents
1928 (p1, p2) = fl.parents(n)
1928 (p1, p2) = fl.parents(n)
1929 if p1 not in nodes:
1929 if p1 not in nodes:
1930 err(_("file %s:%s unknown parent 1 %s") %
1930 err(_("file %s:%s unknown parent 1 %s") %
1931 (f, short(n), short(p1)))
1931 (f, short(n), short(p1)))
1932 if p2 not in nodes:
1932 if p2 not in nodes:
1933 err(_("file %s:%s unknown parent 2 %s") %
1933 err(_("file %s:%s unknown parent 2 %s") %
1934 (f, short(n), short(p1)))
1934 (f, short(n), short(p1)))
1935 nodes[n] = 1
1935 nodes[n] = 1
1936
1936
1937 # cross-check
1937 # cross-check
1938 for node in filenodes[f]:
1938 for node in filenodes[f]:
1939 err(_("node %s in manifests not in %s") % (hex(node), f))
1939 err(_("node %s in manifests not in %s") % (hex(node), f))
1940
1940
1941 self.ui.status(_("%d files, %d changesets, %d total revisions\n") %
1941 self.ui.status(_("%d files, %d changesets, %d total revisions\n") %
1942 (files, changesets, revisions))
1942 (files, changesets, revisions))
1943
1943
1944 if errors[0]:
1944 if errors[0]:
1945 self.ui.warn(_("%d integrity errors encountered!\n") % errors[0])
1945 self.ui.warn(_("%d integrity errors encountered!\n") % errors[0])
1946 return 1
1946 return 1
1947
1947
1948 # used to avoid circular references so destructors work
1948 # used to avoid circular references so destructors work
1949 def aftertrans(base):
1949 def aftertrans(base):
1950 p = base
1950 p = base
1951 def a():
1951 def a():
1952 util.rename(os.path.join(p, "journal"), os.path.join(p, "undo"))
1952 util.rename(os.path.join(p, "journal"), os.path.join(p, "undo"))
1953 util.rename(os.path.join(p, "journal.dirstate"),
1953 util.rename(os.path.join(p, "journal.dirstate"),
1954 os.path.join(p, "undo.dirstate"))
1954 os.path.join(p, "undo.dirstate"))
1955 return a
1955 return a
1956
1956
@@ -1,24 +1,24 b''
1 %%% should show a removed and b added
1 %%% should show a removed and b added
2 A b
2 A b
3 R a
3 R a
4 reverting...
4 reverting...
5 undeleting a
5 forgetting b
6 forgetting b
6 undeleting a
7 %%% should show b unknown and a back to normal
7 %%% should show b unknown and a back to normal
8 ? b
8 ? b
9 ? b.orig
9 ? b.orig
10 merging a
10 merging a
11 %%% should show foo-b
11 %%% should show foo-b
12 foo-b
12 foo-b
13 %%% should show a removed and b added
13 %%% should show a removed and b added
14 A b
14 A b
15 R a
15 R a
16 ? b.orig
16 ? b.orig
17 reverting...
17 reverting...
18 undeleting a
18 forgetting b
19 forgetting b
19 undeleting a
20 %%% should show b unknown and a marked modified (merged)
20 %%% should show b unknown and a marked modified (merged)
21 ? b
21 ? b
22 ? b.orig
22 ? b.orig
23 %%% should show foo-b
23 %%% should show foo-b
24 foo-b
24 foo-b
@@ -1,43 +1,57 b''
1 #!/bin/sh
1 #!/bin/sh
2
2
3 hg init
3 hg init
4 echo 123 > a
4 echo 123 > a
5 echo 123 > c
5 echo 123 > c
6 echo 123 > e
6 echo 123 > e
7 hg add a c e
7 hg add a c e
8 hg commit -m "first" -d "1000000 0" a c e
8 hg commit -m "first" -d "1000000 0" a c e
9 echo 123 > b
9 echo 123 > b
10 echo %% should show b unknown
10 echo %% should show b unknown
11 hg status
11 hg status
12 echo 12 > c
12 echo 12 > c
13 echo %% should show b unknown and c modified
13 echo %% should show b unknown and c modified
14 hg status
14 hg status
15 hg add b
15 hg add b
16 echo %% should show b added and c modified
16 echo %% should show b added and c modified
17 hg status
17 hg status
18 hg rm a
18 hg rm a
19 echo %% should show a removed, b added and c modified
19 echo %% should show a removed, b added and c modified
20 hg status
20 hg status
21 hg revert a
21 hg revert a
22 echo %% should show b added, copy saved, and c modified
22 echo %% should show b added, copy saved, and c modified
23 hg status
23 hg status
24 hg revert b
24 hg revert b
25 echo %% should show b unknown, b.orig unknown, and c modified
25 echo %% should show b unknown, b.orig unknown, and c modified
26 hg status
26 hg status
27 hg revert --no-backup c
27 hg revert --no-backup c
28 echo %% should show unknown: b b.orig
28 echo %% should show unknown: b b.orig
29 hg status
29 hg status
30 echo %% should show a b b.orig c e
30 echo %% should show a b b.orig c e
31 ls
31 ls
32 echo %% should verbosely save backup to e.orig
32 echo %% should verbosely save backup to e.orig
33 echo z > e
33 echo z > e
34 hg revert -v
34 hg revert -v
35 echo %% should say no changes needed
35 echo %% should say no changes needed
36 hg revert a
36 hg revert a
37 echo %% should say file not managed
37 echo %% should say file not managed
38 echo q > q
38 echo q > q
39 hg revert q
39 hg revert q
40 rm q
40 echo %% should say file not found
41 echo %% should say file not found
41 hg revert notfound
42 hg revert notfound
43 hg rm a
44 hg commit -m "second" -d "1000000 0"
45 echo z > z
46 hg add z
47 hg st
48 echo %% should add a, forget z
49 hg revert -r0
50 echo %% should forget a
51 hg revert -rtip
52 rm -f a *.orig
53 echo %% should silently add a
54 hg revert -r0 a
55 hg st a
42
56
43 true
57 true
@@ -1,8 +1,9 b''
1 %% Should show unknown
1 %% Should show unknown
2 ? unknown
2 ? unknown
3 removing b
3 %% Should show unknown and b removed
4 %% Should show unknown and b removed
4 R b
5 R b
5 ? unknown
6 ? unknown
6 %% Should show a and unknown
7 %% Should show a and unknown
7 a
8 a
8 unknown
9 unknown
@@ -1,40 +1,51 b''
1 %% should show b unknown
1 %% should show b unknown
2 ? b
2 ? b
3 %% should show b unknown and c modified
3 %% should show b unknown and c modified
4 M c
4 M c
5 ? b
5 ? b
6 %% should show b added and c modified
6 %% should show b added and c modified
7 M c
7 M c
8 A b
8 A b
9 %% should show a removed, b added and c modified
9 %% should show a removed, b added and c modified
10 M c
10 M c
11 A b
11 A b
12 R a
12 R a
13 %% should show b added, copy saved, and c modified
13 %% should show b added, copy saved, and c modified
14 M c
14 M c
15 A b
15 A b
16 %% should show b unknown, b.orig unknown, and c modified
16 %% should show b unknown, b.orig unknown, and c modified
17 M c
17 M c
18 ? b
18 ? b
19 ? b.orig
19 ? b.orig
20 %% should show unknown: b b.orig
20 %% should show unknown: b b.orig
21 ? b
21 ? b
22 ? b.orig
22 ? b.orig
23 %% should show a b b.orig c e
23 %% should show a b b.orig c e
24 a
24 a
25 b
25 b
26 b.orig
26 b.orig
27 c
27 c
28 e
28 e
29 %% should verbosely save backup to e.orig
29 %% should verbosely save backup to e.orig
30 saving current version of e as e.orig
30 saving current version of e as e.orig
31 reverting e
31 reverting e
32 resolving manifests
32 resolving manifests
33 getting e
33 getting e
34 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
34 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
35 %% should say no changes needed
35 %% should say no changes needed
36 no changes needed to a
36 no changes needed to a
37 %% should say file not managed
37 %% should say file not managed
38 file not managed: q
38 file not managed: q
39 %% should say file not found
39 %% should say file not found
40 notfound: No such file or directory
40 notfound: No such file in rev 095eacd0c0d7
41 A z
42 ? b
43 ? b.orig
44 ? e.orig
45 %% should add a, forget z
46 adding a
47 forgetting z
48 %% should forget a
49 forgetting a
50 %% should silently add a
51 A a
General Comments 0
You need to be logged in to leave comments. Login now