##// END OF EJS Templates
repo: add rjoin method
Bryan O'Sullivan -
r6526:cfeeac24 default
parent child Browse files
Show More
@@ -1,300 +1,303 b''
1 1 # hg.py - repository classes for mercurial
2 2 #
3 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com>
5 5 #
6 6 # This software may be used and distributed according to the terms
7 7 # of the GNU General Public License, incorporated herein by reference.
8 8
9 9 from i18n import _
10 10 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo
11 11 import errno, lock, os, shutil, util, extensions
12 12 import merge as _merge
13 13 import verify as _verify
14 14
15 15 def _local(path):
16 16 return (os.path.isfile(util.drop_scheme('file', path)) and
17 17 bundlerepo or localrepo)
18 18
19 19 def parseurl(url, revs=[]):
20 20 '''parse url#branch, returning url, branch + revs'''
21 21
22 22 if '#' not in url:
23 23 return url, (revs or None), None
24 24
25 25 url, rev = url.split('#', 1)
26 26 return url, revs + [rev], rev
27 27
28 28 schemes = {
29 29 'bundle': bundlerepo,
30 30 'file': _local,
31 31 'http': httprepo,
32 32 'https': httprepo,
33 33 'ssh': sshrepo,
34 34 'static-http': statichttprepo,
35 35 }
36 36
37 37 def _lookup(path):
38 38 scheme = 'file'
39 39 if path:
40 40 c = path.find(':')
41 41 if c > 0:
42 42 scheme = path[:c]
43 43 thing = schemes.get(scheme) or schemes['file']
44 44 try:
45 45 return thing(path)
46 46 except TypeError:
47 47 return thing
48 48
49 49 def islocal(repo):
50 50 '''return true if repo or path is local'''
51 51 if isinstance(repo, str):
52 52 try:
53 53 return _lookup(repo).islocal(repo)
54 54 except AttributeError:
55 55 return False
56 56 return repo.local()
57 57
58 58 def repository(ui, path='', create=False):
59 59 """return a repository object for the specified path"""
60 60 repo = _lookup(path).instance(ui, path, create)
61 61 ui = getattr(repo, "ui", ui)
62 62 for name, module in extensions.extensions():
63 63 hook = getattr(module, 'reposetup', None)
64 64 if hook:
65 65 hook(ui, repo)
66 66 return repo
67 67
68 68 def defaultdest(source):
69 69 '''return default destination of clone if none is given'''
70 70 return os.path.basename(os.path.normpath(source))
71 71
72 72 def localpath(path):
73 73 if path.startswith('file://localhost/'):
74 74 return path[16:]
75 75 if path.startswith('file://'):
76 76 return path[7:]
77 77 if path.startswith('file:'):
78 78 return path[5:]
79 79 return path
80 80
81 81 def clone(ui, source, dest=None, pull=False, rev=None, update=True,
82 82 stream=False):
83 83 """Make a copy of an existing repository.
84 84
85 85 Create a copy of an existing repository in a new directory. The
86 86 source and destination are URLs, as passed to the repository
87 87 function. Returns a pair of repository objects, the source and
88 88 newly created destination.
89 89
90 90 The location of the source is added to the new repository's
91 91 .hg/hgrc file, as the default to be used for future pulls and
92 92 pushes.
93 93
94 94 If an exception is raised, the partly cloned/updated destination
95 95 repository will be deleted.
96 96
97 97 Arguments:
98 98
99 99 source: repository object or URL
100 100
101 101 dest: URL of destination repository to create (defaults to base
102 102 name of source repository)
103 103
104 104 pull: always pull from source repository, even in local case
105 105
106 106 stream: stream raw data uncompressed from repository (fast over
107 107 LAN, slow over WAN)
108 108
109 109 rev: revision to clone up to (implies pull=True)
110 110
111 111 update: update working directory after clone completes, if
112 destination is local repository
112 destination is local repository (True means update to default rev,
113 anything else is treated as a revision)
113 114 """
114 115
115 116 if isinstance(source, str):
116 117 origsource = ui.expandpath(source)
117 118 source, rev, checkout = parseurl(origsource, rev)
118 119 src_repo = repository(ui, source)
119 120 else:
120 121 src_repo = source
121 122 origsource = source = src_repo.url()
122 123 checkout = None
123 124
124 125 if dest is None:
125 126 dest = defaultdest(source)
126 127 ui.status(_("destination directory: %s\n") % dest)
127 128
128 129 dest = localpath(dest)
129 130 source = localpath(source)
130 131
131 132 if os.path.exists(dest):
132 133 raise util.Abort(_("destination '%s' already exists") % dest)
133 134
134 135 class DirCleanup(object):
135 136 def __init__(self, dir_):
136 137 self.rmtree = shutil.rmtree
137 138 self.dir_ = dir_
138 139 def close(self):
139 140 self.dir_ = None
140 141 def __del__(self):
141 142 if self.dir_:
142 143 self.rmtree(self.dir_, True)
143 144
144 145 src_lock = dest_lock = dir_cleanup = None
145 146 try:
146 147 if islocal(dest):
147 148 dir_cleanup = DirCleanup(dest)
148 149
149 150 abspath = origsource
150 151 copy = False
151 152 if src_repo.cancopy() and islocal(dest):
152 153 abspath = os.path.abspath(util.drop_scheme('file', origsource))
153 154 copy = not pull and not rev
154 155
155 156 if copy:
156 157 try:
157 158 # we use a lock here because if we race with commit, we
158 159 # can end up with extra data in the cloned revlogs that's
159 160 # not pointed to by changesets, thus causing verify to
160 161 # fail
161 162 src_lock = src_repo.lock()
162 163 except lock.LockException:
163 164 copy = False
164 165
165 166 if copy:
166 167 def force_copy(src, dst):
167 168 if not os.path.exists(src):
168 169 # Tolerate empty source repository and optional files
169 170 return
170 171 util.copyfiles(src, dst)
171 172
172 173 src_store = os.path.realpath(src_repo.spath)
173 174 if not os.path.exists(dest):
174 175 os.mkdir(dest)
175 176 try:
176 177 dest_path = os.path.realpath(os.path.join(dest, ".hg"))
177 178 os.mkdir(dest_path)
178 179 except OSError, inst:
179 180 if inst.errno == errno.EEXIST:
180 181 dir_cleanup.close()
181 182 raise util.Abort(_("destination '%s' already exists")
182 183 % dest)
183 184 raise
184 185 if src_repo.spath != src_repo.path:
185 186 # XXX racy
186 187 dummy_changelog = os.path.join(dest_path, "00changelog.i")
187 188 # copy the dummy changelog
188 189 force_copy(src_repo.join("00changelog.i"), dummy_changelog)
189 190 dest_store = os.path.join(dest_path, "store")
190 191 os.mkdir(dest_store)
191 192 else:
192 193 dest_store = dest_path
193 194 # copy the requires file
194 195 force_copy(src_repo.join("requires"),
195 196 os.path.join(dest_path, "requires"))
196 197 # we lock here to avoid premature writing to the target
197 198 dest_lock = lock.lock(os.path.join(dest_store, "lock"))
198 199
199 200 files = ("data",
200 201 "00manifest.d", "00manifest.i",
201 202 "00changelog.d", "00changelog.i")
202 203 for f in files:
203 204 src = os.path.join(src_store, f)
204 205 dst = os.path.join(dest_store, f)
205 206 force_copy(src, dst)
206 207
207 208 # we need to re-init the repo after manually copying the data
208 209 # into it
209 210 dest_repo = repository(ui, dest)
210 211
211 212 else:
212 213 try:
213 214 dest_repo = repository(ui, dest, create=True)
214 215 except OSError, inst:
215 216 if inst.errno == errno.EEXIST:
216 217 dir_cleanup.close()
217 218 raise util.Abort(_("destination '%s' already exists")
218 219 % dest)
219 220 raise
220 221
221 222 revs = None
222 223 if rev:
223 224 if 'lookup' not in src_repo.capabilities:
224 225 raise util.Abort(_("src repository does not support revision "
225 226 "lookup and so doesn't support clone by "
226 227 "revision"))
227 228 revs = [src_repo.lookup(r) for r in rev]
228 229
229 230 if dest_repo.local():
230 231 dest_repo.clone(src_repo, heads=revs, stream=stream)
231 232 elif src_repo.local():
232 233 src_repo.push(dest_repo, revs=revs)
233 234 else:
234 235 raise util.Abort(_("clone from remote to remote not supported"))
235 236
236 237 if dir_cleanup:
237 238 dir_cleanup.close()
238 239
239 240 if dest_repo.local():
240 241 fp = dest_repo.opener("hgrc", "w", text=True)
241 242 fp.write("[paths]\n")
242 243 fp.write("default = %s\n" % abspath)
243 244 fp.close()
244 245
245 246 if update:
246 247 dest_repo.ui.status(_("updating working directory\n"))
247 if not checkout:
248 if update is not True:
249 checkout = update
250 elif not checkout:
248 251 try:
249 252 checkout = dest_repo.lookup("default")
250 253 except:
251 254 checkout = dest_repo.changelog.tip()
252 255 _update(dest_repo, checkout)
253 256
254 257 return src_repo, dest_repo
255 258 finally:
256 259 del src_lock, dest_lock, dir_cleanup
257 260
258 261 def _showstats(repo, stats):
259 262 stats = ((stats[0], _("updated")),
260 263 (stats[1], _("merged")),
261 264 (stats[2], _("removed")),
262 265 (stats[3], _("unresolved")))
263 266 note = ", ".join([_("%d files %s") % s for s in stats])
264 267 repo.ui.status("%s\n" % note)
265 268
266 269 def _update(repo, node): return update(repo, node)
267 270
268 271 def update(repo, node):
269 272 """update the working directory to node, merging linear changes"""
270 273 pl = repo.parents()
271 274 stats = _merge.update(repo, node, False, False, None)
272 275 _showstats(repo, stats)
273 276 if stats[3]:
274 277 repo.ui.status(_("use 'hg resolve' to retry unresolved file merges\n"))
275 278 return stats[3] > 0
276 279
277 280 def clean(repo, node, show_stats=True):
278 281 """forcibly switch the working directory to node, clobbering changes"""
279 282 stats = _merge.update(repo, node, False, True, None)
280 283 if show_stats: _showstats(repo, stats)
281 284 return stats[3] > 0
282 285
283 286 def merge(repo, node, force=None, remind=True):
284 287 """branch merge with node, resolving changes"""
285 288 stats = _merge.update(repo, node, True, force, False)
286 289 _showstats(repo, stats)
287 290 if stats[3]:
288 291 pl = repo.parents()
289 292 repo.ui.status(_("use 'hg resolve' to retry unresolved file merges\n"))
290 293 elif remind:
291 294 repo.ui.status(_("(branch merge, don't forget to commit)\n"))
292 295 return stats[3] > 0
293 296
294 297 def revert(repo, node, choose):
295 298 """revert changes to revision in node without updating dirstate"""
296 299 return _merge.update(repo, node, False, True, choose)[3] > 0
297 300
298 301 def verify(repo):
299 302 """verify the consistency of a repository"""
300 303 return _verify.verify(repo)
@@ -1,2138 +1,2141 b''
1 1 # localrepo.py - read/write repository class for mercurial
2 2 #
3 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms
6 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 8 from node import bin, hex, nullid, nullrev, short
9 9 from i18n import _
10 10 import repo, changegroup
11 11 import changelog, dirstate, filelog, manifest, context, weakref
12 12 import lock, transaction, stat, errno, ui
13 13 import os, revlog, time, util, extensions, hook, inspect
14 14
15 15 class localrepository(repo.repository):
16 16 capabilities = util.set(('lookup', 'changegroupsubset'))
17 17 supported = ('revlogv1', 'store')
18 18
19 19 def __init__(self, parentui, path=None, create=0):
20 20 repo.repository.__init__(self)
21 21 self.root = os.path.realpath(path)
22 22 self.path = os.path.join(self.root, ".hg")
23 23 self.origroot = path
24 24 self.opener = util.opener(self.path)
25 25 self.wopener = util.opener(self.root)
26 26
27 27 if not os.path.isdir(self.path):
28 28 if create:
29 29 if not os.path.exists(path):
30 30 os.mkdir(path)
31 31 os.mkdir(self.path)
32 32 requirements = ["revlogv1"]
33 33 if parentui.configbool('format', 'usestore', True):
34 34 os.mkdir(os.path.join(self.path, "store"))
35 35 requirements.append("store")
36 36 # create an invalid changelog
37 37 self.opener("00changelog.i", "a").write(
38 38 '\0\0\0\2' # represents revlogv2
39 39 ' dummy changelog to prevent using the old repo layout'
40 40 )
41 41 reqfile = self.opener("requires", "w")
42 42 for r in requirements:
43 43 reqfile.write("%s\n" % r)
44 44 reqfile.close()
45 45 else:
46 46 raise repo.RepoError(_("repository %s not found") % path)
47 47 elif create:
48 48 raise repo.RepoError(_("repository %s already exists") % path)
49 49 else:
50 50 # find requirements
51 51 try:
52 52 requirements = self.opener("requires").read().splitlines()
53 53 except IOError, inst:
54 54 if inst.errno != errno.ENOENT:
55 55 raise
56 56 requirements = []
57 57 # check them
58 58 for r in requirements:
59 59 if r not in self.supported:
60 60 raise repo.RepoError(_("requirement '%s' not supported") % r)
61 61
62 62 # setup store
63 63 if "store" in requirements:
64 64 self.encodefn = util.encodefilename
65 65 self.decodefn = util.decodefilename
66 66 self.spath = os.path.join(self.path, "store")
67 67 else:
68 68 self.encodefn = lambda x: x
69 69 self.decodefn = lambda x: x
70 70 self.spath = self.path
71 71
72 72 try:
73 73 # files in .hg/ will be created using this mode
74 74 mode = os.stat(self.spath).st_mode
75 75 # avoid some useless chmods
76 76 if (0777 & ~util._umask) == (0777 & mode):
77 77 mode = None
78 78 except OSError:
79 79 mode = None
80 80
81 81 self._createmode = mode
82 82 self.opener.createmode = mode
83 83 sopener = util.opener(self.spath)
84 84 sopener.createmode = mode
85 85 self.sopener = util.encodedopener(sopener, self.encodefn)
86 86
87 87 self.ui = ui.ui(parentui=parentui)
88 88 try:
89 89 self.ui.readconfig(self.join("hgrc"), self.root)
90 90 extensions.loadall(self.ui)
91 91 except IOError:
92 92 pass
93 93
94 94 self.tagscache = None
95 95 self._tagstypecache = None
96 96 self.branchcache = None
97 97 self._ubranchcache = None # UTF-8 version of branchcache
98 98 self._branchcachetip = None
99 99 self.nodetagscache = None
100 100 self.filterpats = {}
101 101 self._datafilters = {}
102 102 self._transref = self._lockref = self._wlockref = None
103 103
104 104 def __getattr__(self, name):
105 105 if name == 'changelog':
106 106 self.changelog = changelog.changelog(self.sopener)
107 107 self.sopener.defversion = self.changelog.version
108 108 return self.changelog
109 109 if name == 'manifest':
110 110 self.changelog
111 111 self.manifest = manifest.manifest(self.sopener)
112 112 return self.manifest
113 113 if name == 'dirstate':
114 114 self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root)
115 115 return self.dirstate
116 116 else:
117 117 raise AttributeError, name
118 118
119 119 def url(self):
120 120 return 'file:' + self.root
121 121
122 122 def hook(self, name, throw=False, **args):
123 123 return hook.hook(self.ui, self, name, throw, **args)
124 124
125 125 tag_disallowed = ':\r\n'
126 126
127 127 def _tag(self, names, node, message, local, user, date, parent=None,
128 128 extra={}):
129 129 use_dirstate = parent is None
130 130
131 131 if isinstance(names, str):
132 132 allchars = names
133 133 names = (names,)
134 134 else:
135 135 allchars = ''.join(names)
136 136 for c in self.tag_disallowed:
137 137 if c in allchars:
138 138 raise util.Abort(_('%r cannot be used in a tag name') % c)
139 139
140 140 for name in names:
141 141 self.hook('pretag', throw=True, node=hex(node), tag=name,
142 142 local=local)
143 143
144 144 def writetags(fp, names, munge, prevtags):
145 145 fp.seek(0, 2)
146 146 if prevtags and prevtags[-1] != '\n':
147 147 fp.write('\n')
148 148 for name in names:
149 149 fp.write('%s %s\n' % (hex(node), munge and munge(name) or name))
150 150 fp.close()
151 151
152 152 prevtags = ''
153 153 if local:
154 154 try:
155 155 fp = self.opener('localtags', 'r+')
156 156 except IOError, err:
157 157 fp = self.opener('localtags', 'a')
158 158 else:
159 159 prevtags = fp.read()
160 160
161 161 # local tags are stored in the current charset
162 162 writetags(fp, names, None, prevtags)
163 163 for name in names:
164 164 self.hook('tag', node=hex(node), tag=name, local=local)
165 165 return
166 166
167 167 if use_dirstate:
168 168 try:
169 169 fp = self.wfile('.hgtags', 'rb+')
170 170 except IOError, err:
171 171 fp = self.wfile('.hgtags', 'ab')
172 172 else:
173 173 prevtags = fp.read()
174 174 else:
175 175 try:
176 176 prevtags = self.filectx('.hgtags', parent).data()
177 177 except revlog.LookupError:
178 178 pass
179 179 fp = self.wfile('.hgtags', 'wb')
180 180 if prevtags:
181 181 fp.write(prevtags)
182 182
183 183 # committed tags are stored in UTF-8
184 184 writetags(fp, names, util.fromlocal, prevtags)
185 185
186 186 if use_dirstate and '.hgtags' not in self.dirstate:
187 187 self.add(['.hgtags'])
188 188
189 189 tagnode = self.commit(['.hgtags'], message, user, date, p1=parent,
190 190 extra=extra)
191 191
192 192 for name in names:
193 193 self.hook('tag', node=hex(node), tag=name, local=local)
194 194
195 195 return tagnode
196 196
197 197 def tag(self, names, node, message, local, user, date):
198 198 '''tag a revision with one or more symbolic names.
199 199
200 200 names is a list of strings or, when adding a single tag, names may be a
201 201 string.
202 202
203 203 if local is True, the tags are stored in a per-repository file.
204 204 otherwise, they are stored in the .hgtags file, and a new
205 205 changeset is committed with the change.
206 206
207 207 keyword arguments:
208 208
209 209 local: whether to store tags in non-version-controlled file
210 210 (default False)
211 211
212 212 message: commit message to use if committing
213 213
214 214 user: name of user to use if committing
215 215
216 216 date: date tuple to use if committing'''
217 217
218 218 for x in self.status()[:5]:
219 219 if '.hgtags' in x:
220 220 raise util.Abort(_('working copy of .hgtags is changed '
221 221 '(please commit .hgtags manually)'))
222 222
223 223 self._tag(names, node, message, local, user, date)
224 224
225 225 def tags(self):
226 226 '''return a mapping of tag to node'''
227 227 if self.tagscache:
228 228 return self.tagscache
229 229
230 230 globaltags = {}
231 231 tagtypes = {}
232 232
233 233 def readtags(lines, fn, tagtype):
234 234 filetags = {}
235 235 count = 0
236 236
237 237 def warn(msg):
238 238 self.ui.warn(_("%s, line %s: %s\n") % (fn, count, msg))
239 239
240 240 for l in lines:
241 241 count += 1
242 242 if not l:
243 243 continue
244 244 s = l.split(" ", 1)
245 245 if len(s) != 2:
246 246 warn(_("cannot parse entry"))
247 247 continue
248 248 node, key = s
249 249 key = util.tolocal(key.strip()) # stored in UTF-8
250 250 try:
251 251 bin_n = bin(node)
252 252 except TypeError:
253 253 warn(_("node '%s' is not well formed") % node)
254 254 continue
255 255 if bin_n not in self.changelog.nodemap:
256 256 warn(_("tag '%s' refers to unknown node") % key)
257 257 continue
258 258
259 259 h = []
260 260 if key in filetags:
261 261 n, h = filetags[key]
262 262 h.append(n)
263 263 filetags[key] = (bin_n, h)
264 264
265 265 for k, nh in filetags.items():
266 266 if k not in globaltags:
267 267 globaltags[k] = nh
268 268 tagtypes[k] = tagtype
269 269 continue
270 270
271 271 # we prefer the global tag if:
272 272 # it supercedes us OR
273 273 # mutual supercedes and it has a higher rank
274 274 # otherwise we win because we're tip-most
275 275 an, ah = nh
276 276 bn, bh = globaltags[k]
277 277 if (bn != an and an in bh and
278 278 (bn not in ah or len(bh) > len(ah))):
279 279 an = bn
280 280 ah.extend([n for n in bh if n not in ah])
281 281 globaltags[k] = an, ah
282 282 tagtypes[k] = tagtype
283 283
284 284 # read the tags file from each head, ending with the tip
285 285 f = None
286 286 for rev, node, fnode in self._hgtagsnodes():
287 287 f = (f and f.filectx(fnode) or
288 288 self.filectx('.hgtags', fileid=fnode))
289 289 readtags(f.data().splitlines(), f, "global")
290 290
291 291 try:
292 292 data = util.fromlocal(self.opener("localtags").read())
293 293 # localtags are stored in the local character set
294 294 # while the internal tag table is stored in UTF-8
295 295 readtags(data.splitlines(), "localtags", "local")
296 296 except IOError:
297 297 pass
298 298
299 299 self.tagscache = {}
300 300 self._tagstypecache = {}
301 301 for k,nh in globaltags.items():
302 302 n = nh[0]
303 303 if n != nullid:
304 304 self.tagscache[k] = n
305 305 self._tagstypecache[k] = tagtypes[k]
306 306 self.tagscache['tip'] = self.changelog.tip()
307 307
308 308 return self.tagscache
309 309
310 310 def tagtype(self, tagname):
311 311 '''
312 312 return the type of the given tag. result can be:
313 313
314 314 'local' : a local tag
315 315 'global' : a global tag
316 316 None : tag does not exist
317 317 '''
318 318
319 319 self.tags()
320 320
321 321 return self._tagstypecache.get(tagname)
322 322
323 323 def _hgtagsnodes(self):
324 324 heads = self.heads()
325 325 heads.reverse()
326 326 last = {}
327 327 ret = []
328 328 for node in heads:
329 329 c = self.changectx(node)
330 330 rev = c.rev()
331 331 try:
332 332 fnode = c.filenode('.hgtags')
333 333 except revlog.LookupError:
334 334 continue
335 335 ret.append((rev, node, fnode))
336 336 if fnode in last:
337 337 ret[last[fnode]] = None
338 338 last[fnode] = len(ret) - 1
339 339 return [item for item in ret if item]
340 340
341 341 def tagslist(self):
342 342 '''return a list of tags ordered by revision'''
343 343 l = []
344 344 for t, n in self.tags().items():
345 345 try:
346 346 r = self.changelog.rev(n)
347 347 except:
348 348 r = -2 # sort to the beginning of the list if unknown
349 349 l.append((r, t, n))
350 350 l.sort()
351 351 return [(t, n) for r, t, n in l]
352 352
353 353 def nodetags(self, node):
354 354 '''return the tags associated with a node'''
355 355 if not self.nodetagscache:
356 356 self.nodetagscache = {}
357 357 for t, n in self.tags().items():
358 358 self.nodetagscache.setdefault(n, []).append(t)
359 359 return self.nodetagscache.get(node, [])
360 360
361 361 def _branchtags(self, partial, lrev):
362 362 tiprev = self.changelog.count() - 1
363 363 if lrev != tiprev:
364 364 self._updatebranchcache(partial, lrev+1, tiprev+1)
365 365 self._writebranchcache(partial, self.changelog.tip(), tiprev)
366 366
367 367 return partial
368 368
369 369 def branchtags(self):
370 370 tip = self.changelog.tip()
371 371 if self.branchcache is not None and self._branchcachetip == tip:
372 372 return self.branchcache
373 373
374 374 oldtip = self._branchcachetip
375 375 self._branchcachetip = tip
376 376 if self.branchcache is None:
377 377 self.branchcache = {} # avoid recursion in changectx
378 378 else:
379 379 self.branchcache.clear() # keep using the same dict
380 380 if oldtip is None or oldtip not in self.changelog.nodemap:
381 381 partial, last, lrev = self._readbranchcache()
382 382 else:
383 383 lrev = self.changelog.rev(oldtip)
384 384 partial = self._ubranchcache
385 385
386 386 self._branchtags(partial, lrev)
387 387
388 388 # the branch cache is stored on disk as UTF-8, but in the local
389 389 # charset internally
390 390 for k, v in partial.items():
391 391 self.branchcache[util.tolocal(k)] = v
392 392 self._ubranchcache = partial
393 393 return self.branchcache
394 394
395 395 def _readbranchcache(self):
396 396 partial = {}
397 397 try:
398 398 f = self.opener("branch.cache")
399 399 lines = f.read().split('\n')
400 400 f.close()
401 401 except (IOError, OSError):
402 402 return {}, nullid, nullrev
403 403
404 404 try:
405 405 last, lrev = lines.pop(0).split(" ", 1)
406 406 last, lrev = bin(last), int(lrev)
407 407 if not (lrev < self.changelog.count() and
408 408 self.changelog.node(lrev) == last): # sanity check
409 409 # invalidate the cache
410 410 raise ValueError('invalidating branch cache (tip differs)')
411 411 for l in lines:
412 412 if not l: continue
413 413 node, label = l.split(" ", 1)
414 414 partial[label.strip()] = bin(node)
415 415 except (KeyboardInterrupt, util.SignalInterrupt):
416 416 raise
417 417 except Exception, inst:
418 418 if self.ui.debugflag:
419 419 self.ui.warn(str(inst), '\n')
420 420 partial, last, lrev = {}, nullid, nullrev
421 421 return partial, last, lrev
422 422
423 423 def _writebranchcache(self, branches, tip, tiprev):
424 424 try:
425 425 f = self.opener("branch.cache", "w", atomictemp=True)
426 426 f.write("%s %s\n" % (hex(tip), tiprev))
427 427 for label, node in branches.iteritems():
428 428 f.write("%s %s\n" % (hex(node), label))
429 429 f.rename()
430 430 except (IOError, OSError):
431 431 pass
432 432
433 433 def _updatebranchcache(self, partial, start, end):
434 434 for r in xrange(start, end):
435 435 c = self.changectx(r)
436 436 b = c.branch()
437 437 partial[b] = c.node()
438 438
439 439 def lookup(self, key):
440 440 if key == '.':
441 441 key, second = self.dirstate.parents()
442 442 if key == nullid:
443 443 raise repo.RepoError(_("no revision checked out"))
444 444 if second != nullid:
445 445 self.ui.warn(_("warning: working directory has two parents, "
446 446 "tag '.' uses the first\n"))
447 447 elif key == 'null':
448 448 return nullid
449 449 n = self.changelog._match(key)
450 450 if n:
451 451 return n
452 452 if key in self.tags():
453 453 return self.tags()[key]
454 454 if key in self.branchtags():
455 455 return self.branchtags()[key]
456 456 n = self.changelog._partialmatch(key)
457 457 if n:
458 458 return n
459 459 try:
460 460 if len(key) == 20:
461 461 key = hex(key)
462 462 except:
463 463 pass
464 464 raise repo.RepoError(_("unknown revision '%s'") % key)
465 465
466 466 def local(self):
467 467 return True
468 468
469 469 def join(self, f):
470 470 return os.path.join(self.path, f)
471 471
472 472 def sjoin(self, f):
473 473 f = self.encodefn(f)
474 474 return os.path.join(self.spath, f)
475 475
476 476 def wjoin(self, f):
477 477 return os.path.join(self.root, f)
478 478
479 def rjoin(self, f):
480 return os.path.join(self.root, util.pconvert(f))
481
479 482 def file(self, f):
480 483 if f[0] == '/':
481 484 f = f[1:]
482 485 return filelog.filelog(self.sopener, f)
483 486
484 487 def changectx(self, changeid=None):
485 488 return context.changectx(self, changeid)
486 489
487 490 def workingctx(self):
488 491 return context.workingctx(self)
489 492
490 493 def parents(self, changeid=None):
491 494 '''
492 495 get list of changectxs for parents of changeid or working directory
493 496 '''
494 497 if changeid is None:
495 498 pl = self.dirstate.parents()
496 499 else:
497 500 n = self.changelog.lookup(changeid)
498 501 pl = self.changelog.parents(n)
499 502 if pl[1] == nullid:
500 503 return [self.changectx(pl[0])]
501 504 return [self.changectx(pl[0]), self.changectx(pl[1])]
502 505
503 506 def filectx(self, path, changeid=None, fileid=None):
504 507 """changeid can be a changeset revision, node, or tag.
505 508 fileid can be a file revision or node."""
506 509 return context.filectx(self, path, changeid, fileid)
507 510
508 511 def getcwd(self):
509 512 return self.dirstate.getcwd()
510 513
511 514 def pathto(self, f, cwd=None):
512 515 return self.dirstate.pathto(f, cwd)
513 516
514 517 def wfile(self, f, mode='r'):
515 518 return self.wopener(f, mode)
516 519
517 520 def _link(self, f):
518 521 return os.path.islink(self.wjoin(f))
519 522
520 523 def _filter(self, filter, filename, data):
521 524 if filter not in self.filterpats:
522 525 l = []
523 526 for pat, cmd in self.ui.configitems(filter):
524 527 mf = util.matcher(self.root, "", [pat], [], [])[1]
525 528 fn = None
526 529 params = cmd
527 530 for name, filterfn in self._datafilters.iteritems():
528 531 if cmd.startswith(name):
529 532 fn = filterfn
530 533 params = cmd[len(name):].lstrip()
531 534 break
532 535 if not fn:
533 536 fn = lambda s, c, **kwargs: util.filter(s, c)
534 537 # Wrap old filters not supporting keyword arguments
535 538 if not inspect.getargspec(fn)[2]:
536 539 oldfn = fn
537 540 fn = lambda s, c, **kwargs: oldfn(s, c)
538 541 l.append((mf, fn, params))
539 542 self.filterpats[filter] = l
540 543
541 544 for mf, fn, cmd in self.filterpats[filter]:
542 545 if mf(filename):
543 546 self.ui.debug(_("filtering %s through %s\n") % (filename, cmd))
544 547 data = fn(data, cmd, ui=self.ui, repo=self, filename=filename)
545 548 break
546 549
547 550 return data
548 551
549 552 def adddatafilter(self, name, filter):
550 553 self._datafilters[name] = filter
551 554
552 555 def wread(self, filename):
553 556 if self._link(filename):
554 557 data = os.readlink(self.wjoin(filename))
555 558 else:
556 559 data = self.wopener(filename, 'r').read()
557 560 return self._filter("encode", filename, data)
558 561
559 562 def wwrite(self, filename, data, flags):
560 563 data = self._filter("decode", filename, data)
561 564 try:
562 565 os.unlink(self.wjoin(filename))
563 566 except OSError:
564 567 pass
565 568 self.wopener(filename, 'w').write(data)
566 569 util.set_flags(self.wjoin(filename), flags)
567 570
568 571 def wwritedata(self, filename, data):
569 572 return self._filter("decode", filename, data)
570 573
571 574 def transaction(self):
572 575 if self._transref and self._transref():
573 576 return self._transref().nest()
574 577
575 578 # abort here if the journal already exists
576 579 if os.path.exists(self.sjoin("journal")):
577 580 raise repo.RepoError(_("journal already exists - run hg recover"))
578 581
579 582 # save dirstate for rollback
580 583 try:
581 584 ds = self.opener("dirstate").read()
582 585 except IOError:
583 586 ds = ""
584 587 self.opener("journal.dirstate", "w").write(ds)
585 588 self.opener("journal.branch", "w").write(self.dirstate.branch())
586 589
587 590 renames = [(self.sjoin("journal"), self.sjoin("undo")),
588 591 (self.join("journal.dirstate"), self.join("undo.dirstate")),
589 592 (self.join("journal.branch"), self.join("undo.branch"))]
590 593 tr = transaction.transaction(self.ui.warn, self.sopener,
591 594 self.sjoin("journal"),
592 595 aftertrans(renames),
593 596 self._createmode)
594 597 self._transref = weakref.ref(tr)
595 598 return tr
596 599
597 600 def recover(self):
598 601 l = self.lock()
599 602 try:
600 603 if os.path.exists(self.sjoin("journal")):
601 604 self.ui.status(_("rolling back interrupted transaction\n"))
602 605 transaction.rollback(self.sopener, self.sjoin("journal"))
603 606 self.invalidate()
604 607 return True
605 608 else:
606 609 self.ui.warn(_("no interrupted transaction available\n"))
607 610 return False
608 611 finally:
609 612 del l
610 613
611 614 def rollback(self):
612 615 wlock = lock = None
613 616 try:
614 617 wlock = self.wlock()
615 618 lock = self.lock()
616 619 if os.path.exists(self.sjoin("undo")):
617 620 self.ui.status(_("rolling back last transaction\n"))
618 621 transaction.rollback(self.sopener, self.sjoin("undo"))
619 622 util.rename(self.join("undo.dirstate"), self.join("dirstate"))
620 623 try:
621 624 branch = self.opener("undo.branch").read()
622 625 self.dirstate.setbranch(branch)
623 626 except IOError:
624 627 self.ui.warn(_("Named branch could not be reset, "
625 628 "current branch still is: %s\n")
626 629 % util.tolocal(self.dirstate.branch()))
627 630 self.invalidate()
628 631 self.dirstate.invalidate()
629 632 else:
630 633 self.ui.warn(_("no rollback information available\n"))
631 634 finally:
632 635 del lock, wlock
633 636
634 637 def invalidate(self):
635 638 for a in "changelog manifest".split():
636 639 if a in self.__dict__:
637 640 delattr(self, a)
638 641 self.tagscache = None
639 642 self._tagstypecache = None
640 643 self.nodetagscache = None
641 644 self.branchcache = None
642 645 self._ubranchcache = None
643 646 self._branchcachetip = None
644 647
645 648 def _lock(self, lockname, wait, releasefn, acquirefn, desc):
646 649 try:
647 650 l = lock.lock(lockname, 0, releasefn, desc=desc)
648 651 except lock.LockHeld, inst:
649 652 if not wait:
650 653 raise
651 654 self.ui.warn(_("waiting for lock on %s held by %r\n") %
652 655 (desc, inst.locker))
653 656 # default to 600 seconds timeout
654 657 l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")),
655 658 releasefn, desc=desc)
656 659 if acquirefn:
657 660 acquirefn()
658 661 return l
659 662
660 663 def lock(self, wait=True):
661 664 if self._lockref and self._lockref():
662 665 return self._lockref()
663 666
664 667 l = self._lock(self.sjoin("lock"), wait, None, self.invalidate,
665 668 _('repository %s') % self.origroot)
666 669 self._lockref = weakref.ref(l)
667 670 return l
668 671
669 672 def wlock(self, wait=True):
670 673 if self._wlockref and self._wlockref():
671 674 return self._wlockref()
672 675
673 676 l = self._lock(self.join("wlock"), wait, self.dirstate.write,
674 677 self.dirstate.invalidate, _('working directory of %s') %
675 678 self.origroot)
676 679 self._wlockref = weakref.ref(l)
677 680 return l
678 681
679 682 def filecommit(self, fn, manifest1, manifest2, linkrev, tr, changelist):
680 683 """
681 684 commit an individual file as part of a larger transaction
682 685 """
683 686
684 687 t = self.wread(fn)
685 688 fl = self.file(fn)
686 689 fp1 = manifest1.get(fn, nullid)
687 690 fp2 = manifest2.get(fn, nullid)
688 691
689 692 meta = {}
690 693 cp = self.dirstate.copied(fn)
691 694 if cp:
692 695 # Mark the new revision of this file as a copy of another
693 696 # file. This copy data will effectively act as a parent
694 697 # of this new revision. If this is a merge, the first
695 698 # parent will be the nullid (meaning "look up the copy data")
696 699 # and the second one will be the other parent. For example:
697 700 #
698 701 # 0 --- 1 --- 3 rev1 changes file foo
699 702 # \ / rev2 renames foo to bar and changes it
700 703 # \- 2 -/ rev3 should have bar with all changes and
701 704 # should record that bar descends from
702 705 # bar in rev2 and foo in rev1
703 706 #
704 707 # this allows this merge to succeed:
705 708 #
706 709 # 0 --- 1 --- 3 rev4 reverts the content change from rev2
707 710 # \ / merging rev3 and rev4 should use bar@rev2
708 711 # \- 2 --- 4 as the merge base
709 712 #
710 713 meta["copy"] = cp
711 714 if not manifest2: # not a branch merge
712 715 meta["copyrev"] = hex(manifest1.get(cp, nullid))
713 716 fp2 = nullid
714 717 elif fp2 != nullid: # copied on remote side
715 718 meta["copyrev"] = hex(manifest1.get(cp, nullid))
716 719 elif fp1 != nullid: # copied on local side, reversed
717 720 meta["copyrev"] = hex(manifest2.get(cp))
718 721 fp2 = fp1
719 722 elif cp in manifest2: # directory rename on local side
720 723 meta["copyrev"] = hex(manifest2[cp])
721 724 else: # directory rename on remote side
722 725 meta["copyrev"] = hex(manifest1.get(cp, nullid))
723 726 self.ui.debug(_(" %s: copy %s:%s\n") %
724 727 (fn, cp, meta["copyrev"]))
725 728 fp1 = nullid
726 729 elif fp2 != nullid:
727 730 # is one parent an ancestor of the other?
728 731 fpa = fl.ancestor(fp1, fp2)
729 732 if fpa == fp1:
730 733 fp1, fp2 = fp2, nullid
731 734 elif fpa == fp2:
732 735 fp2 = nullid
733 736
734 737 # is the file unmodified from the parent? report existing entry
735 738 if fp2 == nullid and not fl.cmp(fp1, t) and not meta:
736 739 return fp1
737 740
738 741 changelist.append(fn)
739 742 return fl.add(t, meta, tr, linkrev, fp1, fp2)
740 743
741 744 def rawcommit(self, files, text, user, date, p1=None, p2=None, extra={}):
742 745 if p1 is None:
743 746 p1, p2 = self.dirstate.parents()
744 747 return self.commit(files=files, text=text, user=user, date=date,
745 748 p1=p1, p2=p2, extra=extra, empty_ok=True)
746 749
747 750 def commit(self, files=None, text="", user=None, date=None,
748 751 match=util.always, force=False, force_editor=False,
749 752 p1=None, p2=None, extra={}, empty_ok=False):
750 753 wlock = lock = tr = None
751 754 valid = 0 # don't save the dirstate if this isn't set
752 755 if files:
753 756 files = util.unique(files)
754 757 try:
755 758 wlock = self.wlock()
756 759 lock = self.lock()
757 760 commit = []
758 761 remove = []
759 762 changed = []
760 763 use_dirstate = (p1 is None) # not rawcommit
761 764 extra = extra.copy()
762 765
763 766 if use_dirstate:
764 767 if files:
765 768 for f in files:
766 769 s = self.dirstate[f]
767 770 if s in 'nma':
768 771 commit.append(f)
769 772 elif s == 'r':
770 773 remove.append(f)
771 774 else:
772 775 self.ui.warn(_("%s not tracked!\n") % f)
773 776 else:
774 777 changes = self.status(match=match)[:5]
775 778 modified, added, removed, deleted, unknown = changes
776 779 commit = modified + added
777 780 remove = removed
778 781 else:
779 782 commit = files
780 783
781 784 if use_dirstate:
782 785 p1, p2 = self.dirstate.parents()
783 786 update_dirstate = True
784 787
785 788 if (not force and p2 != nullid and
786 789 (files or match != util.always)):
787 790 raise util.Abort(_('cannot partially commit a merge '
788 791 '(do not specify files or patterns)'))
789 792 else:
790 793 p1, p2 = p1, p2 or nullid
791 794 update_dirstate = (self.dirstate.parents()[0] == p1)
792 795
793 796 c1 = self.changelog.read(p1)
794 797 c2 = self.changelog.read(p2)
795 798 m1 = self.manifest.read(c1[0]).copy()
796 799 m2 = self.manifest.read(c2[0])
797 800
798 801 if use_dirstate:
799 802 branchname = self.workingctx().branch()
800 803 try:
801 804 branchname = branchname.decode('UTF-8').encode('UTF-8')
802 805 except UnicodeDecodeError:
803 806 raise util.Abort(_('branch name not in UTF-8!'))
804 807 else:
805 808 branchname = ""
806 809
807 810 if use_dirstate:
808 811 oldname = c1[5].get("branch") # stored in UTF-8
809 812 if (not commit and not remove and not force and p2 == nullid
810 813 and branchname == oldname):
811 814 self.ui.status(_("nothing changed\n"))
812 815 return None
813 816
814 817 xp1 = hex(p1)
815 818 if p2 == nullid: xp2 = ''
816 819 else: xp2 = hex(p2)
817 820
818 821 self.hook("precommit", throw=True, parent1=xp1, parent2=xp2)
819 822
820 823 tr = self.transaction()
821 824 trp = weakref.proxy(tr)
822 825
823 826 # check in files
824 827 new = {}
825 828 linkrev = self.changelog.count()
826 829 commit.sort()
827 830 is_exec = util.execfunc(self.root, m1.execf)
828 831 is_link = util.linkfunc(self.root, m1.linkf)
829 832 for f in commit:
830 833 self.ui.note(f + "\n")
831 834 try:
832 835 new[f] = self.filecommit(f, m1, m2, linkrev, trp, changed)
833 836 new_exec = is_exec(f)
834 837 new_link = is_link(f)
835 838 if ((not changed or changed[-1] != f) and
836 839 m2.get(f) != new[f]):
837 840 # mention the file in the changelog if some
838 841 # flag changed, even if there was no content
839 842 # change.
840 843 old_exec = m1.execf(f)
841 844 old_link = m1.linkf(f)
842 845 if old_exec != new_exec or old_link != new_link:
843 846 changed.append(f)
844 847 m1.set(f, new_exec, new_link)
845 848 if use_dirstate:
846 849 self.dirstate.normal(f)
847 850
848 851 except (OSError, IOError):
849 852 if use_dirstate:
850 853 self.ui.warn(_("trouble committing %s!\n") % f)
851 854 raise
852 855 else:
853 856 remove.append(f)
854 857
855 858 # update manifest
856 859 m1.update(new)
857 860 remove.sort()
858 861 removed = []
859 862
860 863 for f in remove:
861 864 if f in m1:
862 865 del m1[f]
863 866 removed.append(f)
864 867 elif f in m2:
865 868 removed.append(f)
866 869 mn = self.manifest.add(m1, trp, linkrev, c1[0], c2[0],
867 870 (new, removed))
868 871
869 872 # add changeset
870 873 new = new.keys()
871 874 new.sort()
872 875
873 876 user = user or self.ui.username()
874 877 if (not empty_ok and not text) or force_editor:
875 878 edittext = []
876 879 if text:
877 880 edittext.append(text)
878 881 edittext.append("")
879 882 edittext.append(_("HG: Enter commit message."
880 883 " Lines beginning with 'HG:' are removed."))
881 884 edittext.append("HG: --")
882 885 edittext.append("HG: user: %s" % user)
883 886 if p2 != nullid:
884 887 edittext.append("HG: branch merge")
885 888 if branchname:
886 889 edittext.append("HG: branch '%s'" % util.tolocal(branchname))
887 890 edittext.extend(["HG: changed %s" % f for f in changed])
888 891 edittext.extend(["HG: removed %s" % f for f in removed])
889 892 if not changed and not remove:
890 893 edittext.append("HG: no files changed")
891 894 edittext.append("")
892 895 # run editor in the repository root
893 896 olddir = os.getcwd()
894 897 os.chdir(self.root)
895 898 text = self.ui.edit("\n".join(edittext), user)
896 899 os.chdir(olddir)
897 900
898 901 if branchname:
899 902 extra["branch"] = branchname
900 903
901 904 lines = [line.rstrip() for line in text.rstrip().splitlines()]
902 905 while lines and not lines[0]:
903 906 del lines[0]
904 907 if not lines and use_dirstate:
905 908 raise util.Abort(_("empty commit message"))
906 909 text = '\n'.join(lines)
907 910
908 911 n = self.changelog.add(mn, changed + removed, text, trp, p1, p2,
909 912 user, date, extra)
910 913 self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1,
911 914 parent2=xp2)
912 915 tr.close()
913 916
914 917 if self.branchcache:
915 918 self.branchtags()
916 919
917 920 if use_dirstate or update_dirstate:
918 921 self.dirstate.setparents(n)
919 922 if use_dirstate:
920 923 for f in removed:
921 924 self.dirstate.forget(f)
922 925 valid = 1 # our dirstate updates are complete
923 926
924 927 self.hook("commit", node=hex(n), parent1=xp1, parent2=xp2)
925 928 return n
926 929 finally:
927 930 if not valid: # don't save our updated dirstate
928 931 self.dirstate.invalidate()
929 932 del tr, lock, wlock
930 933
931 934 def walk(self, node=None, files=[], match=util.always, badmatch=None):
932 935 '''
933 936 walk recursively through the directory tree or a given
934 937 changeset, finding all files matched by the match
935 938 function
936 939
937 940 results are yielded in a tuple (src, filename), where src
938 941 is one of:
939 942 'f' the file was found in the directory tree
940 943 'm' the file was only in the dirstate and not in the tree
941 944 'b' file was not found and matched badmatch
942 945 '''
943 946
944 947 if node:
945 948 fdict = dict.fromkeys(files)
946 949 # for dirstate.walk, files=['.'] means "walk the whole tree".
947 950 # follow that here, too
948 951 fdict.pop('.', None)
949 952 mdict = self.manifest.read(self.changelog.read(node)[0])
950 953 mfiles = mdict.keys()
951 954 mfiles.sort()
952 955 for fn in mfiles:
953 956 for ffn in fdict:
954 957 # match if the file is the exact name or a directory
955 958 if ffn == fn or fn.startswith("%s/" % ffn):
956 959 del fdict[ffn]
957 960 break
958 961 if match(fn):
959 962 yield 'm', fn
960 963 ffiles = fdict.keys()
961 964 ffiles.sort()
962 965 for fn in ffiles:
963 966 if badmatch and badmatch(fn):
964 967 if match(fn):
965 968 yield 'b', fn
966 969 else:
967 970 self.ui.warn(_('%s: No such file in rev %s\n')
968 971 % (self.pathto(fn), short(node)))
969 972 else:
970 973 for src, fn in self.dirstate.walk(files, match, badmatch=badmatch):
971 974 yield src, fn
972 975
973 976 def status(self, node1=None, node2=None, files=[], match=util.always,
974 977 list_ignored=False, list_clean=False, list_unknown=True):
975 978 """return status of files between two nodes or node and working directory
976 979
977 980 If node1 is None, use the first dirstate parent instead.
978 981 If node2 is None, compare node1 with working directory.
979 982 """
980 983
981 984 def fcmp(fn, getnode):
982 985 t1 = self.wread(fn)
983 986 return self.file(fn).cmp(getnode(fn), t1)
984 987
985 988 def mfmatches(node):
986 989 change = self.changelog.read(node)
987 990 mf = self.manifest.read(change[0]).copy()
988 991 for fn in mf.keys():
989 992 if not match(fn):
990 993 del mf[fn]
991 994 return mf
992 995
993 996 modified, added, removed, deleted, unknown = [], [], [], [], []
994 997 ignored, clean = [], []
995 998
996 999 compareworking = False
997 1000 if not node1 or (not node2 and node1 == self.dirstate.parents()[0]):
998 1001 compareworking = True
999 1002
1000 1003 if not compareworking:
1001 1004 # read the manifest from node1 before the manifest from node2,
1002 1005 # so that we'll hit the manifest cache if we're going through
1003 1006 # all the revisions in parent->child order.
1004 1007 mf1 = mfmatches(node1)
1005 1008
1006 1009 # are we comparing the working directory?
1007 1010 if not node2:
1008 1011 (lookup, modified, added, removed, deleted, unknown,
1009 1012 ignored, clean) = self.dirstate.status(files, match,
1010 1013 list_ignored, list_clean,
1011 1014 list_unknown)
1012 1015
1013 1016 # are we comparing working dir against its parent?
1014 1017 if compareworking:
1015 1018 if lookup:
1016 1019 fixup = []
1017 1020 # do a full compare of any files that might have changed
1018 1021 ctx = self.changectx()
1019 1022 mexec = lambda f: 'x' in ctx.fileflags(f)
1020 1023 mlink = lambda f: 'l' in ctx.fileflags(f)
1021 1024 is_exec = util.execfunc(self.root, mexec)
1022 1025 is_link = util.linkfunc(self.root, mlink)
1023 1026 def flags(f):
1024 1027 return is_link(f) and 'l' or is_exec(f) and 'x' or ''
1025 1028 for f in lookup:
1026 1029 if (f not in ctx or flags(f) != ctx.fileflags(f)
1027 1030 or ctx[f].cmp(self.wread(f))):
1028 1031 modified.append(f)
1029 1032 else:
1030 1033 fixup.append(f)
1031 1034 if list_clean:
1032 1035 clean.append(f)
1033 1036
1034 1037 # update dirstate for files that are actually clean
1035 1038 if fixup:
1036 1039 wlock = None
1037 1040 try:
1038 1041 try:
1039 1042 wlock = self.wlock(False)
1040 1043 except lock.LockException:
1041 1044 pass
1042 1045 if wlock:
1043 1046 for f in fixup:
1044 1047 self.dirstate.normal(f)
1045 1048 finally:
1046 1049 del wlock
1047 1050 else:
1048 1051 # we are comparing working dir against non-parent
1049 1052 # generate a pseudo-manifest for the working dir
1050 1053 # XXX: create it in dirstate.py ?
1051 1054 mf2 = mfmatches(self.dirstate.parents()[0])
1052 1055 is_exec = util.execfunc(self.root, mf2.execf)
1053 1056 is_link = util.linkfunc(self.root, mf2.linkf)
1054 1057 for f in lookup + modified + added:
1055 1058 mf2[f] = ""
1056 1059 mf2.set(f, is_exec(f), is_link(f))
1057 1060 for f in removed:
1058 1061 if f in mf2:
1059 1062 del mf2[f]
1060 1063
1061 1064 else:
1062 1065 # we are comparing two revisions
1063 1066 mf2 = mfmatches(node2)
1064 1067
1065 1068 if not compareworking:
1066 1069 # flush lists from dirstate before comparing manifests
1067 1070 modified, added, clean = [], [], []
1068 1071
1069 1072 # make sure to sort the files so we talk to the disk in a
1070 1073 # reasonable order
1071 1074 mf2keys = mf2.keys()
1072 1075 mf2keys.sort()
1073 1076 getnode = lambda fn: mf1.get(fn, nullid)
1074 1077 for fn in mf2keys:
1075 1078 if fn in mf1:
1076 1079 if (mf1.flags(fn) != mf2.flags(fn) or
1077 1080 (mf1[fn] != mf2[fn] and
1078 1081 (mf2[fn] != "" or fcmp(fn, getnode)))):
1079 1082 modified.append(fn)
1080 1083 elif list_clean:
1081 1084 clean.append(fn)
1082 1085 del mf1[fn]
1083 1086 else:
1084 1087 added.append(fn)
1085 1088
1086 1089 removed = mf1.keys()
1087 1090
1088 1091 # sort and return results:
1089 1092 for l in modified, added, removed, deleted, unknown, ignored, clean:
1090 1093 l.sort()
1091 1094 return (modified, added, removed, deleted, unknown, ignored, clean)
1092 1095
1093 1096 def add(self, list):
1094 1097 wlock = self.wlock()
1095 1098 try:
1096 1099 rejected = []
1097 1100 for f in list:
1098 1101 p = self.wjoin(f)
1099 1102 try:
1100 1103 st = os.lstat(p)
1101 1104 except:
1102 1105 self.ui.warn(_("%s does not exist!\n") % f)
1103 1106 rejected.append(f)
1104 1107 continue
1105 1108 if st.st_size > 10000000:
1106 1109 self.ui.warn(_("%s: files over 10MB may cause memory and"
1107 1110 " performance problems\n"
1108 1111 "(use 'hg revert %s' to unadd the file)\n")
1109 1112 % (f, f))
1110 1113 if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)):
1111 1114 self.ui.warn(_("%s not added: only files and symlinks "
1112 1115 "supported currently\n") % f)
1113 1116 rejected.append(p)
1114 1117 elif self.dirstate[f] in 'amn':
1115 1118 self.ui.warn(_("%s already tracked!\n") % f)
1116 1119 elif self.dirstate[f] == 'r':
1117 1120 self.dirstate.normallookup(f)
1118 1121 else:
1119 1122 self.dirstate.add(f)
1120 1123 return rejected
1121 1124 finally:
1122 1125 del wlock
1123 1126
1124 1127 def forget(self, list):
1125 1128 wlock = self.wlock()
1126 1129 try:
1127 1130 for f in list:
1128 1131 if self.dirstate[f] != 'a':
1129 1132 self.ui.warn(_("%s not added!\n") % f)
1130 1133 else:
1131 1134 self.dirstate.forget(f)
1132 1135 finally:
1133 1136 del wlock
1134 1137
1135 1138 def remove(self, list, unlink=False):
1136 1139 wlock = None
1137 1140 try:
1138 1141 if unlink:
1139 1142 for f in list:
1140 1143 try:
1141 1144 util.unlink(self.wjoin(f))
1142 1145 except OSError, inst:
1143 1146 if inst.errno != errno.ENOENT:
1144 1147 raise
1145 1148 wlock = self.wlock()
1146 1149 for f in list:
1147 1150 if unlink and os.path.exists(self.wjoin(f)):
1148 1151 self.ui.warn(_("%s still exists!\n") % f)
1149 1152 elif self.dirstate[f] == 'a':
1150 1153 self.dirstate.forget(f)
1151 1154 elif f not in self.dirstate:
1152 1155 self.ui.warn(_("%s not tracked!\n") % f)
1153 1156 else:
1154 1157 self.dirstate.remove(f)
1155 1158 finally:
1156 1159 del wlock
1157 1160
1158 1161 def undelete(self, list):
1159 1162 wlock = None
1160 1163 try:
1161 1164 manifests = [self.manifest.read(self.changelog.read(p)[0])
1162 1165 for p in self.dirstate.parents() if p != nullid]
1163 1166 wlock = self.wlock()
1164 1167 for f in list:
1165 1168 if self.dirstate[f] != 'r':
1166 1169 self.ui.warn("%s not removed!\n" % f)
1167 1170 else:
1168 1171 m = f in manifests[0] and manifests[0] or manifests[1]
1169 1172 t = self.file(f).read(m[f])
1170 1173 self.wwrite(f, t, m.flags(f))
1171 1174 self.dirstate.normal(f)
1172 1175 finally:
1173 1176 del wlock
1174 1177
1175 1178 def copy(self, source, dest):
1176 1179 wlock = None
1177 1180 try:
1178 1181 p = self.wjoin(dest)
1179 1182 if not (os.path.exists(p) or os.path.islink(p)):
1180 1183 self.ui.warn(_("%s does not exist!\n") % dest)
1181 1184 elif not (os.path.isfile(p) or os.path.islink(p)):
1182 1185 self.ui.warn(_("copy failed: %s is not a file or a "
1183 1186 "symbolic link\n") % dest)
1184 1187 else:
1185 1188 wlock = self.wlock()
1186 1189 if dest not in self.dirstate:
1187 1190 self.dirstate.add(dest)
1188 1191 self.dirstate.copy(source, dest)
1189 1192 finally:
1190 1193 del wlock
1191 1194
1192 1195 def heads(self, start=None):
1193 1196 heads = self.changelog.heads(start)
1194 1197 # sort the output in rev descending order
1195 1198 heads = [(-self.changelog.rev(h), h) for h in heads]
1196 1199 heads.sort()
1197 1200 return [n for (r, n) in heads]
1198 1201
1199 1202 def branchheads(self, branch, start=None):
1200 1203 branches = self.branchtags()
1201 1204 if branch not in branches:
1202 1205 return []
1203 1206 # The basic algorithm is this:
1204 1207 #
1205 1208 # Start from the branch tip since there are no later revisions that can
1206 1209 # possibly be in this branch, and the tip is a guaranteed head.
1207 1210 #
1208 1211 # Remember the tip's parents as the first ancestors, since these by
1209 1212 # definition are not heads.
1210 1213 #
1211 1214 # Step backwards from the brach tip through all the revisions. We are
1212 1215 # guaranteed by the rules of Mercurial that we will now be visiting the
1213 1216 # nodes in reverse topological order (children before parents).
1214 1217 #
1215 1218 # If a revision is one of the ancestors of a head then we can toss it
1216 1219 # out of the ancestors set (we've already found it and won't be
1217 1220 # visiting it again) and put its parents in the ancestors set.
1218 1221 #
1219 1222 # Otherwise, if a revision is in the branch it's another head, since it
1220 1223 # wasn't in the ancestor list of an existing head. So add it to the
1221 1224 # head list, and add its parents to the ancestor list.
1222 1225 #
1223 1226 # If it is not in the branch ignore it.
1224 1227 #
1225 1228 # Once we have a list of heads, use nodesbetween to filter out all the
1226 1229 # heads that cannot be reached from startrev. There may be a more
1227 1230 # efficient way to do this as part of the previous algorithm.
1228 1231
1229 1232 set = util.set
1230 1233 heads = [self.changelog.rev(branches[branch])]
1231 1234 # Don't care if ancestors contains nullrev or not.
1232 1235 ancestors = set(self.changelog.parentrevs(heads[0]))
1233 1236 for rev in xrange(heads[0] - 1, nullrev, -1):
1234 1237 if rev in ancestors:
1235 1238 ancestors.update(self.changelog.parentrevs(rev))
1236 1239 ancestors.remove(rev)
1237 1240 elif self.changectx(rev).branch() == branch:
1238 1241 heads.append(rev)
1239 1242 ancestors.update(self.changelog.parentrevs(rev))
1240 1243 heads = [self.changelog.node(rev) for rev in heads]
1241 1244 if start is not None:
1242 1245 heads = self.changelog.nodesbetween([start], heads)[2]
1243 1246 return heads
1244 1247
1245 1248 def branches(self, nodes):
1246 1249 if not nodes:
1247 1250 nodes = [self.changelog.tip()]
1248 1251 b = []
1249 1252 for n in nodes:
1250 1253 t = n
1251 1254 while 1:
1252 1255 p = self.changelog.parents(n)
1253 1256 if p[1] != nullid or p[0] == nullid:
1254 1257 b.append((t, n, p[0], p[1]))
1255 1258 break
1256 1259 n = p[0]
1257 1260 return b
1258 1261
1259 1262 def between(self, pairs):
1260 1263 r = []
1261 1264
1262 1265 for top, bottom in pairs:
1263 1266 n, l, i = top, [], 0
1264 1267 f = 1
1265 1268
1266 1269 while n != bottom:
1267 1270 p = self.changelog.parents(n)[0]
1268 1271 if i == f:
1269 1272 l.append(n)
1270 1273 f = f * 2
1271 1274 n = p
1272 1275 i += 1
1273 1276
1274 1277 r.append(l)
1275 1278
1276 1279 return r
1277 1280
1278 1281 def findincoming(self, remote, base=None, heads=None, force=False):
1279 1282 """Return list of roots of the subsets of missing nodes from remote
1280 1283
1281 1284 If base dict is specified, assume that these nodes and their parents
1282 1285 exist on the remote side and that no child of a node of base exists
1283 1286 in both remote and self.
1284 1287 Furthermore base will be updated to include the nodes that exists
1285 1288 in self and remote but no children exists in self and remote.
1286 1289 If a list of heads is specified, return only nodes which are heads
1287 1290 or ancestors of these heads.
1288 1291
1289 1292 All the ancestors of base are in self and in remote.
1290 1293 All the descendants of the list returned are missing in self.
1291 1294 (and so we know that the rest of the nodes are missing in remote, see
1292 1295 outgoing)
1293 1296 """
1294 1297 m = self.changelog.nodemap
1295 1298 search = []
1296 1299 fetch = {}
1297 1300 seen = {}
1298 1301 seenbranch = {}
1299 1302 if base == None:
1300 1303 base = {}
1301 1304
1302 1305 if not heads:
1303 1306 heads = remote.heads()
1304 1307
1305 1308 if self.changelog.tip() == nullid:
1306 1309 base[nullid] = 1
1307 1310 if heads != [nullid]:
1308 1311 return [nullid]
1309 1312 return []
1310 1313
1311 1314 # assume we're closer to the tip than the root
1312 1315 # and start by examining the heads
1313 1316 self.ui.status(_("searching for changes\n"))
1314 1317
1315 1318 unknown = []
1316 1319 for h in heads:
1317 1320 if h not in m:
1318 1321 unknown.append(h)
1319 1322 else:
1320 1323 base[h] = 1
1321 1324
1322 1325 if not unknown:
1323 1326 return []
1324 1327
1325 1328 req = dict.fromkeys(unknown)
1326 1329 reqcnt = 0
1327 1330
1328 1331 # search through remote branches
1329 1332 # a 'branch' here is a linear segment of history, with four parts:
1330 1333 # head, root, first parent, second parent
1331 1334 # (a branch always has two parents (or none) by definition)
1332 1335 unknown = remote.branches(unknown)
1333 1336 while unknown:
1334 1337 r = []
1335 1338 while unknown:
1336 1339 n = unknown.pop(0)
1337 1340 if n[0] in seen:
1338 1341 continue
1339 1342
1340 1343 self.ui.debug(_("examining %s:%s\n")
1341 1344 % (short(n[0]), short(n[1])))
1342 1345 if n[0] == nullid: # found the end of the branch
1343 1346 pass
1344 1347 elif n in seenbranch:
1345 1348 self.ui.debug(_("branch already found\n"))
1346 1349 continue
1347 1350 elif n[1] and n[1] in m: # do we know the base?
1348 1351 self.ui.debug(_("found incomplete branch %s:%s\n")
1349 1352 % (short(n[0]), short(n[1])))
1350 1353 search.append(n) # schedule branch range for scanning
1351 1354 seenbranch[n] = 1
1352 1355 else:
1353 1356 if n[1] not in seen and n[1] not in fetch:
1354 1357 if n[2] in m and n[3] in m:
1355 1358 self.ui.debug(_("found new changeset %s\n") %
1356 1359 short(n[1]))
1357 1360 fetch[n[1]] = 1 # earliest unknown
1358 1361 for p in n[2:4]:
1359 1362 if p in m:
1360 1363 base[p] = 1 # latest known
1361 1364
1362 1365 for p in n[2:4]:
1363 1366 if p not in req and p not in m:
1364 1367 r.append(p)
1365 1368 req[p] = 1
1366 1369 seen[n[0]] = 1
1367 1370
1368 1371 if r:
1369 1372 reqcnt += 1
1370 1373 self.ui.debug(_("request %d: %s\n") %
1371 1374 (reqcnt, " ".join(map(short, r))))
1372 1375 for p in xrange(0, len(r), 10):
1373 1376 for b in remote.branches(r[p:p+10]):
1374 1377 self.ui.debug(_("received %s:%s\n") %
1375 1378 (short(b[0]), short(b[1])))
1376 1379 unknown.append(b)
1377 1380
1378 1381 # do binary search on the branches we found
1379 1382 while search:
1380 1383 n = search.pop(0)
1381 1384 reqcnt += 1
1382 1385 l = remote.between([(n[0], n[1])])[0]
1383 1386 l.append(n[1])
1384 1387 p = n[0]
1385 1388 f = 1
1386 1389 for i in l:
1387 1390 self.ui.debug(_("narrowing %d:%d %s\n") % (f, len(l), short(i)))
1388 1391 if i in m:
1389 1392 if f <= 2:
1390 1393 self.ui.debug(_("found new branch changeset %s\n") %
1391 1394 short(p))
1392 1395 fetch[p] = 1
1393 1396 base[i] = 1
1394 1397 else:
1395 1398 self.ui.debug(_("narrowed branch search to %s:%s\n")
1396 1399 % (short(p), short(i)))
1397 1400 search.append((p, i))
1398 1401 break
1399 1402 p, f = i, f * 2
1400 1403
1401 1404 # sanity check our fetch list
1402 1405 for f in fetch.keys():
1403 1406 if f in m:
1404 1407 raise repo.RepoError(_("already have changeset ") + short(f[:4]))
1405 1408
1406 1409 if base.keys() == [nullid]:
1407 1410 if force:
1408 1411 self.ui.warn(_("warning: repository is unrelated\n"))
1409 1412 else:
1410 1413 raise util.Abort(_("repository is unrelated"))
1411 1414
1412 1415 self.ui.debug(_("found new changesets starting at ") +
1413 1416 " ".join([short(f) for f in fetch]) + "\n")
1414 1417
1415 1418 self.ui.debug(_("%d total queries\n") % reqcnt)
1416 1419
1417 1420 return fetch.keys()
1418 1421
1419 1422 def findoutgoing(self, remote, base=None, heads=None, force=False):
1420 1423 """Return list of nodes that are roots of subsets not in remote
1421 1424
1422 1425 If base dict is specified, assume that these nodes and their parents
1423 1426 exist on the remote side.
1424 1427 If a list of heads is specified, return only nodes which are heads
1425 1428 or ancestors of these heads, and return a second element which
1426 1429 contains all remote heads which get new children.
1427 1430 """
1428 1431 if base == None:
1429 1432 base = {}
1430 1433 self.findincoming(remote, base, heads, force=force)
1431 1434
1432 1435 self.ui.debug(_("common changesets up to ")
1433 1436 + " ".join(map(short, base.keys())) + "\n")
1434 1437
1435 1438 remain = dict.fromkeys(self.changelog.nodemap)
1436 1439
1437 1440 # prune everything remote has from the tree
1438 1441 del remain[nullid]
1439 1442 remove = base.keys()
1440 1443 while remove:
1441 1444 n = remove.pop(0)
1442 1445 if n in remain:
1443 1446 del remain[n]
1444 1447 for p in self.changelog.parents(n):
1445 1448 remove.append(p)
1446 1449
1447 1450 # find every node whose parents have been pruned
1448 1451 subset = []
1449 1452 # find every remote head that will get new children
1450 1453 updated_heads = {}
1451 1454 for n in remain:
1452 1455 p1, p2 = self.changelog.parents(n)
1453 1456 if p1 not in remain and p2 not in remain:
1454 1457 subset.append(n)
1455 1458 if heads:
1456 1459 if p1 in heads:
1457 1460 updated_heads[p1] = True
1458 1461 if p2 in heads:
1459 1462 updated_heads[p2] = True
1460 1463
1461 1464 # this is the set of all roots we have to push
1462 1465 if heads:
1463 1466 return subset, updated_heads.keys()
1464 1467 else:
1465 1468 return subset
1466 1469
1467 1470 def pull(self, remote, heads=None, force=False):
1468 1471 lock = self.lock()
1469 1472 try:
1470 1473 fetch = self.findincoming(remote, heads=heads, force=force)
1471 1474 if fetch == [nullid]:
1472 1475 self.ui.status(_("requesting all changes\n"))
1473 1476
1474 1477 if not fetch:
1475 1478 self.ui.status(_("no changes found\n"))
1476 1479 return 0
1477 1480
1478 1481 if heads is None:
1479 1482 cg = remote.changegroup(fetch, 'pull')
1480 1483 else:
1481 1484 if 'changegroupsubset' not in remote.capabilities:
1482 1485 raise util.Abort(_("Partial pull cannot be done because other repository doesn't support changegroupsubset."))
1483 1486 cg = remote.changegroupsubset(fetch, heads, 'pull')
1484 1487 return self.addchangegroup(cg, 'pull', remote.url())
1485 1488 finally:
1486 1489 del lock
1487 1490
1488 1491 def push(self, remote, force=False, revs=None):
1489 1492 # there are two ways to push to remote repo:
1490 1493 #
1491 1494 # addchangegroup assumes local user can lock remote
1492 1495 # repo (local filesystem, old ssh servers).
1493 1496 #
1494 1497 # unbundle assumes local user cannot lock remote repo (new ssh
1495 1498 # servers, http servers).
1496 1499
1497 1500 if remote.capable('unbundle'):
1498 1501 return self.push_unbundle(remote, force, revs)
1499 1502 return self.push_addchangegroup(remote, force, revs)
1500 1503
1501 1504 def prepush(self, remote, force, revs):
1502 1505 base = {}
1503 1506 remote_heads = remote.heads()
1504 1507 inc = self.findincoming(remote, base, remote_heads, force=force)
1505 1508
1506 1509 update, updated_heads = self.findoutgoing(remote, base, remote_heads)
1507 1510 if revs is not None:
1508 1511 msng_cl, bases, heads = self.changelog.nodesbetween(update, revs)
1509 1512 else:
1510 1513 bases, heads = update, self.changelog.heads()
1511 1514
1512 1515 if not bases:
1513 1516 self.ui.status(_("no changes found\n"))
1514 1517 return None, 1
1515 1518 elif not force:
1516 1519 # check if we're creating new remote heads
1517 1520 # to be a remote head after push, node must be either
1518 1521 # - unknown locally
1519 1522 # - a local outgoing head descended from update
1520 1523 # - a remote head that's known locally and not
1521 1524 # ancestral to an outgoing head
1522 1525
1523 1526 warn = 0
1524 1527
1525 1528 if remote_heads == [nullid]:
1526 1529 warn = 0
1527 1530 elif not revs and len(heads) > len(remote_heads):
1528 1531 warn = 1
1529 1532 else:
1530 1533 newheads = list(heads)
1531 1534 for r in remote_heads:
1532 1535 if r in self.changelog.nodemap:
1533 1536 desc = self.changelog.heads(r, heads)
1534 1537 l = [h for h in heads if h in desc]
1535 1538 if not l:
1536 1539 newheads.append(r)
1537 1540 else:
1538 1541 newheads.append(r)
1539 1542 if len(newheads) > len(remote_heads):
1540 1543 warn = 1
1541 1544
1542 1545 if warn:
1543 1546 self.ui.warn(_("abort: push creates new remote heads!\n"))
1544 1547 self.ui.status(_("(did you forget to merge?"
1545 1548 " use push -f to force)\n"))
1546 1549 return None, 0
1547 1550 elif inc:
1548 1551 self.ui.warn(_("note: unsynced remote changes!\n"))
1549 1552
1550 1553
1551 1554 if revs is None:
1552 1555 cg = self.changegroup(update, 'push')
1553 1556 else:
1554 1557 cg = self.changegroupsubset(update, revs, 'push')
1555 1558 return cg, remote_heads
1556 1559
1557 1560 def push_addchangegroup(self, remote, force, revs):
1558 1561 lock = remote.lock()
1559 1562 try:
1560 1563 ret = self.prepush(remote, force, revs)
1561 1564 if ret[0] is not None:
1562 1565 cg, remote_heads = ret
1563 1566 return remote.addchangegroup(cg, 'push', self.url())
1564 1567 return ret[1]
1565 1568 finally:
1566 1569 del lock
1567 1570
1568 1571 def push_unbundle(self, remote, force, revs):
1569 1572 # local repo finds heads on server, finds out what revs it
1570 1573 # must push. once revs transferred, if server finds it has
1571 1574 # different heads (someone else won commit/push race), server
1572 1575 # aborts.
1573 1576
1574 1577 ret = self.prepush(remote, force, revs)
1575 1578 if ret[0] is not None:
1576 1579 cg, remote_heads = ret
1577 1580 if force: remote_heads = ['force']
1578 1581 return remote.unbundle(cg, remote_heads, 'push')
1579 1582 return ret[1]
1580 1583
1581 1584 def changegroupinfo(self, nodes, source):
1582 1585 if self.ui.verbose or source == 'bundle':
1583 1586 self.ui.status(_("%d changesets found\n") % len(nodes))
1584 1587 if self.ui.debugflag:
1585 1588 self.ui.debug(_("List of changesets:\n"))
1586 1589 for node in nodes:
1587 1590 self.ui.debug("%s\n" % hex(node))
1588 1591
1589 1592 def changegroupsubset(self, bases, heads, source, extranodes=None):
1590 1593 """This function generates a changegroup consisting of all the nodes
1591 1594 that are descendents of any of the bases, and ancestors of any of
1592 1595 the heads.
1593 1596
1594 1597 It is fairly complex as determining which filenodes and which
1595 1598 manifest nodes need to be included for the changeset to be complete
1596 1599 is non-trivial.
1597 1600
1598 1601 Another wrinkle is doing the reverse, figuring out which changeset in
1599 1602 the changegroup a particular filenode or manifestnode belongs to.
1600 1603
1601 1604 The caller can specify some nodes that must be included in the
1602 1605 changegroup using the extranodes argument. It should be a dict
1603 1606 where the keys are the filenames (or 1 for the manifest), and the
1604 1607 values are lists of (node, linknode) tuples, where node is a wanted
1605 1608 node and linknode is the changelog node that should be transmitted as
1606 1609 the linkrev.
1607 1610 """
1608 1611
1609 1612 self.hook('preoutgoing', throw=True, source=source)
1610 1613
1611 1614 # Set up some initial variables
1612 1615 # Make it easy to refer to self.changelog
1613 1616 cl = self.changelog
1614 1617 # msng is short for missing - compute the list of changesets in this
1615 1618 # changegroup.
1616 1619 msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads)
1617 1620 self.changegroupinfo(msng_cl_lst, source)
1618 1621 # Some bases may turn out to be superfluous, and some heads may be
1619 1622 # too. nodesbetween will return the minimal set of bases and heads
1620 1623 # necessary to re-create the changegroup.
1621 1624
1622 1625 # Known heads are the list of heads that it is assumed the recipient
1623 1626 # of this changegroup will know about.
1624 1627 knownheads = {}
1625 1628 # We assume that all parents of bases are known heads.
1626 1629 for n in bases:
1627 1630 for p in cl.parents(n):
1628 1631 if p != nullid:
1629 1632 knownheads[p] = 1
1630 1633 knownheads = knownheads.keys()
1631 1634 if knownheads:
1632 1635 # Now that we know what heads are known, we can compute which
1633 1636 # changesets are known. The recipient must know about all
1634 1637 # changesets required to reach the known heads from the null
1635 1638 # changeset.
1636 1639 has_cl_set, junk, junk = cl.nodesbetween(None, knownheads)
1637 1640 junk = None
1638 1641 # Transform the list into an ersatz set.
1639 1642 has_cl_set = dict.fromkeys(has_cl_set)
1640 1643 else:
1641 1644 # If there were no known heads, the recipient cannot be assumed to
1642 1645 # know about any changesets.
1643 1646 has_cl_set = {}
1644 1647
1645 1648 # Make it easy to refer to self.manifest
1646 1649 mnfst = self.manifest
1647 1650 # We don't know which manifests are missing yet
1648 1651 msng_mnfst_set = {}
1649 1652 # Nor do we know which filenodes are missing.
1650 1653 msng_filenode_set = {}
1651 1654
1652 1655 junk = mnfst.index[mnfst.count() - 1] # Get around a bug in lazyindex
1653 1656 junk = None
1654 1657
1655 1658 # A changeset always belongs to itself, so the changenode lookup
1656 1659 # function for a changenode is identity.
1657 1660 def identity(x):
1658 1661 return x
1659 1662
1660 1663 # A function generating function. Sets up an environment for the
1661 1664 # inner function.
1662 1665 def cmp_by_rev_func(revlog):
1663 1666 # Compare two nodes by their revision number in the environment's
1664 1667 # revision history. Since the revision number both represents the
1665 1668 # most efficient order to read the nodes in, and represents a
1666 1669 # topological sorting of the nodes, this function is often useful.
1667 1670 def cmp_by_rev(a, b):
1668 1671 return cmp(revlog.rev(a), revlog.rev(b))
1669 1672 return cmp_by_rev
1670 1673
1671 1674 # If we determine that a particular file or manifest node must be a
1672 1675 # node that the recipient of the changegroup will already have, we can
1673 1676 # also assume the recipient will have all the parents. This function
1674 1677 # prunes them from the set of missing nodes.
1675 1678 def prune_parents(revlog, hasset, msngset):
1676 1679 haslst = hasset.keys()
1677 1680 haslst.sort(cmp_by_rev_func(revlog))
1678 1681 for node in haslst:
1679 1682 parentlst = [p for p in revlog.parents(node) if p != nullid]
1680 1683 while parentlst:
1681 1684 n = parentlst.pop()
1682 1685 if n not in hasset:
1683 1686 hasset[n] = 1
1684 1687 p = [p for p in revlog.parents(n) if p != nullid]
1685 1688 parentlst.extend(p)
1686 1689 for n in hasset:
1687 1690 msngset.pop(n, None)
1688 1691
1689 1692 # This is a function generating function used to set up an environment
1690 1693 # for the inner function to execute in.
1691 1694 def manifest_and_file_collector(changedfileset):
1692 1695 # This is an information gathering function that gathers
1693 1696 # information from each changeset node that goes out as part of
1694 1697 # the changegroup. The information gathered is a list of which
1695 1698 # manifest nodes are potentially required (the recipient may
1696 1699 # already have them) and total list of all files which were
1697 1700 # changed in any changeset in the changegroup.
1698 1701 #
1699 1702 # We also remember the first changenode we saw any manifest
1700 1703 # referenced by so we can later determine which changenode 'owns'
1701 1704 # the manifest.
1702 1705 def collect_manifests_and_files(clnode):
1703 1706 c = cl.read(clnode)
1704 1707 for f in c[3]:
1705 1708 # This is to make sure we only have one instance of each
1706 1709 # filename string for each filename.
1707 1710 changedfileset.setdefault(f, f)
1708 1711 msng_mnfst_set.setdefault(c[0], clnode)
1709 1712 return collect_manifests_and_files
1710 1713
1711 1714 # Figure out which manifest nodes (of the ones we think might be part
1712 1715 # of the changegroup) the recipient must know about and remove them
1713 1716 # from the changegroup.
1714 1717 def prune_manifests():
1715 1718 has_mnfst_set = {}
1716 1719 for n in msng_mnfst_set:
1717 1720 # If a 'missing' manifest thinks it belongs to a changenode
1718 1721 # the recipient is assumed to have, obviously the recipient
1719 1722 # must have that manifest.
1720 1723 linknode = cl.node(mnfst.linkrev(n))
1721 1724 if linknode in has_cl_set:
1722 1725 has_mnfst_set[n] = 1
1723 1726 prune_parents(mnfst, has_mnfst_set, msng_mnfst_set)
1724 1727
1725 1728 # Use the information collected in collect_manifests_and_files to say
1726 1729 # which changenode any manifestnode belongs to.
1727 1730 def lookup_manifest_link(mnfstnode):
1728 1731 return msng_mnfst_set[mnfstnode]
1729 1732
1730 1733 # A function generating function that sets up the initial environment
1731 1734 # the inner function.
1732 1735 def filenode_collector(changedfiles):
1733 1736 next_rev = [0]
1734 1737 # This gathers information from each manifestnode included in the
1735 1738 # changegroup about which filenodes the manifest node references
1736 1739 # so we can include those in the changegroup too.
1737 1740 #
1738 1741 # It also remembers which changenode each filenode belongs to. It
1739 1742 # does this by assuming the a filenode belongs to the changenode
1740 1743 # the first manifest that references it belongs to.
1741 1744 def collect_msng_filenodes(mnfstnode):
1742 1745 r = mnfst.rev(mnfstnode)
1743 1746 if r == next_rev[0]:
1744 1747 # If the last rev we looked at was the one just previous,
1745 1748 # we only need to see a diff.
1746 1749 deltamf = mnfst.readdelta(mnfstnode)
1747 1750 # For each line in the delta
1748 1751 for f, fnode in deltamf.items():
1749 1752 f = changedfiles.get(f, None)
1750 1753 # And if the file is in the list of files we care
1751 1754 # about.
1752 1755 if f is not None:
1753 1756 # Get the changenode this manifest belongs to
1754 1757 clnode = msng_mnfst_set[mnfstnode]
1755 1758 # Create the set of filenodes for the file if
1756 1759 # there isn't one already.
1757 1760 ndset = msng_filenode_set.setdefault(f, {})
1758 1761 # And set the filenode's changelog node to the
1759 1762 # manifest's if it hasn't been set already.
1760 1763 ndset.setdefault(fnode, clnode)
1761 1764 else:
1762 1765 # Otherwise we need a full manifest.
1763 1766 m = mnfst.read(mnfstnode)
1764 1767 # For every file in we care about.
1765 1768 for f in changedfiles:
1766 1769 fnode = m.get(f, None)
1767 1770 # If it's in the manifest
1768 1771 if fnode is not None:
1769 1772 # See comments above.
1770 1773 clnode = msng_mnfst_set[mnfstnode]
1771 1774 ndset = msng_filenode_set.setdefault(f, {})
1772 1775 ndset.setdefault(fnode, clnode)
1773 1776 # Remember the revision we hope to see next.
1774 1777 next_rev[0] = r + 1
1775 1778 return collect_msng_filenodes
1776 1779
1777 1780 # We have a list of filenodes we think we need for a file, lets remove
1778 1781 # all those we now the recipient must have.
1779 1782 def prune_filenodes(f, filerevlog):
1780 1783 msngset = msng_filenode_set[f]
1781 1784 hasset = {}
1782 1785 # If a 'missing' filenode thinks it belongs to a changenode we
1783 1786 # assume the recipient must have, then the recipient must have
1784 1787 # that filenode.
1785 1788 for n in msngset:
1786 1789 clnode = cl.node(filerevlog.linkrev(n))
1787 1790 if clnode in has_cl_set:
1788 1791 hasset[n] = 1
1789 1792 prune_parents(filerevlog, hasset, msngset)
1790 1793
1791 1794 # A function generator function that sets up the a context for the
1792 1795 # inner function.
1793 1796 def lookup_filenode_link_func(fname):
1794 1797 msngset = msng_filenode_set[fname]
1795 1798 # Lookup the changenode the filenode belongs to.
1796 1799 def lookup_filenode_link(fnode):
1797 1800 return msngset[fnode]
1798 1801 return lookup_filenode_link
1799 1802
1800 1803 # Add the nodes that were explicitly requested.
1801 1804 def add_extra_nodes(name, nodes):
1802 1805 if not extranodes or name not in extranodes:
1803 1806 return
1804 1807
1805 1808 for node, linknode in extranodes[name]:
1806 1809 if node not in nodes:
1807 1810 nodes[node] = linknode
1808 1811
1809 1812 # Now that we have all theses utility functions to help out and
1810 1813 # logically divide up the task, generate the group.
1811 1814 def gengroup():
1812 1815 # The set of changed files starts empty.
1813 1816 changedfiles = {}
1814 1817 # Create a changenode group generator that will call our functions
1815 1818 # back to lookup the owning changenode and collect information.
1816 1819 group = cl.group(msng_cl_lst, identity,
1817 1820 manifest_and_file_collector(changedfiles))
1818 1821 for chnk in group:
1819 1822 yield chnk
1820 1823
1821 1824 # The list of manifests has been collected by the generator
1822 1825 # calling our functions back.
1823 1826 prune_manifests()
1824 1827 add_extra_nodes(1, msng_mnfst_set)
1825 1828 msng_mnfst_lst = msng_mnfst_set.keys()
1826 1829 # Sort the manifestnodes by revision number.
1827 1830 msng_mnfst_lst.sort(cmp_by_rev_func(mnfst))
1828 1831 # Create a generator for the manifestnodes that calls our lookup
1829 1832 # and data collection functions back.
1830 1833 group = mnfst.group(msng_mnfst_lst, lookup_manifest_link,
1831 1834 filenode_collector(changedfiles))
1832 1835 for chnk in group:
1833 1836 yield chnk
1834 1837
1835 1838 # These are no longer needed, dereference and toss the memory for
1836 1839 # them.
1837 1840 msng_mnfst_lst = None
1838 1841 msng_mnfst_set.clear()
1839 1842
1840 1843 if extranodes:
1841 1844 for fname in extranodes:
1842 1845 if isinstance(fname, int):
1843 1846 continue
1844 1847 add_extra_nodes(fname,
1845 1848 msng_filenode_set.setdefault(fname, {}))
1846 1849 changedfiles[fname] = 1
1847 1850 changedfiles = changedfiles.keys()
1848 1851 changedfiles.sort()
1849 1852 # Go through all our files in order sorted by name.
1850 1853 for fname in changedfiles:
1851 1854 filerevlog = self.file(fname)
1852 1855 if filerevlog.count() == 0:
1853 1856 raise util.Abort(_("empty or missing revlog for %s") % fname)
1854 1857 # Toss out the filenodes that the recipient isn't really
1855 1858 # missing.
1856 1859 if fname in msng_filenode_set:
1857 1860 prune_filenodes(fname, filerevlog)
1858 1861 msng_filenode_lst = msng_filenode_set[fname].keys()
1859 1862 else:
1860 1863 msng_filenode_lst = []
1861 1864 # If any filenodes are left, generate the group for them,
1862 1865 # otherwise don't bother.
1863 1866 if len(msng_filenode_lst) > 0:
1864 1867 yield changegroup.chunkheader(len(fname))
1865 1868 yield fname
1866 1869 # Sort the filenodes by their revision #
1867 1870 msng_filenode_lst.sort(cmp_by_rev_func(filerevlog))
1868 1871 # Create a group generator and only pass in a changenode
1869 1872 # lookup function as we need to collect no information
1870 1873 # from filenodes.
1871 1874 group = filerevlog.group(msng_filenode_lst,
1872 1875 lookup_filenode_link_func(fname))
1873 1876 for chnk in group:
1874 1877 yield chnk
1875 1878 if fname in msng_filenode_set:
1876 1879 # Don't need this anymore, toss it to free memory.
1877 1880 del msng_filenode_set[fname]
1878 1881 # Signal that no more groups are left.
1879 1882 yield changegroup.closechunk()
1880 1883
1881 1884 if msng_cl_lst:
1882 1885 self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source)
1883 1886
1884 1887 return util.chunkbuffer(gengroup())
1885 1888
1886 1889 def changegroup(self, basenodes, source):
1887 1890 """Generate a changegroup of all nodes that we have that a recipient
1888 1891 doesn't.
1889 1892
1890 1893 This is much easier than the previous function as we can assume that
1891 1894 the recipient has any changenode we aren't sending them."""
1892 1895
1893 1896 self.hook('preoutgoing', throw=True, source=source)
1894 1897
1895 1898 cl = self.changelog
1896 1899 nodes = cl.nodesbetween(basenodes, None)[0]
1897 1900 revset = dict.fromkeys([cl.rev(n) for n in nodes])
1898 1901 self.changegroupinfo(nodes, source)
1899 1902
1900 1903 def identity(x):
1901 1904 return x
1902 1905
1903 1906 def gennodelst(revlog):
1904 1907 for r in xrange(0, revlog.count()):
1905 1908 n = revlog.node(r)
1906 1909 if revlog.linkrev(n) in revset:
1907 1910 yield n
1908 1911
1909 1912 def changed_file_collector(changedfileset):
1910 1913 def collect_changed_files(clnode):
1911 1914 c = cl.read(clnode)
1912 1915 for fname in c[3]:
1913 1916 changedfileset[fname] = 1
1914 1917 return collect_changed_files
1915 1918
1916 1919 def lookuprevlink_func(revlog):
1917 1920 def lookuprevlink(n):
1918 1921 return cl.node(revlog.linkrev(n))
1919 1922 return lookuprevlink
1920 1923
1921 1924 def gengroup():
1922 1925 # construct a list of all changed files
1923 1926 changedfiles = {}
1924 1927
1925 1928 for chnk in cl.group(nodes, identity,
1926 1929 changed_file_collector(changedfiles)):
1927 1930 yield chnk
1928 1931 changedfiles = changedfiles.keys()
1929 1932 changedfiles.sort()
1930 1933
1931 1934 mnfst = self.manifest
1932 1935 nodeiter = gennodelst(mnfst)
1933 1936 for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)):
1934 1937 yield chnk
1935 1938
1936 1939 for fname in changedfiles:
1937 1940 filerevlog = self.file(fname)
1938 1941 if filerevlog.count() == 0:
1939 1942 raise util.Abort(_("empty or missing revlog for %s") % fname)
1940 1943 nodeiter = gennodelst(filerevlog)
1941 1944 nodeiter = list(nodeiter)
1942 1945 if nodeiter:
1943 1946 yield changegroup.chunkheader(len(fname))
1944 1947 yield fname
1945 1948 lookup = lookuprevlink_func(filerevlog)
1946 1949 for chnk in filerevlog.group(nodeiter, lookup):
1947 1950 yield chnk
1948 1951
1949 1952 yield changegroup.closechunk()
1950 1953
1951 1954 if nodes:
1952 1955 self.hook('outgoing', node=hex(nodes[0]), source=source)
1953 1956
1954 1957 return util.chunkbuffer(gengroup())
1955 1958
1956 1959 def addchangegroup(self, source, srctype, url, emptyok=False):
1957 1960 """add changegroup to repo.
1958 1961
1959 1962 return values:
1960 1963 - nothing changed or no source: 0
1961 1964 - more heads than before: 1+added heads (2..n)
1962 1965 - less heads than before: -1-removed heads (-2..-n)
1963 1966 - number of heads stays the same: 1
1964 1967 """
1965 1968 def csmap(x):
1966 1969 self.ui.debug(_("add changeset %s\n") % short(x))
1967 1970 return cl.count()
1968 1971
1969 1972 def revmap(x):
1970 1973 return cl.rev(x)
1971 1974
1972 1975 if not source:
1973 1976 return 0
1974 1977
1975 1978 self.hook('prechangegroup', throw=True, source=srctype, url=url)
1976 1979
1977 1980 changesets = files = revisions = 0
1978 1981
1979 1982 # write changelog data to temp files so concurrent readers will not see
1980 1983 # inconsistent view
1981 1984 cl = self.changelog
1982 1985 cl.delayupdate()
1983 1986 oldheads = len(cl.heads())
1984 1987
1985 1988 tr = self.transaction()
1986 1989 try:
1987 1990 trp = weakref.proxy(tr)
1988 1991 # pull off the changeset group
1989 1992 self.ui.status(_("adding changesets\n"))
1990 1993 cor = cl.count() - 1
1991 1994 chunkiter = changegroup.chunkiter(source)
1992 1995 if cl.addgroup(chunkiter, csmap, trp, 1) is None and not emptyok:
1993 1996 raise util.Abort(_("received changelog group is empty"))
1994 1997 cnr = cl.count() - 1
1995 1998 changesets = cnr - cor
1996 1999
1997 2000 # pull off the manifest group
1998 2001 self.ui.status(_("adding manifests\n"))
1999 2002 chunkiter = changegroup.chunkiter(source)
2000 2003 # no need to check for empty manifest group here:
2001 2004 # if the result of the merge of 1 and 2 is the same in 3 and 4,
2002 2005 # no new manifest will be created and the manifest group will
2003 2006 # be empty during the pull
2004 2007 self.manifest.addgroup(chunkiter, revmap, trp)
2005 2008
2006 2009 # process the files
2007 2010 self.ui.status(_("adding file changes\n"))
2008 2011 while 1:
2009 2012 f = changegroup.getchunk(source)
2010 2013 if not f:
2011 2014 break
2012 2015 self.ui.debug(_("adding %s revisions\n") % f)
2013 2016 fl = self.file(f)
2014 2017 o = fl.count()
2015 2018 chunkiter = changegroup.chunkiter(source)
2016 2019 if fl.addgroup(chunkiter, revmap, trp) is None:
2017 2020 raise util.Abort(_("received file revlog group is empty"))
2018 2021 revisions += fl.count() - o
2019 2022 files += 1
2020 2023
2021 2024 # make changelog see real files again
2022 2025 cl.finalize(trp)
2023 2026
2024 2027 newheads = len(self.changelog.heads())
2025 2028 heads = ""
2026 2029 if oldheads and newheads != oldheads:
2027 2030 heads = _(" (%+d heads)") % (newheads - oldheads)
2028 2031
2029 2032 self.ui.status(_("added %d changesets"
2030 2033 " with %d changes to %d files%s\n")
2031 2034 % (changesets, revisions, files, heads))
2032 2035
2033 2036 if changesets > 0:
2034 2037 self.hook('pretxnchangegroup', throw=True,
2035 2038 node=hex(self.changelog.node(cor+1)), source=srctype,
2036 2039 url=url)
2037 2040
2038 2041 tr.close()
2039 2042 finally:
2040 2043 del tr
2041 2044
2042 2045 if changesets > 0:
2043 2046 # forcefully update the on-disk branch cache
2044 2047 self.ui.debug(_("updating the branch cache\n"))
2045 2048 self.branchtags()
2046 2049 self.hook("changegroup", node=hex(self.changelog.node(cor+1)),
2047 2050 source=srctype, url=url)
2048 2051
2049 2052 for i in xrange(cor + 1, cnr + 1):
2050 2053 self.hook("incoming", node=hex(self.changelog.node(i)),
2051 2054 source=srctype, url=url)
2052 2055
2053 2056 # never return 0 here:
2054 2057 if newheads < oldheads:
2055 2058 return newheads - oldheads - 1
2056 2059 else:
2057 2060 return newheads - oldheads + 1
2058 2061
2059 2062
2060 2063 def stream_in(self, remote):
2061 2064 fp = remote.stream_out()
2062 2065 l = fp.readline()
2063 2066 try:
2064 2067 resp = int(l)
2065 2068 except ValueError:
2066 2069 raise util.UnexpectedOutput(
2067 2070 _('Unexpected response from remote server:'), l)
2068 2071 if resp == 1:
2069 2072 raise util.Abort(_('operation forbidden by server'))
2070 2073 elif resp == 2:
2071 2074 raise util.Abort(_('locking the remote repository failed'))
2072 2075 elif resp != 0:
2073 2076 raise util.Abort(_('the server sent an unknown error code'))
2074 2077 self.ui.status(_('streaming all changes\n'))
2075 2078 l = fp.readline()
2076 2079 try:
2077 2080 total_files, total_bytes = map(int, l.split(' ', 1))
2078 2081 except (ValueError, TypeError):
2079 2082 raise util.UnexpectedOutput(
2080 2083 _('Unexpected response from remote server:'), l)
2081 2084 self.ui.status(_('%d files to transfer, %s of data\n') %
2082 2085 (total_files, util.bytecount(total_bytes)))
2083 2086 start = time.time()
2084 2087 for i in xrange(total_files):
2085 2088 # XXX doesn't support '\n' or '\r' in filenames
2086 2089 l = fp.readline()
2087 2090 try:
2088 2091 name, size = l.split('\0', 1)
2089 2092 size = int(size)
2090 2093 except ValueError, TypeError:
2091 2094 raise util.UnexpectedOutput(
2092 2095 _('Unexpected response from remote server:'), l)
2093 2096 self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size)))
2094 2097 ofp = self.sopener(name, 'w')
2095 2098 for chunk in util.filechunkiter(fp, limit=size):
2096 2099 ofp.write(chunk)
2097 2100 ofp.close()
2098 2101 elapsed = time.time() - start
2099 2102 if elapsed <= 0:
2100 2103 elapsed = 0.001
2101 2104 self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') %
2102 2105 (util.bytecount(total_bytes), elapsed,
2103 2106 util.bytecount(total_bytes / elapsed)))
2104 2107 self.invalidate()
2105 2108 return len(self.heads()) + 1
2106 2109
2107 2110 def clone(self, remote, heads=[], stream=False):
2108 2111 '''clone remote repository.
2109 2112
2110 2113 keyword arguments:
2111 2114 heads: list of revs to clone (forces use of pull)
2112 2115 stream: use streaming clone if possible'''
2113 2116
2114 2117 # now, all clients that can request uncompressed clones can
2115 2118 # read repo formats supported by all servers that can serve
2116 2119 # them.
2117 2120
2118 2121 # if revlog format changes, client will have to check version
2119 2122 # and format flags on "stream" capability, and use
2120 2123 # uncompressed only if compatible.
2121 2124
2122 2125 if stream and not heads and remote.capable('stream'):
2123 2126 return self.stream_in(remote)
2124 2127 return self.pull(remote, heads)
2125 2128
2126 2129 # used to avoid circular references so destructors work
2127 2130 def aftertrans(files):
2128 2131 renamefiles = [tuple(t) for t in files]
2129 2132 def a():
2130 2133 for src, dest in renamefiles:
2131 2134 util.rename(src, dest)
2132 2135 return a
2133 2136
2134 2137 def instance(ui, path, create):
2135 2138 return localrepository(ui, util.drop_scheme('file', path), create)
2136 2139
2137 2140 def islocal(path):
2138 2141 return True
@@ -1,42 +1,48 b''
1 1 # repo.py - repository base classes for mercurial
2 2 #
3 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
4 4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com>
5 5 #
6 6 # This software may be used and distributed according to the terms
7 7 # of the GNU General Public License, incorporated herein by reference.
8 8
9 9 from i18n import _
10 10
11 11 class RepoError(Exception):
12 12 pass
13 13
14 14 class NoCapability(RepoError):
15 15 pass
16 16
17 17 class repository(object):
18 18 def capable(self, name):
19 19 '''tell whether repo supports named capability.
20 20 return False if not supported.
21 21 if boolean capability, return True.
22 22 if string capability, return string.'''
23 23 if name in self.capabilities:
24 24 return True
25 25 name_eq = name + '='
26 26 for cap in self.capabilities:
27 27 if cap.startswith(name_eq):
28 28 return cap[len(name_eq):]
29 29 return False
30 30
31 31 def requirecap(self, name, purpose):
32 32 '''raise an exception if the given capability is not present'''
33 33 if not self.capable(name):
34 34 raise NoCapability(_('cannot %s; remote repository does not '
35 35 'support the %r capability') %
36 36 (purpose, name))
37 37
38 38 def local(self):
39 39 return False
40 40
41 41 def cancopy(self):
42 42 return self.local()
43
44 def rjoin(self, path):
45 url = self.url()
46 if url.endswith('/'):
47 return url + path
48 return url + '/' + path
General Comments 0
You need to be logged in to leave comments. Login now