X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=commitid.scad.pl;h=3ea50a0c6bd68497e34fcee0b416c3ec2dc8c670;hp=68bd4cebf441b09ad4c66edc9e09746e9e7229eb;hb=98537f0b67e59e1e7f12def805f3b8ca382c4aaa;hpb=1350f3a0d3dddf9efa00029166cf060467585650 diff --git a/commitid.scad.pl b/commitid.scad.pl index 68bd4ce..3ea50a0 100755 --- a/commitid.scad.pl +++ b/commitid.scad.pl @@ -203,7 +203,7 @@ # Full4 Full6 ... Full20: # The commit object hash plus the commit count, on # separate lines, eg: -# Full6 abcdef Full8 abcdeffe +# Full12 abcdef Full16 abcdeffe # *23456 _*123456 # # Full6T Full9T ... Full30T @@ -428,26 +428,35 @@ our $do_git_untracked = 1; our $argcounter; our @forms; +our %included; # 0 = not at all; 1 = truncated; 2 = full -sub rjustt ($$;$) { # right justify and truncate (ie, pad and truncate at left) - # always includes prefix - my ($sz, $whole, $prefix) = @_; +sub rjustt ($$$;$) { + # right justify and truncate (ie, pad and truncate at left) + # always includes prefix + # sets $included{$what} + my ($sz, $what, $whole, $prefix) = @_; $prefix //= ''; my $lw = length $whole; my $spare = $sz - $lw - (length $prefix); + $included{$what}= 1 + ($spare > 0); return ($spare > 0 ? (' ' x $spare) : ''). $prefix. substr($whole, ($spare < 0 ? -$spare : 0)); } -sub ljustt ($$;$) { - my ($sz, $whole, $suffix) = @_; +sub ljustt ($$$;$) { + my ($sz, $what, $whole, $suffix) = @_; $suffix //= ''; $sz -= length $suffix; + $included{$what} = 1 + ($sz >= length $whole); return sprintf "%-${sz}.${sz}s%s", $whole, $suffix; } +sub genform_prep() { + $included{$_}=0 foreach qw(Objid Count); +} + sub genform ($@) { my ($form, @lines) = @_; gentextmodule($form, @lines); @@ -456,6 +465,7 @@ sub genform ($@) { Chars => (length join '', @lines), Lines => (scalar @lines), Ambiguous => ($form =~ m/Full/ && !grep { m/\W/ } @lines), + Included => { %included }, }; push @forms, $f; } @@ -537,29 +547,33 @@ sub do_git () { gentextmodule_demo_start_batch(); if (defined($git_count)) { - my $smallstr = rjustt($sz, $git_count, $git_dirty); + genform_prep(); + my $smallstr = rjustt($sz, 'Count', $git_count, $git_dirty); my $forgitobj = $sz - length($git_count) - 1; if (defined($git_object) && $forgitobj >= 2) { - $smallstr = ljustt($forgitobj, $git_object). + $smallstr = ljustt($forgitobj, 'Objid', $git_object). ($git_dirty || ' '). $git_count; } genform_plusq("Small$sz", $smallstr); } - genform_plusq("Git$sz", ljustt($sz, $git_object, $git_dirty)) + genform_prep(); + genform_plusq("Git$sz", ljustt($sz, 'Objid', $git_object, $git_dirty)) if defined $git_object; if (defined $git_count && defined $git_object) { + genform_prep(); genform("Full".($sz*2), - ljustt($sz, $git_object), - rjustt($sz, $git_count, $git_dirty)); + ljustt($sz, 'Objid', $git_object), + rjustt($sz, 'Count', $git_count, $git_dirty)); + genform_prep(); my $e = $sz; genform("Full".($e*3)."T", - ljustt($e*2, $git_object, $git_dirty) + ljustt($e*2, 'Objid', $git_object, $git_dirty) =~ m/.{$e}/g, - rjustt($e, $git_count)); + rjustt($e, 'Count', $git_count)); } } } @@ -576,6 +590,7 @@ sub do_some_best ($$) { my @do; foreach my $f ( sort { + $b->{Included}{$bestwhat} <=> $a->{Included}{$bestwhat} or $b->{Chars} <=> $a->{Chars} or $a->{Lines} <=> $b->{Chars} }