cdiff.py 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Term based tool to view *colored*, *incremental* diff in a *Git/Mercurial/Svn*
  5. workspace or from stdin, with *side by side* and *auto pager* support. Requires
  6. python (>= 2.5.0) and ``less``.
  7. """
  8. META_INFO = {
  9. 'version' : '0.9.2',
  10. 'license' : 'BSD-3',
  11. 'author' : 'Matthew Wang',
  12. 'email' : 'mattwyl(@)gmail(.)com',
  13. 'url' : 'https://github.com/ymattw/cdiff',
  14. 'keywords' : 'colored incremental side-by-side diff',
  15. 'description' : ('View colored, incremental diff in a workspace or from '
  16. 'stdin, with side by side and auto pager support')
  17. }
  18. import sys
  19. if sys.hexversion < 0x02050000:
  20. raise SystemExit("*** Requires python >= 2.5.0") # pragma: no cover
  21. import re
  22. import signal
  23. import subprocess
  24. import select
  25. import os
  26. import difflib
  27. COLORS = {
  28. 'reset' : '\x1b[0m',
  29. 'underline' : '\x1b[4m',
  30. 'reverse' : '\x1b[7m',
  31. 'red' : '\x1b[31m',
  32. 'green' : '\x1b[32m',
  33. 'yellow' : '\x1b[33m',
  34. 'blue' : '\x1b[34m',
  35. 'magenta' : '\x1b[35m',
  36. 'cyan' : '\x1b[36m',
  37. 'lightred' : '\x1b[1;31m',
  38. 'lightgreen' : '\x1b[1;32m',
  39. 'lightyellow' : '\x1b[1;33m',
  40. 'lightblue' : '\x1b[1;34m',
  41. 'lightmagenta' : '\x1b[1;35m',
  42. 'lightcyan' : '\x1b[1;36m',
  43. }
  44. # Keys for revision control probe, diff and log with diff
  45. VCS_INFO = {
  46. 'Git': {
  47. 'probe' : ['git', 'rev-parse'],
  48. 'diff' : ['git', 'diff', '--no-ext-diff'],
  49. 'log' : ['git', 'log', '--patch'],
  50. },
  51. 'Mercurial': {
  52. 'probe' : ['hg', 'summary'],
  53. 'diff' : ['hg', 'diff'],
  54. 'log' : ['hg', 'log', '--patch'],
  55. },
  56. 'Svn': {
  57. 'probe' : ['svn', 'info'],
  58. 'diff' : ['svn', 'diff'],
  59. 'log' : ['svn', 'log', '--diff', '--use-merge-history'],
  60. },
  61. }
  62. def colorize(text, start_color, end_color='reset'):
  63. return COLORS[start_color] + text + COLORS[end_color]
  64. class Hunk(object):
  65. def __init__(self, hunk_headers, hunk_meta, old_addr, new_addr):
  66. self._hunk_headers = hunk_headers
  67. self._hunk_meta = hunk_meta
  68. self._old_addr = old_addr # tuple (start, offset)
  69. self._new_addr = new_addr # tuple (start, offset)
  70. self._hunk_list = [] # list of tuple (attr, line)
  71. def append(self, hunk_line):
  72. """hunk_line is a 2-element tuple: (attr, text), where attr is:
  73. '-': old, '+': new, ' ': common
  74. """
  75. self._hunk_list.append(hunk_line)
  76. def mdiff(self):
  77. r"""The difflib._mdiff() function returns an interator which returns a
  78. tuple: (from line tuple, to line tuple, boolean flag)
  79. from/to line tuple -- (line num, line text)
  80. line num -- integer or None (to indicate a context separation)
  81. line text -- original line text with following markers inserted:
  82. '\0+' -- marks start of added text
  83. '\0-' -- marks start of deleted text
  84. '\0^' -- marks start of changed text
  85. '\1' -- marks end of added/deleted/changed text
  86. boolean flag -- None indicates context separation, True indicates
  87. either "from" or "to" line contains a change, otherwise False.
  88. """
  89. return difflib._mdiff(self._get_old_text(), self._get_new_text())
  90. def _get_old_text(self):
  91. out = []
  92. for (attr, line) in self._hunk_list:
  93. if attr != '+':
  94. out.append(line)
  95. return out
  96. def _get_new_text(self):
  97. out = []
  98. for (attr, line) in self._hunk_list:
  99. if attr != '-':
  100. out.append(line)
  101. return out
  102. class UnifiedDiff(object):
  103. def __init__(self, headers, old_path, new_path, hunks):
  104. self._headers = headers
  105. self._old_path = old_path
  106. self._new_path = new_path
  107. self._hunks = hunks
  108. def is_old_path(self, line):
  109. return line.startswith('--- ')
  110. def is_new_path(self, line):
  111. return line.startswith('+++ ')
  112. def is_hunk_meta(self, line):
  113. """Minimal valid hunk meta is like '@@ -1 +1 @@', note extra chars
  114. might occur after the ending @@, e.g. in git log. '## ' usually
  115. indicates svn property changes in output from `svn log --diff`
  116. """
  117. return (line.startswith('@@ -') and line.find(' @@') >= 8) or \
  118. (line.startswith('## -') and line.find(' ##') >= 8)
  119. def parse_hunk_meta(self, hunk_meta):
  120. # @@ -3,7 +3,6 @@
  121. a = hunk_meta.split()[1].split(',') # -3 7
  122. if len(a) > 1:
  123. old_addr = (int(a[0][1:]), int(a[1]))
  124. else:
  125. # @@ -1 +1,2 @@
  126. old_addr = (int(a[0][1:]), 0)
  127. b = hunk_meta.split()[2].split(',') # +3 6
  128. if len(b) > 1:
  129. new_addr = (int(b[0][1:]), int(b[1]))
  130. else:
  131. # @@ -0,0 +1 @@
  132. new_addr = (int(b[0][1:]), 0)
  133. return (old_addr, new_addr)
  134. def parse_hunk_line(self, line):
  135. return (line[0], line[1:])
  136. def is_old(self, line):
  137. """Exclude old path and header line from svn log --diff output, allow
  138. '----' likely to see in diff from yaml file
  139. """
  140. return line.startswith('-') and not self.is_old_path(line) and \
  141. not re.match(r'^-{72}$', line.rstrip())
  142. def is_new(self, line):
  143. return line.startswith('+') and not self.is_new_path(line)
  144. def is_common(self, line):
  145. return line.startswith(' ')
  146. def is_eof(self, line):
  147. # \ No newline at end of file
  148. # \ No newline at end of property
  149. return line.startswith(r'\ No newline at end of')
  150. def is_only_in_dir(self, line):
  151. return line.startswith('Only in ')
  152. def is_binary_differ(self, line):
  153. return re.match('^Binary files .* differ$', line.rstrip())
  154. class PatchStream(object):
  155. def __init__(self, diff_hdl):
  156. self._diff_hdl = diff_hdl
  157. self._stream_header_size = 0
  158. self._stream_header = []
  159. # Test whether stream is empty by read 1 line
  160. line = self._diff_hdl.readline()
  161. if not line:
  162. self._is_empty = True
  163. else:
  164. self._stream_header.append(line)
  165. self._stream_header_size += 1
  166. self._is_empty = False
  167. def is_empty(self):
  168. return self._is_empty
  169. def read_stream_header(self, stream_header_size):
  170. """Returns a small chunk for patch type detect, suppose to call once"""
  171. for i in range(1, stream_header_size):
  172. line = self._diff_hdl.readline()
  173. if not line:
  174. break
  175. self._stream_header.append(line)
  176. self._stream_header_size += 1
  177. return self._stream_header
  178. def __iter__(self):
  179. for line in self._stream_header:
  180. yield line
  181. for line in self._diff_hdl:
  182. yield line
  183. class PatchStreamForwarder(object):
  184. """A blocking stream forwarder use `select` and line buffered mode. Feed
  185. input stream to a diff format translator and read output stream from it.
  186. Note input stream is non-seekable, and upstream has eaten some lines.
  187. """
  188. def __init__(self, istream, translator):
  189. assert isinstance(istream, PatchStream)
  190. assert isinstance(translator, subprocess.Popen)
  191. self._istream = iter(istream)
  192. self._in = translator.stdin
  193. self._out = translator.stdout
  194. def _can_read(self, timeout=0):
  195. return select.select([self._out.fileno()], [], [], timeout)[0]
  196. def _forward_line(self):
  197. try:
  198. line = next(self._istream)
  199. self._in.write(line.encode('utf-8'))
  200. except StopIteration:
  201. # XXX: close() does not notify select() for EOF event in python
  202. # 2.x, one of these two interface must be buggy
  203. #
  204. # Sending EOF manually does not work either
  205. #
  206. #print('StopIteration, closing (sending EOF)')
  207. #self._in.write('\x1a'.encode('utf-8'))
  208. self._in.close()
  209. def __iter__(self):
  210. while True:
  211. if self._can_read():
  212. line = self._out.readline()
  213. if line:
  214. yield line
  215. else:
  216. #print('got EOF')
  217. return
  218. elif not self._in.closed:
  219. self._forward_line()
  220. else:
  221. #print('no data to read and istream closed')
  222. # XXX: `close` or `select` seems buggy in python 2.x, select
  223. # does not tell ready event on _translator.stdout anymore once
  224. # the stdin is closed. Just add a timeout here to detect, when
  225. # that happen the remaining in output stream will be discarded
  226. #
  227. if not self._can_read(0.5):
  228. return
  229. class DiffParser(object):
  230. def __init__(self, stream):
  231. header = [decode(line) for line in stream.read_stream_header(100)]
  232. size = len(header)
  233. if size >= 4 and (header[0].startswith('*** ') and
  234. header[1].startswith('--- ') and
  235. header[2].rstrip() == '***************' and
  236. header[3].startswith('*** ') and
  237. header[3].rstrip().endswith(' ****')):
  238. # For context diff, try use `filterdiff` to translate it to unified
  239. # format and provide a new stream
  240. #
  241. self._type = 'context'
  242. try:
  243. # Use line buffered mode so that to readline() in block mode
  244. self._translator = subprocess.Popen(
  245. ['filterdiff', '--format=unified'], stdin=subprocess.PIPE,
  246. stdout=subprocess.PIPE, bufsize=1)
  247. except OSError:
  248. raise SystemExit('*** Context diff support depends on '
  249. 'filterdiff')
  250. self._stream = PatchStreamForwarder(stream, self._translator)
  251. return
  252. for n in range(size):
  253. if header[n].startswith('--- ') and (n < size - 1) and \
  254. header[n+1].startswith('+++ '):
  255. self._type = 'unified'
  256. self._stream = stream
  257. break
  258. else:
  259. # `filterdiff` translates unknown diff to nothing, fall through to
  260. # unified diff give cdiff a chance to show everything as headers
  261. #
  262. sys.stderr.write("*** unknown format, fall through to 'unified'\n")
  263. self._type = 'unified'
  264. self._stream = stream
  265. def get_diff_generator(self):
  266. """parse all diff lines, construct a list of UnifiedDiff objects"""
  267. diff = UnifiedDiff([], None, None, [])
  268. headers = []
  269. for line in self._stream:
  270. line = decode(line)
  271. if diff.is_old_path(line):
  272. # FIXME: '--- ' breaks here, better to probe next line
  273. if diff._old_path and diff._new_path and diff._hunks:
  274. # See a new diff, yield previous diff if exists
  275. yield diff
  276. diff = UnifiedDiff(headers, line, None, [])
  277. headers = []
  278. elif diff.is_new_path(line) and diff._old_path:
  279. diff._new_path = line
  280. elif diff.is_hunk_meta(line):
  281. hunk_meta = line
  282. try:
  283. old_addr, new_addr = diff.parse_hunk_meta(hunk_meta)
  284. except (IndexError, ValueError):
  285. raise RuntimeError('invalid hunk meta: %s' % hunk_meta)
  286. hunk = Hunk(headers, hunk_meta, old_addr, new_addr)
  287. headers = []
  288. diff._hunks.append(hunk)
  289. elif diff._hunks and not headers and (diff.is_old(line) or
  290. diff.is_new(line) or
  291. diff.is_common(line)):
  292. diff._hunks[-1].append(diff.parse_hunk_line(line))
  293. elif diff.is_eof(line):
  294. # ignore
  295. pass
  296. elif diff.is_only_in_dir(line) or \
  297. diff.is_binary_differ(line):
  298. # 'Only in foo:' and 'Binary files ... differ' are considered
  299. # as separate diffs, so yield current diff, then this line
  300. #
  301. if diff._old_path and diff._new_path and diff._hunks:
  302. # Current diff is comppletely constructed
  303. yield diff
  304. headers.append(line)
  305. yield UnifiedDiff(headers, '', '', [])
  306. headers = []
  307. diff = UnifiedDiff([], None, None, [])
  308. else:
  309. # All other non-recognized lines are considered as headers or
  310. # hunk headers respectively
  311. #
  312. headers.append(line)
  313. # Validate and yield the last patch set if it is not yielded yet
  314. if diff._old_path:
  315. assert diff._new_path is not None
  316. if diff._hunks:
  317. assert len(diff._hunks[-1]._hunk_meta) > 0
  318. assert len(diff._hunks[-1]._hunk_list) > 0
  319. yield diff
  320. if headers:
  321. # Tolerate dangling headers, just yield a UnifiedDiff object with
  322. # only header lines
  323. #
  324. yield UnifiedDiff(headers, '', '', [])
  325. class DiffMarker(object):
  326. def markup(self, diffs, side_by_side=False, width=0):
  327. """Returns a generator"""
  328. if side_by_side:
  329. for diff in diffs:
  330. for line in self._markup_side_by_side(diff, width):
  331. yield line
  332. else:
  333. for diff in diffs:
  334. for line in self._markup_traditional(diff):
  335. yield line
  336. def _markup_traditional(self, diff):
  337. """Returns a generator"""
  338. for line in diff._headers:
  339. yield self._markup_header(line)
  340. yield self._markup_old_path(diff._old_path)
  341. yield self._markup_new_path(diff._new_path)
  342. for hunk in diff._hunks:
  343. for hunk_header in hunk._hunk_headers:
  344. yield self._markup_hunk_header(hunk_header)
  345. yield self._markup_hunk_meta(hunk._hunk_meta)
  346. for old, new, changed in hunk.mdiff():
  347. if changed:
  348. if not old[0]:
  349. # The '+' char after \x00 is kept
  350. # DEBUG: yield 'NEW: %s %s\n' % (old, new)
  351. line = new[1].strip('\x00\x01')
  352. yield self._markup_new(line)
  353. elif not new[0]:
  354. # The '-' char after \x00 is kept
  355. # DEBUG: yield 'OLD: %s %s\n' % (old, new)
  356. line = old[1].strip('\x00\x01')
  357. yield self._markup_old(line)
  358. else:
  359. # DEBUG: yield 'CHG: %s %s\n' % (old, new)
  360. yield self._markup_old('-') + \
  361. self._markup_mix(old[1], 'red')
  362. yield self._markup_new('+') + \
  363. self._markup_mix(new[1], 'green')
  364. else:
  365. yield self._markup_common(' ' + old[1])
  366. def _markup_side_by_side(self, diff, width):
  367. """Returns a generator"""
  368. wrap_char = colorize('>', 'lightmagenta')
  369. def _normalize(line):
  370. return line.replace(
  371. '\t', ' ' * 8).replace('\n', '').replace('\r', '')
  372. def _fit_with_marker(text, markup_fn, width, pad=False):
  373. """Wrap or pad input pure text, then markup"""
  374. if len(text) > width:
  375. return markup_fn(text[:(width - 1)]) + wrap_char
  376. elif pad:
  377. pad_len = width - len(text)
  378. return '%s%*s' % (markup_fn(text), pad_len, '')
  379. else:
  380. return markup_fn(text)
  381. def _fit_with_marker_mix(text, base_color, width, pad=False):
  382. """Wrap or pad input text which contains mdiff tags, markup at the
  383. meantime, note only left side need to set `pad`
  384. """
  385. out = [COLORS[base_color]]
  386. count = 0
  387. tag_re = re.compile(r'\x00[+^-]|\x01')
  388. while text and count < width:
  389. if text.startswith('\x00-'): # del
  390. out.append(COLORS['reverse'] + COLORS[base_color])
  391. text = text[2:]
  392. elif text.startswith('\x00+'): # add
  393. out.append(COLORS['reverse'] + COLORS[base_color])
  394. text = text[2:]
  395. elif text.startswith('\x00^'): # change
  396. out.append(COLORS['underline'] + COLORS[base_color])
  397. text = text[2:]
  398. elif text.startswith('\x01'): # reset
  399. out.append(COLORS['reset'] + COLORS[base_color])
  400. text = text[1:]
  401. else:
  402. # FIXME: utf-8 wchar might break the rule here, e.g.
  403. # u'\u554a' takes double width of a single letter, also
  404. # this depends on your terminal font. I guess audience of
  405. # this tool never put that kind of symbol in their code :-)
  406. #
  407. out.append(text[0])
  408. count += 1
  409. text = text[1:]
  410. if count == width and tag_re.sub('', text):
  411. # Was stripped: output fulfil and still has normal char in text
  412. out[-1] = COLORS['reset'] + wrap_char
  413. elif count < width and pad:
  414. pad_len = width - count
  415. out.append('%s%*s' % (COLORS['reset'], pad_len, ''))
  416. else:
  417. out.append(COLORS['reset'])
  418. return ''.join(out)
  419. # Set up line width
  420. if width <= 0:
  421. width = 80
  422. # Set up number width, note last hunk might be empty
  423. try:
  424. (start, offset) = diff._hunks[-1]._old_addr
  425. max1 = start + offset - 1
  426. (start, offset) = diff._hunks[-1]._new_addr
  427. max2 = start + offset - 1
  428. except IndexError:
  429. max1 = max2 = 0
  430. num_width = max(len(str(max1)), len(str(max2)))
  431. # Setup lineno and line format
  432. left_num_fmt = colorize('%%(left_num)%ds' % num_width, 'yellow')
  433. right_num_fmt = colorize('%%(right_num)%ds' % num_width, 'yellow')
  434. line_fmt = left_num_fmt + ' %(left)s ' + COLORS['reset'] + \
  435. right_num_fmt + ' %(right)s\n'
  436. # yield header, old path and new path
  437. for line in diff._headers:
  438. yield self._markup_header(line)
  439. yield self._markup_old_path(diff._old_path)
  440. yield self._markup_new_path(diff._new_path)
  441. # yield hunks
  442. for hunk in diff._hunks:
  443. for hunk_header in hunk._hunk_headers:
  444. yield self._markup_hunk_header(hunk_header)
  445. yield self._markup_hunk_meta(hunk._hunk_meta)
  446. for old, new, changed in hunk.mdiff():
  447. if old[0]:
  448. left_num = str(hunk._old_addr[0] + int(old[0]) - 1)
  449. else:
  450. left_num = ' '
  451. if new[0]:
  452. right_num = str(hunk._new_addr[0] + int(new[0]) - 1)
  453. else:
  454. right_num = ' '
  455. left = _normalize(old[1])
  456. right = _normalize(new[1])
  457. if changed:
  458. if not old[0]:
  459. left = '%*s' % (width, ' ')
  460. right = right.lstrip('\x00+').rstrip('\x01')
  461. right = _fit_with_marker(
  462. right, self._markup_new, width)
  463. elif not new[0]:
  464. left = left.lstrip('\x00-').rstrip('\x01')
  465. left = _fit_with_marker(left, self._markup_old, width)
  466. right = ''
  467. else:
  468. left = _fit_with_marker_mix(left, 'red', width, 1)
  469. right = _fit_with_marker_mix(right, 'green', width)
  470. else:
  471. left = _fit_with_marker(
  472. left, self._markup_common, width, 1)
  473. right = _fit_with_marker(right, self._markup_common, width)
  474. yield line_fmt % {
  475. 'left_num': left_num,
  476. 'left': left,
  477. 'right_num': right_num,
  478. 'right': right
  479. }
  480. def _markup_header(self, line):
  481. return colorize(line, 'cyan')
  482. def _markup_old_path(self, line):
  483. return colorize(line, 'yellow')
  484. def _markup_new_path(self, line):
  485. return colorize(line, 'yellow')
  486. def _markup_hunk_header(self, line):
  487. return colorize(line, 'lightcyan')
  488. def _markup_hunk_meta(self, line):
  489. return colorize(line, 'lightblue')
  490. def _markup_common(self, line):
  491. return colorize(line, 'reset')
  492. def _markup_old(self, line):
  493. return colorize(line, 'lightred')
  494. def _markup_new(self, line):
  495. return colorize(line, 'lightgreen')
  496. def _markup_mix(self, line, base_color):
  497. del_code = COLORS['reverse'] + COLORS[base_color]
  498. add_code = COLORS['reverse'] + COLORS[base_color]
  499. chg_code = COLORS['underline'] + COLORS[base_color]
  500. rst_code = COLORS['reset'] + COLORS[base_color]
  501. line = line.replace('\x00-', del_code)
  502. line = line.replace('\x00+', add_code)
  503. line = line.replace('\x00^', chg_code)
  504. line = line.replace('\x01', rst_code)
  505. return colorize(line, base_color)
  506. def markup_to_pager(stream, opts):
  507. diffs = DiffParser(stream).get_diff_generator()
  508. marker = DiffMarker()
  509. color_diff = marker.markup(diffs, side_by_side=opts.side_by_side,
  510. width=opts.width)
  511. # Args stolen from git source: github.com/git/git/blob/master/pager.c
  512. pager = subprocess.Popen(
  513. ['less', '-FRSX'], stdin=subprocess.PIPE, stdout=sys.stdout)
  514. for line in color_diff:
  515. pager.stdin.write(line.encode('utf-8'))
  516. pager.stdin.close()
  517. pager.wait()
  518. def check_command_status(arguments):
  519. """Return True if command returns 0."""
  520. try:
  521. return subprocess.call(
  522. arguments, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0
  523. except OSError:
  524. return False
  525. def revision_control_diff(args):
  526. """Return diff from revision control system."""
  527. for _, ops in VCS_INFO.items():
  528. if check_command_status(ops['probe']):
  529. return subprocess.Popen(
  530. ops['diff'] + args, stdout=subprocess.PIPE).stdout
  531. def revision_control_log(args):
  532. """Return log from revision control system."""
  533. for _, ops in VCS_INFO.items():
  534. if check_command_status(ops['probe']):
  535. return subprocess.Popen(
  536. ops['log'] + args, stdout=subprocess.PIPE).stdout
  537. def decode(line):
  538. """Decode UTF-8 if necessary."""
  539. try:
  540. return line.decode('utf-8')
  541. except (AttributeError, UnicodeDecodeError):
  542. return line
  543. def main():
  544. signal.signal(signal.SIGPIPE, signal.SIG_DFL)
  545. signal.signal(signal.SIGINT, signal.SIG_DFL)
  546. from optparse import (OptionParser, BadOptionError, AmbiguousOptionError,
  547. OptionGroup)
  548. class PassThroughOptionParser(OptionParser):
  549. """Stop parsing on first unknown option (e.g. --cached, -U10) and pass
  550. them down. Note the `opt_str` in exception object does not give us
  551. chance to take the full option back, e.g. for '-U10' it will only
  552. contain '-U' and the '10' part will be lost. Ref: http://goo.gl/IqY4A
  553. (on stackoverflow). My hack is to try parse and insert a '--' in place
  554. and parse again. Let me know if someone has better solution.
  555. """
  556. def _process_args(self, largs, rargs, values):
  557. left = largs[:]
  558. right = rargs[:]
  559. try:
  560. OptionParser._process_args(self, left, right, values)
  561. except (BadOptionError, AmbiguousOptionError):
  562. parsed_num = len(rargs) - len(right) - 1
  563. rargs.insert(parsed_num, '--')
  564. OptionParser._process_args(self, largs, rargs, values)
  565. supported_vcs = sorted(VCS_INFO.keys())
  566. usage = """%prog [options] [file|dir ...]"""
  567. parser = PassThroughOptionParser(
  568. usage=usage, description=META_INFO['description'],
  569. version='%%prog %s' % META_INFO['version'])
  570. parser.add_option(
  571. '-s', '--side-by-side', action='store_true',
  572. help='enable side-by-side mode')
  573. parser.add_option(
  574. '-w', '--width', type='int', default=80, metavar='N',
  575. help='set text width for side-by-side mode, default is 80')
  576. parser.add_option(
  577. '-l', '--log', action='store_true',
  578. help='show log with changes from revision control')
  579. parser.add_option(
  580. '-c', '--color', default='auto', metavar='M',
  581. help="""colorize mode 'auto' (default), 'always', or 'never'""")
  582. # Hack: use OptionGroup text for extra help message after option list
  583. option_group = OptionGroup(
  584. parser, "Note", ("Option parser will stop on first unknown option "
  585. "and pass them down to underneath revision control"))
  586. parser.add_option_group(option_group)
  587. opts, args = parser.parse_args()
  588. if opts.log:
  589. diff_hdl = revision_control_log(args)
  590. if not diff_hdl:
  591. sys.stderr.write(('*** Not in a supported workspace, supported '
  592. 'are: %s\n') % ', '.join(supported_vcs))
  593. return 1
  594. elif sys.stdin.isatty():
  595. diff_hdl = revision_control_diff(args)
  596. if not diff_hdl:
  597. sys.stderr.write(('*** Not in a supported workspace, supported '
  598. 'are: %s\n\n') % ', '.join(supported_vcs))
  599. parser.print_help()
  600. return 1
  601. else:
  602. diff_hdl = sys.stdin
  603. stream = PatchStream(diff_hdl)
  604. # Don't let empty diff pass thru
  605. if stream.is_empty():
  606. return 0
  607. if opts.color == 'always' or \
  608. (opts.color == 'auto' and sys.stdout.isatty()):
  609. markup_to_pager(stream, opts)
  610. else:
  611. # pipe out stream untouched to make sure it is still a patch
  612. if sys.hexversion < 0x03000000:
  613. reload(sys).setdefaultencoding('utf8')
  614. for line in stream:
  615. sys.stdout.write(decode(line))
  616. if diff_hdl is not sys.stdin:
  617. diff_hdl.close()
  618. return 0
  619. if __name__ == '__main__':
  620. sys.exit(main())
  621. # vim:set et sts=4 sw=4 tw=79: