wraparray documentation fixes
[bse.git] / site / cgi-bin / modules / BSE / Util / Format.pm
CommitLineData
11af7272
TC
1package BSE::Util::Format;
2use strict;
3
f8424ae4
TC
4our $VERSION = "1.001";
5
6=head1 NAME
7
8BSE::Util::Format - formatting tools
9
10=head1 SYNOPSIS
11
12 # from perl
13 use BSE::Util::Format;
14 my $formatted = BSE::Util::Format::bse_numner($format, $value)
15
16 # from templates
17 <:number "money" [some value ] :>
18 <:= bse.number("money", value) :>
19
20=head1 FUNCTIONS
21
22=over
23
24=item bse_number(format, value, cfg)
25
26Format a number per rules defined in the config file.
27
28This uses configuration from section C<< [ number I<format>] >>, so
29formatting for format C<money> is defined by section
30C<<[number money]>>.
31
32Configuration parameters:
33
34=over
35
36=item *
37
38C<comma> - the string to use in adding comma separators to numbers.
39Default: C<,>.
40
41=item *
42
43C<comma_limit> - numbers smaller than this are not commified.
44Default: C<1000>.
45
46=item *
47
48C<commify> - set to 0 to disable commification. Default: 1.
49
50=item *
51
52C<decimal> - decimal point. Default: C<.>
53
54=item *
55
56C<divisor> - value to divide the value by before formatting.
57eg. C<100> to express a number in cents in dollars. Must be non-zero.
58Default: 1.
59
60=item *
61
62C<places> - the number of decimal places to force after the decimal
63point. If negative the natural number of places are used. Default: -1.
64
65=back
66
67=cut
11af7272
TC
68
69sub bse_number {
70 my ($format, $value, $cfg) = @_;
71
72 $cfg ||= BSE::Cfg->single;
73 my $section = "number $format";
74 my $comma_sep = $cfg->entry($section, "comma", ",");
75 $comma_sep =~ s/^"(.*)"$/$1/;
76 $comma_sep =~ /\w/ and return "* comma cannot be a word character *";
77 my $comma_limit = $cfg->entry($section, "comma_limit", 1000);
78 my $commify = $cfg->entry($section, "commify", 1);
79 my $dec_sep = $cfg->entry($section, "decimal", ".");
80 my $div = $cfg->entry($section, "divisor", 1)
81 or return "* divisor must be non-zero *";
82 my $places = $cfg->entry($section, "places", -1);
83
84 my $div_value = $value / $div;
85 my $formatted = $places < 0 ? $div_value : sprintf("%.*f", $places, $div_value);
86
87 my ($int, $frac) = split /\./, $formatted;
88 if ($commify && $int >= $comma_limit) {
89 1 while $int =~ s/([0-9])([0-9][0-9][0-9]\b)/$1$comma_sep$2/;
90 }
91
92 if (defined $frac) {
93 return $int . $dec_sep . $frac;
94 }
95 else {
96 return $int;
97 }
98}
99
1001;
f8424ae4
TC
101
102=back
103
104=head1 AUTHOR
105
106Tony Cook <tony@develop-help.com>
107
108=cut