format: New function fmt_from_u32().
[pspp] / src / data / format.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2010, 2011, 2012 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #ifndef DATA_FORMAT_H
18 #define DATA_FORMAT_H 1
19
20 /* Display format types. */
21
22 #include <stdbool.h>
23 #include <stdint.h>
24 #include "data/val-type.h"
25 #include "libpspp/str.h"
26
27 /* How a format is going to be used. */
28 enum fmt_use
29   {
30     FMT_FOR_INPUT,           /* For parsing data input, e.g. data_in(). */
31     FMT_FOR_OUTPUT           /* For formatting data output, e.g. data_out(). */
32   };
33
34 /* Format type categories.
35
36    Each format is in exactly one category.  We give categories
37    bitwise disjoint values only to enable bitwise comparisons
38    against a mask of FMT_CAT_* values, not to allow multiple
39    categories per format. */
40 enum fmt_category
41   {
42     /* Numeric formats. */
43     FMT_CAT_BASIC          = 0x001,     /* Basic numeric formats. */
44     FMT_CAT_CUSTOM         = 0x002,     /* Custom currency formats. */
45     FMT_CAT_LEGACY         = 0x004,     /* Legacy numeric formats. */
46     FMT_CAT_BINARY         = 0x008,     /* Binary formats. */
47     FMT_CAT_HEXADECIMAL    = 0x010,     /* Hexadecimal formats. */
48     FMT_CAT_DATE           = 0x020,     /* Date formats. */
49     FMT_CAT_TIME           = 0x040,     /* Time formats. */
50     FMT_CAT_DATE_COMPONENT = 0x080,     /* Date component formats. */
51
52     /* String formats. */
53     FMT_CAT_STRING         = 0x100      /* String formats. */
54   };
55
56 /* Format type. */
57 enum fmt_type
58   {
59 #define FMT(NAME, METHOD, IMIN, OMIN, IO, CATEGORY) FMT_##NAME,
60 #include "format.def"
61     FMT_NUMBER_OF_FORMATS,
62   };
63
64 /* Length of longest format specifier name,
65    not including terminating null. */
66 #define FMT_TYPE_LEN_MAX 8
67
68 /* Length of longest string representation of fmt_spec,
69    not including terminating null. */
70 #define FMT_STRING_LEN_MAX 32
71
72 /* Display format. */
73 struct fmt_spec
74   {
75     enum fmt_type type;         /* One of FMT_*. */
76     int w;                      /* Width. */
77     int d;                      /* Number of decimal places. */
78   };
79
80 /* Maximum width of any numeric format. */
81 #define FMT_MAX_NUMERIC_WIDTH 40
82
83 /* Constructing formats. */
84 struct fmt_spec fmt_for_input (enum fmt_type, int w, int d) PURE_FUNCTION;
85 struct fmt_spec fmt_for_output (enum fmt_type, int w, int d) PURE_FUNCTION;
86 struct fmt_spec fmt_for_output_from_input (const struct fmt_spec *);
87 struct fmt_spec fmt_default_for_width (int width);
88
89 /* Verifying formats. */
90 bool fmt_check (const struct fmt_spec *, enum fmt_use);
91 bool fmt_check_input (const struct fmt_spec *);
92 bool fmt_check_output (const struct fmt_spec *);
93 bool fmt_check_type_compat (const struct fmt_spec *, enum val_type);
94 bool fmt_check_width_compat (const struct fmt_spec *, int var_width);
95
96 /* Working with formats. */
97 int fmt_var_width (const struct fmt_spec *);
98 char *fmt_to_string (const struct fmt_spec *, char s[FMT_STRING_LEN_MAX + 1]);
99 bool fmt_equal (const struct fmt_spec *, const struct fmt_spec *);
100 bool fmt_resize (struct fmt_spec *, int new_width);
101
102 void fmt_fix (struct fmt_spec *, enum fmt_use);
103 void fmt_fix_input (struct fmt_spec *);
104 void fmt_fix_output (struct fmt_spec *);
105
106 void fmt_change_width (struct fmt_spec *, int width, enum fmt_use);
107 void fmt_change_decimals (struct fmt_spec *, int decimals, enum fmt_use);
108
109 /* Format types. */
110 bool is_fmt_type (enum fmt_type);
111
112 const char *fmt_name (enum fmt_type) PURE_FUNCTION;
113 bool fmt_from_name (const char *name, enum fmt_type *);
114
115 bool fmt_takes_decimals (enum fmt_type) PURE_FUNCTION;
116
117 int fmt_min_width (enum fmt_type, enum fmt_use) PURE_FUNCTION;
118 int fmt_max_width (enum fmt_type, enum fmt_use) PURE_FUNCTION;
119 int fmt_max_decimals (enum fmt_type, int width, enum fmt_use) PURE_FUNCTION;
120 int fmt_min_input_width (enum fmt_type) PURE_FUNCTION;
121 int fmt_max_input_width (enum fmt_type) PURE_FUNCTION;
122 int fmt_max_input_decimals (enum fmt_type, int width) PURE_FUNCTION;
123 int fmt_min_output_width (enum fmt_type) PURE_FUNCTION;
124 int fmt_max_output_width (enum fmt_type) PURE_FUNCTION;
125 int fmt_max_output_decimals (enum fmt_type, int width) PURE_FUNCTION;
126 int fmt_step_width (enum fmt_type) PURE_FUNCTION;
127
128 bool fmt_is_string (enum fmt_type) PURE_FUNCTION;
129 bool fmt_is_numeric (enum fmt_type) PURE_FUNCTION;
130 enum fmt_category fmt_get_category (enum fmt_type) PURE_FUNCTION;
131
132 enum fmt_type fmt_input_to_output (enum fmt_type) PURE_FUNCTION;
133 bool fmt_usable_for_input (enum fmt_type) PURE_FUNCTION;
134
135 int fmt_to_io (enum fmt_type) PURE_FUNCTION;
136 bool fmt_from_io (int io, enum fmt_type *);
137 bool fmt_from_u32 (uint32_t, int var_width, bool loose, struct fmt_spec *);
138
139 const char *fmt_date_template (enum fmt_type, int width) PURE_FUNCTION;
140 const char *fmt_gui_name (enum fmt_type);
141 \f
142 /* Format settings.
143
144    A fmt_settings is really just a collection of one "struct fmt_number_style"
145    for each format type. */
146 struct fmt_settings *fmt_settings_create (void);
147 void fmt_settings_destroy (struct fmt_settings *);
148 struct fmt_settings *fmt_settings_clone (const struct fmt_settings *);
149
150 void fmt_settings_set_decimal (struct fmt_settings *, char);
151
152 const struct fmt_number_style *fmt_settings_get_style (
153   const struct fmt_settings *, enum fmt_type);
154 void fmt_settings_set_style (struct fmt_settings *, enum fmt_type,
155                              char decimal, char grouping,
156                              const char *neg_prefix, const char *prefix,
157                              const char *suffix, const char *neg_suffix);
158 \f
159 /* A prefix or suffix for a numeric output format. */
160 struct fmt_affix
161   {
162     char *s;                    /* String contents of affix, in UTF-8. */
163     int width;                  /* Display width in columns (see wcwidth()). */
164   };
165
166 /* A numeric output style. */
167 struct fmt_number_style
168   {
169     struct fmt_affix neg_prefix; /* Negative prefix. */
170     struct fmt_affix prefix;     /* Prefix. */
171     struct fmt_affix suffix;     /* Suffix. */
172     struct fmt_affix neg_suffix; /* Negative suffix. */
173     char decimal;                /* Decimal point: '.' or ','. */
174     char grouping;               /* Grouping character: ',', '.', or 0. */
175
176     /* A fmt_affix may require more bytes than its display width; for example,
177        U+00A5 (¥) is 3 bytes in UTF-8 but occupies only one display column.
178        This member is the sum of the number of bytes required by all of the
179        fmt_affix members in this struct, minus their display widths.  Thus, it
180        can be used to size memory allocations: for example, the formatted
181        result of CCA20.5 requires no more than (20 + extra_bytes) bytes in
182        UTF-8. */
183     int extra_bytes;
184   };
185
186 int fmt_affix_width (const struct fmt_number_style *);
187 int fmt_neg_affix_width (const struct fmt_number_style *);
188
189 extern const struct fmt_spec F_8_0 ;
190 extern const struct fmt_spec F_8_2 ;
191 extern const struct fmt_spec F_4_3 ;
192 extern const struct fmt_spec F_5_1 ;
193
194 #endif /* data/format.h */