cdiff.py 24KB

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