docs for pretty printer
[scpubgit/Q-Branch.git] / lib / SQL / Abstract / Tree.pm
CommitLineData
01dd4e4f 1package SQL::Abstract::Tree;
2
3use strict;
4use warnings;
b3b79607 5no warnings 'qw';
01dd4e4f 6use Carp;
7
0769ac0e 8use Hash::Merge qw//;
9
10use base 'Class::Accessor::Grouped';
11
12__PACKAGE__->mk_group_accessors( simple => $_ ) for qw(
13 newline indent_string indent_amount colormap indentmap fill_in_placeholders
14 placeholder_surround
15);
2fed0b4b 16
bc482085 17my $merger = Hash::Merge->new;
18
19$merger->specify_behavior({
2fed0b4b 20 SCALAR => {
21 SCALAR => sub { $_[1] },
22 ARRAY => sub { [ $_[0], @{$_[1]} ] },
23 HASH => sub { $_[1] },
24 },
25 ARRAY => {
26 SCALAR => sub { $_[1] },
27 ARRAY => sub { $_[1] },
28 HASH => sub { $_[1] },
29 },
30 HASH => {
31 SCALAR => sub { $_[1] },
32 ARRAY => sub { [ values %{$_[0]}, @{$_[1]} ] },
33 HASH => sub { Hash::Merge::_merge_hashes( $_[0], $_[1] ) },
34 },
0769ac0e 35}, 'SQLA::Tree Behavior' );
1536de15 36
0769ac0e 37my $op_look_ahead = '(?: (?= [\s\)\(\;] ) | \z)';
b3b79607 38my $op_look_behind = '(?: (?<= [\,\s\)\(] ) | \A )';
39
0769ac0e 40my $quote_left = qr/[\`\'\"\[]/;
41my $quote_right = qr/[\`\'\"\]]/;
01dd4e4f 42
4e914a7c 43my $placeholder_re = qr/(?: \? | \$\d+ )/x;
44
01dd4e4f 45# These SQL keywords always signal end of the current expression (except inside
46# of a parenthesized subexpression).
0769ac0e 47# Format: A list of strings that will be compiled to extended syntax ie.
01dd4e4f 48# /.../x) regexes, without capturing parentheses. They will be automatically
0769ac0e 49# anchored to op boundaries (excluding quotes) to match the whole token.
50my @expression_start_keywords = (
01dd4e4f 51 'SELECT',
7853a177 52 'UPDATE',
53 'INSERT \s+ INTO',
54 'DELETE \s+ FROM',
3d910890 55 'FROM',
7853a177 56 'SET',
01dd4e4f 57 '(?:
58 (?:
0769ac0e 59 (?: (?: LEFT | RIGHT | FULL ) \s+ )?
60 (?: (?: CROSS | INNER | OUTER ) \s+ )?
01dd4e4f 61 )?
62 JOIN
63 )',
64 'ON',
65 'WHERE',
efc991a0 66 '(?: DEFAULT \s+ )? VALUES',
01dd4e4f 67 'EXISTS',
68 'GROUP \s+ BY',
69 'HAVING',
70 'ORDER \s+ BY',
c0eaa9fd 71 'SKIP',
72 'FIRST',
01dd4e4f 73 'LIMIT',
74 'OFFSET',
75 'FOR',
76 'UNION',
77 'INTERSECT',
78 'EXCEPT',
820bb1f5 79 'BEGIN \s+ WORK',
80 'COMMIT',
81 'ROLLBACK \s+ TO \s+ SAVEPOINT',
82 'ROLLBACK',
83 'SAVEPOINT',
84 'RELEASE \s+ SAVEPOINT',
01dd4e4f 85 'RETURNING',
8d0dd7dc 86 'ROW_NUMBER \s* \( \s* \) \s+ OVER',
01dd4e4f 87);
88
b3b79607 89my $expr_start_re = join ("\n\t|\n", @expression_start_keywords );
90$expr_start_re = qr/ $op_look_behind (?i: $expr_start_re ) $op_look_ahead /x;
0769ac0e 91
01dd4e4f 92# These are binary operator keywords always a single LHS and RHS
93# * AND/OR are handled separately as they are N-ary
94# * so is NOT as being unary
95# * BETWEEN without paranthesis around the ANDed arguments (which
96# makes it a non-binary op) is detected and accomodated in
97# _recurse_parse()
01dd4e4f 98
0769ac0e 99# this will be included in the $binary_op_re, the distinction is interesting during
100# testing as one is tighter than the other, plus mathops have different look
101# ahead/behind (e.g. "x"="y" )
102my @math_op_keywords = (qw/ < > != <> = <= >= /);
103my $math_re = join ("\n\t|\n", map
104 { "(?: (?<= [\\w\\s] | $quote_right ) | \\A )" . quotemeta ($_) . "(?: (?= [\\w\\s] | $quote_left ) | \\z )" }
105 @math_op_keywords
01dd4e4f 106);
b7b0f832 107$math_re = qr/$math_re/x;
0769ac0e 108
109sub _math_op_re { $math_re }
110
111
112my $binary_op_re = '(?: NOT \s+)? (?:' . join ('|', qw/IN BETWEEN R?LIKE/) . ')';
b3b79607 113$binary_op_re = join "\n\t|\n",
114 "$op_look_behind (?i: $binary_op_re ) $op_look_ahead",
115 $math_re,
116 $op_look_behind . 'IS (?:\s+ NOT)?' . "(?= \\s+ NULL \\b | $op_look_ahead )",
117;
b7b0f832 118$binary_op_re = qr/$binary_op_re/x;
0769ac0e 119
120sub _binary_op_re { $binary_op_re }
121
b3b79607 122my $all_known_re = join("\n\t|\n",
123 $expr_start_re,
0769ac0e 124 $binary_op_re,
125 "$op_look_behind (?i: AND|OR|NOT ) $op_look_ahead",
b3b79607 126 (map { quotemeta $_ } qw/, ( ) */),
4e914a7c 127 $placeholder_re,
0769ac0e 128);
01dd4e4f 129
b3b79607 130$all_known_re = qr/$all_known_re/x;
131
132#this one *is* capturing for the split below
133# splits on whitespace if all else fails
134my $tokenizer_re = qr/ \s* ( $all_known_re ) \s* | \s+ /x;
135
136# Parser states for _recurse_parse()
137use constant PARSE_TOP_LEVEL => 0;
138use constant PARSE_IN_EXPR => 1;
139use constant PARSE_IN_PARENS => 2;
140use constant PARSE_IN_FUNC => 3;
141use constant PARSE_RHS => 4;
142
143my $expr_term_re = qr/ ^ (?: $expr_start_re | \) ) $/x;
144my $rhs_term_re = qr/ ^ (?: $expr_term_re | $binary_op_re | (?i: AND | OR | NOT | \, ) ) $/x;
4e914a7c 145my $func_start_re = qr/^ (?: \* | $placeholder_re | \( ) $/x;
01dd4e4f 146
7e5600e9 147my %indents = (
7853a177 148 select => 0,
149 update => 0,
150 'insert into' => 0,
151 'delete from' => 0,
3d910890 152 from => 1,
91916220 153 where => 0,
7853a177 154 join => 1,
155 'left join' => 1,
156 on => 2,
91916220 157 'group by' => 0,
158 'order by' => 0,
7853a177 159 set => 1,
160 into => 1,
91916220 161 values => 1,
c0eaa9fd 162 limit => 1,
163 offset => 1,
164 skip => 1,
165 first => 1,
7e5600e9 166);
167
75c3a063 168my %profiles = (
169 console => {
84c65032 170 fill_in_placeholders => 1,
9d11f0d4 171 placeholder_surround => ['?/', ''],
1536de15 172 indent_string => ' ',
75c3a063 173 indent_amount => 2,
1536de15 174 newline => "\n",
3be357b0 175 colormap => {},
6d388c84 176 indentmap => \%indents,
aafbf833 177
178 eval { require Term::ANSIColor }
179 ? do {
180 my $c = \&Term::ANSIColor::color;
6d388c84 181
182 my $red = [$c->('red') , $c->('reset')];
183 my $cyan = [$c->('cyan') , $c->('reset')];
184 my $green = [$c->('green') , $c->('reset')];
185 my $yellow = [$c->('yellow') , $c->('reset')];
186 my $blue = [$c->('blue') , $c->('reset')];
187 my $magenta = [$c->('magenta'), $c->('reset')];
188 my $b_o_w = [$c->('black on_white'), $c->('reset')];
aafbf833 189 (
09931431 190 placeholder_surround => [q(') . $c->('black on_magenta'), $c->('reset') . q(')],
aafbf833 191 colormap => {
6d388c84 192 'begin work' => $b_o_w,
193 commit => $b_o_w,
194 rollback => $b_o_w,
195 savepoint => $b_o_w,
196 'rollback to savepoint' => $b_o_w,
197 'release savepoint' => $b_o_w,
198
199 select => $red,
200 'insert into' => $red,
201 update => $red,
202 'delete from' => $red,
203
204 set => $cyan,
205 from => $cyan,
206
207 where => $green,
208 values => $yellow,
209
210 join => $magenta,
211 'left join' => $magenta,
212 on => $blue,
213
214 'group by' => $yellow,
215 'order by' => $yellow,
216
217 skip => $green,
218 first => $green,
219 limit => $green,
220 offset => $green,
aafbf833 221 }
222 );
223 } : (),
3be357b0 224 },
225 console_monochrome => {
84c65032 226 fill_in_placeholders => 1,
9d11f0d4 227 placeholder_surround => ['?/', ''],
3be357b0 228 indent_string => ' ',
229 indent_amount => 2,
230 newline => "\n",
231 colormap => {},
6d388c84 232 indentmap => \%indents,
7e5600e9 233 },
234 html => {
84c65032 235 fill_in_placeholders => 1,
9d11f0d4 236 placeholder_surround => ['<span class="placeholder">', '</span>'],
7e5600e9 237 indent_string => '&nbsp;',
238 indent_amount => 2,
239 newline => "<br />\n",
240 colormap => {
7853a177 241 select => ['<span class="select">' , '</span>'],
242 'insert into' => ['<span class="insert-into">' , '</span>'],
243 update => ['<span class="select">' , '</span>'],
244 'delete from' => ['<span class="delete-from">' , '</span>'],
c0eaa9fd 245
246 set => ['<span class="set">', '</span>'],
7853a177 247 from => ['<span class="from">' , '</span>'],
c0eaa9fd 248
249 where => ['<span class="where">' , '</span>'],
250 values => ['<span class="values">', '</span>'],
251
7853a177 252 join => ['<span class="join">' , '</span>'],
c0eaa9fd 253 'left join' => ['<span class="left-join">','</span>'],
7853a177 254 on => ['<span class="on">' , '</span>'],
c0eaa9fd 255
7853a177 256 'group by' => ['<span class="group-by">', '</span>'],
257 'order by' => ['<span class="order-by">', '</span>'],
c0eaa9fd 258
259 skip => ['<span class="skip">', '</span>'],
260 first => ['<span class="first">', '</span>'],
261 limit => ['<span class="limit">', '</span>'],
262 offset => ['<span class="offset">', '</span>'],
820bb1f5 263
264 'begin work' => ['<span class="begin-work">', '</span>'],
265 commit => ['<span class="commit">', '</span>'],
266 rollback => ['<span class="rollback">', '</span>'],
267 savepoint => ['<span class="savepoint">', '</span>'],
268 'rollback to savepoint' => ['<span class="rollback-to-savepoint">', '</span>'],
269 'release savepoint' => ['<span class="release-savepoint">', '</span>'],
1536de15 270 },
6d388c84 271 indentmap => \%indents,
75c3a063 272 },
273 none => {
1536de15 274 colormap => {},
275 indentmap => {},
75c3a063 276 },
277);
278
279sub new {
2fed0b4b 280 my $class = shift;
281 my $args = shift || {};
75c3a063 282
283 my $profile = delete $args->{profile} || 'none';
bc482085 284 my $data = $merger->merge( $profiles{$profile}, $args );
75c3a063 285
286 bless $data, $class
287}
d695b0ad 288
01dd4e4f 289sub parse {
d695b0ad 290 my ($self, $s) = @_;
01dd4e4f 291
292 # tokenize string, and remove all optional whitespace
293 my $tokens = [];
294 foreach my $token (split $tokenizer_re, $s) {
b3b79607 295 push @$tokens, $token if (
296 defined $token
297 and
298 length $token
09931431 299 and
b3b79607 300 $token =~ /\S/
301 );
01dd4e4f 302 }
b3b79607 303 $self->_recurse_parse($tokens, PARSE_TOP_LEVEL);
01dd4e4f 304}
305
306sub _recurse_parse {
d695b0ad 307 my ($self, $tokens, $state) = @_;
01dd4e4f 308
309 my $left;
310 while (1) { # left-associative parsing
311
312 my $lookahead = $tokens->[0];
313 if ( not defined($lookahead)
314 or
315 ($state == PARSE_IN_PARENS && $lookahead eq ')')
316 or
b3b79607 317 ($state == PARSE_IN_EXPR && $lookahead =~ $expr_term_re )
0769ac0e 318 or
b3b79607 319 ($state == PARSE_RHS && $lookahead =~ $rhs_term_re )
01dd4e4f 320 or
b3b79607 321 ($state == PARSE_IN_FUNC && $lookahead !~ $func_start_re) # if there are multiple values - the parenthesis will switch the $state
01dd4e4f 322 ) {
0769ac0e 323 return $left||();
01dd4e4f 324 }
325
326 my $token = shift @$tokens;
327
328 # nested expression in ()
329 if ($token eq '(' ) {
d695b0ad 330 my $right = $self->_recurse_parse($tokens, PARSE_IN_PARENS);
331 $token = shift @$tokens or croak "missing closing ')' around block " . $self->unparse($right);
332 $token eq ')' or croak "unexpected token '$token' terminating block " . $self->unparse($right);
01dd4e4f 333
0769ac0e 334 $left = $left ? [$left, [PAREN => [$right||()] ]]
335 : [PAREN => [$right||()] ];
01dd4e4f 336 }
b3b79607 337 # AND/OR and LIST (,)
338 elsif ($token =~ /^ (?: OR | AND | \, ) $/xi ) {
339 my $op = ($token eq ',') ? 'LIST' : uc $token;
340
d695b0ad 341 my $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 342
343 # Merge chunks if logic matches
344 if (ref $right and $op eq $right->[0]) {
b3b79607 345 $left = [ (shift @$right ), [$left||(), map { @$_ } @$right] ];
01dd4e4f 346 }
347 else {
b3b79607 348 $left = [$op => [ $left||(), $right||() ]];
01dd4e4f 349 }
350 }
351 # binary operator keywords
a1e204f4 352 elsif ( $token =~ /^ $binary_op_re $ /x ) {
01dd4e4f 353 my $op = uc $token;
d695b0ad 354 my $right = $self->_recurse_parse($tokens, PARSE_RHS);
01dd4e4f 355
356 # A between with a simple LITERAL for a 1st RHS argument needs a
357 # rerun of the search to (hopefully) find the proper AND construct
358 if ($op eq 'BETWEEN' and $right->[0] eq 'LITERAL') {
359 unshift @$tokens, $right->[1][0];
d695b0ad 360 $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 361 }
362
363 $left = [$op => [$left, $right] ];
364 }
365 # expression terminator keywords (as they start a new expression)
b3b79607 366 elsif ( $token =~ / ^ $expr_start_re $ /x ) {
01dd4e4f 367 my $op = uc $token;
d695b0ad 368 my $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
efc991a0 369 $left = $left ? [ $left, [$op => [$right||()] ]]
370 : [ $op => [$right||()] ];
01dd4e4f 371 }
0769ac0e 372 # NOT
373 elsif ( $token =~ /^ NOT $/ix ) {
01dd4e4f 374 my $op = uc $token;
d695b0ad 375 my $right = $self->_recurse_parse ($tokens, PARSE_RHS);
01dd4e4f 376 $left = $left ? [ @$left, [$op => [$right] ]]
377 : [ $op => [$right] ];
378
379 }
4e914a7c 380 elsif ( $token =~ $placeholder_re) {
381 $left = $left ? [ $left, [ PLACEHOLDER => [ $token ] ] ]
382 : [ PLACEHOLDER => [ $token ] ];
383 }
b3b79607 384 # we're now in "unknown token" land - start eating tokens until
385 # we see something familiar
01dd4e4f 386 else {
b3b79607 387 my $right;
388
389 # check if the current token is an unknown op-start
390 if (@$tokens and $tokens->[0] =~ $func_start_re) {
391 $right = [ $token => [ $self->_recurse_parse($tokens, PARSE_IN_FUNC) || () ] ];
392 }
393 else {
394 $right = [ LITERAL => [ $token ] ];
395 }
396
397 $left = $left ? [ $left, $right ]
398 : $right;
01dd4e4f 399 }
400 }
401}
402
d695b0ad 403sub format_keyword {
404 my ($self, $keyword) = @_;
405
1536de15 406 if (my $around = $self->colormap->{lc $keyword}) {
d695b0ad 407 $keyword = "$around->[0]$keyword$around->[1]";
408 }
409
410 return $keyword
411}
412
728f26a2 413my %starters = (
414 select => 1,
415 update => 1,
416 'insert into' => 1,
417 'delete from' => 1,
418);
419
f2ab166a 420sub pad_keyword {
a24cc3a0 421 my ($self, $keyword, $depth) = @_;
e171c446 422
423 my $before = '';
1536de15 424 if (defined $self->indentmap->{lc $keyword}) {
425 $before = $self->newline . $self->indent($depth + $self->indentmap->{lc $keyword});
a24cc3a0 426 }
728f26a2 427 $before = '' if $depth == 0 and defined $starters{lc $keyword};
e4570c8e 428 return [$before, ''];
a24cc3a0 429}
430
1536de15 431sub indent { ($_[0]->indent_string||'') x ( ( $_[0]->indent_amount || 0 ) * $_[1] ) }
a24cc3a0 432
a97eb57c 433sub _is_key {
434 my ($self, $tree) = @_;
0569a14f 435 $tree = $tree->[0] while ref $tree;
436
a97eb57c 437 defined $tree && defined $self->indentmap->{lc $tree};
0569a14f 438}
439
9d11f0d4 440sub fill_in_placeholder {
fb272e73 441 my ($self, $bindargs) = @_;
442
443 if ($self->fill_in_placeholders) {
ad46269d 444 my $val = shift @{$bindargs} || '';
9d11f0d4 445 my ($left, $right) = @{$self->placeholder_surround};
fb272e73 446 $val =~ s/\\/\\\\/g;
447 $val =~ s/'/\\'/g;
ad46269d 448 return qq($left$val$right)
fb272e73 449 }
450 return '?'
451}
452
3a247d23 453# FIXME - terrible name for a user facing API
01dd4e4f 454sub unparse {
3a247d23 455 my ($self, $tree, $bindargs) = @_;
456 $self->_unparse($tree, [@{$bindargs||[]}], 0);
457}
a24cc3a0 458
3a247d23 459sub _unparse {
460 my ($self, $tree, $bindargs, $depth) = @_;
01dd4e4f 461
0769ac0e 462 if (not $tree or not @$tree) {
01dd4e4f 463 return '';
464 }
a24cc3a0 465
0769ac0e 466 my ($car, $cdr) = @{$tree}[0,1];
467
468 if (! defined $car or (! ref $car and ! defined $cdr) ) {
469 require Data::Dumper;
470 Carp::confess( sprintf ( "Internal error - malformed branch at depth $depth:\n%s",
471 Data::Dumper::Dumper($tree)
472 ) );
473 }
a24cc3a0 474
475 if (ref $car) {
3a247d23 476 return join (' ', map $self->_unparse($_, $bindargs, $depth), @$tree);
01dd4e4f 477 }
a24cc3a0 478 elsif ($car eq 'LITERAL') {
479 return $cdr->[0];
01dd4e4f 480 }
4e914a7c 481 elsif ($car eq 'PLACEHOLDER') {
482 return $self->fill_in_placeholder($bindargs);
483 }
a24cc3a0 484 elsif ($car eq 'PAREN') {
e4570c8e 485 return sprintf ('(%s)',
486 join (' ', map { $self->_unparse($_, $bindargs, $depth + 2) } @{$cdr} )
487 .
488 ($self->_is_key($cdr)
489 ? ( $self->newline||'' ) . $self->indent($depth + 1)
490 : ''
491 )
492 );
01dd4e4f 493 }
0769ac0e 494 elsif ($car eq 'AND' or $car eq 'OR' or $car =~ / ^ $binary_op_re $ /x ) {
3a247d23 495 return join (" $car ", map $self->_unparse($_, $bindargs, $depth), @{$cdr});
01dd4e4f 496 }
b3b79607 497 elsif ($car eq 'LIST' ) {
3a247d23 498 return join (', ', map $self->_unparse($_, $bindargs, $depth), @{$cdr});
b3b79607 499 }
01dd4e4f 500 else {
f2ab166a 501 my ($l, $r) = @{$self->pad_keyword($car, $depth)};
3a247d23 502 return sprintf "$l%s %s$r", $self->format_keyword($car), $self->_unparse($cdr, $bindargs, $depth);
01dd4e4f 503 }
504}
505
fb272e73 506sub format { my $self = shift; $self->unparse($self->parse($_[0]), $_[1]) }
01dd4e4f 507
5081;
509
3be357b0 510=pod
511
512=head1 SYNOPSIS
513
514 my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
515
516 print $sqla_tree->format('SELECT * FROM foo WHERE foo.a > 2');
517
518 # SELECT *
519 # FROM foo
520 # WHERE foo.a > 2
521
6b1bf9f8 522=head1 METHODS
523
524=head2 new
525
526 my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
527
c22f502d 528 $args = {
529 profile => 'console', # predefined profile to use (default: 'none')
530 fill_in_placeholders => 1, # true for placeholder population
9d11f0d4 531 placeholder_surround => # The strings that will be wrapped around
532 [GREEN, RESET], # populated placeholders if the above is set
c22f502d 533 indent_string => ' ', # the string used when indenting
534 indent_amount => 2, # how many of above string to use for a single
535 # indent level
536 newline => "\n", # string for newline
537 colormap => {
538 select => [RED, RESET], # a pair of strings defining what to surround
539 # the keyword with for colorization
540 # ...
541 },
542 indentmap => {
543 select => 0, # A zero means that the keyword will start on
544 # a new line
545 from => 1, # Any other positive integer means that after
546 on => 2, # said newline it will get that many indents
547 # ...
548 },
549 }
550
551Returns a new SQL::Abstract::Tree object. All arguments are optional.
552
553=head3 profiles
554
555There are four predefined profiles, C<none>, C<console>, C<console_monochrome>,
556and C<html>. Typically a user will probably just use C<console> or
557C<console_monochrome>, but if something about a profile bothers you, merely
558use the profile and override the parts that you don't like.
559
6b1bf9f8 560=head2 format
561
c22f502d 562 $sqlat->format('SELECT * FROM bar WHERE x = ?', [1])
563
564Takes C<$sql> and C<\@bindargs>.
6b1bf9f8 565
1a3cc911 566Returns a formatting string based on the string passed in
ee4227a7 567
568=head2 parse
569
570 $sqlat->parse('SELECT * FROM bar WHERE x = ?')
571
572Returns a "tree" representing passed in SQL. Please do not depend on the
573structure of the returned tree. It may be stable at some point, but not yet.
574
575=head2 unparse
576
577 $sqlat->parse($tree_structure, \@bindargs)
578
579Transform "tree" into SQL, applying various transforms on the way.
580
581=head2 format_keyword
582
583 $sqlat->format_keyword('SELECT')
584
585Currently this just takes a keyword and puts the C<colormap> stuff around it.
586Later on it may do more and allow for coderef based transforms.
587
f2ab166a 588=head2 pad_keyword
ee4227a7 589
f2ab166a 590 my ($before, $after) = @{$sqlat->pad_keyword('SELECT')};
ee4227a7 591
592Returns whitespace to be inserted around a keyword.
9d11f0d4 593
594=head2 fill_in_placeholder
595
596 my $value = $sqlat->fill_in_placeholder(\@bindargs)
597
598Removes last arg from passed arrayref and returns it, surrounded with
599the values in placeholder_surround, and then surrounded with single quotes.
f2ab166a 600
601=head2 indent
602
603Returns as many indent strings as indent amounts times the first argument.
604
605=head1 ACCESSORS
606
607=head2 colormap
608
609See L</new>
610
611=head2 fill_in_placeholders
612
613See L</new>
614
615=head2 indent_amount
616
617See L</new>
618
619=head2 indent_string
620
621See L</new>
622
623=head2 indentmap
624
625See L</new>
626
627=head2 newline
628
629See L</new>
630
631=head2 placeholder_surround
632
633See L</new>
634