Greg Ward | e807e57 | 2002-07-04 14:51:49 +0000 | [diff] [blame] | 1 | """Text wrapping and filling. |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 2 | """ |
| 3 | |
Greg Ward | 78cc051 | 2002-10-13 19:23:18 +0000 | [diff] [blame] | 4 | # Copyright (C) 1999-2001 Gregory P. Ward. |
Greg Ward | 523008c | 2003-06-15 15:37:18 +0000 | [diff] [blame] | 5 | # Copyright (C) 2002, 2003 Python Software Foundation. |
Greg Ward | 698d9f0 | 2002-06-07 22:40:23 +0000 | [diff] [blame] | 6 | # Written by Greg Ward <gward@python.net> |
| 7 | |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 8 | __revision__ = "$Id$" |
| 9 | |
| 10 | import string, re |
| 11 | |
Martin v. Löwis | ed11a5d | 2012-05-20 10:42:17 +0200 | [diff] [blame] | 12 | try: |
| 13 | _unicode = unicode |
| 14 | except NameError: |
| 15 | # If Python is built without Unicode support, the unicode type |
| 16 | # will not exist. Fake one. |
| 17 | class _unicode(object): |
| 18 | pass |
| 19 | |
Greg Ward | 523008c | 2003-06-15 15:37:18 +0000 | [diff] [blame] | 20 | # Do the right thing with boolean values for all known Python versions |
| 21 | # (so this module can be copied to projects that don't depend on Python |
Brett Cannon | 791ec1f | 2008-08-01 01:34:05 +0000 | [diff] [blame] | 22 | # 2.3, e.g. Optik and Docutils) by uncommenting the block of code below. |
| 23 | #try: |
| 24 | # True, False |
| 25 | #except NameError: |
| 26 | # (True, False) = (1, 0) |
Greg Ward | 523008c | 2003-06-15 15:37:18 +0000 | [diff] [blame] | 27 | |
Georg Brandl | 3129ea2 | 2008-12-05 11:34:51 +0000 | [diff] [blame] | 28 | __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent'] |
Greg Ward | 4c6c9c4 | 2003-02-03 14:46:57 +0000 | [diff] [blame] | 29 | |
Greg Ward | afd44de | 2002-12-12 17:24:35 +0000 | [diff] [blame] | 30 | # Hardcode the recognized whitespace characters to the US-ASCII |
| 31 | # whitespace characters. The main reason for doing this is that in |
| 32 | # ISO-8859-1, 0xa0 is non-breaking whitespace, so in certain locales |
| 33 | # that character winds up in string.whitespace. Respecting |
| 34 | # string.whitespace in those cases would 1) make textwrap treat 0xa0 the |
| 35 | # same as any other whitespace char, which is clearly wrong (it's a |
| 36 | # *non-breaking* space), 2) possibly cause problems with Unicode, |
| 37 | # since 0xa0 is not in range(128). |
Greg Ward | 4c6c9c4 | 2003-02-03 14:46:57 +0000 | [diff] [blame] | 38 | _whitespace = '\t\n\x0b\x0c\r ' |
Greg Ward | afd44de | 2002-12-12 17:24:35 +0000 | [diff] [blame] | 39 | |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 40 | class TextWrapper: |
| 41 | """ |
| 42 | Object for wrapping/filling text. The public interface consists of |
| 43 | the wrap() and fill() methods; the other methods are just there for |
| 44 | subclasses to override in order to tweak the default behaviour. |
| 45 | If you want to completely replace the main wrapping algorithm, |
| 46 | you'll probably have to override _wrap_chunks(). |
| 47 | |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 48 | Several instance attributes control various aspects of wrapping: |
| 49 | width (default: 70) |
| 50 | the maximum width of wrapped lines (unless break_long_words |
| 51 | is false) |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 52 | initial_indent (default: "") |
| 53 | string that will be prepended to the first line of wrapped |
| 54 | output. Counts towards the line's width. |
| 55 | subsequent_indent (default: "") |
| 56 | string that will be prepended to all lines save the first |
| 57 | of wrapped output; also counts towards each line's width. |
Greg Ward | 62e4f3b | 2002-06-07 21:56:16 +0000 | [diff] [blame] | 58 | expand_tabs (default: true) |
| 59 | Expand tabs in input text to spaces before further processing. |
| 60 | Each tab will become 1 .. 8 spaces, depending on its position in |
| 61 | its line. If false, each tab is treated as a single character. |
| 62 | replace_whitespace (default: true) |
| 63 | Replace all whitespace characters in the input text by spaces |
| 64 | after tab expansion. Note that if expand_tabs is false and |
| 65 | replace_whitespace is true, every tab will be converted to a |
| 66 | single space! |
| 67 | fix_sentence_endings (default: false) |
| 68 | Ensure that sentence-ending punctuation is always followed |
Andrew M. Kuchling | a2ecabe | 2003-02-14 01:14:15 +0000 | [diff] [blame] | 69 | by two spaces. Off by default because the algorithm is |
Greg Ward | 62e4f3b | 2002-06-07 21:56:16 +0000 | [diff] [blame] | 70 | (unavoidably) imperfect. |
| 71 | break_long_words (default: true) |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 72 | Break words longer than 'width'. If false, those words will not |
| 73 | be broken, and some lines might be longer than 'width'. |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 74 | break_on_hyphens (default: true) |
| 75 | Allow breaking hyphenated words. If true, wrapping will occur |
| 76 | preferably on whitespaces and right after hyphens part of |
| 77 | compound words. |
Georg Brandl | 9e6b470 | 2007-03-13 18:15:41 +0000 | [diff] [blame] | 78 | drop_whitespace (default: true) |
| 79 | Drop leading and trailing whitespace from lines. |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 80 | """ |
| 81 | |
Greg Ward | 4c6c9c4 | 2003-02-03 14:46:57 +0000 | [diff] [blame] | 82 | whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace)) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 83 | |
Greg Ward | 2e74541 | 2002-12-09 16:23:08 +0000 | [diff] [blame] | 84 | unicode_whitespace_trans = {} |
Greg Ward | 0e88c9f | 2002-12-11 13:54:20 +0000 | [diff] [blame] | 85 | uspace = ord(u' ') |
Greg Ward | 4c6c9c4 | 2003-02-03 14:46:57 +0000 | [diff] [blame] | 86 | for x in map(ord, _whitespace): |
Greg Ward | 0e88c9f | 2002-12-11 13:54:20 +0000 | [diff] [blame] | 87 | unicode_whitespace_trans[x] = uspace |
Greg Ward | 2e74541 | 2002-12-09 16:23:08 +0000 | [diff] [blame] | 88 | |
Tim Peters | c411dba | 2002-07-16 21:35:23 +0000 | [diff] [blame] | 89 | # This funky little regex is just the trick for splitting |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 90 | # text up into word-wrappable chunks. E.g. |
| 91 | # "Hello there -- you goof-ball, use the -b option!" |
| 92 | # splits into |
| 93 | # Hello/ /there/ /--/ /you/ /goof-/ball,/ /use/ /the/ /-b/ /option! |
| 94 | # (after stripping out empty strings). |
Georg Brandl | 3eef441 | 2008-12-27 18:27:53 +0000 | [diff] [blame] | 95 | wordsep_re = re.compile( |
Greg Ward | 4040794 | 2005-03-05 02:53:17 +0000 | [diff] [blame] | 96 | r'(\s+|' # any whitespace |
Antoine Pitrou | 74af3bb | 2008-12-13 23:12:30 +0000 | [diff] [blame] | 97 | r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words |
Greg Ward | 4040794 | 2005-03-05 02:53:17 +0000 | [diff] [blame] | 98 | r'(?<=[\w\!\"\'\&\.\,\?])-{2,}(?=\w))') # em-dash |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 99 | |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 100 | # This less funky little regex just split on recognized spaces. E.g. |
| 101 | # "Hello there -- you goof-ball, use the -b option!" |
| 102 | # splits into |
| 103 | # Hello/ /there/ /--/ /you/ /goof-ball,/ /use/ /the/ /-b/ /option!/ |
Georg Brandl | 3eef441 | 2008-12-27 18:27:53 +0000 | [diff] [blame] | 104 | wordsep_simple_re = re.compile(r'(\s+)') |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 105 | |
Greg Ward | 6186410 | 2004-06-03 01:59:41 +0000 | [diff] [blame] | 106 | # XXX this is not locale- or charset-aware -- string.lowercase |
| 107 | # is US-ASCII only (and therefore English-only) |
Greg Ward | 9b4864e | 2002-06-07 22:04:15 +0000 | [diff] [blame] | 108 | sentence_end_re = re.compile(r'[%s]' # lowercase letter |
| 109 | r'[\.\!\?]' # sentence-ending punct. |
| 110 | r'[\"\']?' # optional end-of-quote |
Mark Dickinson | fe536f5 | 2008-04-25 16:59:09 +0000 | [diff] [blame] | 111 | r'\Z' # end of chunk |
Greg Ward | 9b4864e | 2002-06-07 22:04:15 +0000 | [diff] [blame] | 112 | % string.lowercase) |
Greg Ward | 62e4f3b | 2002-06-07 21:56:16 +0000 | [diff] [blame] | 113 | |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 114 | |
Greg Ward | f0ba764 | 2004-05-13 01:53:10 +0000 | [diff] [blame] | 115 | def __init__(self, |
| 116 | width=70, |
| 117 | initial_indent="", |
| 118 | subsequent_indent="", |
| 119 | expand_tabs=True, |
| 120 | replace_whitespace=True, |
| 121 | fix_sentence_endings=False, |
Georg Brandl | 9e6b470 | 2007-03-13 18:15:41 +0000 | [diff] [blame] | 122 | break_long_words=True, |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 123 | drop_whitespace=True, |
| 124 | break_on_hyphens=True): |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 125 | self.width = width |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 126 | self.initial_indent = initial_indent |
| 127 | self.subsequent_indent = subsequent_indent |
Greg Ward | 47df99d | 2002-06-09 00:22:07 +0000 | [diff] [blame] | 128 | self.expand_tabs = expand_tabs |
| 129 | self.replace_whitespace = replace_whitespace |
| 130 | self.fix_sentence_endings = fix_sentence_endings |
| 131 | self.break_long_words = break_long_words |
Georg Brandl | 9e6b470 | 2007-03-13 18:15:41 +0000 | [diff] [blame] | 132 | self.drop_whitespace = drop_whitespace |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 133 | self.break_on_hyphens = break_on_hyphens |
Tim Peters | c411dba | 2002-07-16 21:35:23 +0000 | [diff] [blame] | 134 | |
Georg Brandl | 3eef441 | 2008-12-27 18:27:53 +0000 | [diff] [blame] | 135 | # recompile the regexes for Unicode mode -- done in this clumsy way for |
| 136 | # backwards compatibility because it's rather common to monkey-patch |
| 137 | # the TextWrapper class' wordsep_re attribute. |
| 138 | self.wordsep_re_uni = re.compile(self.wordsep_re.pattern, re.U) |
| 139 | self.wordsep_simple_re_uni = re.compile( |
| 140 | self.wordsep_simple_re.pattern, re.U) |
| 141 | |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 142 | |
| 143 | # -- Private methods ----------------------------------------------- |
| 144 | # (possibly useful for subclasses to override) |
| 145 | |
Greg Ward | cb320eb | 2002-06-07 22:32:15 +0000 | [diff] [blame] | 146 | def _munge_whitespace(self, text): |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 147 | """_munge_whitespace(text : string) -> string |
| 148 | |
| 149 | Munge whitespace in text: expand tabs and convert all other |
| 150 | whitespace characters to spaces. Eg. " foo\tbar\n\nbaz" |
| 151 | becomes " foo bar baz". |
| 152 | """ |
| 153 | if self.expand_tabs: |
| 154 | text = text.expandtabs() |
| 155 | if self.replace_whitespace: |
Greg Ward | 2e74541 | 2002-12-09 16:23:08 +0000 | [diff] [blame] | 156 | if isinstance(text, str): |
| 157 | text = text.translate(self.whitespace_trans) |
Martin v. Löwis | ed11a5d | 2012-05-20 10:42:17 +0200 | [diff] [blame] | 158 | elif isinstance(text, _unicode): |
Greg Ward | 2e74541 | 2002-12-09 16:23:08 +0000 | [diff] [blame] | 159 | text = text.translate(self.unicode_whitespace_trans) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 160 | return text |
| 161 | |
| 162 | |
Greg Ward | cb320eb | 2002-06-07 22:32:15 +0000 | [diff] [blame] | 163 | def _split(self, text): |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 164 | """_split(text : string) -> [string] |
| 165 | |
| 166 | Split the text to wrap into indivisible chunks. Chunks are |
Georg Brandl | 195261f | 2009-09-18 16:19:56 +0000 | [diff] [blame] | 167 | not quite the same as words; see _wrap_chunks() for full |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 168 | details. As an example, the text |
| 169 | Look, goof-ball -- use the -b option! |
| 170 | breaks into the following chunks: |
| 171 | 'Look,', ' ', 'goof-', 'ball', ' ', '--', ' ', |
| 172 | 'use', ' ', 'the', ' ', '-b', ' ', 'option!' |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 173 | if break_on_hyphens is True, or in: |
| 174 | 'Look,', ' ', 'goof-ball', ' ', '--', ' ', |
| 175 | 'use', ' ', 'the', ' ', '-b', ' ', option!' |
| 176 | otherwise. |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 177 | """ |
Martin v. Löwis | ed11a5d | 2012-05-20 10:42:17 +0200 | [diff] [blame] | 178 | if isinstance(text, _unicode): |
Georg Brandl | 3eef441 | 2008-12-27 18:27:53 +0000 | [diff] [blame] | 179 | if self.break_on_hyphens: |
| 180 | pat = self.wordsep_re_uni |
| 181 | else: |
| 182 | pat = self.wordsep_simple_re_uni |
Georg Brandl | 6f95ae5 | 2008-05-11 10:42:28 +0000 | [diff] [blame] | 183 | else: |
Georg Brandl | 3eef441 | 2008-12-27 18:27:53 +0000 | [diff] [blame] | 184 | if self.break_on_hyphens: |
| 185 | pat = self.wordsep_re |
| 186 | else: |
| 187 | pat = self.wordsep_simple_re |
| 188 | chunks = pat.split(text) |
Georg Brandl | 9e6b470 | 2007-03-13 18:15:41 +0000 | [diff] [blame] | 189 | chunks = filter(None, chunks) # remove empty chunks |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 190 | return chunks |
| 191 | |
Greg Ward | cb320eb | 2002-06-07 22:32:15 +0000 | [diff] [blame] | 192 | def _fix_sentence_endings(self, chunks): |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 193 | """_fix_sentence_endings(chunks : [string]) |
| 194 | |
| 195 | Correct for sentence endings buried in 'chunks'. Eg. when the |
| 196 | original text contains "... foo.\nBar ...", munge_whitespace() |
| 197 | and split() will convert that to [..., "foo.", " ", "Bar", ...] |
| 198 | which has one too few spaces; this method simply changes the one |
| 199 | space to two. |
| 200 | """ |
| 201 | i = 0 |
Georg Brandl | 195261f | 2009-09-18 16:19:56 +0000 | [diff] [blame] | 202 | patsearch = self.sentence_end_re.search |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 203 | while i < len(chunks)-1: |
Georg Brandl | 195261f | 2009-09-18 16:19:56 +0000 | [diff] [blame] | 204 | if chunks[i+1] == " " and patsearch(chunks[i]): |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 205 | chunks[i+1] = " " |
| 206 | i += 2 |
| 207 | else: |
| 208 | i += 1 |
| 209 | |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 210 | def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 211 | """_handle_long_word(chunks : [string], |
| 212 | cur_line : [string], |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 213 | cur_len : int, width : int) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 214 | |
| 215 | Handle a chunk of text (most likely a word, not whitespace) that |
| 216 | is too long to fit in any line. |
| 217 | """ |
Georg Brandl | c6fde72 | 2008-01-19 19:48:19 +0000 | [diff] [blame] | 218 | # Figure out when indent is larger than the specified width, and make |
| 219 | # sure at least one character is stripped off on every pass |
| 220 | if width < 1: |
| 221 | space_left = 1 |
| 222 | else: |
| 223 | space_left = width - cur_len |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 224 | |
| 225 | # If we're allowed to break long words, then do so: put as much |
| 226 | # of the next chunk onto the current line as will fit. |
| 227 | if self.break_long_words: |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 228 | cur_line.append(reversed_chunks[-1][:space_left]) |
| 229 | reversed_chunks[-1] = reversed_chunks[-1][space_left:] |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 230 | |
| 231 | # Otherwise, we have to preserve the long word intact. Only add |
| 232 | # it to the current line if there's nothing already there -- |
| 233 | # that minimizes how much we violate the width constraint. |
| 234 | elif not cur_line: |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 235 | cur_line.append(reversed_chunks.pop()) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 236 | |
| 237 | # If we're not allowed to break long words, and there's already |
| 238 | # text on the current line, do nothing. Next time through the |
| 239 | # main loop of _wrap_chunks(), we'll wind up here again, but |
| 240 | # cur_len will be zero, so the next line will be entirely |
| 241 | # devoted to the long word that we can't handle right now. |
| 242 | |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 243 | def _wrap_chunks(self, chunks): |
| 244 | """_wrap_chunks(chunks : [string]) -> [string] |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 245 | |
| 246 | Wrap a sequence of text chunks and return a list of lines of |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 247 | length 'self.width' or less. (If 'break_long_words' is false, |
| 248 | some lines may be longer than this.) Chunks correspond roughly |
| 249 | to words and the whitespace between them: each chunk is |
| 250 | indivisible (modulo 'break_long_words'), but a line break can |
| 251 | come between any two chunks. Chunks should not have internal |
| 252 | whitespace; ie. a chunk is either all whitespace or a "word". |
| 253 | Whitespace chunks will be removed from the beginning and end of |
| 254 | lines, but apart from that whitespace is preserved. |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 255 | """ |
| 256 | lines = [] |
Greg Ward | 21820cd | 2003-05-07 00:55:35 +0000 | [diff] [blame] | 257 | if self.width <= 0: |
| 258 | raise ValueError("invalid width %r (must be > 0)" % self.width) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 259 | |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 260 | # Arrange in reverse order so items can be efficiently popped |
| 261 | # from a stack of chucks. |
| 262 | chunks.reverse() |
| 263 | |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 264 | while chunks: |
| 265 | |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 266 | # Start the list of chunks that will make up the current line. |
| 267 | # cur_len is just the length of all the chunks in cur_line. |
| 268 | cur_line = [] |
| 269 | cur_len = 0 |
| 270 | |
| 271 | # Figure out which static string will prefix this line. |
| 272 | if lines: |
| 273 | indent = self.subsequent_indent |
| 274 | else: |
| 275 | indent = self.initial_indent |
| 276 | |
| 277 | # Maximum width for this line. |
| 278 | width = self.width - len(indent) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 279 | |
Greg Ward | ab73d46 | 2002-12-09 16:26:05 +0000 | [diff] [blame] | 280 | # First chunk on line is whitespace -- drop it, unless this |
| 281 | # is the very beginning of the text (ie. no lines started yet). |
Georg Brandl | 9e6b470 | 2007-03-13 18:15:41 +0000 | [diff] [blame] | 282 | if self.drop_whitespace and chunks[-1].strip() == '' and lines: |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 283 | del chunks[-1] |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 284 | |
| 285 | while chunks: |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 286 | l = len(chunks[-1]) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 287 | |
| 288 | # Can at least squeeze this chunk onto the current line. |
| 289 | if cur_len + l <= width: |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 290 | cur_line.append(chunks.pop()) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 291 | cur_len += l |
| 292 | |
| 293 | # Nope, this line is full. |
| 294 | else: |
| 295 | break |
| 296 | |
| 297 | # The current line is full, and the next chunk is too big to |
Tim Peters | c411dba | 2002-07-16 21:35:23 +0000 | [diff] [blame] | 298 | # fit on *any* line (not just this one). |
Raymond Hettinger | 8bfa893 | 2005-07-15 06:53:35 +0000 | [diff] [blame] | 299 | if chunks and len(chunks[-1]) > width: |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 300 | self._handle_long_word(chunks, cur_line, cur_len, width) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 301 | |
| 302 | # If the last chunk on this line is all whitespace, drop it. |
Georg Brandl | 9e6b470 | 2007-03-13 18:15:41 +0000 | [diff] [blame] | 303 | if self.drop_whitespace and cur_line and cur_line[-1].strip() == '': |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 304 | del cur_line[-1] |
| 305 | |
| 306 | # Convert current line back to a string and store it in list |
| 307 | # of all lines (return value). |
| 308 | if cur_line: |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 309 | lines.append(indent + ''.join(cur_line)) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 310 | |
| 311 | return lines |
| 312 | |
| 313 | |
| 314 | # -- Public interface ---------------------------------------------- |
| 315 | |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 316 | def wrap(self, text): |
| 317 | """wrap(text : string) -> [string] |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 318 | |
Greg Ward | e807e57 | 2002-07-04 14:51:49 +0000 | [diff] [blame] | 319 | Reformat the single paragraph in 'text' so it fits in lines of |
| 320 | no more than 'self.width' columns, and return a list of wrapped |
| 321 | lines. Tabs in 'text' are expanded with string.expandtabs(), |
| 322 | and all other whitespace characters (including newline) are |
| 323 | converted to space. |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 324 | """ |
| 325 | text = self._munge_whitespace(text) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 326 | chunks = self._split(text) |
Greg Ward | 62e4f3b | 2002-06-07 21:56:16 +0000 | [diff] [blame] | 327 | if self.fix_sentence_endings: |
| 328 | self._fix_sentence_endings(chunks) |
Greg Ward | d34c959 | 2002-06-10 20:26:02 +0000 | [diff] [blame] | 329 | return self._wrap_chunks(chunks) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 330 | |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 331 | def fill(self, text): |
| 332 | """fill(text : string) -> string |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 333 | |
Greg Ward | e807e57 | 2002-07-04 14:51:49 +0000 | [diff] [blame] | 334 | Reformat the single paragraph in 'text' to fit in lines of no |
| 335 | more than 'self.width' columns, and return a new string |
| 336 | containing the entire wrapped paragraph. |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 337 | """ |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 338 | return "\n".join(self.wrap(text)) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 339 | |
| 340 | |
Greg Ward | e807e57 | 2002-07-04 14:51:49 +0000 | [diff] [blame] | 341 | # -- Convenience interface --------------------------------------------- |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 342 | |
Greg Ward | cf02ac6 | 2002-06-10 20:36:07 +0000 | [diff] [blame] | 343 | def wrap(text, width=70, **kwargs): |
Greg Ward | e807e57 | 2002-07-04 14:51:49 +0000 | [diff] [blame] | 344 | """Wrap a single paragraph of text, returning a list of wrapped lines. |
| 345 | |
| 346 | Reformat the single paragraph in 'text' so it fits in lines of no |
| 347 | more than 'width' columns, and return a list of wrapped lines. By |
| 348 | default, tabs in 'text' are expanded with string.expandtabs(), and |
| 349 | all other whitespace characters (including newline) are converted to |
| 350 | space. See TextWrapper class for available keyword args to customize |
| 351 | wrapping behaviour. |
| 352 | """ |
Greg Ward | cf02ac6 | 2002-06-10 20:36:07 +0000 | [diff] [blame] | 353 | w = TextWrapper(width=width, **kwargs) |
| 354 | return w.wrap(text) |
Greg Ward | 0093582 | 2002-06-07 21:43:37 +0000 | [diff] [blame] | 355 | |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 356 | def fill(text, width=70, **kwargs): |
Greg Ward | e807e57 | 2002-07-04 14:51:49 +0000 | [diff] [blame] | 357 | """Fill a single paragraph of text, returning a new string. |
| 358 | |
| 359 | Reformat the single paragraph in 'text' to fit in lines of no more |
| 360 | than 'width' columns, and return a new string containing the entire |
| 361 | wrapped paragraph. As with wrap(), tabs are expanded and other |
| 362 | whitespace characters converted to space. See TextWrapper class for |
| 363 | available keyword args to customize wrapping behaviour. |
| 364 | """ |
Greg Ward | cf02ac6 | 2002-06-10 20:36:07 +0000 | [diff] [blame] | 365 | w = TextWrapper(width=width, **kwargs) |
Greg Ward | 62080be | 2002-06-10 21:37:12 +0000 | [diff] [blame] | 366 | return w.fill(text) |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 367 | |
| 368 | |
| 369 | # -- Loosely related functionality ------------------------------------- |
| 370 | |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 371 | _whitespace_only_re = re.compile('^[ \t]+$', re.MULTILINE) |
| 372 | _leading_whitespace_re = re.compile('(^[ \t]*)(?:[^ \t\n])', re.MULTILINE) |
| 373 | |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 374 | def dedent(text): |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 375 | """Remove any common leading whitespace from every line in `text`. |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 376 | |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 377 | This can be used to make triple-quoted strings line up with the left |
| 378 | edge of the display, while still presenting them in the source code |
| 379 | in indented form. |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 380 | |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 381 | Note that tabs and spaces are both treated as whitespace, but they |
| 382 | are not equal: the lines " hello" and "\thello" are |
| 383 | considered to have no common leading whitespace. (This behaviour is |
| 384 | new in Python 2.5; older versions of this module incorrectly |
| 385 | expanded tabs before searching for common leading whitespace.) |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 386 | """ |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 387 | # Look for the longest leading string of spaces and tabs common to |
| 388 | # all lines. |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 389 | margin = None |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 390 | text = _whitespace_only_re.sub('', text) |
| 391 | indents = _leading_whitespace_re.findall(text) |
| 392 | for indent in indents: |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 393 | if margin is None: |
| 394 | margin = indent |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 395 | |
| 396 | # Current line more deeply indented than previous winner: |
| 397 | # no change (previous winner is still on top). |
Tim Peters | 4f96f1f | 2006-06-11 19:42:51 +0000 | [diff] [blame] | 398 | elif indent.startswith(margin): |
| 399 | pass |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 400 | |
| 401 | # Current line consistent with and no deeper than previous winner: |
| 402 | # it's the new winner. |
Tim Peters | 4f96f1f | 2006-06-11 19:42:51 +0000 | [diff] [blame] | 403 | elif margin.startswith(indent): |
| 404 | margin = indent |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 405 | |
| 406 | # Current line and previous winner have no common whitespace: |
| 407 | # there is no margin. |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 408 | else: |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 409 | margin = "" |
| 410 | break |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 411 | |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 412 | # sanity check (testing/debugging only) |
| 413 | if 0 and margin: |
| 414 | for line in text.split("\n"): |
| 415 | assert not line or line.startswith(margin), \ |
| 416 | "line = %r, margin = %r" % (line, margin) |
Greg Ward | 478cd48 | 2003-05-08 01:58:05 +0000 | [diff] [blame] | 417 | |
Greg Ward | 7f54740 | 2006-06-11 00:40:49 +0000 | [diff] [blame] | 418 | if margin: |
| 419 | text = re.sub(r'(?m)^' + margin, '', text) |
| 420 | return text |
| 421 | |
| 422 | if __name__ == "__main__": |
| 423 | #print dedent("\tfoo\n\tbar") |
| 424 | #print dedent(" \thello there\n \t how are you?") |
| 425 | print dedent("Hello there.\n This is indented.") |