##// END OF EJS Templates
exchange: add docstring to pull()...
Gregory Szorc -
r26440:85b99217 default
parent child Browse files
Show More
@@ -1,1583 +1,1598 b''
1 # exchange.py - utility to exchange data between repos.
1 # exchange.py - utility to exchange data between repos.
2 #
2 #
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 import time
8 import time
9 from i18n import _
9 from i18n import _
10 from node import hex, nullid
10 from node import hex, nullid
11 import errno, urllib
11 import errno, urllib
12 import util, scmutil, changegroup, base85, error, store
12 import util, scmutil, changegroup, base85, error, store
13 import discovery, phases, obsolete, bookmarks as bookmod, bundle2, pushkey
13 import discovery, phases, obsolete, bookmarks as bookmod, bundle2, pushkey
14 import lock as lockmod
14 import lock as lockmod
15 import tags
15 import tags
16
16
17 def readbundle(ui, fh, fname, vfs=None):
17 def readbundle(ui, fh, fname, vfs=None):
18 header = changegroup.readexactly(fh, 4)
18 header = changegroup.readexactly(fh, 4)
19
19
20 alg = None
20 alg = None
21 if not fname:
21 if not fname:
22 fname = "stream"
22 fname = "stream"
23 if not header.startswith('HG') and header.startswith('\0'):
23 if not header.startswith('HG') and header.startswith('\0'):
24 fh = changegroup.headerlessfixup(fh, header)
24 fh = changegroup.headerlessfixup(fh, header)
25 header = "HG10"
25 header = "HG10"
26 alg = 'UN'
26 alg = 'UN'
27 elif vfs:
27 elif vfs:
28 fname = vfs.join(fname)
28 fname = vfs.join(fname)
29
29
30 magic, version = header[0:2], header[2:4]
30 magic, version = header[0:2], header[2:4]
31
31
32 if magic != 'HG':
32 if magic != 'HG':
33 raise util.Abort(_('%s: not a Mercurial bundle') % fname)
33 raise util.Abort(_('%s: not a Mercurial bundle') % fname)
34 if version == '10':
34 if version == '10':
35 if alg is None:
35 if alg is None:
36 alg = changegroup.readexactly(fh, 2)
36 alg = changegroup.readexactly(fh, 2)
37 return changegroup.cg1unpacker(fh, alg)
37 return changegroup.cg1unpacker(fh, alg)
38 elif version.startswith('2'):
38 elif version.startswith('2'):
39 return bundle2.getunbundler(ui, fh, magicstring=magic + version)
39 return bundle2.getunbundler(ui, fh, magicstring=magic + version)
40 else:
40 else:
41 raise util.Abort(_('%s: unknown bundle version %s') % (fname, version))
41 raise util.Abort(_('%s: unknown bundle version %s') % (fname, version))
42
42
43 def buildobsmarkerspart(bundler, markers):
43 def buildobsmarkerspart(bundler, markers):
44 """add an obsmarker part to the bundler with <markers>
44 """add an obsmarker part to the bundler with <markers>
45
45
46 No part is created if markers is empty.
46 No part is created if markers is empty.
47 Raises ValueError if the bundler doesn't support any known obsmarker format.
47 Raises ValueError if the bundler doesn't support any known obsmarker format.
48 """
48 """
49 if markers:
49 if markers:
50 remoteversions = bundle2.obsmarkersversion(bundler.capabilities)
50 remoteversions = bundle2.obsmarkersversion(bundler.capabilities)
51 version = obsolete.commonversion(remoteversions)
51 version = obsolete.commonversion(remoteversions)
52 if version is None:
52 if version is None:
53 raise ValueError('bundler do not support common obsmarker format')
53 raise ValueError('bundler do not support common obsmarker format')
54 stream = obsolete.encodemarkers(markers, True, version=version)
54 stream = obsolete.encodemarkers(markers, True, version=version)
55 return bundler.newpart('obsmarkers', data=stream)
55 return bundler.newpart('obsmarkers', data=stream)
56 return None
56 return None
57
57
58 def _canusebundle2(op):
58 def _canusebundle2(op):
59 """return true if a pull/push can use bundle2
59 """return true if a pull/push can use bundle2
60
60
61 Feel free to nuke this function when we drop the experimental option"""
61 Feel free to nuke this function when we drop the experimental option"""
62 return (op.repo.ui.configbool('experimental', 'bundle2-exp', True)
62 return (op.repo.ui.configbool('experimental', 'bundle2-exp', True)
63 and op.remote.capable('bundle2'))
63 and op.remote.capable('bundle2'))
64
64
65
65
66 class pushoperation(object):
66 class pushoperation(object):
67 """A object that represent a single push operation
67 """A object that represent a single push operation
68
68
69 It purpose is to carry push related state and very common operation.
69 It purpose is to carry push related state and very common operation.
70
70
71 A new should be created at the beginning of each push and discarded
71 A new should be created at the beginning of each push and discarded
72 afterward.
72 afterward.
73 """
73 """
74
74
75 def __init__(self, repo, remote, force=False, revs=None, newbranch=False,
75 def __init__(self, repo, remote, force=False, revs=None, newbranch=False,
76 bookmarks=()):
76 bookmarks=()):
77 # repo we push from
77 # repo we push from
78 self.repo = repo
78 self.repo = repo
79 self.ui = repo.ui
79 self.ui = repo.ui
80 # repo we push to
80 # repo we push to
81 self.remote = remote
81 self.remote = remote
82 # force option provided
82 # force option provided
83 self.force = force
83 self.force = force
84 # revs to be pushed (None is "all")
84 # revs to be pushed (None is "all")
85 self.revs = revs
85 self.revs = revs
86 # bookmark explicitly pushed
86 # bookmark explicitly pushed
87 self.bookmarks = bookmarks
87 self.bookmarks = bookmarks
88 # allow push of new branch
88 # allow push of new branch
89 self.newbranch = newbranch
89 self.newbranch = newbranch
90 # did a local lock get acquired?
90 # did a local lock get acquired?
91 self.locallocked = None
91 self.locallocked = None
92 # step already performed
92 # step already performed
93 # (used to check what steps have been already performed through bundle2)
93 # (used to check what steps have been already performed through bundle2)
94 self.stepsdone = set()
94 self.stepsdone = set()
95 # Integer version of the changegroup push result
95 # Integer version of the changegroup push result
96 # - None means nothing to push
96 # - None means nothing to push
97 # - 0 means HTTP error
97 # - 0 means HTTP error
98 # - 1 means we pushed and remote head count is unchanged *or*
98 # - 1 means we pushed and remote head count is unchanged *or*
99 # we have outgoing changesets but refused to push
99 # we have outgoing changesets but refused to push
100 # - other values as described by addchangegroup()
100 # - other values as described by addchangegroup()
101 self.cgresult = None
101 self.cgresult = None
102 # Boolean value for the bookmark push
102 # Boolean value for the bookmark push
103 self.bkresult = None
103 self.bkresult = None
104 # discover.outgoing object (contains common and outgoing data)
104 # discover.outgoing object (contains common and outgoing data)
105 self.outgoing = None
105 self.outgoing = None
106 # all remote heads before the push
106 # all remote heads before the push
107 self.remoteheads = None
107 self.remoteheads = None
108 # testable as a boolean indicating if any nodes are missing locally.
108 # testable as a boolean indicating if any nodes are missing locally.
109 self.incoming = None
109 self.incoming = None
110 # phases changes that must be pushed along side the changesets
110 # phases changes that must be pushed along side the changesets
111 self.outdatedphases = None
111 self.outdatedphases = None
112 # phases changes that must be pushed if changeset push fails
112 # phases changes that must be pushed if changeset push fails
113 self.fallbackoutdatedphases = None
113 self.fallbackoutdatedphases = None
114 # outgoing obsmarkers
114 # outgoing obsmarkers
115 self.outobsmarkers = set()
115 self.outobsmarkers = set()
116 # outgoing bookmarks
116 # outgoing bookmarks
117 self.outbookmarks = []
117 self.outbookmarks = []
118 # transaction manager
118 # transaction manager
119 self.trmanager = None
119 self.trmanager = None
120 # map { pushkey partid -> callback handling failure}
120 # map { pushkey partid -> callback handling failure}
121 # used to handle exception from mandatory pushkey part failure
121 # used to handle exception from mandatory pushkey part failure
122 self.pkfailcb = {}
122 self.pkfailcb = {}
123
123
124 @util.propertycache
124 @util.propertycache
125 def futureheads(self):
125 def futureheads(self):
126 """future remote heads if the changeset push succeeds"""
126 """future remote heads if the changeset push succeeds"""
127 return self.outgoing.missingheads
127 return self.outgoing.missingheads
128
128
129 @util.propertycache
129 @util.propertycache
130 def fallbackheads(self):
130 def fallbackheads(self):
131 """future remote heads if the changeset push fails"""
131 """future remote heads if the changeset push fails"""
132 if self.revs is None:
132 if self.revs is None:
133 # not target to push, all common are relevant
133 # not target to push, all common are relevant
134 return self.outgoing.commonheads
134 return self.outgoing.commonheads
135 unfi = self.repo.unfiltered()
135 unfi = self.repo.unfiltered()
136 # I want cheads = heads(::missingheads and ::commonheads)
136 # I want cheads = heads(::missingheads and ::commonheads)
137 # (missingheads is revs with secret changeset filtered out)
137 # (missingheads is revs with secret changeset filtered out)
138 #
138 #
139 # This can be expressed as:
139 # This can be expressed as:
140 # cheads = ( (missingheads and ::commonheads)
140 # cheads = ( (missingheads and ::commonheads)
141 # + (commonheads and ::missingheads))"
141 # + (commonheads and ::missingheads))"
142 # )
142 # )
143 #
143 #
144 # while trying to push we already computed the following:
144 # while trying to push we already computed the following:
145 # common = (::commonheads)
145 # common = (::commonheads)
146 # missing = ((commonheads::missingheads) - commonheads)
146 # missing = ((commonheads::missingheads) - commonheads)
147 #
147 #
148 # We can pick:
148 # We can pick:
149 # * missingheads part of common (::commonheads)
149 # * missingheads part of common (::commonheads)
150 common = self.outgoing.common
150 common = self.outgoing.common
151 nm = self.repo.changelog.nodemap
151 nm = self.repo.changelog.nodemap
152 cheads = [node for node in self.revs if nm[node] in common]
152 cheads = [node for node in self.revs if nm[node] in common]
153 # and
153 # and
154 # * commonheads parents on missing
154 # * commonheads parents on missing
155 revset = unfi.set('%ln and parents(roots(%ln))',
155 revset = unfi.set('%ln and parents(roots(%ln))',
156 self.outgoing.commonheads,
156 self.outgoing.commonheads,
157 self.outgoing.missing)
157 self.outgoing.missing)
158 cheads.extend(c.node() for c in revset)
158 cheads.extend(c.node() for c in revset)
159 return cheads
159 return cheads
160
160
161 @property
161 @property
162 def commonheads(self):
162 def commonheads(self):
163 """set of all common heads after changeset bundle push"""
163 """set of all common heads after changeset bundle push"""
164 if self.cgresult:
164 if self.cgresult:
165 return self.futureheads
165 return self.futureheads
166 else:
166 else:
167 return self.fallbackheads
167 return self.fallbackheads
168
168
169 # mapping of message used when pushing bookmark
169 # mapping of message used when pushing bookmark
170 bookmsgmap = {'update': (_("updating bookmark %s\n"),
170 bookmsgmap = {'update': (_("updating bookmark %s\n"),
171 _('updating bookmark %s failed!\n')),
171 _('updating bookmark %s failed!\n')),
172 'export': (_("exporting bookmark %s\n"),
172 'export': (_("exporting bookmark %s\n"),
173 _('exporting bookmark %s failed!\n')),
173 _('exporting bookmark %s failed!\n')),
174 'delete': (_("deleting remote bookmark %s\n"),
174 'delete': (_("deleting remote bookmark %s\n"),
175 _('deleting remote bookmark %s failed!\n')),
175 _('deleting remote bookmark %s failed!\n')),
176 }
176 }
177
177
178
178
179 def push(repo, remote, force=False, revs=None, newbranch=False, bookmarks=()):
179 def push(repo, remote, force=False, revs=None, newbranch=False, bookmarks=()):
180 '''Push outgoing changesets (limited by revs) from a local
180 '''Push outgoing changesets (limited by revs) from a local
181 repository to remote. Return an integer:
181 repository to remote. Return an integer:
182 - None means nothing to push
182 - None means nothing to push
183 - 0 means HTTP error
183 - 0 means HTTP error
184 - 1 means we pushed and remote head count is unchanged *or*
184 - 1 means we pushed and remote head count is unchanged *or*
185 we have outgoing changesets but refused to push
185 we have outgoing changesets but refused to push
186 - other values as described by addchangegroup()
186 - other values as described by addchangegroup()
187 '''
187 '''
188 pushop = pushoperation(repo, remote, force, revs, newbranch, bookmarks)
188 pushop = pushoperation(repo, remote, force, revs, newbranch, bookmarks)
189 if pushop.remote.local():
189 if pushop.remote.local():
190 missing = (set(pushop.repo.requirements)
190 missing = (set(pushop.repo.requirements)
191 - pushop.remote.local().supported)
191 - pushop.remote.local().supported)
192 if missing:
192 if missing:
193 msg = _("required features are not"
193 msg = _("required features are not"
194 " supported in the destination:"
194 " supported in the destination:"
195 " %s") % (', '.join(sorted(missing)))
195 " %s") % (', '.join(sorted(missing)))
196 raise util.Abort(msg)
196 raise util.Abort(msg)
197
197
198 # there are two ways to push to remote repo:
198 # there are two ways to push to remote repo:
199 #
199 #
200 # addchangegroup assumes local user can lock remote
200 # addchangegroup assumes local user can lock remote
201 # repo (local filesystem, old ssh servers).
201 # repo (local filesystem, old ssh servers).
202 #
202 #
203 # unbundle assumes local user cannot lock remote repo (new ssh
203 # unbundle assumes local user cannot lock remote repo (new ssh
204 # servers, http servers).
204 # servers, http servers).
205
205
206 if not pushop.remote.canpush():
206 if not pushop.remote.canpush():
207 raise util.Abort(_("destination does not support push"))
207 raise util.Abort(_("destination does not support push"))
208 # get local lock as we might write phase data
208 # get local lock as we might write phase data
209 localwlock = locallock = None
209 localwlock = locallock = None
210 try:
210 try:
211 # bundle2 push may receive a reply bundle touching bookmarks or other
211 # bundle2 push may receive a reply bundle touching bookmarks or other
212 # things requiring the wlock. Take it now to ensure proper ordering.
212 # things requiring the wlock. Take it now to ensure proper ordering.
213 maypushback = pushop.ui.configbool('experimental', 'bundle2.pushback')
213 maypushback = pushop.ui.configbool('experimental', 'bundle2.pushback')
214 if _canusebundle2(pushop) and maypushback:
214 if _canusebundle2(pushop) and maypushback:
215 localwlock = pushop.repo.wlock()
215 localwlock = pushop.repo.wlock()
216 locallock = pushop.repo.lock()
216 locallock = pushop.repo.lock()
217 pushop.locallocked = True
217 pushop.locallocked = True
218 except IOError as err:
218 except IOError as err:
219 pushop.locallocked = False
219 pushop.locallocked = False
220 if err.errno != errno.EACCES:
220 if err.errno != errno.EACCES:
221 raise
221 raise
222 # source repo cannot be locked.
222 # source repo cannot be locked.
223 # We do not abort the push, but just disable the local phase
223 # We do not abort the push, but just disable the local phase
224 # synchronisation.
224 # synchronisation.
225 msg = 'cannot lock source repository: %s\n' % err
225 msg = 'cannot lock source repository: %s\n' % err
226 pushop.ui.debug(msg)
226 pushop.ui.debug(msg)
227 try:
227 try:
228 if pushop.locallocked:
228 if pushop.locallocked:
229 pushop.trmanager = transactionmanager(repo,
229 pushop.trmanager = transactionmanager(repo,
230 'push-response',
230 'push-response',
231 pushop.remote.url())
231 pushop.remote.url())
232 pushop.repo.checkpush(pushop)
232 pushop.repo.checkpush(pushop)
233 lock = None
233 lock = None
234 unbundle = pushop.remote.capable('unbundle')
234 unbundle = pushop.remote.capable('unbundle')
235 if not unbundle:
235 if not unbundle:
236 lock = pushop.remote.lock()
236 lock = pushop.remote.lock()
237 try:
237 try:
238 _pushdiscovery(pushop)
238 _pushdiscovery(pushop)
239 if _canusebundle2(pushop):
239 if _canusebundle2(pushop):
240 _pushbundle2(pushop)
240 _pushbundle2(pushop)
241 _pushchangeset(pushop)
241 _pushchangeset(pushop)
242 _pushsyncphase(pushop)
242 _pushsyncphase(pushop)
243 _pushobsolete(pushop)
243 _pushobsolete(pushop)
244 _pushbookmark(pushop)
244 _pushbookmark(pushop)
245 finally:
245 finally:
246 if lock is not None:
246 if lock is not None:
247 lock.release()
247 lock.release()
248 if pushop.trmanager:
248 if pushop.trmanager:
249 pushop.trmanager.close()
249 pushop.trmanager.close()
250 finally:
250 finally:
251 if pushop.trmanager:
251 if pushop.trmanager:
252 pushop.trmanager.release()
252 pushop.trmanager.release()
253 if locallock is not None:
253 if locallock is not None:
254 locallock.release()
254 locallock.release()
255 if localwlock is not None:
255 if localwlock is not None:
256 localwlock.release()
256 localwlock.release()
257
257
258 return pushop
258 return pushop
259
259
260 # list of steps to perform discovery before push
260 # list of steps to perform discovery before push
261 pushdiscoveryorder = []
261 pushdiscoveryorder = []
262
262
263 # Mapping between step name and function
263 # Mapping between step name and function
264 #
264 #
265 # This exists to help extensions wrap steps if necessary
265 # This exists to help extensions wrap steps if necessary
266 pushdiscoverymapping = {}
266 pushdiscoverymapping = {}
267
267
268 def pushdiscovery(stepname):
268 def pushdiscovery(stepname):
269 """decorator for function performing discovery before push
269 """decorator for function performing discovery before push
270
270
271 The function is added to the step -> function mapping and appended to the
271 The function is added to the step -> function mapping and appended to the
272 list of steps. Beware that decorated function will be added in order (this
272 list of steps. Beware that decorated function will be added in order (this
273 may matter).
273 may matter).
274
274
275 You can only use this decorator for a new step, if you want to wrap a step
275 You can only use this decorator for a new step, if you want to wrap a step
276 from an extension, change the pushdiscovery dictionary directly."""
276 from an extension, change the pushdiscovery dictionary directly."""
277 def dec(func):
277 def dec(func):
278 assert stepname not in pushdiscoverymapping
278 assert stepname not in pushdiscoverymapping
279 pushdiscoverymapping[stepname] = func
279 pushdiscoverymapping[stepname] = func
280 pushdiscoveryorder.append(stepname)
280 pushdiscoveryorder.append(stepname)
281 return func
281 return func
282 return dec
282 return dec
283
283
284 def _pushdiscovery(pushop):
284 def _pushdiscovery(pushop):
285 """Run all discovery steps"""
285 """Run all discovery steps"""
286 for stepname in pushdiscoveryorder:
286 for stepname in pushdiscoveryorder:
287 step = pushdiscoverymapping[stepname]
287 step = pushdiscoverymapping[stepname]
288 step(pushop)
288 step(pushop)
289
289
290 @pushdiscovery('changeset')
290 @pushdiscovery('changeset')
291 def _pushdiscoverychangeset(pushop):
291 def _pushdiscoverychangeset(pushop):
292 """discover the changeset that need to be pushed"""
292 """discover the changeset that need to be pushed"""
293 fci = discovery.findcommonincoming
293 fci = discovery.findcommonincoming
294 commoninc = fci(pushop.repo, pushop.remote, force=pushop.force)
294 commoninc = fci(pushop.repo, pushop.remote, force=pushop.force)
295 common, inc, remoteheads = commoninc
295 common, inc, remoteheads = commoninc
296 fco = discovery.findcommonoutgoing
296 fco = discovery.findcommonoutgoing
297 outgoing = fco(pushop.repo, pushop.remote, onlyheads=pushop.revs,
297 outgoing = fco(pushop.repo, pushop.remote, onlyheads=pushop.revs,
298 commoninc=commoninc, force=pushop.force)
298 commoninc=commoninc, force=pushop.force)
299 pushop.outgoing = outgoing
299 pushop.outgoing = outgoing
300 pushop.remoteheads = remoteheads
300 pushop.remoteheads = remoteheads
301 pushop.incoming = inc
301 pushop.incoming = inc
302
302
303 @pushdiscovery('phase')
303 @pushdiscovery('phase')
304 def _pushdiscoveryphase(pushop):
304 def _pushdiscoveryphase(pushop):
305 """discover the phase that needs to be pushed
305 """discover the phase that needs to be pushed
306
306
307 (computed for both success and failure case for changesets push)"""
307 (computed for both success and failure case for changesets push)"""
308 outgoing = pushop.outgoing
308 outgoing = pushop.outgoing
309 unfi = pushop.repo.unfiltered()
309 unfi = pushop.repo.unfiltered()
310 remotephases = pushop.remote.listkeys('phases')
310 remotephases = pushop.remote.listkeys('phases')
311 publishing = remotephases.get('publishing', False)
311 publishing = remotephases.get('publishing', False)
312 if (pushop.ui.configbool('ui', '_usedassubrepo', False)
312 if (pushop.ui.configbool('ui', '_usedassubrepo', False)
313 and remotephases # server supports phases
313 and remotephases # server supports phases
314 and not pushop.outgoing.missing # no changesets to be pushed
314 and not pushop.outgoing.missing # no changesets to be pushed
315 and publishing):
315 and publishing):
316 # When:
316 # When:
317 # - this is a subrepo push
317 # - this is a subrepo push
318 # - and remote support phase
318 # - and remote support phase
319 # - and no changeset are to be pushed
319 # - and no changeset are to be pushed
320 # - and remote is publishing
320 # - and remote is publishing
321 # We may be in issue 3871 case!
321 # We may be in issue 3871 case!
322 # We drop the possible phase synchronisation done by
322 # We drop the possible phase synchronisation done by
323 # courtesy to publish changesets possibly locally draft
323 # courtesy to publish changesets possibly locally draft
324 # on the remote.
324 # on the remote.
325 remotephases = {'publishing': 'True'}
325 remotephases = {'publishing': 'True'}
326 ana = phases.analyzeremotephases(pushop.repo,
326 ana = phases.analyzeremotephases(pushop.repo,
327 pushop.fallbackheads,
327 pushop.fallbackheads,
328 remotephases)
328 remotephases)
329 pheads, droots = ana
329 pheads, droots = ana
330 extracond = ''
330 extracond = ''
331 if not publishing:
331 if not publishing:
332 extracond = ' and public()'
332 extracond = ' and public()'
333 revset = 'heads((%%ln::%%ln) %s)' % extracond
333 revset = 'heads((%%ln::%%ln) %s)' % extracond
334 # Get the list of all revs draft on remote by public here.
334 # Get the list of all revs draft on remote by public here.
335 # XXX Beware that revset break if droots is not strictly
335 # XXX Beware that revset break if droots is not strictly
336 # XXX root we may want to ensure it is but it is costly
336 # XXX root we may want to ensure it is but it is costly
337 fallback = list(unfi.set(revset, droots, pushop.fallbackheads))
337 fallback = list(unfi.set(revset, droots, pushop.fallbackheads))
338 if not outgoing.missing:
338 if not outgoing.missing:
339 future = fallback
339 future = fallback
340 else:
340 else:
341 # adds changeset we are going to push as draft
341 # adds changeset we are going to push as draft
342 #
342 #
343 # should not be necessary for publishing server, but because of an
343 # should not be necessary for publishing server, but because of an
344 # issue fixed in xxxxx we have to do it anyway.
344 # issue fixed in xxxxx we have to do it anyway.
345 fdroots = list(unfi.set('roots(%ln + %ln::)',
345 fdroots = list(unfi.set('roots(%ln + %ln::)',
346 outgoing.missing, droots))
346 outgoing.missing, droots))
347 fdroots = [f.node() for f in fdroots]
347 fdroots = [f.node() for f in fdroots]
348 future = list(unfi.set(revset, fdroots, pushop.futureheads))
348 future = list(unfi.set(revset, fdroots, pushop.futureheads))
349 pushop.outdatedphases = future
349 pushop.outdatedphases = future
350 pushop.fallbackoutdatedphases = fallback
350 pushop.fallbackoutdatedphases = fallback
351
351
352 @pushdiscovery('obsmarker')
352 @pushdiscovery('obsmarker')
353 def _pushdiscoveryobsmarkers(pushop):
353 def _pushdiscoveryobsmarkers(pushop):
354 if (obsolete.isenabled(pushop.repo, obsolete.exchangeopt)
354 if (obsolete.isenabled(pushop.repo, obsolete.exchangeopt)
355 and pushop.repo.obsstore
355 and pushop.repo.obsstore
356 and 'obsolete' in pushop.remote.listkeys('namespaces')):
356 and 'obsolete' in pushop.remote.listkeys('namespaces')):
357 repo = pushop.repo
357 repo = pushop.repo
358 # very naive computation, that can be quite expensive on big repo.
358 # very naive computation, that can be quite expensive on big repo.
359 # However: evolution is currently slow on them anyway.
359 # However: evolution is currently slow on them anyway.
360 nodes = (c.node() for c in repo.set('::%ln', pushop.futureheads))
360 nodes = (c.node() for c in repo.set('::%ln', pushop.futureheads))
361 pushop.outobsmarkers = pushop.repo.obsstore.relevantmarkers(nodes)
361 pushop.outobsmarkers = pushop.repo.obsstore.relevantmarkers(nodes)
362
362
363 @pushdiscovery('bookmarks')
363 @pushdiscovery('bookmarks')
364 def _pushdiscoverybookmarks(pushop):
364 def _pushdiscoverybookmarks(pushop):
365 ui = pushop.ui
365 ui = pushop.ui
366 repo = pushop.repo.unfiltered()
366 repo = pushop.repo.unfiltered()
367 remote = pushop.remote
367 remote = pushop.remote
368 ui.debug("checking for updated bookmarks\n")
368 ui.debug("checking for updated bookmarks\n")
369 ancestors = ()
369 ancestors = ()
370 if pushop.revs:
370 if pushop.revs:
371 revnums = map(repo.changelog.rev, pushop.revs)
371 revnums = map(repo.changelog.rev, pushop.revs)
372 ancestors = repo.changelog.ancestors(revnums, inclusive=True)
372 ancestors = repo.changelog.ancestors(revnums, inclusive=True)
373 remotebookmark = remote.listkeys('bookmarks')
373 remotebookmark = remote.listkeys('bookmarks')
374
374
375 explicit = set(pushop.bookmarks)
375 explicit = set(pushop.bookmarks)
376
376
377 comp = bookmod.compare(repo, repo._bookmarks, remotebookmark, srchex=hex)
377 comp = bookmod.compare(repo, repo._bookmarks, remotebookmark, srchex=hex)
378 addsrc, adddst, advsrc, advdst, diverge, differ, invalid, same = comp
378 addsrc, adddst, advsrc, advdst, diverge, differ, invalid, same = comp
379 for b, scid, dcid in advsrc:
379 for b, scid, dcid in advsrc:
380 if b in explicit:
380 if b in explicit:
381 explicit.remove(b)
381 explicit.remove(b)
382 if not ancestors or repo[scid].rev() in ancestors:
382 if not ancestors or repo[scid].rev() in ancestors:
383 pushop.outbookmarks.append((b, dcid, scid))
383 pushop.outbookmarks.append((b, dcid, scid))
384 # search added bookmark
384 # search added bookmark
385 for b, scid, dcid in addsrc:
385 for b, scid, dcid in addsrc:
386 if b in explicit:
386 if b in explicit:
387 explicit.remove(b)
387 explicit.remove(b)
388 pushop.outbookmarks.append((b, '', scid))
388 pushop.outbookmarks.append((b, '', scid))
389 # search for overwritten bookmark
389 # search for overwritten bookmark
390 for b, scid, dcid in advdst + diverge + differ:
390 for b, scid, dcid in advdst + diverge + differ:
391 if b in explicit:
391 if b in explicit:
392 explicit.remove(b)
392 explicit.remove(b)
393 pushop.outbookmarks.append((b, dcid, scid))
393 pushop.outbookmarks.append((b, dcid, scid))
394 # search for bookmark to delete
394 # search for bookmark to delete
395 for b, scid, dcid in adddst:
395 for b, scid, dcid in adddst:
396 if b in explicit:
396 if b in explicit:
397 explicit.remove(b)
397 explicit.remove(b)
398 # treat as "deleted locally"
398 # treat as "deleted locally"
399 pushop.outbookmarks.append((b, dcid, ''))
399 pushop.outbookmarks.append((b, dcid, ''))
400 # identical bookmarks shouldn't get reported
400 # identical bookmarks shouldn't get reported
401 for b, scid, dcid in same:
401 for b, scid, dcid in same:
402 if b in explicit:
402 if b in explicit:
403 explicit.remove(b)
403 explicit.remove(b)
404
404
405 if explicit:
405 if explicit:
406 explicit = sorted(explicit)
406 explicit = sorted(explicit)
407 # we should probably list all of them
407 # we should probably list all of them
408 ui.warn(_('bookmark %s does not exist on the local '
408 ui.warn(_('bookmark %s does not exist on the local '
409 'or remote repository!\n') % explicit[0])
409 'or remote repository!\n') % explicit[0])
410 pushop.bkresult = 2
410 pushop.bkresult = 2
411
411
412 pushop.outbookmarks.sort()
412 pushop.outbookmarks.sort()
413
413
414 def _pushcheckoutgoing(pushop):
414 def _pushcheckoutgoing(pushop):
415 outgoing = pushop.outgoing
415 outgoing = pushop.outgoing
416 unfi = pushop.repo.unfiltered()
416 unfi = pushop.repo.unfiltered()
417 if not outgoing.missing:
417 if not outgoing.missing:
418 # nothing to push
418 # nothing to push
419 scmutil.nochangesfound(unfi.ui, unfi, outgoing.excluded)
419 scmutil.nochangesfound(unfi.ui, unfi, outgoing.excluded)
420 return False
420 return False
421 # something to push
421 # something to push
422 if not pushop.force:
422 if not pushop.force:
423 # if repo.obsstore == False --> no obsolete
423 # if repo.obsstore == False --> no obsolete
424 # then, save the iteration
424 # then, save the iteration
425 if unfi.obsstore:
425 if unfi.obsstore:
426 # this message are here for 80 char limit reason
426 # this message are here for 80 char limit reason
427 mso = _("push includes obsolete changeset: %s!")
427 mso = _("push includes obsolete changeset: %s!")
428 mst = {"unstable": _("push includes unstable changeset: %s!"),
428 mst = {"unstable": _("push includes unstable changeset: %s!"),
429 "bumped": _("push includes bumped changeset: %s!"),
429 "bumped": _("push includes bumped changeset: %s!"),
430 "divergent": _("push includes divergent changeset: %s!")}
430 "divergent": _("push includes divergent changeset: %s!")}
431 # If we are to push if there is at least one
431 # If we are to push if there is at least one
432 # obsolete or unstable changeset in missing, at
432 # obsolete or unstable changeset in missing, at
433 # least one of the missinghead will be obsolete or
433 # least one of the missinghead will be obsolete or
434 # unstable. So checking heads only is ok
434 # unstable. So checking heads only is ok
435 for node in outgoing.missingheads:
435 for node in outgoing.missingheads:
436 ctx = unfi[node]
436 ctx = unfi[node]
437 if ctx.obsolete():
437 if ctx.obsolete():
438 raise util.Abort(mso % ctx)
438 raise util.Abort(mso % ctx)
439 elif ctx.troubled():
439 elif ctx.troubled():
440 raise util.Abort(mst[ctx.troubles()[0]] % ctx)
440 raise util.Abort(mst[ctx.troubles()[0]] % ctx)
441
441
442 # internal config: bookmarks.pushing
442 # internal config: bookmarks.pushing
443 newbm = pushop.ui.configlist('bookmarks', 'pushing')
443 newbm = pushop.ui.configlist('bookmarks', 'pushing')
444 discovery.checkheads(unfi, pushop.remote, outgoing,
444 discovery.checkheads(unfi, pushop.remote, outgoing,
445 pushop.remoteheads,
445 pushop.remoteheads,
446 pushop.newbranch,
446 pushop.newbranch,
447 bool(pushop.incoming),
447 bool(pushop.incoming),
448 newbm)
448 newbm)
449 return True
449 return True
450
450
451 # List of names of steps to perform for an outgoing bundle2, order matters.
451 # List of names of steps to perform for an outgoing bundle2, order matters.
452 b2partsgenorder = []
452 b2partsgenorder = []
453
453
454 # Mapping between step name and function
454 # Mapping between step name and function
455 #
455 #
456 # This exists to help extensions wrap steps if necessary
456 # This exists to help extensions wrap steps if necessary
457 b2partsgenmapping = {}
457 b2partsgenmapping = {}
458
458
459 def b2partsgenerator(stepname, idx=None):
459 def b2partsgenerator(stepname, idx=None):
460 """decorator for function generating bundle2 part
460 """decorator for function generating bundle2 part
461
461
462 The function is added to the step -> function mapping and appended to the
462 The function is added to the step -> function mapping and appended to the
463 list of steps. Beware that decorated functions will be added in order
463 list of steps. Beware that decorated functions will be added in order
464 (this may matter).
464 (this may matter).
465
465
466 You can only use this decorator for new steps, if you want to wrap a step
466 You can only use this decorator for new steps, if you want to wrap a step
467 from an extension, attack the b2partsgenmapping dictionary directly."""
467 from an extension, attack the b2partsgenmapping dictionary directly."""
468 def dec(func):
468 def dec(func):
469 assert stepname not in b2partsgenmapping
469 assert stepname not in b2partsgenmapping
470 b2partsgenmapping[stepname] = func
470 b2partsgenmapping[stepname] = func
471 if idx is None:
471 if idx is None:
472 b2partsgenorder.append(stepname)
472 b2partsgenorder.append(stepname)
473 else:
473 else:
474 b2partsgenorder.insert(idx, stepname)
474 b2partsgenorder.insert(idx, stepname)
475 return func
475 return func
476 return dec
476 return dec
477
477
478 def _pushb2ctxcheckheads(pushop, bundler):
478 def _pushb2ctxcheckheads(pushop, bundler):
479 """Generate race condition checking parts
479 """Generate race condition checking parts
480
480
481 Exists as an indepedent function to aid extensions
481 Exists as an indepedent function to aid extensions
482 """
482 """
483 if not pushop.force:
483 if not pushop.force:
484 bundler.newpart('check:heads', data=iter(pushop.remoteheads))
484 bundler.newpart('check:heads', data=iter(pushop.remoteheads))
485
485
486 @b2partsgenerator('changeset')
486 @b2partsgenerator('changeset')
487 def _pushb2ctx(pushop, bundler):
487 def _pushb2ctx(pushop, bundler):
488 """handle changegroup push through bundle2
488 """handle changegroup push through bundle2
489
489
490 addchangegroup result is stored in the ``pushop.cgresult`` attribute.
490 addchangegroup result is stored in the ``pushop.cgresult`` attribute.
491 """
491 """
492 if 'changesets' in pushop.stepsdone:
492 if 'changesets' in pushop.stepsdone:
493 return
493 return
494 pushop.stepsdone.add('changesets')
494 pushop.stepsdone.add('changesets')
495 # Send known heads to the server for race detection.
495 # Send known heads to the server for race detection.
496 if not _pushcheckoutgoing(pushop):
496 if not _pushcheckoutgoing(pushop):
497 return
497 return
498 pushop.repo.prepushoutgoinghooks(pushop.repo,
498 pushop.repo.prepushoutgoinghooks(pushop.repo,
499 pushop.remote,
499 pushop.remote,
500 pushop.outgoing)
500 pushop.outgoing)
501
501
502 _pushb2ctxcheckheads(pushop, bundler)
502 _pushb2ctxcheckheads(pushop, bundler)
503
503
504 b2caps = bundle2.bundle2caps(pushop.remote)
504 b2caps = bundle2.bundle2caps(pushop.remote)
505 version = None
505 version = None
506 cgversions = b2caps.get('changegroup')
506 cgversions = b2caps.get('changegroup')
507 if not cgversions: # 3.1 and 3.2 ship with an empty value
507 if not cgversions: # 3.1 and 3.2 ship with an empty value
508 cg = changegroup.getlocalchangegroupraw(pushop.repo, 'push',
508 cg = changegroup.getlocalchangegroupraw(pushop.repo, 'push',
509 pushop.outgoing)
509 pushop.outgoing)
510 else:
510 else:
511 cgversions = [v for v in cgversions if v in changegroup.packermap]
511 cgversions = [v for v in cgversions if v in changegroup.packermap]
512 if not cgversions:
512 if not cgversions:
513 raise ValueError(_('no common changegroup version'))
513 raise ValueError(_('no common changegroup version'))
514 version = max(cgversions)
514 version = max(cgversions)
515 cg = changegroup.getlocalchangegroupraw(pushop.repo, 'push',
515 cg = changegroup.getlocalchangegroupraw(pushop.repo, 'push',
516 pushop.outgoing,
516 pushop.outgoing,
517 version=version)
517 version=version)
518 cgpart = bundler.newpart('changegroup', data=cg)
518 cgpart = bundler.newpart('changegroup', data=cg)
519 if version is not None:
519 if version is not None:
520 cgpart.addparam('version', version)
520 cgpart.addparam('version', version)
521 def handlereply(op):
521 def handlereply(op):
522 """extract addchangegroup returns from server reply"""
522 """extract addchangegroup returns from server reply"""
523 cgreplies = op.records.getreplies(cgpart.id)
523 cgreplies = op.records.getreplies(cgpart.id)
524 assert len(cgreplies['changegroup']) == 1
524 assert len(cgreplies['changegroup']) == 1
525 pushop.cgresult = cgreplies['changegroup'][0]['return']
525 pushop.cgresult = cgreplies['changegroup'][0]['return']
526 return handlereply
526 return handlereply
527
527
528 @b2partsgenerator('phase')
528 @b2partsgenerator('phase')
529 def _pushb2phases(pushop, bundler):
529 def _pushb2phases(pushop, bundler):
530 """handle phase push through bundle2"""
530 """handle phase push through bundle2"""
531 if 'phases' in pushop.stepsdone:
531 if 'phases' in pushop.stepsdone:
532 return
532 return
533 b2caps = bundle2.bundle2caps(pushop.remote)
533 b2caps = bundle2.bundle2caps(pushop.remote)
534 if not 'pushkey' in b2caps:
534 if not 'pushkey' in b2caps:
535 return
535 return
536 pushop.stepsdone.add('phases')
536 pushop.stepsdone.add('phases')
537 part2node = []
537 part2node = []
538
538
539 def handlefailure(pushop, exc):
539 def handlefailure(pushop, exc):
540 targetid = int(exc.partid)
540 targetid = int(exc.partid)
541 for partid, node in part2node:
541 for partid, node in part2node:
542 if partid == targetid:
542 if partid == targetid:
543 raise error.Abort(_('updating %s to public failed') % node)
543 raise error.Abort(_('updating %s to public failed') % node)
544
544
545 enc = pushkey.encode
545 enc = pushkey.encode
546 for newremotehead in pushop.outdatedphases:
546 for newremotehead in pushop.outdatedphases:
547 part = bundler.newpart('pushkey')
547 part = bundler.newpart('pushkey')
548 part.addparam('namespace', enc('phases'))
548 part.addparam('namespace', enc('phases'))
549 part.addparam('key', enc(newremotehead.hex()))
549 part.addparam('key', enc(newremotehead.hex()))
550 part.addparam('old', enc(str(phases.draft)))
550 part.addparam('old', enc(str(phases.draft)))
551 part.addparam('new', enc(str(phases.public)))
551 part.addparam('new', enc(str(phases.public)))
552 part2node.append((part.id, newremotehead))
552 part2node.append((part.id, newremotehead))
553 pushop.pkfailcb[part.id] = handlefailure
553 pushop.pkfailcb[part.id] = handlefailure
554
554
555 def handlereply(op):
555 def handlereply(op):
556 for partid, node in part2node:
556 for partid, node in part2node:
557 partrep = op.records.getreplies(partid)
557 partrep = op.records.getreplies(partid)
558 results = partrep['pushkey']
558 results = partrep['pushkey']
559 assert len(results) <= 1
559 assert len(results) <= 1
560 msg = None
560 msg = None
561 if not results:
561 if not results:
562 msg = _('server ignored update of %s to public!\n') % node
562 msg = _('server ignored update of %s to public!\n') % node
563 elif not int(results[0]['return']):
563 elif not int(results[0]['return']):
564 msg = _('updating %s to public failed!\n') % node
564 msg = _('updating %s to public failed!\n') % node
565 if msg is not None:
565 if msg is not None:
566 pushop.ui.warn(msg)
566 pushop.ui.warn(msg)
567 return handlereply
567 return handlereply
568
568
569 @b2partsgenerator('obsmarkers')
569 @b2partsgenerator('obsmarkers')
570 def _pushb2obsmarkers(pushop, bundler):
570 def _pushb2obsmarkers(pushop, bundler):
571 if 'obsmarkers' in pushop.stepsdone:
571 if 'obsmarkers' in pushop.stepsdone:
572 return
572 return
573 remoteversions = bundle2.obsmarkersversion(bundler.capabilities)
573 remoteversions = bundle2.obsmarkersversion(bundler.capabilities)
574 if obsolete.commonversion(remoteversions) is None:
574 if obsolete.commonversion(remoteversions) is None:
575 return
575 return
576 pushop.stepsdone.add('obsmarkers')
576 pushop.stepsdone.add('obsmarkers')
577 if pushop.outobsmarkers:
577 if pushop.outobsmarkers:
578 markers = sorted(pushop.outobsmarkers)
578 markers = sorted(pushop.outobsmarkers)
579 buildobsmarkerspart(bundler, markers)
579 buildobsmarkerspart(bundler, markers)
580
580
581 @b2partsgenerator('bookmarks')
581 @b2partsgenerator('bookmarks')
582 def _pushb2bookmarks(pushop, bundler):
582 def _pushb2bookmarks(pushop, bundler):
583 """handle bookmark push through bundle2"""
583 """handle bookmark push through bundle2"""
584 if 'bookmarks' in pushop.stepsdone:
584 if 'bookmarks' in pushop.stepsdone:
585 return
585 return
586 b2caps = bundle2.bundle2caps(pushop.remote)
586 b2caps = bundle2.bundle2caps(pushop.remote)
587 if 'pushkey' not in b2caps:
587 if 'pushkey' not in b2caps:
588 return
588 return
589 pushop.stepsdone.add('bookmarks')
589 pushop.stepsdone.add('bookmarks')
590 part2book = []
590 part2book = []
591 enc = pushkey.encode
591 enc = pushkey.encode
592
592
593 def handlefailure(pushop, exc):
593 def handlefailure(pushop, exc):
594 targetid = int(exc.partid)
594 targetid = int(exc.partid)
595 for partid, book, action in part2book:
595 for partid, book, action in part2book:
596 if partid == targetid:
596 if partid == targetid:
597 raise error.Abort(bookmsgmap[action][1].rstrip() % book)
597 raise error.Abort(bookmsgmap[action][1].rstrip() % book)
598 # we should not be called for part we did not generated
598 # we should not be called for part we did not generated
599 assert False
599 assert False
600
600
601 for book, old, new in pushop.outbookmarks:
601 for book, old, new in pushop.outbookmarks:
602 part = bundler.newpart('pushkey')
602 part = bundler.newpart('pushkey')
603 part.addparam('namespace', enc('bookmarks'))
603 part.addparam('namespace', enc('bookmarks'))
604 part.addparam('key', enc(book))
604 part.addparam('key', enc(book))
605 part.addparam('old', enc(old))
605 part.addparam('old', enc(old))
606 part.addparam('new', enc(new))
606 part.addparam('new', enc(new))
607 action = 'update'
607 action = 'update'
608 if not old:
608 if not old:
609 action = 'export'
609 action = 'export'
610 elif not new:
610 elif not new:
611 action = 'delete'
611 action = 'delete'
612 part2book.append((part.id, book, action))
612 part2book.append((part.id, book, action))
613 pushop.pkfailcb[part.id] = handlefailure
613 pushop.pkfailcb[part.id] = handlefailure
614
614
615 def handlereply(op):
615 def handlereply(op):
616 ui = pushop.ui
616 ui = pushop.ui
617 for partid, book, action in part2book:
617 for partid, book, action in part2book:
618 partrep = op.records.getreplies(partid)
618 partrep = op.records.getreplies(partid)
619 results = partrep['pushkey']
619 results = partrep['pushkey']
620 assert len(results) <= 1
620 assert len(results) <= 1
621 if not results:
621 if not results:
622 pushop.ui.warn(_('server ignored bookmark %s update\n') % book)
622 pushop.ui.warn(_('server ignored bookmark %s update\n') % book)
623 else:
623 else:
624 ret = int(results[0]['return'])
624 ret = int(results[0]['return'])
625 if ret:
625 if ret:
626 ui.status(bookmsgmap[action][0] % book)
626 ui.status(bookmsgmap[action][0] % book)
627 else:
627 else:
628 ui.warn(bookmsgmap[action][1] % book)
628 ui.warn(bookmsgmap[action][1] % book)
629 if pushop.bkresult is not None:
629 if pushop.bkresult is not None:
630 pushop.bkresult = 1
630 pushop.bkresult = 1
631 return handlereply
631 return handlereply
632
632
633
633
634 def _pushbundle2(pushop):
634 def _pushbundle2(pushop):
635 """push data to the remote using bundle2
635 """push data to the remote using bundle2
636
636
637 The only currently supported type of data is changegroup but this will
637 The only currently supported type of data is changegroup but this will
638 evolve in the future."""
638 evolve in the future."""
639 bundler = bundle2.bundle20(pushop.ui, bundle2.bundle2caps(pushop.remote))
639 bundler = bundle2.bundle20(pushop.ui, bundle2.bundle2caps(pushop.remote))
640 pushback = (pushop.trmanager
640 pushback = (pushop.trmanager
641 and pushop.ui.configbool('experimental', 'bundle2.pushback'))
641 and pushop.ui.configbool('experimental', 'bundle2.pushback'))
642
642
643 # create reply capability
643 # create reply capability
644 capsblob = bundle2.encodecaps(bundle2.getrepocaps(pushop.repo,
644 capsblob = bundle2.encodecaps(bundle2.getrepocaps(pushop.repo,
645 allowpushback=pushback))
645 allowpushback=pushback))
646 bundler.newpart('replycaps', data=capsblob)
646 bundler.newpart('replycaps', data=capsblob)
647 replyhandlers = []
647 replyhandlers = []
648 for partgenname in b2partsgenorder:
648 for partgenname in b2partsgenorder:
649 partgen = b2partsgenmapping[partgenname]
649 partgen = b2partsgenmapping[partgenname]
650 ret = partgen(pushop, bundler)
650 ret = partgen(pushop, bundler)
651 if callable(ret):
651 if callable(ret):
652 replyhandlers.append(ret)
652 replyhandlers.append(ret)
653 # do not push if nothing to push
653 # do not push if nothing to push
654 if bundler.nbparts <= 1:
654 if bundler.nbparts <= 1:
655 return
655 return
656 stream = util.chunkbuffer(bundler.getchunks())
656 stream = util.chunkbuffer(bundler.getchunks())
657 try:
657 try:
658 try:
658 try:
659 reply = pushop.remote.unbundle(stream, ['force'], 'push')
659 reply = pushop.remote.unbundle(stream, ['force'], 'push')
660 except error.BundleValueError as exc:
660 except error.BundleValueError as exc:
661 raise util.Abort('missing support for %s' % exc)
661 raise util.Abort('missing support for %s' % exc)
662 try:
662 try:
663 trgetter = None
663 trgetter = None
664 if pushback:
664 if pushback:
665 trgetter = pushop.trmanager.transaction
665 trgetter = pushop.trmanager.transaction
666 op = bundle2.processbundle(pushop.repo, reply, trgetter)
666 op = bundle2.processbundle(pushop.repo, reply, trgetter)
667 except error.BundleValueError as exc:
667 except error.BundleValueError as exc:
668 raise util.Abort('missing support for %s' % exc)
668 raise util.Abort('missing support for %s' % exc)
669 except error.PushkeyFailed as exc:
669 except error.PushkeyFailed as exc:
670 partid = int(exc.partid)
670 partid = int(exc.partid)
671 if partid not in pushop.pkfailcb:
671 if partid not in pushop.pkfailcb:
672 raise
672 raise
673 pushop.pkfailcb[partid](pushop, exc)
673 pushop.pkfailcb[partid](pushop, exc)
674 for rephand in replyhandlers:
674 for rephand in replyhandlers:
675 rephand(op)
675 rephand(op)
676
676
677 def _pushchangeset(pushop):
677 def _pushchangeset(pushop):
678 """Make the actual push of changeset bundle to remote repo"""
678 """Make the actual push of changeset bundle to remote repo"""
679 if 'changesets' in pushop.stepsdone:
679 if 'changesets' in pushop.stepsdone:
680 return
680 return
681 pushop.stepsdone.add('changesets')
681 pushop.stepsdone.add('changesets')
682 if not _pushcheckoutgoing(pushop):
682 if not _pushcheckoutgoing(pushop):
683 return
683 return
684 pushop.repo.prepushoutgoinghooks(pushop.repo,
684 pushop.repo.prepushoutgoinghooks(pushop.repo,
685 pushop.remote,
685 pushop.remote,
686 pushop.outgoing)
686 pushop.outgoing)
687 outgoing = pushop.outgoing
687 outgoing = pushop.outgoing
688 unbundle = pushop.remote.capable('unbundle')
688 unbundle = pushop.remote.capable('unbundle')
689 # TODO: get bundlecaps from remote
689 # TODO: get bundlecaps from remote
690 bundlecaps = None
690 bundlecaps = None
691 # create a changegroup from local
691 # create a changegroup from local
692 if pushop.revs is None and not (outgoing.excluded
692 if pushop.revs is None and not (outgoing.excluded
693 or pushop.repo.changelog.filteredrevs):
693 or pushop.repo.changelog.filteredrevs):
694 # push everything,
694 # push everything,
695 # use the fast path, no race possible on push
695 # use the fast path, no race possible on push
696 bundler = changegroup.cg1packer(pushop.repo, bundlecaps)
696 bundler = changegroup.cg1packer(pushop.repo, bundlecaps)
697 cg = changegroup.getsubset(pushop.repo,
697 cg = changegroup.getsubset(pushop.repo,
698 outgoing,
698 outgoing,
699 bundler,
699 bundler,
700 'push',
700 'push',
701 fastpath=True)
701 fastpath=True)
702 else:
702 else:
703 cg = changegroup.getlocalchangegroup(pushop.repo, 'push', outgoing,
703 cg = changegroup.getlocalchangegroup(pushop.repo, 'push', outgoing,
704 bundlecaps)
704 bundlecaps)
705
705
706 # apply changegroup to remote
706 # apply changegroup to remote
707 if unbundle:
707 if unbundle:
708 # local repo finds heads on server, finds out what
708 # local repo finds heads on server, finds out what
709 # revs it must push. once revs transferred, if server
709 # revs it must push. once revs transferred, if server
710 # finds it has different heads (someone else won
710 # finds it has different heads (someone else won
711 # commit/push race), server aborts.
711 # commit/push race), server aborts.
712 if pushop.force:
712 if pushop.force:
713 remoteheads = ['force']
713 remoteheads = ['force']
714 else:
714 else:
715 remoteheads = pushop.remoteheads
715 remoteheads = pushop.remoteheads
716 # ssh: return remote's addchangegroup()
716 # ssh: return remote's addchangegroup()
717 # http: return remote's addchangegroup() or 0 for error
717 # http: return remote's addchangegroup() or 0 for error
718 pushop.cgresult = pushop.remote.unbundle(cg, remoteheads,
718 pushop.cgresult = pushop.remote.unbundle(cg, remoteheads,
719 pushop.repo.url())
719 pushop.repo.url())
720 else:
720 else:
721 # we return an integer indicating remote head count
721 # we return an integer indicating remote head count
722 # change
722 # change
723 pushop.cgresult = pushop.remote.addchangegroup(cg, 'push',
723 pushop.cgresult = pushop.remote.addchangegroup(cg, 'push',
724 pushop.repo.url())
724 pushop.repo.url())
725
725
726 def _pushsyncphase(pushop):
726 def _pushsyncphase(pushop):
727 """synchronise phase information locally and remotely"""
727 """synchronise phase information locally and remotely"""
728 cheads = pushop.commonheads
728 cheads = pushop.commonheads
729 # even when we don't push, exchanging phase data is useful
729 # even when we don't push, exchanging phase data is useful
730 remotephases = pushop.remote.listkeys('phases')
730 remotephases = pushop.remote.listkeys('phases')
731 if (pushop.ui.configbool('ui', '_usedassubrepo', False)
731 if (pushop.ui.configbool('ui', '_usedassubrepo', False)
732 and remotephases # server supports phases
732 and remotephases # server supports phases
733 and pushop.cgresult is None # nothing was pushed
733 and pushop.cgresult is None # nothing was pushed
734 and remotephases.get('publishing', False)):
734 and remotephases.get('publishing', False)):
735 # When:
735 # When:
736 # - this is a subrepo push
736 # - this is a subrepo push
737 # - and remote support phase
737 # - and remote support phase
738 # - and no changeset was pushed
738 # - and no changeset was pushed
739 # - and remote is publishing
739 # - and remote is publishing
740 # We may be in issue 3871 case!
740 # We may be in issue 3871 case!
741 # We drop the possible phase synchronisation done by
741 # We drop the possible phase synchronisation done by
742 # courtesy to publish changesets possibly locally draft
742 # courtesy to publish changesets possibly locally draft
743 # on the remote.
743 # on the remote.
744 remotephases = {'publishing': 'True'}
744 remotephases = {'publishing': 'True'}
745 if not remotephases: # old server or public only reply from non-publishing
745 if not remotephases: # old server or public only reply from non-publishing
746 _localphasemove(pushop, cheads)
746 _localphasemove(pushop, cheads)
747 # don't push any phase data as there is nothing to push
747 # don't push any phase data as there is nothing to push
748 else:
748 else:
749 ana = phases.analyzeremotephases(pushop.repo, cheads,
749 ana = phases.analyzeremotephases(pushop.repo, cheads,
750 remotephases)
750 remotephases)
751 pheads, droots = ana
751 pheads, droots = ana
752 ### Apply remote phase on local
752 ### Apply remote phase on local
753 if remotephases.get('publishing', False):
753 if remotephases.get('publishing', False):
754 _localphasemove(pushop, cheads)
754 _localphasemove(pushop, cheads)
755 else: # publish = False
755 else: # publish = False
756 _localphasemove(pushop, pheads)
756 _localphasemove(pushop, pheads)
757 _localphasemove(pushop, cheads, phases.draft)
757 _localphasemove(pushop, cheads, phases.draft)
758 ### Apply local phase on remote
758 ### Apply local phase on remote
759
759
760 if pushop.cgresult:
760 if pushop.cgresult:
761 if 'phases' in pushop.stepsdone:
761 if 'phases' in pushop.stepsdone:
762 # phases already pushed though bundle2
762 # phases already pushed though bundle2
763 return
763 return
764 outdated = pushop.outdatedphases
764 outdated = pushop.outdatedphases
765 else:
765 else:
766 outdated = pushop.fallbackoutdatedphases
766 outdated = pushop.fallbackoutdatedphases
767
767
768 pushop.stepsdone.add('phases')
768 pushop.stepsdone.add('phases')
769
769
770 # filter heads already turned public by the push
770 # filter heads already turned public by the push
771 outdated = [c for c in outdated if c.node() not in pheads]
771 outdated = [c for c in outdated if c.node() not in pheads]
772 # fallback to independent pushkey command
772 # fallback to independent pushkey command
773 for newremotehead in outdated:
773 for newremotehead in outdated:
774 r = pushop.remote.pushkey('phases',
774 r = pushop.remote.pushkey('phases',
775 newremotehead.hex(),
775 newremotehead.hex(),
776 str(phases.draft),
776 str(phases.draft),
777 str(phases.public))
777 str(phases.public))
778 if not r:
778 if not r:
779 pushop.ui.warn(_('updating %s to public failed!\n')
779 pushop.ui.warn(_('updating %s to public failed!\n')
780 % newremotehead)
780 % newremotehead)
781
781
782 def _localphasemove(pushop, nodes, phase=phases.public):
782 def _localphasemove(pushop, nodes, phase=phases.public):
783 """move <nodes> to <phase> in the local source repo"""
783 """move <nodes> to <phase> in the local source repo"""
784 if pushop.trmanager:
784 if pushop.trmanager:
785 phases.advanceboundary(pushop.repo,
785 phases.advanceboundary(pushop.repo,
786 pushop.trmanager.transaction(),
786 pushop.trmanager.transaction(),
787 phase,
787 phase,
788 nodes)
788 nodes)
789 else:
789 else:
790 # repo is not locked, do not change any phases!
790 # repo is not locked, do not change any phases!
791 # Informs the user that phases should have been moved when
791 # Informs the user that phases should have been moved when
792 # applicable.
792 # applicable.
793 actualmoves = [n for n in nodes if phase < pushop.repo[n].phase()]
793 actualmoves = [n for n in nodes if phase < pushop.repo[n].phase()]
794 phasestr = phases.phasenames[phase]
794 phasestr = phases.phasenames[phase]
795 if actualmoves:
795 if actualmoves:
796 pushop.ui.status(_('cannot lock source repo, skipping '
796 pushop.ui.status(_('cannot lock source repo, skipping '
797 'local %s phase update\n') % phasestr)
797 'local %s phase update\n') % phasestr)
798
798
799 def _pushobsolete(pushop):
799 def _pushobsolete(pushop):
800 """utility function to push obsolete markers to a remote"""
800 """utility function to push obsolete markers to a remote"""
801 if 'obsmarkers' in pushop.stepsdone:
801 if 'obsmarkers' in pushop.stepsdone:
802 return
802 return
803 repo = pushop.repo
803 repo = pushop.repo
804 remote = pushop.remote
804 remote = pushop.remote
805 pushop.stepsdone.add('obsmarkers')
805 pushop.stepsdone.add('obsmarkers')
806 if pushop.outobsmarkers:
806 if pushop.outobsmarkers:
807 pushop.ui.debug('try to push obsolete markers to remote\n')
807 pushop.ui.debug('try to push obsolete markers to remote\n')
808 rslts = []
808 rslts = []
809 remotedata = obsolete._pushkeyescape(sorted(pushop.outobsmarkers))
809 remotedata = obsolete._pushkeyescape(sorted(pushop.outobsmarkers))
810 for key in sorted(remotedata, reverse=True):
810 for key in sorted(remotedata, reverse=True):
811 # reverse sort to ensure we end with dump0
811 # reverse sort to ensure we end with dump0
812 data = remotedata[key]
812 data = remotedata[key]
813 rslts.append(remote.pushkey('obsolete', key, '', data))
813 rslts.append(remote.pushkey('obsolete', key, '', data))
814 if [r for r in rslts if not r]:
814 if [r for r in rslts if not r]:
815 msg = _('failed to push some obsolete markers!\n')
815 msg = _('failed to push some obsolete markers!\n')
816 repo.ui.warn(msg)
816 repo.ui.warn(msg)
817
817
818 def _pushbookmark(pushop):
818 def _pushbookmark(pushop):
819 """Update bookmark position on remote"""
819 """Update bookmark position on remote"""
820 if pushop.cgresult == 0 or 'bookmarks' in pushop.stepsdone:
820 if pushop.cgresult == 0 or 'bookmarks' in pushop.stepsdone:
821 return
821 return
822 pushop.stepsdone.add('bookmarks')
822 pushop.stepsdone.add('bookmarks')
823 ui = pushop.ui
823 ui = pushop.ui
824 remote = pushop.remote
824 remote = pushop.remote
825
825
826 for b, old, new in pushop.outbookmarks:
826 for b, old, new in pushop.outbookmarks:
827 action = 'update'
827 action = 'update'
828 if not old:
828 if not old:
829 action = 'export'
829 action = 'export'
830 elif not new:
830 elif not new:
831 action = 'delete'
831 action = 'delete'
832 if remote.pushkey('bookmarks', b, old, new):
832 if remote.pushkey('bookmarks', b, old, new):
833 ui.status(bookmsgmap[action][0] % b)
833 ui.status(bookmsgmap[action][0] % b)
834 else:
834 else:
835 ui.warn(bookmsgmap[action][1] % b)
835 ui.warn(bookmsgmap[action][1] % b)
836 # discovery can have set the value form invalid entry
836 # discovery can have set the value form invalid entry
837 if pushop.bkresult is not None:
837 if pushop.bkresult is not None:
838 pushop.bkresult = 1
838 pushop.bkresult = 1
839
839
840 class pulloperation(object):
840 class pulloperation(object):
841 """A object that represent a single pull operation
841 """A object that represent a single pull operation
842
842
843 It purpose is to carry pull related state and very common operation.
843 It purpose is to carry pull related state and very common operation.
844
844
845 A new should be created at the beginning of each pull and discarded
845 A new should be created at the beginning of each pull and discarded
846 afterward.
846 afterward.
847 """
847 """
848
848
849 def __init__(self, repo, remote, heads=None, force=False, bookmarks=(),
849 def __init__(self, repo, remote, heads=None, force=False, bookmarks=(),
850 remotebookmarks=None):
850 remotebookmarks=None):
851 # repo we pull into
851 # repo we pull into
852 self.repo = repo
852 self.repo = repo
853 # repo we pull from
853 # repo we pull from
854 self.remote = remote
854 self.remote = remote
855 # revision we try to pull (None is "all")
855 # revision we try to pull (None is "all")
856 self.heads = heads
856 self.heads = heads
857 # bookmark pulled explicitly
857 # bookmark pulled explicitly
858 self.explicitbookmarks = bookmarks
858 self.explicitbookmarks = bookmarks
859 # do we force pull?
859 # do we force pull?
860 self.force = force
860 self.force = force
861 # transaction manager
861 # transaction manager
862 self.trmanager = None
862 self.trmanager = None
863 # set of common changeset between local and remote before pull
863 # set of common changeset between local and remote before pull
864 self.common = None
864 self.common = None
865 # set of pulled head
865 # set of pulled head
866 self.rheads = None
866 self.rheads = None
867 # list of missing changeset to fetch remotely
867 # list of missing changeset to fetch remotely
868 self.fetch = None
868 self.fetch = None
869 # remote bookmarks data
869 # remote bookmarks data
870 self.remotebookmarks = remotebookmarks
870 self.remotebookmarks = remotebookmarks
871 # result of changegroup pulling (used as return code by pull)
871 # result of changegroup pulling (used as return code by pull)
872 self.cgresult = None
872 self.cgresult = None
873 # list of step already done
873 # list of step already done
874 self.stepsdone = set()
874 self.stepsdone = set()
875
875
876 @util.propertycache
876 @util.propertycache
877 def pulledsubset(self):
877 def pulledsubset(self):
878 """heads of the set of changeset target by the pull"""
878 """heads of the set of changeset target by the pull"""
879 # compute target subset
879 # compute target subset
880 if self.heads is None:
880 if self.heads is None:
881 # We pulled every thing possible
881 # We pulled every thing possible
882 # sync on everything common
882 # sync on everything common
883 c = set(self.common)
883 c = set(self.common)
884 ret = list(self.common)
884 ret = list(self.common)
885 for n in self.rheads:
885 for n in self.rheads:
886 if n not in c:
886 if n not in c:
887 ret.append(n)
887 ret.append(n)
888 return ret
888 return ret
889 else:
889 else:
890 # We pulled a specific subset
890 # We pulled a specific subset
891 # sync on this subset
891 # sync on this subset
892 return self.heads
892 return self.heads
893
893
894 def gettransaction(self):
894 def gettransaction(self):
895 # deprecated; talk to trmanager directly
895 # deprecated; talk to trmanager directly
896 return self.trmanager.transaction()
896 return self.trmanager.transaction()
897
897
898 class transactionmanager(object):
898 class transactionmanager(object):
899 """An object to manage the life cycle of a transaction
899 """An object to manage the life cycle of a transaction
900
900
901 It creates the transaction on demand and calls the appropriate hooks when
901 It creates the transaction on demand and calls the appropriate hooks when
902 closing the transaction."""
902 closing the transaction."""
903 def __init__(self, repo, source, url):
903 def __init__(self, repo, source, url):
904 self.repo = repo
904 self.repo = repo
905 self.source = source
905 self.source = source
906 self.url = url
906 self.url = url
907 self._tr = None
907 self._tr = None
908
908
909 def transaction(self):
909 def transaction(self):
910 """Return an open transaction object, constructing if necessary"""
910 """Return an open transaction object, constructing if necessary"""
911 if not self._tr:
911 if not self._tr:
912 trname = '%s\n%s' % (self.source, util.hidepassword(self.url))
912 trname = '%s\n%s' % (self.source, util.hidepassword(self.url))
913 self._tr = self.repo.transaction(trname)
913 self._tr = self.repo.transaction(trname)
914 self._tr.hookargs['source'] = self.source
914 self._tr.hookargs['source'] = self.source
915 self._tr.hookargs['url'] = self.url
915 self._tr.hookargs['url'] = self.url
916 return self._tr
916 return self._tr
917
917
918 def close(self):
918 def close(self):
919 """close transaction if created"""
919 """close transaction if created"""
920 if self._tr is not None:
920 if self._tr is not None:
921 self._tr.close()
921 self._tr.close()
922
922
923 def release(self):
923 def release(self):
924 """release transaction if created"""
924 """release transaction if created"""
925 if self._tr is not None:
925 if self._tr is not None:
926 self._tr.release()
926 self._tr.release()
927
927
928 def pull(repo, remote, heads=None, force=False, bookmarks=(), opargs=None):
928 def pull(repo, remote, heads=None, force=False, bookmarks=(), opargs=None):
929 """Fetch repository data from a remote.
930
931 This is the main function used to retrieve data from a remote repository.
932
933 ``repo`` is the local repository to clone into.
934 ``remote`` is a peer instance.
935 ``heads`` is an iterable of revisions we want to pull. ``None`` (the
936 default) means to pull everything from the remote.
937 ``bookmarks`` is an iterable of bookmarks requesting to be pulled. By
938 default, all remote bookmarks are pulled.
939 ``opargs`` are additional keyword arguments to pass to ``pulloperation``
940 initialization.
941
942 Returns the ``pulloperation`` created for this pull.
943 """
929 if opargs is None:
944 if opargs is None:
930 opargs = {}
945 opargs = {}
931 pullop = pulloperation(repo, remote, heads, force, bookmarks=bookmarks,
946 pullop = pulloperation(repo, remote, heads, force, bookmarks=bookmarks,
932 **opargs)
947 **opargs)
933 if pullop.remote.local():
948 if pullop.remote.local():
934 missing = set(pullop.remote.requirements) - pullop.repo.supported
949 missing = set(pullop.remote.requirements) - pullop.repo.supported
935 if missing:
950 if missing:
936 msg = _("required features are not"
951 msg = _("required features are not"
937 " supported in the destination:"
952 " supported in the destination:"
938 " %s") % (', '.join(sorted(missing)))
953 " %s") % (', '.join(sorted(missing)))
939 raise util.Abort(msg)
954 raise util.Abort(msg)
940
955
941 lock = pullop.repo.lock()
956 lock = pullop.repo.lock()
942 try:
957 try:
943 pullop.trmanager = transactionmanager(repo, 'pull', remote.url())
958 pullop.trmanager = transactionmanager(repo, 'pull', remote.url())
944 _pulldiscovery(pullop)
959 _pulldiscovery(pullop)
945 if _canusebundle2(pullop):
960 if _canusebundle2(pullop):
946 _pullbundle2(pullop)
961 _pullbundle2(pullop)
947 _pullchangeset(pullop)
962 _pullchangeset(pullop)
948 _pullphase(pullop)
963 _pullphase(pullop)
949 _pullbookmarks(pullop)
964 _pullbookmarks(pullop)
950 _pullobsolete(pullop)
965 _pullobsolete(pullop)
951 pullop.trmanager.close()
966 pullop.trmanager.close()
952 finally:
967 finally:
953 pullop.trmanager.release()
968 pullop.trmanager.release()
954 lock.release()
969 lock.release()
955
970
956 return pullop
971 return pullop
957
972
958 # list of steps to perform discovery before pull
973 # list of steps to perform discovery before pull
959 pulldiscoveryorder = []
974 pulldiscoveryorder = []
960
975
961 # Mapping between step name and function
976 # Mapping between step name and function
962 #
977 #
963 # This exists to help extensions wrap steps if necessary
978 # This exists to help extensions wrap steps if necessary
964 pulldiscoverymapping = {}
979 pulldiscoverymapping = {}
965
980
966 def pulldiscovery(stepname):
981 def pulldiscovery(stepname):
967 """decorator for function performing discovery before pull
982 """decorator for function performing discovery before pull
968
983
969 The function is added to the step -> function mapping and appended to the
984 The function is added to the step -> function mapping and appended to the
970 list of steps. Beware that decorated function will be added in order (this
985 list of steps. Beware that decorated function will be added in order (this
971 may matter).
986 may matter).
972
987
973 You can only use this decorator for a new step, if you want to wrap a step
988 You can only use this decorator for a new step, if you want to wrap a step
974 from an extension, change the pulldiscovery dictionary directly."""
989 from an extension, change the pulldiscovery dictionary directly."""
975 def dec(func):
990 def dec(func):
976 assert stepname not in pulldiscoverymapping
991 assert stepname not in pulldiscoverymapping
977 pulldiscoverymapping[stepname] = func
992 pulldiscoverymapping[stepname] = func
978 pulldiscoveryorder.append(stepname)
993 pulldiscoveryorder.append(stepname)
979 return func
994 return func
980 return dec
995 return dec
981
996
982 def _pulldiscovery(pullop):
997 def _pulldiscovery(pullop):
983 """Run all discovery steps"""
998 """Run all discovery steps"""
984 for stepname in pulldiscoveryorder:
999 for stepname in pulldiscoveryorder:
985 step = pulldiscoverymapping[stepname]
1000 step = pulldiscoverymapping[stepname]
986 step(pullop)
1001 step(pullop)
987
1002
988 @pulldiscovery('b1:bookmarks')
1003 @pulldiscovery('b1:bookmarks')
989 def _pullbookmarkbundle1(pullop):
1004 def _pullbookmarkbundle1(pullop):
990 """fetch bookmark data in bundle1 case
1005 """fetch bookmark data in bundle1 case
991
1006
992 If not using bundle2, we have to fetch bookmarks before changeset
1007 If not using bundle2, we have to fetch bookmarks before changeset
993 discovery to reduce the chance and impact of race conditions."""
1008 discovery to reduce the chance and impact of race conditions."""
994 if pullop.remotebookmarks is not None:
1009 if pullop.remotebookmarks is not None:
995 return
1010 return
996 if (_canusebundle2(pullop)
1011 if (_canusebundle2(pullop)
997 and 'listkeys' in bundle2.bundle2caps(pullop.remote)):
1012 and 'listkeys' in bundle2.bundle2caps(pullop.remote)):
998 # all known bundle2 servers now support listkeys, but lets be nice with
1013 # all known bundle2 servers now support listkeys, but lets be nice with
999 # new implementation.
1014 # new implementation.
1000 return
1015 return
1001 pullop.remotebookmarks = pullop.remote.listkeys('bookmarks')
1016 pullop.remotebookmarks = pullop.remote.listkeys('bookmarks')
1002
1017
1003
1018
1004 @pulldiscovery('changegroup')
1019 @pulldiscovery('changegroup')
1005 def _pulldiscoverychangegroup(pullop):
1020 def _pulldiscoverychangegroup(pullop):
1006 """discovery phase for the pull
1021 """discovery phase for the pull
1007
1022
1008 Current handle changeset discovery only, will change handle all discovery
1023 Current handle changeset discovery only, will change handle all discovery
1009 at some point."""
1024 at some point."""
1010 tmp = discovery.findcommonincoming(pullop.repo,
1025 tmp = discovery.findcommonincoming(pullop.repo,
1011 pullop.remote,
1026 pullop.remote,
1012 heads=pullop.heads,
1027 heads=pullop.heads,
1013 force=pullop.force)
1028 force=pullop.force)
1014 common, fetch, rheads = tmp
1029 common, fetch, rheads = tmp
1015 nm = pullop.repo.unfiltered().changelog.nodemap
1030 nm = pullop.repo.unfiltered().changelog.nodemap
1016 if fetch and rheads:
1031 if fetch and rheads:
1017 # If a remote heads in filtered locally, lets drop it from the unknown
1032 # If a remote heads in filtered locally, lets drop it from the unknown
1018 # remote heads and put in back in common.
1033 # remote heads and put in back in common.
1019 #
1034 #
1020 # This is a hackish solution to catch most of "common but locally
1035 # This is a hackish solution to catch most of "common but locally
1021 # hidden situation". We do not performs discovery on unfiltered
1036 # hidden situation". We do not performs discovery on unfiltered
1022 # repository because it end up doing a pathological amount of round
1037 # repository because it end up doing a pathological amount of round
1023 # trip for w huge amount of changeset we do not care about.
1038 # trip for w huge amount of changeset we do not care about.
1024 #
1039 #
1025 # If a set of such "common but filtered" changeset exist on the server
1040 # If a set of such "common but filtered" changeset exist on the server
1026 # but are not including a remote heads, we'll not be able to detect it,
1041 # but are not including a remote heads, we'll not be able to detect it,
1027 scommon = set(common)
1042 scommon = set(common)
1028 filteredrheads = []
1043 filteredrheads = []
1029 for n in rheads:
1044 for n in rheads:
1030 if n in nm:
1045 if n in nm:
1031 if n not in scommon:
1046 if n not in scommon:
1032 common.append(n)
1047 common.append(n)
1033 else:
1048 else:
1034 filteredrheads.append(n)
1049 filteredrheads.append(n)
1035 if not filteredrheads:
1050 if not filteredrheads:
1036 fetch = []
1051 fetch = []
1037 rheads = filteredrheads
1052 rheads = filteredrheads
1038 pullop.common = common
1053 pullop.common = common
1039 pullop.fetch = fetch
1054 pullop.fetch = fetch
1040 pullop.rheads = rheads
1055 pullop.rheads = rheads
1041
1056
1042 def _pullbundle2(pullop):
1057 def _pullbundle2(pullop):
1043 """pull data using bundle2
1058 """pull data using bundle2
1044
1059
1045 For now, the only supported data are changegroup."""
1060 For now, the only supported data are changegroup."""
1046 remotecaps = bundle2.bundle2caps(pullop.remote)
1061 remotecaps = bundle2.bundle2caps(pullop.remote)
1047 kwargs = {'bundlecaps': caps20to10(pullop.repo)}
1062 kwargs = {'bundlecaps': caps20to10(pullop.repo)}
1048 # pulling changegroup
1063 # pulling changegroup
1049 pullop.stepsdone.add('changegroup')
1064 pullop.stepsdone.add('changegroup')
1050
1065
1051 kwargs['common'] = pullop.common
1066 kwargs['common'] = pullop.common
1052 kwargs['heads'] = pullop.heads or pullop.rheads
1067 kwargs['heads'] = pullop.heads or pullop.rheads
1053 kwargs['cg'] = pullop.fetch
1068 kwargs['cg'] = pullop.fetch
1054 if 'listkeys' in remotecaps:
1069 if 'listkeys' in remotecaps:
1055 kwargs['listkeys'] = ['phase']
1070 kwargs['listkeys'] = ['phase']
1056 if pullop.remotebookmarks is None:
1071 if pullop.remotebookmarks is None:
1057 # make sure to always includes bookmark data when migrating
1072 # make sure to always includes bookmark data when migrating
1058 # `hg incoming --bundle` to using this function.
1073 # `hg incoming --bundle` to using this function.
1059 kwargs['listkeys'].append('bookmarks')
1074 kwargs['listkeys'].append('bookmarks')
1060 if not pullop.fetch:
1075 if not pullop.fetch:
1061 pullop.repo.ui.status(_("no changes found\n"))
1076 pullop.repo.ui.status(_("no changes found\n"))
1062 pullop.cgresult = 0
1077 pullop.cgresult = 0
1063 else:
1078 else:
1064 if pullop.heads is None and list(pullop.common) == [nullid]:
1079 if pullop.heads is None and list(pullop.common) == [nullid]:
1065 pullop.repo.ui.status(_("requesting all changes\n"))
1080 pullop.repo.ui.status(_("requesting all changes\n"))
1066 if obsolete.isenabled(pullop.repo, obsolete.exchangeopt):
1081 if obsolete.isenabled(pullop.repo, obsolete.exchangeopt):
1067 remoteversions = bundle2.obsmarkersversion(remotecaps)
1082 remoteversions = bundle2.obsmarkersversion(remotecaps)
1068 if obsolete.commonversion(remoteversions) is not None:
1083 if obsolete.commonversion(remoteversions) is not None:
1069 kwargs['obsmarkers'] = True
1084 kwargs['obsmarkers'] = True
1070 pullop.stepsdone.add('obsmarkers')
1085 pullop.stepsdone.add('obsmarkers')
1071 _pullbundle2extraprepare(pullop, kwargs)
1086 _pullbundle2extraprepare(pullop, kwargs)
1072 bundle = pullop.remote.getbundle('pull', **kwargs)
1087 bundle = pullop.remote.getbundle('pull', **kwargs)
1073 try:
1088 try:
1074 op = bundle2.processbundle(pullop.repo, bundle, pullop.gettransaction)
1089 op = bundle2.processbundle(pullop.repo, bundle, pullop.gettransaction)
1075 except error.BundleValueError as exc:
1090 except error.BundleValueError as exc:
1076 raise util.Abort('missing support for %s' % exc)
1091 raise util.Abort('missing support for %s' % exc)
1077
1092
1078 if pullop.fetch:
1093 if pullop.fetch:
1079 results = [cg['return'] for cg in op.records['changegroup']]
1094 results = [cg['return'] for cg in op.records['changegroup']]
1080 pullop.cgresult = changegroup.combineresults(results)
1095 pullop.cgresult = changegroup.combineresults(results)
1081
1096
1082 # processing phases change
1097 # processing phases change
1083 for namespace, value in op.records['listkeys']:
1098 for namespace, value in op.records['listkeys']:
1084 if namespace == 'phases':
1099 if namespace == 'phases':
1085 _pullapplyphases(pullop, value)
1100 _pullapplyphases(pullop, value)
1086
1101
1087 # processing bookmark update
1102 # processing bookmark update
1088 for namespace, value in op.records['listkeys']:
1103 for namespace, value in op.records['listkeys']:
1089 if namespace == 'bookmarks':
1104 if namespace == 'bookmarks':
1090 pullop.remotebookmarks = value
1105 pullop.remotebookmarks = value
1091
1106
1092 # bookmark data were either already there or pulled in the bundle
1107 # bookmark data were either already there or pulled in the bundle
1093 if pullop.remotebookmarks is not None:
1108 if pullop.remotebookmarks is not None:
1094 _pullbookmarks(pullop)
1109 _pullbookmarks(pullop)
1095
1110
1096 def _pullbundle2extraprepare(pullop, kwargs):
1111 def _pullbundle2extraprepare(pullop, kwargs):
1097 """hook function so that extensions can extend the getbundle call"""
1112 """hook function so that extensions can extend the getbundle call"""
1098 pass
1113 pass
1099
1114
1100 def _pullchangeset(pullop):
1115 def _pullchangeset(pullop):
1101 """pull changeset from unbundle into the local repo"""
1116 """pull changeset from unbundle into the local repo"""
1102 # We delay the open of the transaction as late as possible so we
1117 # We delay the open of the transaction as late as possible so we
1103 # don't open transaction for nothing or you break future useful
1118 # don't open transaction for nothing or you break future useful
1104 # rollback call
1119 # rollback call
1105 if 'changegroup' in pullop.stepsdone:
1120 if 'changegroup' in pullop.stepsdone:
1106 return
1121 return
1107 pullop.stepsdone.add('changegroup')
1122 pullop.stepsdone.add('changegroup')
1108 if not pullop.fetch:
1123 if not pullop.fetch:
1109 pullop.repo.ui.status(_("no changes found\n"))
1124 pullop.repo.ui.status(_("no changes found\n"))
1110 pullop.cgresult = 0
1125 pullop.cgresult = 0
1111 return
1126 return
1112 pullop.gettransaction()
1127 pullop.gettransaction()
1113 if pullop.heads is None and list(pullop.common) == [nullid]:
1128 if pullop.heads is None and list(pullop.common) == [nullid]:
1114 pullop.repo.ui.status(_("requesting all changes\n"))
1129 pullop.repo.ui.status(_("requesting all changes\n"))
1115 elif pullop.heads is None and pullop.remote.capable('changegroupsubset'):
1130 elif pullop.heads is None and pullop.remote.capable('changegroupsubset'):
1116 # issue1320, avoid a race if remote changed after discovery
1131 # issue1320, avoid a race if remote changed after discovery
1117 pullop.heads = pullop.rheads
1132 pullop.heads = pullop.rheads
1118
1133
1119 if pullop.remote.capable('getbundle'):
1134 if pullop.remote.capable('getbundle'):
1120 # TODO: get bundlecaps from remote
1135 # TODO: get bundlecaps from remote
1121 cg = pullop.remote.getbundle('pull', common=pullop.common,
1136 cg = pullop.remote.getbundle('pull', common=pullop.common,
1122 heads=pullop.heads or pullop.rheads)
1137 heads=pullop.heads or pullop.rheads)
1123 elif pullop.heads is None:
1138 elif pullop.heads is None:
1124 cg = pullop.remote.changegroup(pullop.fetch, 'pull')
1139 cg = pullop.remote.changegroup(pullop.fetch, 'pull')
1125 elif not pullop.remote.capable('changegroupsubset'):
1140 elif not pullop.remote.capable('changegroupsubset'):
1126 raise util.Abort(_("partial pull cannot be done because "
1141 raise util.Abort(_("partial pull cannot be done because "
1127 "other repository doesn't support "
1142 "other repository doesn't support "
1128 "changegroupsubset."))
1143 "changegroupsubset."))
1129 else:
1144 else:
1130 cg = pullop.remote.changegroupsubset(pullop.fetch, pullop.heads, 'pull')
1145 cg = pullop.remote.changegroupsubset(pullop.fetch, pullop.heads, 'pull')
1131 pullop.cgresult = changegroup.addchangegroup(pullop.repo, cg, 'pull',
1146 pullop.cgresult = changegroup.addchangegroup(pullop.repo, cg, 'pull',
1132 pullop.remote.url())
1147 pullop.remote.url())
1133
1148
1134 def _pullphase(pullop):
1149 def _pullphase(pullop):
1135 # Get remote phases data from remote
1150 # Get remote phases data from remote
1136 if 'phases' in pullop.stepsdone:
1151 if 'phases' in pullop.stepsdone:
1137 return
1152 return
1138 remotephases = pullop.remote.listkeys('phases')
1153 remotephases = pullop.remote.listkeys('phases')
1139 _pullapplyphases(pullop, remotephases)
1154 _pullapplyphases(pullop, remotephases)
1140
1155
1141 def _pullapplyphases(pullop, remotephases):
1156 def _pullapplyphases(pullop, remotephases):
1142 """apply phase movement from observed remote state"""
1157 """apply phase movement from observed remote state"""
1143 if 'phases' in pullop.stepsdone:
1158 if 'phases' in pullop.stepsdone:
1144 return
1159 return
1145 pullop.stepsdone.add('phases')
1160 pullop.stepsdone.add('phases')
1146 publishing = bool(remotephases.get('publishing', False))
1161 publishing = bool(remotephases.get('publishing', False))
1147 if remotephases and not publishing:
1162 if remotephases and not publishing:
1148 # remote is new and unpublishing
1163 # remote is new and unpublishing
1149 pheads, _dr = phases.analyzeremotephases(pullop.repo,
1164 pheads, _dr = phases.analyzeremotephases(pullop.repo,
1150 pullop.pulledsubset,
1165 pullop.pulledsubset,
1151 remotephases)
1166 remotephases)
1152 dheads = pullop.pulledsubset
1167 dheads = pullop.pulledsubset
1153 else:
1168 else:
1154 # Remote is old or publishing all common changesets
1169 # Remote is old or publishing all common changesets
1155 # should be seen as public
1170 # should be seen as public
1156 pheads = pullop.pulledsubset
1171 pheads = pullop.pulledsubset
1157 dheads = []
1172 dheads = []
1158 unfi = pullop.repo.unfiltered()
1173 unfi = pullop.repo.unfiltered()
1159 phase = unfi._phasecache.phase
1174 phase = unfi._phasecache.phase
1160 rev = unfi.changelog.nodemap.get
1175 rev = unfi.changelog.nodemap.get
1161 public = phases.public
1176 public = phases.public
1162 draft = phases.draft
1177 draft = phases.draft
1163
1178
1164 # exclude changesets already public locally and update the others
1179 # exclude changesets already public locally and update the others
1165 pheads = [pn for pn in pheads if phase(unfi, rev(pn)) > public]
1180 pheads = [pn for pn in pheads if phase(unfi, rev(pn)) > public]
1166 if pheads:
1181 if pheads:
1167 tr = pullop.gettransaction()
1182 tr = pullop.gettransaction()
1168 phases.advanceboundary(pullop.repo, tr, public, pheads)
1183 phases.advanceboundary(pullop.repo, tr, public, pheads)
1169
1184
1170 # exclude changesets already draft locally and update the others
1185 # exclude changesets already draft locally and update the others
1171 dheads = [pn for pn in dheads if phase(unfi, rev(pn)) > draft]
1186 dheads = [pn for pn in dheads if phase(unfi, rev(pn)) > draft]
1172 if dheads:
1187 if dheads:
1173 tr = pullop.gettransaction()
1188 tr = pullop.gettransaction()
1174 phases.advanceboundary(pullop.repo, tr, draft, dheads)
1189 phases.advanceboundary(pullop.repo, tr, draft, dheads)
1175
1190
1176 def _pullbookmarks(pullop):
1191 def _pullbookmarks(pullop):
1177 """process the remote bookmark information to update the local one"""
1192 """process the remote bookmark information to update the local one"""
1178 if 'bookmarks' in pullop.stepsdone:
1193 if 'bookmarks' in pullop.stepsdone:
1179 return
1194 return
1180 pullop.stepsdone.add('bookmarks')
1195 pullop.stepsdone.add('bookmarks')
1181 repo = pullop.repo
1196 repo = pullop.repo
1182 remotebookmarks = pullop.remotebookmarks
1197 remotebookmarks = pullop.remotebookmarks
1183 bookmod.updatefromremote(repo.ui, repo, remotebookmarks,
1198 bookmod.updatefromremote(repo.ui, repo, remotebookmarks,
1184 pullop.remote.url(),
1199 pullop.remote.url(),
1185 pullop.gettransaction,
1200 pullop.gettransaction,
1186 explicit=pullop.explicitbookmarks)
1201 explicit=pullop.explicitbookmarks)
1187
1202
1188 def _pullobsolete(pullop):
1203 def _pullobsolete(pullop):
1189 """utility function to pull obsolete markers from a remote
1204 """utility function to pull obsolete markers from a remote
1190
1205
1191 The `gettransaction` is function that return the pull transaction, creating
1206 The `gettransaction` is function that return the pull transaction, creating
1192 one if necessary. We return the transaction to inform the calling code that
1207 one if necessary. We return the transaction to inform the calling code that
1193 a new transaction have been created (when applicable).
1208 a new transaction have been created (when applicable).
1194
1209
1195 Exists mostly to allow overriding for experimentation purpose"""
1210 Exists mostly to allow overriding for experimentation purpose"""
1196 if 'obsmarkers' in pullop.stepsdone:
1211 if 'obsmarkers' in pullop.stepsdone:
1197 return
1212 return
1198 pullop.stepsdone.add('obsmarkers')
1213 pullop.stepsdone.add('obsmarkers')
1199 tr = None
1214 tr = None
1200 if obsolete.isenabled(pullop.repo, obsolete.exchangeopt):
1215 if obsolete.isenabled(pullop.repo, obsolete.exchangeopt):
1201 pullop.repo.ui.debug('fetching remote obsolete markers\n')
1216 pullop.repo.ui.debug('fetching remote obsolete markers\n')
1202 remoteobs = pullop.remote.listkeys('obsolete')
1217 remoteobs = pullop.remote.listkeys('obsolete')
1203 if 'dump0' in remoteobs:
1218 if 'dump0' in remoteobs:
1204 tr = pullop.gettransaction()
1219 tr = pullop.gettransaction()
1205 for key in sorted(remoteobs, reverse=True):
1220 for key in sorted(remoteobs, reverse=True):
1206 if key.startswith('dump'):
1221 if key.startswith('dump'):
1207 data = base85.b85decode(remoteobs[key])
1222 data = base85.b85decode(remoteobs[key])
1208 pullop.repo.obsstore.mergemarkers(tr, data)
1223 pullop.repo.obsstore.mergemarkers(tr, data)
1209 pullop.repo.invalidatevolatilesets()
1224 pullop.repo.invalidatevolatilesets()
1210 return tr
1225 return tr
1211
1226
1212 def caps20to10(repo):
1227 def caps20to10(repo):
1213 """return a set with appropriate options to use bundle20 during getbundle"""
1228 """return a set with appropriate options to use bundle20 during getbundle"""
1214 caps = set(['HG20'])
1229 caps = set(['HG20'])
1215 capsblob = bundle2.encodecaps(bundle2.getrepocaps(repo))
1230 capsblob = bundle2.encodecaps(bundle2.getrepocaps(repo))
1216 caps.add('bundle2=' + urllib.quote(capsblob))
1231 caps.add('bundle2=' + urllib.quote(capsblob))
1217 return caps
1232 return caps
1218
1233
1219 # List of names of steps to perform for a bundle2 for getbundle, order matters.
1234 # List of names of steps to perform for a bundle2 for getbundle, order matters.
1220 getbundle2partsorder = []
1235 getbundle2partsorder = []
1221
1236
1222 # Mapping between step name and function
1237 # Mapping between step name and function
1223 #
1238 #
1224 # This exists to help extensions wrap steps if necessary
1239 # This exists to help extensions wrap steps if necessary
1225 getbundle2partsmapping = {}
1240 getbundle2partsmapping = {}
1226
1241
1227 def getbundle2partsgenerator(stepname, idx=None):
1242 def getbundle2partsgenerator(stepname, idx=None):
1228 """decorator for function generating bundle2 part for getbundle
1243 """decorator for function generating bundle2 part for getbundle
1229
1244
1230 The function is added to the step -> function mapping and appended to the
1245 The function is added to the step -> function mapping and appended to the
1231 list of steps. Beware that decorated functions will be added in order
1246 list of steps. Beware that decorated functions will be added in order
1232 (this may matter).
1247 (this may matter).
1233
1248
1234 You can only use this decorator for new steps, if you want to wrap a step
1249 You can only use this decorator for new steps, if you want to wrap a step
1235 from an extension, attack the getbundle2partsmapping dictionary directly."""
1250 from an extension, attack the getbundle2partsmapping dictionary directly."""
1236 def dec(func):
1251 def dec(func):
1237 assert stepname not in getbundle2partsmapping
1252 assert stepname not in getbundle2partsmapping
1238 getbundle2partsmapping[stepname] = func
1253 getbundle2partsmapping[stepname] = func
1239 if idx is None:
1254 if idx is None:
1240 getbundle2partsorder.append(stepname)
1255 getbundle2partsorder.append(stepname)
1241 else:
1256 else:
1242 getbundle2partsorder.insert(idx, stepname)
1257 getbundle2partsorder.insert(idx, stepname)
1243 return func
1258 return func
1244 return dec
1259 return dec
1245
1260
1246 def getbundle(repo, source, heads=None, common=None, bundlecaps=None,
1261 def getbundle(repo, source, heads=None, common=None, bundlecaps=None,
1247 **kwargs):
1262 **kwargs):
1248 """return a full bundle (with potentially multiple kind of parts)
1263 """return a full bundle (with potentially multiple kind of parts)
1249
1264
1250 Could be a bundle HG10 or a bundle HG20 depending on bundlecaps
1265 Could be a bundle HG10 or a bundle HG20 depending on bundlecaps
1251 passed. For now, the bundle can contain only changegroup, but this will
1266 passed. For now, the bundle can contain only changegroup, but this will
1252 changes when more part type will be available for bundle2.
1267 changes when more part type will be available for bundle2.
1253
1268
1254 This is different from changegroup.getchangegroup that only returns an HG10
1269 This is different from changegroup.getchangegroup that only returns an HG10
1255 changegroup bundle. They may eventually get reunited in the future when we
1270 changegroup bundle. They may eventually get reunited in the future when we
1256 have a clearer idea of the API we what to query different data.
1271 have a clearer idea of the API we what to query different data.
1257
1272
1258 The implementation is at a very early stage and will get massive rework
1273 The implementation is at a very early stage and will get massive rework
1259 when the API of bundle is refined.
1274 when the API of bundle is refined.
1260 """
1275 """
1261 # bundle10 case
1276 # bundle10 case
1262 usebundle2 = False
1277 usebundle2 = False
1263 if bundlecaps is not None:
1278 if bundlecaps is not None:
1264 usebundle2 = any((cap.startswith('HG2') for cap in bundlecaps))
1279 usebundle2 = any((cap.startswith('HG2') for cap in bundlecaps))
1265 if not usebundle2:
1280 if not usebundle2:
1266 if bundlecaps and not kwargs.get('cg', True):
1281 if bundlecaps and not kwargs.get('cg', True):
1267 raise ValueError(_('request for bundle10 must include changegroup'))
1282 raise ValueError(_('request for bundle10 must include changegroup'))
1268
1283
1269 if kwargs:
1284 if kwargs:
1270 raise ValueError(_('unsupported getbundle arguments: %s')
1285 raise ValueError(_('unsupported getbundle arguments: %s')
1271 % ', '.join(sorted(kwargs.keys())))
1286 % ', '.join(sorted(kwargs.keys())))
1272 return changegroup.getchangegroup(repo, source, heads=heads,
1287 return changegroup.getchangegroup(repo, source, heads=heads,
1273 common=common, bundlecaps=bundlecaps)
1288 common=common, bundlecaps=bundlecaps)
1274
1289
1275 # bundle20 case
1290 # bundle20 case
1276 b2caps = {}
1291 b2caps = {}
1277 for bcaps in bundlecaps:
1292 for bcaps in bundlecaps:
1278 if bcaps.startswith('bundle2='):
1293 if bcaps.startswith('bundle2='):
1279 blob = urllib.unquote(bcaps[len('bundle2='):])
1294 blob = urllib.unquote(bcaps[len('bundle2='):])
1280 b2caps.update(bundle2.decodecaps(blob))
1295 b2caps.update(bundle2.decodecaps(blob))
1281 bundler = bundle2.bundle20(repo.ui, b2caps)
1296 bundler = bundle2.bundle20(repo.ui, b2caps)
1282
1297
1283 kwargs['heads'] = heads
1298 kwargs['heads'] = heads
1284 kwargs['common'] = common
1299 kwargs['common'] = common
1285
1300
1286 for name in getbundle2partsorder:
1301 for name in getbundle2partsorder:
1287 func = getbundle2partsmapping[name]
1302 func = getbundle2partsmapping[name]
1288 func(bundler, repo, source, bundlecaps=bundlecaps, b2caps=b2caps,
1303 func(bundler, repo, source, bundlecaps=bundlecaps, b2caps=b2caps,
1289 **kwargs)
1304 **kwargs)
1290
1305
1291 return util.chunkbuffer(bundler.getchunks())
1306 return util.chunkbuffer(bundler.getchunks())
1292
1307
1293 @getbundle2partsgenerator('changegroup')
1308 @getbundle2partsgenerator('changegroup')
1294 def _getbundlechangegrouppart(bundler, repo, source, bundlecaps=None,
1309 def _getbundlechangegrouppart(bundler, repo, source, bundlecaps=None,
1295 b2caps=None, heads=None, common=None, **kwargs):
1310 b2caps=None, heads=None, common=None, **kwargs):
1296 """add a changegroup part to the requested bundle"""
1311 """add a changegroup part to the requested bundle"""
1297 cg = None
1312 cg = None
1298 if kwargs.get('cg', True):
1313 if kwargs.get('cg', True):
1299 # build changegroup bundle here.
1314 # build changegroup bundle here.
1300 version = None
1315 version = None
1301 cgversions = b2caps.get('changegroup')
1316 cgversions = b2caps.get('changegroup')
1302 getcgkwargs = {}
1317 getcgkwargs = {}
1303 if cgversions: # 3.1 and 3.2 ship with an empty value
1318 if cgversions: # 3.1 and 3.2 ship with an empty value
1304 cgversions = [v for v in cgversions if v in changegroup.packermap]
1319 cgversions = [v for v in cgversions if v in changegroup.packermap]
1305 if not cgversions:
1320 if not cgversions:
1306 raise ValueError(_('no common changegroup version'))
1321 raise ValueError(_('no common changegroup version'))
1307 version = getcgkwargs['version'] = max(cgversions)
1322 version = getcgkwargs['version'] = max(cgversions)
1308 outgoing = changegroup.computeoutgoing(repo, heads, common)
1323 outgoing = changegroup.computeoutgoing(repo, heads, common)
1309 cg = changegroup.getlocalchangegroupraw(repo, source, outgoing,
1324 cg = changegroup.getlocalchangegroupraw(repo, source, outgoing,
1310 bundlecaps=bundlecaps,
1325 bundlecaps=bundlecaps,
1311 **getcgkwargs)
1326 **getcgkwargs)
1312
1327
1313 if cg:
1328 if cg:
1314 part = bundler.newpart('changegroup', data=cg)
1329 part = bundler.newpart('changegroup', data=cg)
1315 if version is not None:
1330 if version is not None:
1316 part.addparam('version', version)
1331 part.addparam('version', version)
1317 part.addparam('nbchanges', str(len(outgoing.missing)), mandatory=False)
1332 part.addparam('nbchanges', str(len(outgoing.missing)), mandatory=False)
1318
1333
1319 @getbundle2partsgenerator('listkeys')
1334 @getbundle2partsgenerator('listkeys')
1320 def _getbundlelistkeysparts(bundler, repo, source, bundlecaps=None,
1335 def _getbundlelistkeysparts(bundler, repo, source, bundlecaps=None,
1321 b2caps=None, **kwargs):
1336 b2caps=None, **kwargs):
1322 """add parts containing listkeys namespaces to the requested bundle"""
1337 """add parts containing listkeys namespaces to the requested bundle"""
1323 listkeys = kwargs.get('listkeys', ())
1338 listkeys = kwargs.get('listkeys', ())
1324 for namespace in listkeys:
1339 for namespace in listkeys:
1325 part = bundler.newpart('listkeys')
1340 part = bundler.newpart('listkeys')
1326 part.addparam('namespace', namespace)
1341 part.addparam('namespace', namespace)
1327 keys = repo.listkeys(namespace).items()
1342 keys = repo.listkeys(namespace).items()
1328 part.data = pushkey.encodekeys(keys)
1343 part.data = pushkey.encodekeys(keys)
1329
1344
1330 @getbundle2partsgenerator('obsmarkers')
1345 @getbundle2partsgenerator('obsmarkers')
1331 def _getbundleobsmarkerpart(bundler, repo, source, bundlecaps=None,
1346 def _getbundleobsmarkerpart(bundler, repo, source, bundlecaps=None,
1332 b2caps=None, heads=None, **kwargs):
1347 b2caps=None, heads=None, **kwargs):
1333 """add an obsolescence markers part to the requested bundle"""
1348 """add an obsolescence markers part to the requested bundle"""
1334 if kwargs.get('obsmarkers', False):
1349 if kwargs.get('obsmarkers', False):
1335 if heads is None:
1350 if heads is None:
1336 heads = repo.heads()
1351 heads = repo.heads()
1337 subset = [c.node() for c in repo.set('::%ln', heads)]
1352 subset = [c.node() for c in repo.set('::%ln', heads)]
1338 markers = repo.obsstore.relevantmarkers(subset)
1353 markers = repo.obsstore.relevantmarkers(subset)
1339 markers = sorted(markers)
1354 markers = sorted(markers)
1340 buildobsmarkerspart(bundler, markers)
1355 buildobsmarkerspart(bundler, markers)
1341
1356
1342 @getbundle2partsgenerator('hgtagsfnodes')
1357 @getbundle2partsgenerator('hgtagsfnodes')
1343 def _getbundletagsfnodes(bundler, repo, source, bundlecaps=None,
1358 def _getbundletagsfnodes(bundler, repo, source, bundlecaps=None,
1344 b2caps=None, heads=None, common=None,
1359 b2caps=None, heads=None, common=None,
1345 **kwargs):
1360 **kwargs):
1346 """Transfer the .hgtags filenodes mapping.
1361 """Transfer the .hgtags filenodes mapping.
1347
1362
1348 Only values for heads in this bundle will be transferred.
1363 Only values for heads in this bundle will be transferred.
1349
1364
1350 The part data consists of pairs of 20 byte changeset node and .hgtags
1365 The part data consists of pairs of 20 byte changeset node and .hgtags
1351 filenodes raw values.
1366 filenodes raw values.
1352 """
1367 """
1353 # Don't send unless:
1368 # Don't send unless:
1354 # - changeset are being exchanged,
1369 # - changeset are being exchanged,
1355 # - the client supports it.
1370 # - the client supports it.
1356 if not (kwargs.get('cg', True) and 'hgtagsfnodes' in b2caps):
1371 if not (kwargs.get('cg', True) and 'hgtagsfnodes' in b2caps):
1357 return
1372 return
1358
1373
1359 outgoing = changegroup.computeoutgoing(repo, heads, common)
1374 outgoing = changegroup.computeoutgoing(repo, heads, common)
1360
1375
1361 if not outgoing.missingheads:
1376 if not outgoing.missingheads:
1362 return
1377 return
1363
1378
1364 cache = tags.hgtagsfnodescache(repo.unfiltered())
1379 cache = tags.hgtagsfnodescache(repo.unfiltered())
1365 chunks = []
1380 chunks = []
1366
1381
1367 # .hgtags fnodes are only relevant for head changesets. While we could
1382 # .hgtags fnodes are only relevant for head changesets. While we could
1368 # transfer values for all known nodes, there will likely be little to
1383 # transfer values for all known nodes, there will likely be little to
1369 # no benefit.
1384 # no benefit.
1370 #
1385 #
1371 # We don't bother using a generator to produce output data because
1386 # We don't bother using a generator to produce output data because
1372 # a) we only have 40 bytes per head and even esoteric numbers of heads
1387 # a) we only have 40 bytes per head and even esoteric numbers of heads
1373 # consume little memory (1M heads is 40MB) b) we don't want to send the
1388 # consume little memory (1M heads is 40MB) b) we don't want to send the
1374 # part if we don't have entries and knowing if we have entries requires
1389 # part if we don't have entries and knowing if we have entries requires
1375 # cache lookups.
1390 # cache lookups.
1376 for node in outgoing.missingheads:
1391 for node in outgoing.missingheads:
1377 # Don't compute missing, as this may slow down serving.
1392 # Don't compute missing, as this may slow down serving.
1378 fnode = cache.getfnode(node, computemissing=False)
1393 fnode = cache.getfnode(node, computemissing=False)
1379 if fnode is not None:
1394 if fnode is not None:
1380 chunks.extend([node, fnode])
1395 chunks.extend([node, fnode])
1381
1396
1382 if chunks:
1397 if chunks:
1383 bundler.newpart('hgtagsfnodes', data=''.join(chunks))
1398 bundler.newpart('hgtagsfnodes', data=''.join(chunks))
1384
1399
1385 def check_heads(repo, their_heads, context):
1400 def check_heads(repo, their_heads, context):
1386 """check if the heads of a repo have been modified
1401 """check if the heads of a repo have been modified
1387
1402
1388 Used by peer for unbundling.
1403 Used by peer for unbundling.
1389 """
1404 """
1390 heads = repo.heads()
1405 heads = repo.heads()
1391 heads_hash = util.sha1(''.join(sorted(heads))).digest()
1406 heads_hash = util.sha1(''.join(sorted(heads))).digest()
1392 if not (their_heads == ['force'] or their_heads == heads or
1407 if not (their_heads == ['force'] or their_heads == heads or
1393 their_heads == ['hashed', heads_hash]):
1408 their_heads == ['hashed', heads_hash]):
1394 # someone else committed/pushed/unbundled while we
1409 # someone else committed/pushed/unbundled while we
1395 # were transferring data
1410 # were transferring data
1396 raise error.PushRaced('repository changed while %s - '
1411 raise error.PushRaced('repository changed while %s - '
1397 'please try again' % context)
1412 'please try again' % context)
1398
1413
1399 def unbundle(repo, cg, heads, source, url):
1414 def unbundle(repo, cg, heads, source, url):
1400 """Apply a bundle to a repo.
1415 """Apply a bundle to a repo.
1401
1416
1402 this function makes sure the repo is locked during the application and have
1417 this function makes sure the repo is locked during the application and have
1403 mechanism to check that no push race occurred between the creation of the
1418 mechanism to check that no push race occurred between the creation of the
1404 bundle and its application.
1419 bundle and its application.
1405
1420
1406 If the push was raced as PushRaced exception is raised."""
1421 If the push was raced as PushRaced exception is raised."""
1407 r = 0
1422 r = 0
1408 # need a transaction when processing a bundle2 stream
1423 # need a transaction when processing a bundle2 stream
1409 wlock = lock = tr = None
1424 wlock = lock = tr = None
1410 recordout = None
1425 recordout = None
1411 # quick fix for output mismatch with bundle2 in 3.4
1426 # quick fix for output mismatch with bundle2 in 3.4
1412 captureoutput = repo.ui.configbool('experimental', 'bundle2-output-capture',
1427 captureoutput = repo.ui.configbool('experimental', 'bundle2-output-capture',
1413 False)
1428 False)
1414 if url.startswith('remote:http:') or url.startswith('remote:https:'):
1429 if url.startswith('remote:http:') or url.startswith('remote:https:'):
1415 captureoutput = True
1430 captureoutput = True
1416 try:
1431 try:
1417 check_heads(repo, heads, 'uploading changes')
1432 check_heads(repo, heads, 'uploading changes')
1418 # push can proceed
1433 # push can proceed
1419 if util.safehasattr(cg, 'params'):
1434 if util.safehasattr(cg, 'params'):
1420 r = None
1435 r = None
1421 try:
1436 try:
1422 wlock = repo.wlock()
1437 wlock = repo.wlock()
1423 lock = repo.lock()
1438 lock = repo.lock()
1424 tr = repo.transaction(source)
1439 tr = repo.transaction(source)
1425 tr.hookargs['source'] = source
1440 tr.hookargs['source'] = source
1426 tr.hookargs['url'] = url
1441 tr.hookargs['url'] = url
1427 tr.hookargs['bundle2'] = '1'
1442 tr.hookargs['bundle2'] = '1'
1428 op = bundle2.bundleoperation(repo, lambda: tr,
1443 op = bundle2.bundleoperation(repo, lambda: tr,
1429 captureoutput=captureoutput)
1444 captureoutput=captureoutput)
1430 try:
1445 try:
1431 op = bundle2.processbundle(repo, cg, op=op)
1446 op = bundle2.processbundle(repo, cg, op=op)
1432 finally:
1447 finally:
1433 r = op.reply
1448 r = op.reply
1434 if captureoutput and r is not None:
1449 if captureoutput and r is not None:
1435 repo.ui.pushbuffer(error=True, subproc=True)
1450 repo.ui.pushbuffer(error=True, subproc=True)
1436 def recordout(output):
1451 def recordout(output):
1437 r.newpart('output', data=output, mandatory=False)
1452 r.newpart('output', data=output, mandatory=False)
1438 tr.close()
1453 tr.close()
1439 except BaseException as exc:
1454 except BaseException as exc:
1440 exc.duringunbundle2 = True
1455 exc.duringunbundle2 = True
1441 if captureoutput and r is not None:
1456 if captureoutput and r is not None:
1442 parts = exc._bundle2salvagedoutput = r.salvageoutput()
1457 parts = exc._bundle2salvagedoutput = r.salvageoutput()
1443 def recordout(output):
1458 def recordout(output):
1444 part = bundle2.bundlepart('output', data=output,
1459 part = bundle2.bundlepart('output', data=output,
1445 mandatory=False)
1460 mandatory=False)
1446 parts.append(part)
1461 parts.append(part)
1447 raise
1462 raise
1448 else:
1463 else:
1449 lock = repo.lock()
1464 lock = repo.lock()
1450 r = changegroup.addchangegroup(repo, cg, source, url)
1465 r = changegroup.addchangegroup(repo, cg, source, url)
1451 finally:
1466 finally:
1452 lockmod.release(tr, lock, wlock)
1467 lockmod.release(tr, lock, wlock)
1453 if recordout is not None:
1468 if recordout is not None:
1454 recordout(repo.ui.popbuffer())
1469 recordout(repo.ui.popbuffer())
1455 return r
1470 return r
1456
1471
1457 # This is it's own function so extensions can override it.
1472 # This is it's own function so extensions can override it.
1458 def _walkstreamfiles(repo):
1473 def _walkstreamfiles(repo):
1459 return repo.store.walk()
1474 return repo.store.walk()
1460
1475
1461 def generatestreamclone(repo):
1476 def generatestreamclone(repo):
1462 """Emit content for a streaming clone.
1477 """Emit content for a streaming clone.
1463
1478
1464 This is a generator of raw chunks that constitute a streaming clone.
1479 This is a generator of raw chunks that constitute a streaming clone.
1465
1480
1466 The stream begins with a line of 2 space-delimited integers containing the
1481 The stream begins with a line of 2 space-delimited integers containing the
1467 number of entries and total bytes size.
1482 number of entries and total bytes size.
1468
1483
1469 Next, are N entries for each file being transferred. Each file entry starts
1484 Next, are N entries for each file being transferred. Each file entry starts
1470 as a line with the file name and integer size delimited by a null byte.
1485 as a line with the file name and integer size delimited by a null byte.
1471 The raw file data follows. Following the raw file data is the next file
1486 The raw file data follows. Following the raw file data is the next file
1472 entry, or EOF.
1487 entry, or EOF.
1473
1488
1474 When used on the wire protocol, an additional line indicating protocol
1489 When used on the wire protocol, an additional line indicating protocol
1475 success will be prepended to the stream. This function is not responsible
1490 success will be prepended to the stream. This function is not responsible
1476 for adding it.
1491 for adding it.
1477
1492
1478 This function will obtain a repository lock to ensure a consistent view of
1493 This function will obtain a repository lock to ensure a consistent view of
1479 the store is captured. It therefore may raise LockError.
1494 the store is captured. It therefore may raise LockError.
1480 """
1495 """
1481 entries = []
1496 entries = []
1482 total_bytes = 0
1497 total_bytes = 0
1483 # Get consistent snapshot of repo, lock during scan.
1498 # Get consistent snapshot of repo, lock during scan.
1484 lock = repo.lock()
1499 lock = repo.lock()
1485 try:
1500 try:
1486 repo.ui.debug('scanning\n')
1501 repo.ui.debug('scanning\n')
1487 for name, ename, size in _walkstreamfiles(repo):
1502 for name, ename, size in _walkstreamfiles(repo):
1488 if size:
1503 if size:
1489 entries.append((name, size))
1504 entries.append((name, size))
1490 total_bytes += size
1505 total_bytes += size
1491 finally:
1506 finally:
1492 lock.release()
1507 lock.release()
1493
1508
1494 repo.ui.debug('%d files, %d bytes to transfer\n' %
1509 repo.ui.debug('%d files, %d bytes to transfer\n' %
1495 (len(entries), total_bytes))
1510 (len(entries), total_bytes))
1496 yield '%d %d\n' % (len(entries), total_bytes)
1511 yield '%d %d\n' % (len(entries), total_bytes)
1497
1512
1498 svfs = repo.svfs
1513 svfs = repo.svfs
1499 oldaudit = svfs.mustaudit
1514 oldaudit = svfs.mustaudit
1500 debugflag = repo.ui.debugflag
1515 debugflag = repo.ui.debugflag
1501 svfs.mustaudit = False
1516 svfs.mustaudit = False
1502
1517
1503 try:
1518 try:
1504 for name, size in entries:
1519 for name, size in entries:
1505 if debugflag:
1520 if debugflag:
1506 repo.ui.debug('sending %s (%d bytes)\n' % (name, size))
1521 repo.ui.debug('sending %s (%d bytes)\n' % (name, size))
1507 # partially encode name over the wire for backwards compat
1522 # partially encode name over the wire for backwards compat
1508 yield '%s\0%d\n' % (store.encodedir(name), size)
1523 yield '%s\0%d\n' % (store.encodedir(name), size)
1509 if size <= 65536:
1524 if size <= 65536:
1510 fp = svfs(name)
1525 fp = svfs(name)
1511 try:
1526 try:
1512 data = fp.read(size)
1527 data = fp.read(size)
1513 finally:
1528 finally:
1514 fp.close()
1529 fp.close()
1515 yield data
1530 yield data
1516 else:
1531 else:
1517 for chunk in util.filechunkiter(svfs(name), limit=size):
1532 for chunk in util.filechunkiter(svfs(name), limit=size):
1518 yield chunk
1533 yield chunk
1519 finally:
1534 finally:
1520 svfs.mustaudit = oldaudit
1535 svfs.mustaudit = oldaudit
1521
1536
1522 def consumestreamclone(repo, fp):
1537 def consumestreamclone(repo, fp):
1523 """Apply the contents from a streaming clone file.
1538 """Apply the contents from a streaming clone file.
1524
1539
1525 This takes the output from "streamout" and applies it to the specified
1540 This takes the output from "streamout" and applies it to the specified
1526 repository.
1541 repository.
1527
1542
1528 Like "streamout," the status line added by the wire protocol is not handled
1543 Like "streamout," the status line added by the wire protocol is not handled
1529 by this function.
1544 by this function.
1530 """
1545 """
1531 lock = repo.lock()
1546 lock = repo.lock()
1532 try:
1547 try:
1533 repo.ui.status(_('streaming all changes\n'))
1548 repo.ui.status(_('streaming all changes\n'))
1534 l = fp.readline()
1549 l = fp.readline()
1535 try:
1550 try:
1536 total_files, total_bytes = map(int, l.split(' ', 1))
1551 total_files, total_bytes = map(int, l.split(' ', 1))
1537 except (ValueError, TypeError):
1552 except (ValueError, TypeError):
1538 raise error.ResponseError(
1553 raise error.ResponseError(
1539 _('unexpected response from remote server:'), l)
1554 _('unexpected response from remote server:'), l)
1540 repo.ui.status(_('%d files to transfer, %s of data\n') %
1555 repo.ui.status(_('%d files to transfer, %s of data\n') %
1541 (total_files, util.bytecount(total_bytes)))
1556 (total_files, util.bytecount(total_bytes)))
1542 handled_bytes = 0
1557 handled_bytes = 0
1543 repo.ui.progress(_('clone'), 0, total=total_bytes)
1558 repo.ui.progress(_('clone'), 0, total=total_bytes)
1544 start = time.time()
1559 start = time.time()
1545
1560
1546 tr = repo.transaction(_('clone'))
1561 tr = repo.transaction(_('clone'))
1547 try:
1562 try:
1548 for i in xrange(total_files):
1563 for i in xrange(total_files):
1549 # XXX doesn't support '\n' or '\r' in filenames
1564 # XXX doesn't support '\n' or '\r' in filenames
1550 l = fp.readline()
1565 l = fp.readline()
1551 try:
1566 try:
1552 name, size = l.split('\0', 1)
1567 name, size = l.split('\0', 1)
1553 size = int(size)
1568 size = int(size)
1554 except (ValueError, TypeError):
1569 except (ValueError, TypeError):
1555 raise error.ResponseError(
1570 raise error.ResponseError(
1556 _('unexpected response from remote server:'), l)
1571 _('unexpected response from remote server:'), l)
1557 if repo.ui.debugflag:
1572 if repo.ui.debugflag:
1558 repo.ui.debug('adding %s (%s)\n' %
1573 repo.ui.debug('adding %s (%s)\n' %
1559 (name, util.bytecount(size)))
1574 (name, util.bytecount(size)))
1560 # for backwards compat, name was partially encoded
1575 # for backwards compat, name was partially encoded
1561 ofp = repo.svfs(store.decodedir(name), 'w')
1576 ofp = repo.svfs(store.decodedir(name), 'w')
1562 for chunk in util.filechunkiter(fp, limit=size):
1577 for chunk in util.filechunkiter(fp, limit=size):
1563 handled_bytes += len(chunk)
1578 handled_bytes += len(chunk)
1564 repo.ui.progress(_('clone'), handled_bytes,
1579 repo.ui.progress(_('clone'), handled_bytes,
1565 total=total_bytes)
1580 total=total_bytes)
1566 ofp.write(chunk)
1581 ofp.write(chunk)
1567 ofp.close()
1582 ofp.close()
1568 tr.close()
1583 tr.close()
1569 finally:
1584 finally:
1570 tr.release()
1585 tr.release()
1571
1586
1572 # Writing straight to files circumvented the inmemory caches
1587 # Writing straight to files circumvented the inmemory caches
1573 repo.invalidate()
1588 repo.invalidate()
1574
1589
1575 elapsed = time.time() - start
1590 elapsed = time.time() - start
1576 if elapsed <= 0:
1591 if elapsed <= 0:
1577 elapsed = 0.001
1592 elapsed = 0.001
1578 repo.ui.progress(_('clone'), None)
1593 repo.ui.progress(_('clone'), None)
1579 repo.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') %
1594 repo.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') %
1580 (util.bytecount(total_bytes), elapsed,
1595 (util.bytecount(total_bytes), elapsed,
1581 util.bytecount(total_bytes / elapsed)))
1596 util.bytecount(total_bytes / elapsed)))
1582 finally:
1597 finally:
1583 lock.release()
1598 lock.release()
General Comments 0
You need to be logged in to leave comments. Login now