##// END OF EJS Templates
subrepo: add some debug output to submerge
Matt Mackall -
r9779:58a6f3f4 default
parent child Browse files
Show More
@@ -1,201 +1,213
1 1 # subrepo.py - sub-repository handling for Mercurial
2 2 #
3 3 # Copyright 2006, 2007 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 8 import errno, os
9 9 from i18n import _
10 10 import config, util, node, error
11 11 hg = None
12 12
13 13 nullstate = ('', '')
14 14
15 15 def state(ctx):
16 16 p = config.config()
17 17 def read(f, sections=None, remap=None):
18 18 if f in ctx:
19 19 try:
20 20 p.parse(f, ctx[f].data(), sections, remap)
21 21 except IOError, err:
22 22 if err.errno != errno.ENOENT:
23 23 raise
24 24 read('.hgsub')
25 25
26 26 rev = {}
27 27 if '.hgsubstate' in ctx:
28 28 try:
29 29 for l in ctx['.hgsubstate'].data().splitlines():
30 30 revision, path = l.split(" ", 1)
31 31 rev[path] = revision
32 32 except IOError, err:
33 33 if err.errno != errno.ENOENT:
34 34 raise
35 35
36 36 state = {}
37 37 for path, src in p[''].items():
38 38 state[path] = (src, rev.get(path, ''))
39 39
40 40 return state
41 41
42 42 def writestate(repo, state):
43 43 repo.wwrite('.hgsubstate',
44 44 ''.join(['%s %s\n' % (state[s][1], s)
45 45 for s in sorted(state)]), '')
46 46
47 47 def submerge(repo, wctx, mctx, actx):
48 48 if mctx == actx: # backwards?
49 49 actx = wctx.p1()
50 50 s1 = wctx.substate
51 51 s2 = mctx.substate
52 52 sa = actx.substate
53 53 sm = {}
54 54
55 def debug(s, msg, r=""):
56 if r:
57 r = "%s:%s" % r
58 repo.ui.debug(_(" subrepo %s: %s %s\n") % (s, msg, r))
59
55 60 for s, l in s1.items():
56 61 a = sa.get(s, nullstate)
57 62 if s in s2:
58 63 r = s2[s]
59 64 if l == r or r == a: # no change or local is newer
60 65 sm[s] = l
61 66 continue
62 67 elif l == a: # other side changed
68 debug(s, _("other changed, get"), r)
63 69 wctx.sub(s).get(r)
64 70 sm[s] = r
65 71 elif l[0] != r[0]: # sources differ
66 72 if repo.ui.promptchoice(
67 73 _(' subrepository sources for %s differ\n'
68 74 'use (l)ocal source (%s) or (r)emote source (%s)?')
69 75 % (s, l[0], r[0]),
70 76 (_('&Local'), _('&Remote')), 0):
77 debug(s, _("prompt changed, get"), r)
71 78 wctx.sub(s).get(r)
72 79 sm[s] = r
73 80 elif l[1] == a[1]: # local side is unchanged
81 debug(s, _("other side changed, get"), r)
74 82 wctx.sub(s).get(r)
75 83 sm[s] = r
76 84 else:
85 debug(s, _("both sides changed, merge with"), r)
77 86 wctx.sub(s).merge(r)
78 87 sm[s] = l
79 88 elif l == a: # remote removed, local unchanged
89 debug(s, _("remote removed, remove"))
80 90 wctx.sub(s).remove()
81 91 else:
82 92 if repo.ui.promptchoice(
83 93 _(' local changed subrepository %s which remote removed\n'
84 94 'use (c)hanged version or (d)elete?') % s,
85 95 (_('&Changed'), _('&Delete')), 0):
96 debug(s, _("prompt remove"))
86 97 wctx.sub(s).remove()
87 98
88 99 for s, r in s2.items():
89 100 if s in s1:
90 101 continue
91 102 elif s not in sa:
103 debug(s, _("remote added, get"), r)
92 104 wctx.sub(s).get(r)
93 105 sm[s] = r
94 106 elif r != sa[s]:
95 107 if repo.ui.promptchoice(
96 108 _(' remote changed subrepository %s which local removed\n'
97 109 'use (c)hanged version or (d)elete?') % s,
98 110 (_('&Changed'), _('&Delete')), 0) == 0:
111 debug(s, _("prompt recreate"), r)
99 112 wctx.sub(s).get(r)
100 113 sm[s] = r
101 114
102 115 # record merged .hgsubstate
103 116 writestate(repo, sm)
104 117
105 118 def _abssource(repo, push=False):
106 119 if hasattr(repo, '_subparent'):
107 120 source = repo._subsource
108 121 if source.startswith('/') or '://' in source:
109 122 return source
110 123 parent = _abssource(repo._subparent)
111 124 if '://' in parent:
112 125 if parent[-1] == '/':
113 126 parent = parent[:-1]
114 127 return parent + '/' + source
115 128 return os.path.join(parent, repo._subsource)
116 129 if push and repo.ui.config('paths', 'default-push'):
117 130 return repo.ui.config('paths', 'default-push', repo.root)
118 131 return repo.ui.config('paths', 'default', repo.root)
119 132
120 133 def subrepo(ctx, path):
121 134 # subrepo inherently violates our import layering rules
122 135 # because it wants to make repo objects from deep inside the stack
123 136 # so we manually delay the circular imports to not break
124 137 # scripts that don't use our demand-loading
125 138 global hg
126 139 import hg as h
127 140 hg = h
128 141
129 142 util.path_auditor(ctx._repo.root)(path)
130 143 state = ctx.substate.get(path, nullstate)
131 144 if state[0].startswith('['): # future expansion
132 145 raise error.Abort('unknown subrepo source %s' % state[0])
133 146 return hgsubrepo(ctx, path, state)
134 147
135 148 class hgsubrepo(object):
136 149 def __init__(self, ctx, path, state):
137 150 self._path = path
138 151 self._state = state
139 152 r = ctx._repo
140 153 root = r.wjoin(path)
141 154 if os.path.exists(os.path.join(root, '.hg')):
142 155 self._repo = hg.repository(r.ui, root)
143 156 else:
144 157 util.makedirs(root)
145 158 self._repo = hg.repository(r.ui, root, create=True)
146 159 self._repo._subparent = r
147 160 self._repo._subsource = state[0]
148 161
149 162 def dirty(self):
150 163 r = self._state[1]
151 164 if r == '':
152 165 return True
153 166 w = self._repo[None]
154 167 if w.p1() != self._repo[r]: # version checked out changed
155 168 return True
156 169 return w.dirty() # working directory changed
157 170
158 171 def commit(self, text, user, date):
159 172 n = self._repo.commit(text, user, date)
160 173 if not n:
161 174 return self._repo['.'].hex() # different version checked out
162 175 return node.hex(n)
163 176
164 177 def remove(self):
165 178 # we can't fully delete the repository as it may contain
166 179 # local-only history
167 180 self._repo.ui.note(_('removing subrepo %s\n') % self._path)
168 181 hg.clean(self._repo, node.nullid, False)
169 182
170 183 def _get(self, state):
171 184 source, revision = state
172 185 try:
173 186 self._repo.lookup(revision)
174 187 except error.RepoError:
175 188 self._repo._subsource = source
176 189 self._repo.ui.status(_('pulling subrepo %s\n') % self._path)
177 190 srcurl = _abssource(self._repo)
178 191 other = hg.repository(self._repo.ui, srcurl)
179 192 self._repo.pull(other)
180 193
181 194 def get(self, state):
182 195 self._get(state)
183 196 source, revision = state
184 197 hg.clean(self._repo, revision, False)
185 198
186 199 def merge(self, state):
187 200 self._get(state)
188 201 hg.merge(self._repo, state[1], remind=False)
189 202
190 203 def push(self, force):
191 204 # push subrepos depth-first for coherent ordering
192 205 c = self._repo['']
193 206 subs = c.substate # only repos that are committed
194 207 for s in sorted(subs):
195 208 c.sub(s).push(force)
196 209
197 210 self._repo.ui.status(_('pushing subrepo %s\n') % self._path)
198 211 dsturl = _abssource(self._repo, True)
199 212 other = hg.repository(self._repo.ui, dsturl)
200 213 self._repo.push(other, force)
201
General Comments 0
You need to be logged in to leave comments. Login now