1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2007, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
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.
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.
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/>. */
19 #include "output/measure.h"
21 #include <gl/c-strtod.h>
29 #include "data/file-name.h"
30 #include "libpspp/str.h"
32 #include "gl/c-strcase.h"
36 #define _(msgid) gettext (msgid)
38 static double parse_unit (const char *);
39 static bool parse_paper_size (const char *, int *h, int *v);
40 static bool get_standard_paper_size (struct substring name, int *h, int *v);
41 static bool read_paper_conf (const char *file_name, int *h, int *v);
42 static bool get_default_paper_size (int *h, int *v);
44 /* Determines the size of a dimensional measurement and returns
45 the size in units of 1/72000". Units are assumed to be
46 millimeters unless otherwise specified. Returns -1 on
49 measure_dimension (const char *dimen)
55 raw = c_strtod (dimen, &tail);
60 factor = parse_unit (tail);
67 error (0, 0, _("`%s' is not a valid length."), dimen);
71 /* Stores the dimensions, in 1/72000" units, of paper identified
72 by SIZE into *H and *V. SIZE can be the name of a kind of
73 paper ("a4", "letter", ...) or a pair of dimensions
74 ("210x297", "8.5x11in", ...). Returns true on success, false
75 on failure. On failure, *H and *V are set for A4 paper. */
77 measure_paper (const char *size, int *h, int *v)
83 ss_trim (&s, ss_cstr (CC_SPACES));
87 /* Treat empty string as default paper size. */
88 ok = get_default_paper_size (h, v);
90 else if (isdigit (ss_first (s)))
92 /* Treat string that starts with digit as explicit size. */
93 ok = parse_paper_size (size, h, v);
95 error (0, 0, _("syntax error in paper size `%s'"), size);
99 /* Check against standard paper sizes. */
100 ok = get_standard_paper_size (s, h, v);
103 /* Default to A4 on error. */
106 *h = 210 * (72000 / 25.4);
107 *v = 297 * (72000 / 25.4);
112 /* Parses UNIT as a dimensional unit. Returns the multiplicative
113 factor needed to change a quantity measured in that unit into
114 1/72000" units. If UNIT is empty, it is treated as
115 millimeters. If the unit is unrecognized, returns 0. */
117 parse_unit (const char *unit)
125 static const struct unit units[] =
128 {"pc", 72000 / 72 * 12.0},
130 {"cm", 72000 / 2.54},
131 {"mm", 72000 / 25.4},
135 const struct unit *p;
137 unit += strspn (unit, CC_SPACES);
138 for (p = units; p < units + sizeof units / sizeof *units; p++)
139 if (!c_strcasecmp (unit, p->name))
144 /* Stores the dimensions in 1/72000" units of paper identified by
145 SIZE, which is of form `HORZ x VERT [UNIT]' where HORZ and
146 VERT are numbers and UNIT is an optional unit of measurement,
147 into *H and *V. Return true on success. */
149 parse_paper_size (const char *size, int *h, int *v)
151 double raw_h, raw_v, factor;
155 raw_h = c_strtod (size, &tail);
160 tail += strspn (tail, CC_SPACES "x,");
163 raw_v = c_strtod (tail, &tail);
168 factor = parse_unit (tail);
172 *h = raw_h * factor + .5;
173 *v = raw_v * factor + .5;
178 get_standard_paper_size (struct substring name, int *h, int *v)
180 static const char *sizes[][2] =
182 {"a0", "841 x 1189 mm"},
183 {"a1", "594 x 841 mm"},
184 {"a2", "420 x 594 mm"},
185 {"a3", "297 x 420 mm"},
186 {"a4", "210 x 297 mm"},
187 {"a5", "148 x 210 mm"},
188 {"b5", "176 x 250 mm"},
189 {"a6", "105 x 148 mm"},
190 {"a7", "74 x 105 mm"},
191 {"a8", "52 x 74 mm"},
192 {"a9", "37 x 52 mm"},
193 {"a10", "26 x 37 mm"},
194 {"b0", "1000 x 1414 mm"},
195 {"b1", "707 x 1000 mm"},
196 {"b2", "500 x 707 mm"},
197 {"b3", "353 x 500 mm"},
198 {"b4", "250 x 353 mm"},
199 {"letter", "612 x 792 pt"},
200 {"legal", "612 x 1008 pt"},
201 {"executive", "522 x 756 pt"},
202 {"note", "612 x 792 pt"},
203 {"11x17", "792 x 1224 pt"},
204 {"tabloid", "792 x 1224 pt"},
205 {"statement", "396 x 612 pt"},
206 {"halfletter", "396 x 612 pt"},
207 {"halfexecutive", "378 x 522 pt"},
208 {"folio", "612 x 936 pt"},
209 {"quarto", "610 x 780 pt"},
210 {"ledger", "1224 x 792 pt"},
211 {"archA", "648 x 864 pt"},
212 {"archB", "864 x 1296 pt"},
213 {"archC", "1296 x 1728 pt"},
214 {"archD", "1728 x 2592 pt"},
215 {"archE", "2592 x 3456 pt"},
216 {"flsa", "612 x 936 pt"},
217 {"flse", "612 x 936 pt"},
218 {"csheet", "1224 x 1584 pt"},
219 {"dsheet", "1584 x 2448 pt"},
220 {"esheet", "2448 x 3168 pt"},
225 for (i = 0; i < sizeof sizes / sizeof *sizes; i++)
226 if (ss_equals_case (ss_cstr (sizes[i][0]), name))
228 bool ok = parse_paper_size (sizes[i][1], h, v);
232 error (0, 0, _("unknown paper type `%.*s'"),
233 (int) ss_length (name), ss_data (name));
237 /* Reads file FILE_NAME to find a paper size. Stores the
238 dimensions, in 1/72000" units, into *H and *V. Returns true
239 on success, false on failure. */
241 read_paper_conf (const char *file_name, int *h, int *v)
243 struct string line = DS_EMPTY_INITIALIZER;
247 file = fopen (file_name, "r");
250 error (0, errno, _("error opening input file `%s'"), file_name);
256 struct substring name;
258 if (!ds_read_config_line (&line, &line_number, file))
261 error (0, errno, _("error reading file `%s'"), file_name);
265 name = ds_ss (&line);
266 ss_trim (&name, ss_cstr (CC_SPACES));
267 if (!ss_is_empty (name))
269 bool ok = get_standard_paper_size (name, h, v);
278 error (0, 0, _("paper size file `%s' does not state a paper size"),
283 /* The user didn't specify a paper size, so let's choose a
284 default based on his environment. Stores the
285 dimensions, in 1/72000" units, into *H and *V. Returns true
286 on success, false on failure. */
288 get_default_paper_size (int *h, int *v)
290 /* libpaper in Debian (and other distributions?) allows the
291 paper size to be specified in $PAPERSIZE or in a file
292 specified in $PAPERCONF. */
293 if (getenv ("PAPERSIZE") != NULL)
294 return get_standard_paper_size (ss_cstr (getenv ("PAPERSIZE")), h, v);
295 if (getenv ("PAPERCONF") != NULL)
296 return read_paper_conf (getenv ("PAPERCONF"), h, v);
299 /* LC_PAPER is a non-standard glibc extension. */
300 *h = (int) nl_langinfo(_NL_PAPER_WIDTH) * (72000 / 25.4);
301 *v = (int) nl_langinfo(_NL_PAPER_HEIGHT) * (72000 / 25.4);
302 if (*h > 0 && *v > 0)
306 /* libpaper defaults to /etc/papersize. */
307 if (fn_exists ("/etc/papersize"))
308 return read_paper_conf ("/etc/papersize", h, v);
310 /* Can't find a default. */