Applying patch #5562
[pspp-builds.git] / src / language / utilities / set.q
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <errno.h>
24 #include <stdlib.h>
25 #include <time.h>
26
27 #include <data/data-in.h>
28 #include <data/data-out.h>
29 #include <data/dictionary.h>
30 #include <data/format.h>
31 #include <data/procedure.h>
32 #include <data/settings.h>
33 #include <data/variable.h>
34 #include <language/command.h>
35 #include <language/lexer/format-parser.h>
36 #include <language/lexer/lexer.h>
37 #include <language/prompt.h>
38 #include <libpspp/alloc.h>
39 #include <libpspp/compiler.h>
40 #include <libpspp/copyleft.h>
41 #include <libpspp/float-format.h>
42 #include <libpspp/integer-format.h>
43 #include <libpspp/magic.h>
44 #include <libpspp/message.h>
45 #include <math/random.h>
46 #include <output/output.h>
47
48 #if HAVE_LIBTERMCAP
49 #if HAVE_TERMCAP_H
50 #include <termcap.h>
51 #else /* !HAVE_TERMCAP_H */
52 int tgetent (char *, const char *);
53 int tgetnum (const char *);
54 #endif /* !HAVE_TERMCAP_H */
55 #endif /* !HAVE_LIBTERMCAP */
56
57 #include "gettext.h"
58 #define _(msgid) gettext (msgid)
59
60 /* (specification)
61    "SET" (stc_):
62      blanks=custom;
63      block=string "x==1" "one character long";
64      boxstring=string "x==3 || x==11" "3 or 11 characters long";
65      case=size:upper/uplow;
66      cca=string;
67      ccb=string;
68      ccc=string;
69      ccd=string;
70      cce=string;
71      compression=compress:on/off;
72      cpi=integer "x>0" "%s must be greater than 0";
73      cprompt=string;
74      decimal=dec:dot/comma;
75      disk=custom;
76      dprompt=string;
77      echo=echo:on/off;
78      endcmd=string "x==1" "one character long";
79      epoch=custom;
80      errorbreak=errbrk:on/off;
81      errors=errors:terminal/listing/both/on/none/off;
82      format=custom;
83      headers=headers:no/yes/blank;
84      highres=hires:on/off;
85      histogram=string "x==1" "one character long";
86      include=inc:on/off;
87      journal=custom;
88      length=custom;
89      listing=custom;
90      lowres=lores:auto/on/off;
91      lpi=integer "x>0" "%s must be greater than 0";
92      menus=menus:standard/extended;
93      messages=messages:on/off/terminal/listing/both/on/none/off;
94      mexpand=mexp:on/off;
95      miterate=integer "x>0" "%s must be greater than 0";
96      mnest=integer "x>0" "%s must be greater than 0";
97      mprint=mprint:on/off;
98      mxerrs=integer "x >= 1" "%s must be at least 1";
99      mxloops=integer "x >=1" "%s must be at least 1";
100      mxmemory=integer;
101      mxwarns=integer;
102      nulline=null:on/off;
103      printback=prtbck:on/off;
104      prompt=string;
105      results=res:on/off/terminal/listing/both/on/none/off;
106      rib=rib:msbfirst/lsbfirst/vax/native;
107      rrb=rrb:native/isl/isb/idl/idb/vf/vd/vg/zs/zl;
108      safer=safe:on;
109      scompression=scompress:on/off;
110      scripttab=string "x==1" "one character long";
111      seed=custom;
112      tb1=string "x==3 || x==11" "3 or 11 characters long";
113      tbfonts=string;
114      undefined=undef:warn/nowarn;
115      wib=wib:msbfirst/lsbfirst/vax/native;
116      wrb=wrb:native/isl/isb/idl/idb/vf/vd/vg/zs/zl;
117      width=custom;
118      workspace=integer "x>=1024" "%s must be at least 1 MB";
119      xsort=xsort:yes/no.
120 */
121
122 /* (headers) */
123
124 /* (declarations) */
125
126 /* (functions) */
127
128 static bool do_cc (const char *cc_string, enum fmt_type);
129 static enum integer_format stc_to_integer_format (int stc);
130 static enum float_format stc_to_float_format (int stc);
131
132 int
133 cmd_set (struct lexer *lexer, struct dataset *ds)
134 {
135   struct cmd_set cmd;
136
137   if (!parse_set (lexer, ds, &cmd, NULL))
138     {
139       free_set (&cmd);
140       return CMD_FAILURE;
141     }
142
143   if (cmd.sbc_cca)
144     do_cc (cmd.s_cca, FMT_CCA);
145   if (cmd.sbc_ccb)
146     do_cc (cmd.s_ccb, FMT_CCB);
147   if (cmd.sbc_ccc)
148     do_cc (cmd.s_ccc, FMT_CCC);
149   if (cmd.sbc_ccd)
150     do_cc (cmd.s_ccd, FMT_CCD);
151   if (cmd.sbc_cce)
152     do_cc (cmd.s_cce, FMT_CCE);
153
154   if (cmd.sbc_prompt)
155     prompt_set (PROMPT_FIRST, cmd.s_prompt);
156   if (cmd.sbc_cprompt)
157     prompt_set (PROMPT_LATER, cmd.s_cprompt);
158   if (cmd.sbc_dprompt)
159     prompt_set (PROMPT_DATA, cmd.s_dprompt);
160
161   if (cmd.sbc_decimal)
162     fmt_set_decimal (cmd.dec == STC_DOT ? '.' : ',');
163   if (cmd.sbc_echo)
164     set_echo (cmd.echo == STC_ON);
165   if (cmd.sbc_endcmd)
166     set_endcmd (cmd.s_endcmd[0]);
167   if (cmd.sbc_errorbreak)
168     set_errorbreak (cmd.errbrk == STC_ON);
169   if (cmd.sbc_errors)
170     {
171       bool both = cmd.errors == STC_BOTH || cmd.errors == STC_ON;
172       set_error_routing_to_terminal (cmd.errors == STC_TERMINAL || both);
173       set_error_routing_to_listing (cmd.errors == STC_LISTING || both);
174     }
175   if (cmd.sbc_include)
176     set_include (cmd.inc == STC_ON);
177   if (cmd.sbc_mxerrs)
178     set_mxerrs (cmd.n_mxerrs[0]);
179   if (cmd.sbc_mxwarns)
180     set_mxwarns (cmd.n_mxwarns[0]);
181   if (cmd.sbc_nulline)
182     set_nulline (cmd.null == STC_ON);
183   if (cmd.sbc_rib)
184     data_in_set_integer_format (stc_to_integer_format (cmd.rib));
185   if (cmd.sbc_rrb)
186     data_in_set_float_format (stc_to_float_format (cmd.rrb));
187   if (cmd.sbc_safer)
188     set_safer_mode ();
189   if (cmd.sbc_scompression)
190     set_scompression (cmd.scompress == STC_ON);
191   if (cmd.sbc_undefined)
192     set_undefined (cmd.undef == STC_WARN);
193   if (cmd.sbc_wib)
194     data_out_set_integer_format (stc_to_integer_format (cmd.wib));
195   if (cmd.sbc_wrb)
196     data_out_set_float_format (stc_to_float_format (cmd.wrb));
197   if (cmd.sbc_workspace)
198     set_workspace (cmd.n_workspace[0] * 1024L);
199
200   if (cmd.sbc_block)
201     msg (SW, _("%s is obsolete."), "BLOCK");
202   if (cmd.sbc_boxstring)
203     msg (SW, _("%s is obsolete."), "BOXSTRING");
204   if (cmd.sbc_histogram)
205     msg (SW, _("%s is obsolete."), "HISTOGRAM");
206   if (cmd.sbc_menus)
207     msg (SW, _("%s is obsolete."), "MENUS");
208   if (cmd.sbc_xsort)
209     msg (SW, _("%s is obsolete."), "XSORT");
210   if (cmd.sbc_mxmemory)
211     msg (SE, _("%s is obsolete."), "MXMEMORY");
212   if (cmd.sbc_scripttab)
213     msg (SE, _("%s is obsolete."), "SCRIPTTAB");
214   if (cmd.sbc_tbfonts)
215     msg (SW, _("%s is obsolete."), "TBFONTS");
216   if (cmd.sbc_tb1 && cmd.s_tb1)
217     msg (SW, _("%s is obsolete."), "TB1");
218
219   if (cmd.sbc_case)
220     msg (SW, _("%s is not implemented."), "CASE");
221
222   if (cmd.sbc_compression)
223     msg (SW, _("Active file compression is not implemented."));
224
225   free_set (&cmd);
226
227   return CMD_SUCCESS;
228 }
229
230 /* Returns the integer_format value corresponding to STC,
231    which should be the value of cmd.rib or cmd.wib. */
232 static enum integer_format
233 stc_to_integer_format (int stc) 
234 {
235   return (stc == STC_MSBFIRST ? INTEGER_MSB_FIRST
236           : stc == STC_LSBFIRST ? INTEGER_LSB_FIRST
237           : stc == STC_VAX ? INTEGER_VAX
238           : INTEGER_NATIVE);
239 }
240
241 /* Returns the float_format value corresponding to STC,
242    which should be the value of cmd.rrb or cmd.wrb. */
243 static enum float_format
244 stc_to_float_format (int stc) 
245 {
246   switch (stc) 
247     {
248     case STC_NATIVE:
249       return FLOAT_NATIVE_DOUBLE;
250
251     case STC_ISL:
252       return FLOAT_IEEE_SINGLE_LE;
253     case STC_ISB:
254       return FLOAT_IEEE_SINGLE_BE;
255     case STC_IDL:
256       return FLOAT_IEEE_DOUBLE_LE;
257     case STC_IDB:
258       return FLOAT_IEEE_DOUBLE_BE;
259
260     case STC_VF:
261       return FLOAT_VAX_F;
262     case STC_VD:
263       return FLOAT_VAX_D;
264     case STC_VG:
265       return FLOAT_VAX_G;
266
267     case STC_ZS:
268       return FLOAT_Z_SHORT;
269     case STC_ZL:
270       return FLOAT_Z_LONG;
271     }
272
273   NOT_REACHED ();
274 }
275
276 /* Find the grouping characters in CC_STRING and set CC's
277    grouping and decimal members appropriately.  Returns true if
278    successful, false otherwise. */
279 static bool
280 find_cc_separators (const char *cc_string, struct fmt_number_style *cc)
281 {
282   const char *sp;
283   int comma_cnt, dot_cnt;
284   
285   /* Count commas and periods.  There must be exactly three of
286      one or the other, except that an apostrophe escapes a
287      following comma or period. */
288   comma_cnt = dot_cnt = 0;
289   for (sp = cc_string; *sp; sp++)
290     if (*sp == ',')
291       comma_cnt++;
292     else if (*sp == '.')
293       dot_cnt++;
294     else if (*sp == '\'' && (sp[1] == '.' || sp[1] == ',' || sp[1] == '\''))
295       sp++;
296   
297   if ((comma_cnt == 3) == (dot_cnt == 3))
298     return false;
299
300   if (comma_cnt == 3)
301     {
302       cc->decimal = '.';
303       cc->grouping = ',';
304     }
305   else
306     {
307       cc->decimal = ',';
308       cc->grouping = '.';
309     }
310   return true;
311 }
312
313 /* Extracts a token from IN into a newly allocated AFFIX.  Tokens
314    are delimited by GROUPING.  The token is truncated to at most
315    FMT_STYLE_AFFIX_MAX characters.  Returns the first character
316    following the token. */
317 static const char *
318 extract_cc_token (const char *in, int grouping, struct substring *affix) 
319 {
320   size_t ofs = 0;
321   ss_alloc_uninit (affix, FMT_STYLE_AFFIX_MAX);
322   for (; *in != '\0' && *in != grouping; in++) 
323     {
324       if (*in == '\'' && in[1] == grouping)
325         in++;
326       if (ofs < FMT_STYLE_AFFIX_MAX) 
327         ss_data (*affix)[ofs++] = *in;
328     }
329   affix->length = ofs;
330
331   if (*in == grouping)
332     in++;
333   return in;
334 }
335
336 /* Sets custom currency specifier CC having name CC_NAME ('A' through
337    'E') to correspond to the settings in CC_STRING. */
338 static bool
339 do_cc (const char *cc_string, enum fmt_type type)
340 {
341   struct fmt_number_style *cc = fmt_number_style_create ();
342   
343   /* Determine separators. */
344   if (!find_cc_separators (cc_string, cc)) 
345     {
346       fmt_number_style_destroy (cc);
347       msg (SE, _("%s: Custom currency string `%s' does not contain "
348                  "exactly three periods or commas (or it contains both)."),
349            fmt_name (type), cc_string);
350       return false;
351     }
352   
353   cc_string = extract_cc_token (cc_string, cc->grouping, &cc->neg_prefix);
354   cc_string = extract_cc_token (cc_string, cc->grouping, &cc->prefix);
355   cc_string = extract_cc_token (cc_string, cc->grouping, &cc->suffix);
356   cc_string = extract_cc_token (cc_string, cc->grouping, &cc->neg_suffix);
357
358   fmt_set_style (type, cc);
359   
360   return true;
361 }
362
363 /* Parses the BLANKS subcommand, which controls the value that
364    completely blank fields in numeric data imply.  X, Wnd: Syntax is
365    SYSMIS or a numeric value. */
366 static int
367 stc_custom_blanks (struct lexer *lexer, 
368                    struct dataset *ds UNUSED, 
369                    struct cmd_set *cmd UNUSED, void *aux UNUSED)
370 {
371   lex_match (lexer, '=');
372   if ((lex_token (lexer) == T_ID && lex_id_match ("SYSMIS", lex_tokid (lexer))))
373     {
374       lex_get (lexer);
375       set_blanks (SYSMIS);
376     }
377   else
378     {
379       if (!lex_force_num (lexer))
380         return 0;
381       set_blanks (lex_number (lexer));
382       lex_get (lexer);
383     }
384   return 1;
385 }
386
387 /* Parses the EPOCH subcommand, which controls the epoch used for
388    parsing 2-digit years. */
389 static int
390 stc_custom_epoch (struct lexer *lexer, 
391                   struct dataset *ds UNUSED, 
392                   struct cmd_set *cmd UNUSED, void *aux UNUSED) 
393 {
394   lex_match (lexer, '=');
395   if (lex_match_id (lexer, "AUTOMATIC"))
396     set_epoch (-1);
397   else if (lex_is_integer (lexer)) 
398     {
399       int new_epoch = lex_integer (lexer);
400       lex_get (lexer);
401       if (new_epoch < 1500) 
402         {
403           msg (SE, _("EPOCH must be 1500 or later."));
404           return 0;
405         }
406       set_epoch (new_epoch);
407     }
408   else 
409     {
410       lex_error (lexer, _("expecting AUTOMATIC or year"));
411       return 0;
412     }
413
414   return 1;
415 }
416
417 static int
418 stc_custom_length (struct lexer *lexer, struct dataset *ds UNUSED, struct cmd_set *cmd UNUSED, void *aux UNUSED)
419 {
420   int page_length;
421
422   lex_match (lexer, '=');
423   if (lex_match_id (lexer, "NONE"))
424     page_length = -1;
425   else
426     {
427       if (!lex_force_int (lexer))
428         return 0;
429       if (lex_integer (lexer) < 1)
430         {
431           msg (SE, _("LENGTH must be at least 1."));
432           return 0;
433         }
434       page_length = lex_integer (lexer);
435       lex_get (lexer);
436     }
437
438   if (page_length != -1) 
439     set_viewlength (page_length);
440
441   return 1;
442 }
443
444 static int
445 stc_custom_seed (struct lexer *lexer, struct dataset *ds UNUSED, struct cmd_set *cmd UNUSED, void *aux UNUSED)
446 {
447   lex_match (lexer, '=');
448   if (lex_match_id (lexer, "RANDOM"))
449     set_rng (time (0));
450   else
451     {
452       if (!lex_force_num (lexer))
453         return 0;
454       set_rng (lex_number (lexer));
455       lex_get (lexer);
456     }
457
458   return 1;
459 }
460
461 static int
462 stc_custom_width (struct lexer *lexer, struct dataset *ds UNUSED, struct cmd_set *cmd UNUSED, void *aux UNUSED)
463 {
464   lex_match (lexer, '=');
465   if (lex_match_id (lexer, "NARROW"))
466     set_viewwidth (79);
467   else if (lex_match_id (lexer, "WIDE"))
468     set_viewwidth (131);
469   else
470     {
471       if (!lex_force_int (lexer))
472         return 0;
473       if (lex_integer (lexer) < 40)
474         {
475           msg (SE, _("WIDTH must be at least 40."));
476           return 0;
477         }
478       set_viewwidth (lex_integer (lexer));
479       lex_get (lexer);
480     }
481
482   return 1;
483 }
484
485 /* Parses FORMAT subcommand, which consists of a numeric format
486    specifier. */
487 static int
488 stc_custom_format (struct lexer *lexer, struct dataset *ds UNUSED, struct cmd_set *cmd UNUSED, void *aux UNUSED)
489 {
490   struct fmt_spec fmt;
491
492   lex_match (lexer, '=');
493   if (!parse_format_specifier (lexer, &fmt))
494     return 0;
495   if (fmt_is_string (fmt.type))
496     {
497       char str[FMT_STRING_LEN_MAX + 1];
498       msg (SE, _("FORMAT requires numeric output format as an argument.  "
499                  "Specified format %s is of type string."),
500            fmt_to_string (&fmt, str));
501       return 0;
502     }
503
504   set_format (&fmt);
505   return 1;
506 }
507
508 static int
509 stc_custom_journal (struct lexer *lexer, struct dataset *ds UNUSED, struct cmd_set *cmd UNUSED, void *aux UNUSED)
510 {
511   lex_match (lexer, '=');
512   if (!lex_match_id (lexer, "ON") && !lex_match_id (lexer, "OFF")) 
513     {
514       if (lex_token (lexer) == T_STRING)
515         lex_get (lexer);
516       else
517         {
518           lex_error (lexer, NULL);
519           return 0;
520         }
521     }
522   return 1;
523 }
524
525 static int
526 stc_custom_listing (struct lexer *lexer, struct dataset *ds UNUSED, struct cmd_set *cmd UNUSED, void *aux UNUSED)
527 {
528   bool listing;
529
530   lex_match (lexer, '=');
531   if (lex_match_id (lexer, "ON") || lex_match_id (lexer, "YES"))
532     listing = true;
533   else if (lex_match_id (lexer, "OFF") || lex_match_id (lexer, "NO"))
534     listing = false;
535   else
536     {
537       /* FIXME */
538       return 0;
539     }
540   outp_enable_device (listing, OUTP_DEV_LISTING);
541
542   return 1;
543 }
544
545 static int
546 stc_custom_disk (struct lexer *lexer, struct dataset *ds, struct cmd_set *cmd UNUSED, void *aux)
547 {
548   return stc_custom_listing (lexer, ds, cmd, aux);
549 }
550 \f
551 static void
552 show_blanks (const struct dataset *ds UNUSED) 
553 {
554   if (get_blanks () == SYSMIS)
555     msg (SN, _("BLANKS is SYSMIS."));
556   else
557     msg (SN, _("BLANKS is %g."), get_blanks ());
558
559 }
560
561 static char *
562 format_cc (struct substring in, char grouping, char *out) 
563 {
564   while (!ss_is_empty (in)) 
565     {
566       char c = ss_get_char (&in);
567       if (c == grouping || c == '\'')
568         *out++ = '\'';
569       else if (c == '"')
570         *out++ = '"';
571       *out++ = c;
572     }
573   return out;
574 }
575
576 static void
577 show_cc (enum fmt_type type) 
578 {
579   const struct fmt_number_style *cc = fmt_get_style (type);
580   char cc_string[FMT_STYLE_AFFIX_MAX * 4 * 2 + 3 + 1];
581   char *out;
582
583   out = format_cc (cc->neg_prefix, cc->grouping, cc_string);
584   *out++ = cc->grouping;
585   out = format_cc (cc->prefix, cc->grouping, out);
586   *out++ = cc->grouping;
587   out = format_cc (cc->suffix, cc->grouping, out);
588   *out++ = cc->grouping;
589   out = format_cc (cc->neg_suffix, cc->grouping, out);
590   *out = '\0';
591   
592   msg (SN, _("%s is \"%s\"."), fmt_name (type), cc_string);
593 }
594
595 static void
596 show_cca (const struct dataset *ds UNUSED) 
597 {
598   show_cc (FMT_CCA);
599 }
600
601 static void
602 show_ccb (const struct dataset *ds UNUSED) 
603 {
604   show_cc (FMT_CCB);
605 }
606
607 static void
608 show_ccc (const struct dataset *ds UNUSED) 
609 {
610   show_cc (FMT_CCC);
611 }
612
613 static void
614 show_ccd (const struct dataset *ds UNUSED) 
615 {
616   show_cc (FMT_CCD);
617 }
618
619 static void
620 show_cce (const struct dataset *ds UNUSED) 
621 {
622   show_cc (FMT_CCE);
623 }
624
625 static void
626 show_decimals (const struct dataset *ds UNUSED) 
627 {
628   msg (SN, _("DECIMAL is \"%c\"."), fmt_decimal_char (FMT_F));
629 }
630
631 static void
632 show_endcmd (const struct dataset *ds UNUSED) 
633 {
634   msg (SN, _("ENDCMD is \"%c\"."), get_endcmd ());
635 }
636
637 static void
638 show_errors (const struct dataset *ds UNUSED) 
639 {
640   bool terminal = get_error_routing_to_terminal ();
641   bool listing = get_error_routing_to_listing ();
642   msg (SN, _("ERRORS is \"%s\"."),
643        terminal && listing ? "BOTH"
644        : terminal ? "TERMINAL"
645        : listing ? "LISTING"
646        : "NONE");
647 }
648
649 static void
650 show_format (const struct dataset *ds UNUSED) 
651 {
652   char str[FMT_STRING_LEN_MAX + 1];
653   msg (SN, _("FORMAT is %s."), fmt_to_string (get_format (), str));
654 }
655
656 static void
657 show_length (const struct dataset *ds UNUSED) 
658 {
659   msg (SN, _("LENGTH is %d."), get_viewlength ());
660 }
661
662 static void
663 show_mxerrs (const struct dataset *ds UNUSED) 
664 {
665   msg (SN, _("MXERRS is %d."), get_mxerrs ());
666 }
667
668 static void
669 show_mxloops (const struct dataset *ds UNUSED) 
670 {
671   msg (SN, _("MXLOOPS is %d."), get_mxloops ());
672 }
673
674 static void
675 show_mxwarns (const struct dataset *ds UNUSED) 
676 {
677   msg (SN, _("MXWARNS is %d."), get_mxwarns ());
678 }
679
680 /* Outputs that SETTING has the given INTEGER_FORMAT value. */
681 static void
682 show_integer_format (const char *setting, enum integer_format integer_format) 
683 {
684   msg (SN, _("%s is %s (%s)."),
685        setting,
686        (integer_format == INTEGER_MSB_FIRST ? "MSBFIRST"
687         : integer_format == INTEGER_LSB_FIRST ? "LSBFIRST"
688         : "VAX"),
689        integer_format == INTEGER_NATIVE ? "NATIVE" : "nonnative");
690 }
691
692 /* Outputs that SETTING has the given FLOAT_FORMAT value. */
693 static void
694 show_float_format (const char *setting, enum float_format float_format) 
695 {
696   const char *format_name = "";
697   
698   switch (float_format)
699     {
700     case FLOAT_IEEE_SINGLE_LE:
701       format_name = "ISL (32-bit IEEE 754 single, little-endian)";
702       break;
703     case FLOAT_IEEE_SINGLE_BE:
704       format_name = "ISB (32-bit IEEE 754 single, big-endian)";
705       break;
706     case FLOAT_IEEE_DOUBLE_LE:
707       format_name = "IDL (64-bit IEEE 754 double, little-endian)";
708       break;
709     case FLOAT_IEEE_DOUBLE_BE:
710       format_name = "IDB (64-bit IEEE 754 double, big-endian)";
711       break;
712
713     case FLOAT_VAX_F:
714       format_name = "VF (32-bit VAX F, VAX-endian)";
715       break;
716     case FLOAT_VAX_D:
717       format_name = "VD (64-bit VAX D, VAX-endian)";
718       break;
719     case FLOAT_VAX_G:
720       format_name = "VG (64-bit VAX G, VAX-endian)";
721       break;
722
723     case FLOAT_Z_SHORT:
724       format_name = "ZS (32-bit IBM Z hexadecimal short, big-endian)";
725       break;
726     case FLOAT_Z_LONG:
727       format_name = "ZL (64-bit IBM Z hexadecimal long, big-endian)";
728       break;
729
730     case FLOAT_FP:
731     case FLOAT_HEX:
732       NOT_REACHED ();
733     }
734
735   msg (SN, _("%s is %s (%s)."),
736        setting, format_name,
737        float_format == FLOAT_NATIVE_DOUBLE ? "NATIVE" : "nonnative");
738 }
739
740 static void
741 show_rib (const struct dataset *ds UNUSED) 
742 {
743   show_integer_format ("RIB", data_in_get_integer_format ());
744 }
745
746 static void
747 show_rrb (const struct dataset *ds UNUSED) 
748 {
749   show_float_format ("RRB", data_in_get_float_format ());
750 }
751
752 static void
753 show_scompression (const struct dataset *ds UNUSED) 
754 {
755   if (get_scompression ())
756     msg (SN, _("SCOMPRESSION is ON."));
757   else
758     msg (SN, _("SCOMPRESSION is OFF."));
759 }
760
761 static void
762 show_undefined (const struct dataset *ds UNUSED) 
763 {
764   if (get_undefined ())
765     msg (SN, _("UNDEFINED is WARN."));
766   else
767     msg (SN, _("UNDEFINED is NOWARN."));
768 }
769
770 static void
771 show_weight (const struct dataset *ds) 
772 {
773   struct variable *var = dict_get_weight (dataset_dict (ds));
774   if (var == NULL)
775     msg (SN, _("WEIGHT is off."));
776   else
777     msg (SN, _("WEIGHT is variable %s."), var->name);
778 }
779
780 static void
781 show_wib (const struct dataset *ds UNUSED) 
782 {
783   show_integer_format ("WIB", data_out_get_integer_format ());
784 }
785
786 static void
787 show_wrb (const struct dataset *ds UNUSED) 
788 {
789   show_float_format ("WRB", data_out_get_float_format ());
790 }
791
792 static void
793 show_width (const struct dataset *ds UNUSED) 
794 {
795   msg (SN, _("WIDTH is %d."), get_viewwidth ());
796 }
797
798 struct show_sbc 
799   {
800     const char *name;
801     void (*function) (const struct dataset *);
802   };
803
804 const struct show_sbc show_table[] = 
805   {
806     {"BLANKS", show_blanks},
807     {"CCA", show_cca},
808     {"CCB", show_ccb},
809     {"CCC", show_ccc},
810     {"CCD", show_ccd},
811     {"CCE", show_cce},
812     {"DECIMALS", show_decimals},
813     {"ENDCMD", show_endcmd},
814     {"ERRORS", show_errors},      
815     {"FORMAT", show_format},
816     {"LENGTH", show_length},
817     {"MXERRS", show_mxerrs},
818     {"MXLOOPS", show_mxloops},
819     {"MXWARNS", show_mxwarns},
820     {"RIB", show_rib},
821     {"RRB", show_rrb},
822     {"SCOMPRESSION", show_scompression},
823     {"UNDEFINED", show_undefined},
824     {"WEIGHT", show_weight},
825     {"WIB", show_wib},
826     {"WRB", show_wrb},
827     {"WIDTH", show_width},
828   };
829
830 static void
831 show_all (const struct dataset *ds) 
832 {
833   size_t i;
834   
835   for (i = 0; i < sizeof show_table / sizeof *show_table; i++)
836     show_table[i].function (ds);
837 }
838
839 static void
840 show_all_cc (void) 
841 {
842   int i;
843
844   for (i = 0; i < 5; i++)
845     show_cc (i);
846 }
847
848 static void
849 show_warranty (const struct dataset *ds UNUSED) 
850 {
851   msg (MN, lack_of_warranty);
852 }
853
854 static void
855 show_copying (const struct dataset *ds UNUSED) 
856 {
857   msg (MN, copyleft);
858 }
859
860 int
861 cmd_show (struct lexer *lexer, struct dataset *ds) 
862 {
863   if (lex_token (lexer) == '.') 
864     {
865       show_all (ds);
866       return CMD_SUCCESS;
867     }
868
869   do 
870     {
871       if (lex_match (lexer, T_ALL))
872         show_all (ds);
873       else if (lex_match_id (lexer, "CC")) 
874         show_all_cc ();
875       else if (lex_match_id (lexer, "WARRANTY"))
876         show_warranty (ds);
877       else if (lex_match_id (lexer, "COPYING"))
878         show_copying (ds);
879       else if (lex_token (lexer) == T_ID)
880         {
881           int i;
882
883           for (i = 0; i < sizeof show_table / sizeof *show_table; i++)
884             if (lex_match_id (lexer, show_table[i].name)) 
885               {
886                 show_table[i].function (ds);
887                 goto found;
888               }
889           lex_error (lexer, NULL);
890           return CMD_FAILURE;
891
892         found: ;
893         }
894       else 
895         {
896           lex_error (lexer, NULL);
897           return CMD_FAILURE;
898         }
899
900       lex_match (lexer, '/');
901     }
902   while (lex_token (lexer) != '.');
903
904   return CMD_SUCCESS;
905 }
906
907 /*
908    Local Variables:
909    mode: c
910    End:
911 */