##// END OF EJS Templates
Fix hgit usage of repo.changes and fancyopts to reflect current hg api
mason@suse.com -
r719:dda25857 default
parent child Browse files
Show More
@@ -1,258 +1,255
1 1 #!/usr/bin/env python
2 2 #
3 3 # Minimal support for git commands on an hg repository
4 4 #
5 5 # Copyright 2005 Chris Mason <mason@suse.com>
6 6 #
7 7 # This software may be used and distributed according to the terms
8 8 # of the GNU General Public License, incorporated herein by reference.
9 9
10 10 import time, sys, signal
11 11 from mercurial import hg, mdiff, fancyopts, commands, ui
12 12
13 13 def difftree(args, ui, repo):
14 14 def __difftree(repo, files = None, node1 = None, node2 = None):
15 15 def date(c):
16 16 return time.asctime(time.gmtime(float(c[2].split(' ')[0])))
17 17
18 18 if node2:
19 19 change = repo.changelog.read(node2)
20 20 mmap2 = repo.manifest.read(change[0])
21 (c, a, d) = repo.diffrevs(node1, node2)
21 (c, a, d, u) = repo.changes(node1, node2)
22 22 def read(f): return repo.file(f).read(mmap2[f])
23 23 date2 = date(change)
24 24 else:
25 25 date2 = time.asctime()
26 26 (c, a, d, u) = repo.diffdir(repo.root, node1)
27 27 if not node1:
28 28 node1 = repo.dirstate.parents()[0]
29 29 def read(f): return file(os.path.join(repo.root, f)).read()
30 30
31 31 change = repo.changelog.read(node1)
32 32 mmap = repo.manifest.read(change[0])
33 33 date1 = date(change)
34 34 empty = "0" * 40;
35 35
36 36 if files:
37 37 c, a, d = map(lambda x: filterfiles(files, x), (c, a, d))
38 38
39 39 for f in c:
40 40 # TODO get file permissions
41 41 print ":100664 100664 %s %s M\t%s\t%s" % (hg.hex(mmap[f]),
42 42 hg.hex(mmap2[f]), f, f)
43 43 for f in a:
44 44 print ":000000 100664 %s %s N\t%s\t%s" % (empty, hg.hex(mmap2[f]), f, f)
45 45 for f in d:
46 46 print ":100664 000000 %s %s D\t%s\t%s" % (hg.hex(mmap[f]), empty, f, f)
47 47 ##
48 48
49 49 revs = []
50 50 if args:
51 51 doptions = {}
52 52 opts = [('p', 'patch', None, 'patch'),
53 53 ('r', 'recursive', None, 'recursive')]
54 args = fancyopts.fancyopts(args, opts, doptions,
55 'hg diff-tree [options] sha1 sha1')
54 args = fancyopts.fancyopts(args, opts, doptions)
56 55
57 56 if len(args) < 2:
58 57 help()
59 58 sys.exit(1)
60 59 revs.append(repo.lookup(args[0]))
61 60 revs.append(repo.lookup(args[1]))
62 61 args = args[2:]
63 62 if doptions['patch']:
64 commands.dodiff(ui, repo, "", args, *revs)
63 commands.dodiff(sys.stdout, ui, repo, args, *revs)
65 64 else:
66 65 __difftree(repo, args, *revs)
67 66
68 67 def catcommit(repo, n, prefix):
69 68 nlprefix = '\n' + prefix;
70 69 changes = repo.changelog.read(n)
71 70 (p1, p2) = repo.changelog.parents(n)
72 71 (h, h1, h2) = map(hg.hex, (n, p1, p2))
73 72 (i1, i2) = map(repo.changelog.rev, (p1, p2))
74 73 print "tree %s" % (h)
75 74 if i1 != -1: print "%sparent %s" % (prefix, h1)
76 75 if i2 != -1: print "%sparent %s" % (prefix, h2)
77 76 date_ar = changes[2].split(' ')
78 77 date = int(float(date_ar[0]))
79 78 print "%sauthor <%s> %s %s" % (prefix, changes[1], date, date_ar[1])
80 79 print "%scommitter <%s> %s %s" % (prefix, changes[1], date, date_ar[1])
81 80 print prefix
82 81 if prefix != "":
83 82 print "%s%s" % (prefix, changes[4].replace('\n', nlprefix).strip())
84 83 else:
85 84 print changes[4]
86 85
87 86 def catfile(args, ui, repo):
88 87 doptions = {}
89 88 opts = [('s', 'stdin', None, 'stdin')]
90 args = fancyopts.fancyopts(args, opts, doptions,
91 'hg cat-file type sha1')
89 args = fancyopts.fancyopts(args, opts, doptions)
92 90
93 91 # in stdin mode, every line except the commit is prefixed with two
94 92 # spaces. This way the our caller can find the commit without magic
95 93 # strings
96 94 #
97 95 prefix = ""
98 96 if doptions['stdin']:
99 97 try:
100 98 (type, r) = raw_input().split(' ');
101 99 prefix = " "
102 100 except EOFError:
103 101 return
104 102
105 103 else:
106 104 if len(args) < 2:
107 105 help()
108 106 sys.exit(1)
109 107 type = args[0]
110 108 r = args[1]
111 109
112 110 while r:
113 111 if type != "commit":
114 112 sys.stderr.write("aborting hg cat-file only understands commits\n")
115 113 sys.exit(1);
116 114 n = repo.changelog.lookup(r)
117 115 catcommit(repo, n, prefix)
118 116 if doptions['stdin']:
119 117 try:
120 118 (type, r) = raw_input().split(' ');
121 119 except EOFError:
122 120 break
123 121 else:
124 122 break
125 123
126 124 # git rev-tree is a confusing thing. You can supply a number of
127 125 # commit sha1s on the command line, and it walks the commit history
128 126 # telling you which commits are reachable from the supplied ones via
129 127 # a bitmask based on arg position.
130 128 # you can specify a commit to stop at by starting the sha1 with ^
131 129 def revtree(args, repo, full="tree", maxnr=0):
132 130 # calculate and return the reachability bitmask for sha
133 131 def is_reachable(ar, reachable, sha):
134 132 if len(ar) == 0:
135 133 return 1
136 134 mask = 0
137 135 for i in range(len(ar)):
138 136 if sha in reachable[i]:
139 137 mask |= 1 << i
140 138
141 139 return mask
142 140
143 141 reachable = []
144 142 stop_sha1 = []
145 143 want_sha1 = []
146 144 count = 0
147 145
148 146 # figure out which commits they are asking for and which ones they
149 147 # want us to stop on
150 148 for i in range(len(args)):
151 149 if args[i].count('^'):
152 150 s = args[i].split('^')[1]
153 151 stop_sha1.append(repo.changelog.lookup(s))
154 152 want_sha1.append(s)
155 153 elif args[i] != 'HEAD':
156 154 want_sha1.append(args[i])
157 155
158 156 # calculate the graph for the supplied commits
159 157 for i in range(len(want_sha1)):
160 158 reachable.append({});
161 159 n = repo.changelog.lookup(want_sha1[i]);
162 160 visit = [n];
163 161 reachable[i][n] = 1
164 162 while visit:
165 163 n = visit.pop(0)
166 164 if n in stop_sha1:
167 165 break
168 166 for p in repo.changelog.parents(n):
169 167 if p not in reachable[i]:
170 168 reachable[i][p] = 1
171 169 visit.append(p)
172 170 if p in stop_sha1:
173 171 break
174 172
175 173 # walk the repository looking for commits that are in our
176 174 # reachability graph
177 175 for i in range(repo.changelog.count()-1, -1, -1):
178 176 n = repo.changelog.node(i)
179 177 mask = is_reachable(want_sha1, reachable, n)
180 178 if mask:
181 179 if not full:
182 180 print hg.hex(n)
183 181 elif full is "commit":
184 182 print hg.hex(n)
185 183 catcommit(repo, n, ' ')
186 184 else:
187 185 changes = repo.changelog.read(n)
188 186 (p1, p2) = repo.changelog.parents(n)
189 187 (h, h1, h2) = map(hg.hex, (n, p1, p2))
190 188 (i1, i2) = map(repo.changelog.rev, (p1, p2))
191 189
192 190 date = changes[2].split(' ')[0]
193 191 print "%s %s:%s" % (date, h, mask),
194 192 mask = is_reachable(want_sha1, reachable, p1)
195 193 if i1 != -1 and mask > 0:
196 194 print "%s:%s " % (h1, mask),
197 195 mask = is_reachable(want_sha1, reachable, p2)
198 196 if i2 != -1 and mask > 0:
199 197 print "%s:%s " % (h2, mask),
200 198 print ""
201 199 if maxnr and count >= maxnr:
202 200 break
203 201 count += 1
204 202
205 203 # git rev-list tries to order things by date, and has the ability to stop
206 204 # at a given commit without walking the whole repo. TODO add the stop
207 205 # parameter
208 206 def revlist(args, repo):
209 207 doptions = {}
210 208 opts = [('c', 'commit', None, 'commit'),
211 209 ('n', 'max-nr', 0, 'max-nr')]
212 args = fancyopts.fancyopts(args, opts, doptions,
213 'hg rev-list')
210 args = fancyopts.fancyopts(args, opts, doptions)
214 211 if doptions['commit']:
215 212 full = "commit"
216 213 else:
217 214 full = None
218 215 for i in range(1, len(args)):
219 216 args[i] = '^' + args[i]
220 217 revtree(args, repo, full, doptions['max-nr'])
221 218
222 219 def catchterm(*args):
223 220 raise SignalInterrupt
224 221
225 222 def help():
226 223 sys.stderr.write("commands:\n")
227 224 sys.stderr.write(" hgit cat-file [type] sha1\n")
228 225 sys.stderr.write(" hgit diff-tree [-p] [-r] sha1 sha1\n")
229 226 sys.stderr.write(" hgit rev-tree [sha1 ... [^stop sha1]]\n")
230 227 sys.stderr.write(" hgit rev-list [-c]\n")
231 228
232 229 cmd = sys.argv[1]
233 230 args = sys.argv[2:]
234 231 u = ui.ui()
235 232 signal.signal(signal.SIGTERM, catchterm)
236 233 repo = hg.repository(ui = u)
237 234
238 235 if cmd == "diff-tree":
239 236 difftree(args, u, repo)
240 237
241 238 elif cmd == "cat-file":
242 239 catfile(args, u, repo)
243 240
244 241 elif cmd == "rev-tree":
245 242 revtree(args, repo)
246 243
247 244 elif cmd == "rev-list":
248 245 revlist(args, repo)
249 246
250 247 elif cmd == "help":
251 248 help()
252 249
253 250 else:
254 251 if cmd: sys.stderr.write("unknown command\n\n")
255 252 help()
256 253 sys.exit(1)
257 254
258 255 sys.exit(0)
General Comments 0
You need to be logged in to leave comments. Login now