more formatting cleanup
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract / Formatter.pm
CommitLineData
77ec9556 1package SQL::Abstract::Formatter;
2
3require SQL::Abstract::Parts; # it loads us too, don't cross the streams
4
5use Moo;
6
7has indent_by => (is => 'ro', default => ' ');
8has max_width => (is => 'ro', default => 78);
9
10sub _join {
11 shift;
b349d2fa 12 return SQL::Abstract::Parts::stringify(\@_);
77ec9556 13}
14
15sub format {
16 my ($self, $join, @parts) = @_;
b7516a3a 17 $self->_fold_sql('', '', @{$self->_simplify($join, @parts)});
18}
19
20sub _simplify {
21 my ($self, $join, @parts) = @_;
22 return '' unless @parts;
23 return $parts[0] if @parts == 1 and !ref($parts[0]);
24 return $self->_simplify(@{$parts[0]}) if @parts == 1;
25 return [ $join, map ref() ? $self->_simplify(@$_) : $_, @parts ];
26}
27
28sub _fold_sql {
b7516a3a 29 my ($self, $indent0, $indent, $join, @parts) = @_;
30 my @res;
31 my $w = $self->max_width;
32 my $join_len = 0;
33 (s/, \Z/,\n/ and $join_len = 1)
34 or s/\A /\n/
35 or $_ = "\n"
36 for my $line_join = $join;
37 my ($nl_pre, $nl_post) = split "\n", $line_join;
1b20ff8d 38 my $line_orig = my $line = $indent0;
b7516a3a 39 my $next_indent = $indent.$self->indent_by;
1b20ff8d 40 my $line_proto = $indent.$nl_post;
b7516a3a 41 PART: foreach my $idx (0..$#parts) {
b7516a3a 42 my $p = $parts[$idx];
1b20ff8d 43 my $pre = ($line ne $line_orig ? $join : '');
b7516a3a 44 my $j_part = $pre.(my $j = ref($p) ? $self->_join(@$p) : $p);
45 if (length($j_part) + length($line) + $join_len <= $w) {
46 $line .= $j_part;
47 } else {
dada26b0 48 if (ref($p) and $p->[1] eq '(' and $p->[-1] eq ')') {
1b20ff8d 49 my $already = !($line eq $indent0 or $line eq $line_orig);
50 push @res, $line.($already ? $join : '').'('."\n";
b349d2fa 51 my (undef, undef, $inner) = @$p;
8d1295c3 52 my $folded = $self->_fold_sql($next_indent, $next_indent, @$inner);
53 $folded =~ s/\n\Z//;
cdbf093f 54 push @res, $folded."\n";
1b20ff8d 55 $line_orig = $line
8d1295c3 56 = $indent0.')'.(
57 ($nl_post and $idx < $#parts) ? ' '.$nl_post : ' '
58 );
b349d2fa 59 next PART;
60 }
1b20ff8d 61 push @res, $line.$nl_pre."\n" if $line ne $line_orig;
62 if (length($line = $line_proto.$j) <= $w) {
63 $line_proto = $line;
b7516a3a 64 next PART;
65 }
8d1295c3 66 my $innerdent = @res ? $indent : $next_indent;
67 my $folded = $self->_fold_sql($line_proto, $innerdent, @$p);
cb3a6230 68 $folded =~ s/\n\Z//;
cd93bc22 69 push @res, $folded.$nl_pre."\n";
1b20ff8d 70 $line_orig = $line = $idx == $#parts ? '' : $line_proto;
b7516a3a 71 }
b7516a3a 72 }
b349d2fa 73 return join '', @res, $line;
77ec9556 74}
75
761;