]> git.proxmox.com Git - rustc.git/blame - src/libsyntax/print/pp.rs
Imported Upstream version 1.1.0+dfsg1
[rustc.git] / src / libsyntax / print / pp.rs
CommitLineData
223e47cc
LB
1// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
1a4d82fc
JJ
11//! This pretty-printer is a direct reimplementation of Philip Karlton's
12//! Mesa pretty-printer, as described in appendix A of
13//!
14//! STAN-CS-79-770: "Pretty Printing", by Derek C. Oppen.
15//! Stanford Department of Computer Science, 1979.
16//!
17//! The algorithm's aim is to break a stream into as few lines as possible
18//! while respecting the indentation-consistency requirements of the enclosing
19//! block, and avoiding breaking at silly places on block boundaries, for
20//! example, between "x" and ")" in "x)".
21//!
22//! I am implementing this algorithm because it comes with 20 pages of
23//! documentation explaining its theory, and because it addresses the set of
24//! concerns I've seen other pretty-printers fall down on. Weirdly. Even though
25//! it's 32 years old. What can I say?
26//!
27//! Despite some redundancies and quirks in the way it's implemented in that
28//! paper, I've opted to keep the implementation here as similar as I can,
29//! changing only what was blatantly wrong, a typo, or sufficiently
30//! non-idiomatic rust that it really stuck out.
31//!
32//! In particular you'll see a certain amount of churn related to INTEGER vs.
33//! CARDINAL in the Mesa implementation. Mesa apparently interconverts the two
85aaf69f 34//! somewhat readily? In any case, I've used usize for indices-in-buffers and
1a4d82fc
JJ
35//! ints for character-sizes-and-indentation-offsets. This respects the need
36//! for ints to "go negative" while carrying a pending-calculation balance, and
37//! helps differentiate all the numbers flying around internally (slightly).
38//!
39//! I also inverted the indentation arithmetic used in the print stack, since
40//! the Mesa implementation (somewhat randomly) stores the offset on the print
41//! stack in terms of margin-col rather than col itself. I store col.
42//!
43//! I also implemented a small change in the String token, in that I store an
44//! explicit length for the string. For most tokens this is just the length of
45//! the accompanying string. But it's necessary to permit it to differ, for
46//! encoding things that are supposed to "go on their own line" -- certain
47//! classes of comment and blank-line -- where relying on adjacent
48//! hardbreak-like Break tokens with long blankness indication doesn't actually
49//! work. To see why, consider when there is a "thing that should be on its own
50//! line" between two long blocks, say functions. If you put a hardbreak after
51//! each function (or before each) and the breaking algorithm decides to break
52//! there anyways (because the functions themselves are long) you wind up with
53//! extra blank lines. If you don't put hardbreaks you can wind up with the
54//! "thing which should be on its own line" not getting its own line in the
55//! rare case of "really small functions" or such. This re-occurs with comments
56//! and explicit blank lines. So in those cases we use a string with a payload
57//! we want isolated to a line and an explicit length that's huge, surrounded
58//! by two zero-length breaks. The algorithm will try its best to fit it on a
59//! line (which it can't) and so naturally place the content on its own line to
60//! avoid combining it with other lines and making matters even worse.
61
c34b1796 62use std::io;
1a4d82fc
JJ
63use std::string;
64use std::iter::repeat;
970d7e83 65
1a4d82fc
JJ
66#[derive(Clone, Copy, PartialEq)]
67pub enum Breaks {
68 Consistent,
69 Inconsistent,
70}
223e47cc 71
1a4d82fc
JJ
72#[derive(Clone, Copy)]
73pub struct BreakToken {
85aaf69f
SL
74 offset: isize,
75 blank_space: isize
223e47cc
LB
76}
77
1a4d82fc
JJ
78#[derive(Clone, Copy)]
79pub struct BeginToken {
85aaf69f 80 offset: isize,
1a4d82fc 81 breaks: Breaks
223e47cc
LB
82}
83
1a4d82fc
JJ
84#[derive(Clone)]
85pub enum Token {
85aaf69f 86 String(String, isize),
1a4d82fc
JJ
87 Break(BreakToken),
88 Begin(BeginToken),
89 End,
90 Eof,
223e47cc
LB
91}
92
1a4d82fc 93impl Token {
970d7e83 94 pub fn is_eof(&self) -> bool {
85aaf69f
SL
95 match *self {
96 Token::Eof => true,
97 _ => false,
98 }
223e47cc 99 }
970d7e83
LB
100
101 pub fn is_hardbreak_tok(&self) -> bool {
223e47cc 102 match *self {
85aaf69f 103 Token::Break(BreakToken {
223e47cc
LB
104 offset: 0,
105 blank_space: bs
1a4d82fc 106 }) if bs == SIZE_INFINITY =>
223e47cc
LB
107 true,
108 _ =>
109 false
110 }
111 }
112}
113
85aaf69f
SL
114pub fn tok_str(token: &Token) -> String {
115 match *token {
116 Token::String(ref s, len) => format!("STR({},{})", s, len),
117 Token::Break(_) => "BREAK".to_string(),
118 Token::Begin(_) => "BEGIN".to_string(),
119 Token::End => "END".to_string(),
120 Token::Eof => "EOF".to_string()
223e47cc
LB
121 }
122}
123
85aaf69f
SL
124pub fn buf_str(toks: &[Token],
125 szs: &[isize],
126 left: usize,
127 right: usize,
128 lim: usize)
129 -> String {
970d7e83
LB
130 let n = toks.len();
131 assert_eq!(n, szs.len());
223e47cc 132 let mut i = left;
1a4d82fc 133 let mut l = lim;
d9579d0f 134 let mut s = string::String::from("[");
85aaf69f
SL
135 while i != right && l != 0 {
136 l -= 1;
970d7e83
LB
137 if i != left {
138 s.push_str(", ");
139 }
1a4d82fc
JJ
140 s.push_str(&format!("{}={}",
141 szs[i],
c34b1796 142 tok_str(&toks[i])));
85aaf69f 143 i += 1;
223e47cc
LB
144 i %= n;
145 }
1a4d82fc
JJ
146 s.push(']');
147 s
223e47cc
LB
148}
149
c34b1796 150#[derive(Copy, Clone)]
1a4d82fc
JJ
151pub enum PrintStackBreak {
152 Fits,
153 Broken(Breaks),
154}
223e47cc 155
c34b1796 156#[derive(Copy, Clone)]
1a4d82fc 157pub struct PrintStackElem {
85aaf69f 158 offset: isize,
1a4d82fc 159 pbreak: PrintStackBreak
223e47cc
LB
160}
161
c34b1796 162const SIZE_INFINITY: isize = 0xffff;
223e47cc 163
c34b1796 164pub fn mk_printer<'a>(out: Box<io::Write+'a>, linewidth: usize) -> Printer<'a> {
223e47cc
LB
165 // Yes 3, it makes the ring buffers big enough to never
166 // fall behind.
85aaf69f 167 let n: usize = 3 * linewidth;
1a4d82fc 168 debug!("mk_printer {}", linewidth);
85aaf69f
SL
169 let token: Vec<Token> = repeat(Token::Eof).take(n).collect();
170 let size: Vec<isize> = repeat(0).take(n).collect();
171 let scan_stack: Vec<usize> = repeat(0).take(n).collect();
1a4d82fc
JJ
172 Printer {
173 out: out,
223e47cc 174 buf_len: n,
85aaf69f
SL
175 margin: linewidth as isize,
176 space: linewidth as isize,
223e47cc
LB
177 left: 0,
178 right: 0,
179 token: token,
180 size: size,
181 left_total: 0,
182 right_total: 0,
183 scan_stack: scan_stack,
184 scan_stack_empty: true,
185 top: 0,
186 bottom: 0,
1a4d82fc 187 print_stack: Vec::new(),
223e47cc
LB
188 pending_indentation: 0
189 }
190}
191
192
1a4d82fc
JJ
193/// In case you do not have the paper, here is an explanation of what's going
194/// on.
195///
196/// There is a stream of input tokens flowing through this printer.
197///
198/// The printer buffers up to 3N tokens inside itself, where N is linewidth.
199/// Yes, linewidth is chars and tokens are multi-char, but in the worst
200/// case every token worth buffering is 1 char long, so it's ok.
201///
202/// Tokens are String, Break, and Begin/End to delimit blocks.
203///
204/// Begin tokens can carry an offset, saying "how far to indent when you break
205/// inside here", as well as a flag indicating "consistent" or "inconsistent"
206/// breaking. Consistent breaking means that after the first break, no attempt
207/// will be made to flow subsequent breaks together onto lines. Inconsistent
208/// is the opposite. Inconsistent breaking example would be, say:
209///
210/// foo(hello, there, good, friends)
211///
212/// breaking inconsistently to become
213///
214/// foo(hello, there
215/// good, friends);
216///
217/// whereas a consistent breaking would yield:
218///
219/// foo(hello,
220/// there
221/// good,
222/// friends);
223///
224/// That is, in the consistent-break blocks we value vertical alignment
225/// more than the ability to cram stuff onto a line. But in all cases if it
226/// can make a block a one-liner, it'll do so.
227///
228/// Carrying on with high-level logic:
229///
230/// The buffered tokens go through a ring-buffer, 'tokens'. The 'left' and
231/// 'right' indices denote the active portion of the ring buffer as well as
232/// describing hypothetical points-in-the-infinite-stream at most 3N tokens
233/// apart (i.e. "not wrapped to ring-buffer boundaries"). The paper will switch
234/// between using 'left' and 'right' terms to denote the wrapped-to-ring-buffer
235/// and point-in-infinite-stream senses freely.
236///
237/// There is a parallel ring buffer, 'size', that holds the calculated size of
238/// each token. Why calculated? Because for Begin/End pairs, the "size"
239/// includes everything between the pair. That is, the "size" of Begin is
240/// actually the sum of the sizes of everything between Begin and the paired
241/// End that follows. Since that is arbitrarily far in the future, 'size' is
242/// being rewritten regularly while the printer runs; in fact most of the
243/// machinery is here to work out 'size' entries on the fly (and give up when
244/// they're so obviously over-long that "infinity" is a good enough
245/// approximation for purposes of line breaking).
246///
247/// The "input side" of the printer is managed as an abstract process called
248/// SCAN, which uses 'scan_stack', 'scan_stack_empty', 'top' and 'bottom', to
249/// manage calculating 'size'. SCAN is, in other words, the process of
250/// calculating 'size' entries.
251///
252/// The "output side" of the printer is managed by an abstract process called
253/// PRINT, which uses 'print_stack', 'margin' and 'space' to figure out what to
254/// do with each token/size pair it consumes as it goes. It's trying to consume
255/// the entire buffered window, but can't output anything until the size is >=
256/// 0 (sizes are set to negative while they're pending calculation).
257///
258/// So SCAN takes input and buffers tokens and pending calculations, while
259/// PRINT gobbles up completed calculations and tokens from the buffer. The
260/// theory is that the two can never get more than 3N tokens apart, because
261/// once there's "obviously" too much data to fit on a line, in a size
262/// calculation, SCAN will write "infinity" to the size and let PRINT consume
263/// it.
264///
265/// In this implementation (following the paper, again) the SCAN process is
266/// the method called 'pretty_print', and the 'PRINT' process is the method
267/// called 'print'.
c34b1796
AL
268pub struct Printer<'a> {
269 pub out: Box<io::Write+'a>,
85aaf69f 270 buf_len: usize,
1a4d82fc 271 /// Width of lines we're constrained to
85aaf69f 272 margin: isize,
1a4d82fc 273 /// Number of spaces left on line
85aaf69f 274 space: isize,
1a4d82fc 275 /// Index of left side of input stream
85aaf69f 276 left: usize,
1a4d82fc 277 /// Index of right side of input stream
85aaf69f 278 right: usize,
1a4d82fc
JJ
279 /// Ring-buffer stream goes through
280 token: Vec<Token> ,
281 /// Ring-buffer of calculated sizes
85aaf69f 282 size: Vec<isize> ,
1a4d82fc 283 /// Running size of stream "...left"
85aaf69f 284 left_total: isize,
1a4d82fc 285 /// Running size of stream "...right"
85aaf69f 286 right_total: isize,
1a4d82fc
JJ
287 /// Pseudo-stack, really a ring too. Holds the
288 /// primary-ring-buffers index of the Begin that started the
289 /// current block, possibly with the most recent Break after that
290 /// Begin (if there is any) on top of it. Stuff is flushed off the
291 /// bottom as it becomes irrelevant due to the primary ring-buffer
292 /// advancing.
85aaf69f 293 scan_stack: Vec<usize> ,
1a4d82fc
JJ
294 /// Top==bottom disambiguator
295 scan_stack_empty: bool,
296 /// Index of top of scan_stack
85aaf69f 297 top: usize,
1a4d82fc 298 /// Index of bottom of scan_stack
85aaf69f 299 bottom: usize,
1a4d82fc
JJ
300 /// Stack of blocks-in-progress being flushed by print
301 print_stack: Vec<PrintStackElem> ,
302 /// Buffered indentation to avoid writing trailing whitespace
85aaf69f 303 pending_indentation: isize,
223e47cc
LB
304}
305
c34b1796 306impl<'a> Printer<'a> {
1a4d82fc
JJ
307 pub fn last_token(&mut self) -> Token {
308 self.token[self.right].clone()
309 }
223e47cc 310 // be very careful with this!
1a4d82fc 311 pub fn replace_last_token(&mut self, t: Token) {
970d7e83
LB
312 self.token[self.right] = t;
313 }
c34b1796 314 pub fn pretty_print(&mut self, token: Token) -> io::Result<()> {
d9579d0f 315 debug!("pp Vec<{},{}>", self.left, self.right);
85aaf69f
SL
316 match token {
317 Token::Eof => {
223e47cc
LB
318 if !self.scan_stack_empty {
319 self.check_stack(0);
85aaf69f 320 try!(self.advance_left());
223e47cc
LB
321 }
322 self.indent(0);
1a4d82fc 323 Ok(())
223e47cc 324 }
85aaf69f 325 Token::Begin(b) => {
223e47cc
LB
326 if self.scan_stack_empty {
327 self.left_total = 1;
328 self.right_total = 1;
85aaf69f
SL
329 self.left = 0;
330 self.right = 0;
223e47cc 331 } else { self.advance_right(); }
d9579d0f 332 debug!("pp Begin({})/buffer Vec<{},{}>",
223e47cc 333 b.offset, self.left, self.right);
85aaf69f 334 self.token[self.right] = token;
223e47cc 335 self.size[self.right] = -self.right_total;
1a4d82fc
JJ
336 let right = self.right;
337 self.scan_push(right);
338 Ok(())
223e47cc 339 }
85aaf69f 340 Token::End => {
223e47cc 341 if self.scan_stack_empty {
d9579d0f 342 debug!("pp End/print Vec<{},{}>", self.left, self.right);
85aaf69f 343 self.print(token, 0)
223e47cc 344 } else {
d9579d0f 345 debug!("pp End/buffer Vec<{},{}>", self.left, self.right);
223e47cc 346 self.advance_right();
85aaf69f 347 self.token[self.right] = token;
223e47cc 348 self.size[self.right] = -1;
1a4d82fc
JJ
349 let right = self.right;
350 self.scan_push(right);
351 Ok(())
223e47cc
LB
352 }
353 }
85aaf69f 354 Token::Break(b) => {
223e47cc
LB
355 if self.scan_stack_empty {
356 self.left_total = 1;
357 self.right_total = 1;
85aaf69f
SL
358 self.left = 0;
359 self.right = 0;
223e47cc 360 } else { self.advance_right(); }
d9579d0f 361 debug!("pp Break({})/buffer Vec<{},{}>",
223e47cc
LB
362 b.offset, self.left, self.right);
363 self.check_stack(0);
1a4d82fc
JJ
364 let right = self.right;
365 self.scan_push(right);
85aaf69f 366 self.token[self.right] = token;
223e47cc
LB
367 self.size[self.right] = -self.right_total;
368 self.right_total += b.blank_space;
1a4d82fc 369 Ok(())
223e47cc 370 }
85aaf69f 371 Token::String(s, len) => {
223e47cc 372 if self.scan_stack_empty {
d9579d0f 373 debug!("pp String('{}')/print Vec<{},{}>",
85aaf69f
SL
374 s, self.left, self.right);
375 self.print(Token::String(s, len), len)
223e47cc 376 } else {
d9579d0f 377 debug!("pp String('{}')/buffer Vec<{},{}>",
85aaf69f 378 s, self.left, self.right);
223e47cc 379 self.advance_right();
85aaf69f 380 self.token[self.right] = Token::String(s, len);
223e47cc
LB
381 self.size[self.right] = len;
382 self.right_total += len;
1a4d82fc 383 self.check_stream()
223e47cc
LB
384 }
385 }
386 }
387 }
c34b1796 388 pub fn check_stream(&mut self) -> io::Result<()> {
d9579d0f 389 debug!("check_stream Vec<{}, {}> with left_total={}, right_total={}",
223e47cc
LB
390 self.left, self.right, self.left_total, self.right_total);
391 if self.right_total - self.left_total > self.space {
1a4d82fc 392 debug!("scan window is {}, longer than space on line ({})",
223e47cc
LB
393 self.right_total - self.left_total, self.space);
394 if !self.scan_stack_empty {
395 if self.left == self.scan_stack[self.bottom] {
1a4d82fc
JJ
396 debug!("setting {} to infinity and popping", self.left);
397 let scanned = self.scan_pop_bottom();
398 self.size[scanned] = SIZE_INFINITY;
223e47cc
LB
399 }
400 }
85aaf69f 401 try!(self.advance_left());
1a4d82fc
JJ
402 if self.left != self.right {
403 try!(self.check_stream());
404 }
223e47cc 405 }
1a4d82fc 406 Ok(())
223e47cc 407 }
85aaf69f 408 pub fn scan_push(&mut self, x: usize) {
1a4d82fc 409 debug!("scan_push {}", x);
223e47cc
LB
410 if self.scan_stack_empty {
411 self.scan_stack_empty = false;
412 } else {
85aaf69f 413 self.top += 1;
223e47cc
LB
414 self.top %= self.buf_len;
415 assert!((self.top != self.bottom));
416 }
417 self.scan_stack[self.top] = x;
418 }
85aaf69f 419 pub fn scan_pop(&mut self) -> usize {
223e47cc
LB
420 assert!((!self.scan_stack_empty));
421 let x = self.scan_stack[self.top];
422 if self.top == self.bottom {
423 self.scan_stack_empty = true;
1a4d82fc 424 } else {
85aaf69f 425 self.top += self.buf_len - 1; self.top %= self.buf_len;
1a4d82fc 426 }
223e47cc
LB
427 return x;
428 }
85aaf69f 429 pub fn scan_top(&mut self) -> usize {
223e47cc
LB
430 assert!((!self.scan_stack_empty));
431 return self.scan_stack[self.top];
432 }
85aaf69f 433 pub fn scan_pop_bottom(&mut self) -> usize {
223e47cc
LB
434 assert!((!self.scan_stack_empty));
435 let x = self.scan_stack[self.bottom];
436 if self.top == self.bottom {
437 self.scan_stack_empty = true;
1a4d82fc 438 } else {
85aaf69f 439 self.bottom += 1; self.bottom %= self.buf_len;
1a4d82fc 440 }
223e47cc
LB
441 return x;
442 }
970d7e83 443 pub fn advance_right(&mut self) {
85aaf69f 444 self.right += 1;
223e47cc
LB
445 self.right %= self.buf_len;
446 assert!((self.right != self.left));
447 }
c34b1796 448 pub fn advance_left(&mut self) -> io::Result<()> {
d9579d0f 449 debug!("advance_left Vec<{},{}>, sizeof({})={}", self.left, self.right,
85aaf69f
SL
450 self.left, self.size[self.left]);
451
452 let mut left_size = self.size[self.left];
453
454 while left_size >= 0 {
455 let left = self.token[self.left].clone();
456
457 let len = match left {
458 Token::Break(b) => b.blank_space,
459 Token::String(_, len) => {
460 assert_eq!(len, left_size);
461 len
462 }
463 _ => 0
464 };
465
466 try!(self.print(left, left_size));
467
468 self.left_total += len;
469
470 if self.left == self.right {
471 break;
223e47cc 472 }
85aaf69f
SL
473
474 self.left += 1;
475 self.left %= self.buf_len;
476
477 left_size = self.size[self.left];
223e47cc 478 }
85aaf69f
SL
479
480 Ok(())
223e47cc 481 }
85aaf69f 482 pub fn check_stack(&mut self, k: isize) {
223e47cc
LB
483 if !self.scan_stack_empty {
484 let x = self.scan_top();
1a4d82fc 485 match self.token[x] {
85aaf69f 486 Token::Begin(_) => {
1a4d82fc
JJ
487 if k > 0 {
488 let popped = self.scan_pop();
489 self.size[popped] = self.size[x] + self.right_total;
490 self.check_stack(k - 1);
491 }
492 }
85aaf69f 493 Token::End => {
1a4d82fc
JJ
494 // paper says + not =, but that makes no sense.
495 let popped = self.scan_pop();
496 self.size[popped] = 1;
497 self.check_stack(k + 1);
498 }
499 _ => {
500 let popped = self.scan_pop();
501 self.size[popped] = self.size[x] + self.right_total;
502 if k > 0 {
503 self.check_stack(k);
504 }
223e47cc 505 }
223e47cc
LB
506 }
507 }
508 }
c34b1796 509 pub fn print_newline(&mut self, amount: isize) -> io::Result<()> {
1a4d82fc
JJ
510 debug!("NEWLINE {}", amount);
511 let ret = write!(self.out, "\n");
223e47cc
LB
512 self.pending_indentation = 0;
513 self.indent(amount);
1a4d82fc 514 return ret;
223e47cc 515 }
85aaf69f 516 pub fn indent(&mut self, amount: isize) {
1a4d82fc 517 debug!("INDENT {}", amount);
223e47cc
LB
518 self.pending_indentation += amount;
519 }
1a4d82fc
JJ
520 pub fn get_top(&mut self) -> PrintStackElem {
521 let print_stack = &mut self.print_stack;
223e47cc 522 let n = print_stack.len();
85aaf69f 523 if n != 0 {
1a4d82fc 524 (*print_stack)[n - 1]
223e47cc 525 } else {
1a4d82fc 526 PrintStackElem {
223e47cc 527 offset: 0,
85aaf69f 528 pbreak: PrintStackBreak::Broken(Breaks::Inconsistent)
223e47cc
LB
529 }
530 }
531 }
c34b1796 532 pub fn print_str(&mut self, s: &str) -> io::Result<()> {
223e47cc 533 while self.pending_indentation > 0 {
1a4d82fc 534 try!(write!(self.out, " "));
223e47cc
LB
535 self.pending_indentation -= 1;
536 }
1a4d82fc 537 write!(self.out, "{}", s)
223e47cc 538 }
c34b1796 539 pub fn print(&mut self, token: Token, l: isize) -> io::Result<()> {
85aaf69f 540 debug!("print {} {} (remaining line space={})", tok_str(&token), l,
223e47cc 541 self.space);
85aaf69f
SL
542 debug!("{}", buf_str(&self.token,
543 &self.size,
1a4d82fc
JJ
544 self.left,
545 self.right,
546 6));
85aaf69f
SL
547 match token {
548 Token::Begin(b) => {
1a4d82fc 549 if l > self.space {
223e47cc 550 let col = self.margin - self.space + b.offset;
1a4d82fc
JJ
551 debug!("print Begin -> push broken block at col {}", col);
552 self.print_stack.push(PrintStackElem {
223e47cc 553 offset: col,
85aaf69f 554 pbreak: PrintStackBreak::Broken(b.breaks)
223e47cc
LB
555 });
556 } else {
1a4d82fc
JJ
557 debug!("print Begin -> push fitting block");
558 self.print_stack.push(PrintStackElem {
223e47cc 559 offset: 0,
85aaf69f 560 pbreak: PrintStackBreak::Fits
223e47cc
LB
561 });
562 }
1a4d82fc 563 Ok(())
223e47cc 564 }
85aaf69f 565 Token::End => {
1a4d82fc
JJ
566 debug!("print End -> pop End");
567 let print_stack = &mut self.print_stack;
9346a6ac 568 assert!((!print_stack.is_empty()));
1a4d82fc
JJ
569 print_stack.pop().unwrap();
570 Ok(())
223e47cc 571 }
85aaf69f 572 Token::Break(b) => {
223e47cc
LB
573 let top = self.get_top();
574 match top.pbreak {
85aaf69f 575 PrintStackBreak::Fits => {
1a4d82fc 576 debug!("print Break({}) in fitting block", b.blank_space);
223e47cc
LB
577 self.space -= b.blank_space;
578 self.indent(b.blank_space);
1a4d82fc 579 Ok(())
223e47cc 580 }
85aaf69f 581 PrintStackBreak::Broken(Breaks::Consistent) => {
1a4d82fc 582 debug!("print Break({}+{}) in consistent block",
223e47cc 583 top.offset, b.offset);
1a4d82fc 584 let ret = self.print_newline(top.offset + b.offset);
223e47cc 585 self.space = self.margin - (top.offset + b.offset);
1a4d82fc 586 ret
223e47cc 587 }
85aaf69f 588 PrintStackBreak::Broken(Breaks::Inconsistent) => {
1a4d82fc
JJ
589 if l > self.space {
590 debug!("print Break({}+{}) w/ newline in inconsistent",
223e47cc 591 top.offset, b.offset);
1a4d82fc 592 let ret = self.print_newline(top.offset + b.offset);
223e47cc 593 self.space = self.margin - (top.offset + b.offset);
1a4d82fc 594 ret
223e47cc 595 } else {
1a4d82fc 596 debug!("print Break({}) w/o newline in inconsistent",
223e47cc
LB
597 b.blank_space);
598 self.indent(b.blank_space);
599 self.space -= b.blank_space;
1a4d82fc 600 Ok(())
223e47cc
LB
601 }
602 }
603 }
604 }
85aaf69f 605 Token::String(s, len) => {
1a4d82fc
JJ
606 debug!("print String({})", s);
607 assert_eq!(l, len);
608 // assert!(l <= space);
223e47cc 609 self.space -= len;
85aaf69f 610 self.print_str(&s[..])
223e47cc 611 }
85aaf69f 612 Token::Eof => {
1a4d82fc
JJ
613 // Eof should never get here.
614 panic!();
223e47cc
LB
615 }
616 }
617 }
618}
619
620// Convenience functions to talk to the printer.
1a4d82fc
JJ
621//
622// "raw box"
c34b1796 623pub fn rbox(p: &mut Printer, indent: usize, b: Breaks) -> io::Result<()> {
85aaf69f
SL
624 p.pretty_print(Token::Begin(BeginToken {
625 offset: indent as isize,
223e47cc 626 breaks: b
1a4d82fc 627 }))
223e47cc
LB
628}
629
c34b1796 630pub fn ibox(p: &mut Printer, indent: usize) -> io::Result<()> {
85aaf69f 631 rbox(p, indent, Breaks::Inconsistent)
1a4d82fc 632}
223e47cc 633
c34b1796 634pub fn cbox(p: &mut Printer, indent: usize) -> io::Result<()> {
85aaf69f 635 rbox(p, indent, Breaks::Consistent)
1a4d82fc 636}
223e47cc 637
c34b1796 638pub fn break_offset(p: &mut Printer, n: usize, off: isize) -> io::Result<()> {
85aaf69f 639 p.pretty_print(Token::Break(BreakToken {
223e47cc 640 offset: off,
85aaf69f 641 blank_space: n as isize
1a4d82fc 642 }))
223e47cc
LB
643}
644
c34b1796 645pub fn end(p: &mut Printer) -> io::Result<()> {
85aaf69f
SL
646 p.pretty_print(Token::End)
647}
223e47cc 648
c34b1796 649pub fn eof(p: &mut Printer) -> io::Result<()> {
85aaf69f
SL
650 p.pretty_print(Token::Eof)
651}
223e47cc 652
c34b1796 653pub fn word(p: &mut Printer, wrd: &str) -> io::Result<()> {
85aaf69f 654 p.pretty_print(Token::String(/* bad */ wrd.to_string(), wrd.len() as isize))
223e47cc
LB
655}
656
c34b1796 657pub fn huge_word(p: &mut Printer, wrd: &str) -> io::Result<()> {
85aaf69f 658 p.pretty_print(Token::String(/* bad */ wrd.to_string(), SIZE_INFINITY))
223e47cc
LB
659}
660
c34b1796 661pub fn zero_word(p: &mut Printer, wrd: &str) -> io::Result<()> {
85aaf69f 662 p.pretty_print(Token::String(/* bad */ wrd.to_string(), 0))
223e47cc
LB
663}
664
c34b1796 665pub fn spaces(p: &mut Printer, n: usize) -> io::Result<()> {
1a4d82fc
JJ
666 break_offset(p, n, 0)
667}
223e47cc 668
c34b1796 669pub fn zerobreak(p: &mut Printer) -> io::Result<()> {
85aaf69f 670 spaces(p, 0)
1a4d82fc 671}
223e47cc 672
c34b1796 673pub fn space(p: &mut Printer) -> io::Result<()> {
85aaf69f 674 spaces(p, 1)
1a4d82fc 675}
223e47cc 676
c34b1796 677pub fn hardbreak(p: &mut Printer) -> io::Result<()> {
85aaf69f 678 spaces(p, SIZE_INFINITY as usize)
1a4d82fc 679}
223e47cc 680
85aaf69f
SL
681pub fn hardbreak_tok_offset(off: isize) -> Token {
682 Token::Break(BreakToken {offset: off, blank_space: SIZE_INFINITY})
223e47cc
LB
683}
684
85aaf69f
SL
685pub fn hardbreak_tok() -> Token {
686 hardbreak_tok_offset(0)
687}