Update build system to Autoconf 2.58, Automake 1.7, gettext 0.12.1.
[pspp-builds.git] / src / sysfile-info.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 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., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #include <config.h>
21 #include <assert.h>
22 #include <ctype.h>
23 #include <stdlib.h>
24 #include "alloc.h"
25 #include "avl.h"
26 #include "command.h"
27 #include "error.h"
28 #include "file-handle.h"
29 #include "lexer.h"
30 #include "misc.h"
31 #include "output.h"
32 #include "sfm.h"
33 #include "som.h"
34 #include "tab.h"
35 #include "var.h"
36 #include "vector.h"
37
38 /* Constants for DISPLAY utility. */
39 enum
40   {
41     AS_NAMES = 0,
42     AS_INDEX,
43     AS_VARIABLES,
44     AS_LABELS,
45     AS_DICTIONARY,
46     AS_SCRATCH,
47     AS_VECTOR
48   };
49
50 int describe_variable (struct variable *v, struct tab_table *t, int r, int as);
51      
52 /* Sets the widths of all the columns and heights of all the rows in
53    table T for driver D. */
54 static void
55 sysfile_info_dim (struct tab_table *t, struct outp_driver *d)
56 {
57   static const int max[] = {20, 5, 35, 3, 0};
58   const int *p;
59   int i;
60
61   for (p = max; *p; p++)
62     t->w[p - max] = min (tab_natural_width (t, d, p - max),
63                          *p * d->prop_em_width);
64   for (i = 0; i < t->nr; i++)
65     t->h[i] = tab_natural_height (t, d, i);
66 }
67
68 /* SYSFILE INFO utility. */
69 int
70 cmd_sysfile_info (void)
71 {
72   struct file_handle *h;
73   struct dictionary *d;
74   struct tab_table *t;
75   struct sfm_read_info inf;
76   int r, nr;
77   int i;
78
79   lex_match_id ("SYSFILE");
80   lex_match_id ("INFO");
81
82   lex_match_id ("FILE");
83   lex_match ('=');
84
85   h = fh_parse_file_handle ();
86   if (!h)
87     return CMD_FAILURE;
88
89   d = sfm_read_dictionary (h, &inf);
90   fh_close_handle (h);
91   if (!d)
92     return CMD_FAILURE;
93
94   t = tab_create (2, 9, 0);
95   tab_vline (t, TAL_1 | TAL_SPACING, 1, 0, 8);
96   tab_text (t, 0, 0, TAB_LEFT, _("File:"));
97   tab_text (t, 1, 0, TAB_LEFT, fh_handle_filename (h));
98   tab_text (t, 0, 1, TAB_LEFT, _("Label:"));
99   tab_text (t, 1, 1, TAB_LEFT,
100                 d->label ? d->label : _("No label."));
101   tab_text (t, 0, 2, TAB_LEFT, _("Created:"));
102   tab_text (t, 1, 2, TAB_LEFT | TAT_PRINTF, "%s %s by %s",
103                 inf.creation_date, inf.creation_time, inf.product);
104   tab_text (t, 0, 3, TAB_LEFT, _("Endian:"));
105   tab_text (t, 1, 3, TAB_LEFT, inf.bigendian ? _("Big.") : _("Little."));
106   tab_text (t, 0, 4, TAB_LEFT, _("Variables:"));
107   tab_text (t, 1, 4, TAB_LEFT | TAT_PRINTF, "%d",
108                 d->nvar);
109   tab_text (t, 0, 5, TAB_LEFT, _("Cases:"));
110   tab_text (t, 1, 5, TAB_LEFT | TAT_PRINTF,
111                 inf.ncases == -1 ? _("Unknown") : "%d", inf.ncases);
112   tab_text (t, 0, 6, TAB_LEFT, _("Type:"));
113   tab_text (t, 1, 6, TAB_LEFT, _("System File."));
114   tab_text (t, 0, 7, TAB_LEFT, _("Weight:"));
115   tab_text (t, 1, 7, TAB_LEFT,
116                 d->weight_var[0] ? d->weight_var : _("Not weighted."));
117   tab_text (t, 0, 8, TAB_LEFT, _("Mode:"));
118   tab_text (t, 1, 8, TAB_LEFT | TAT_PRINTF,
119                 _("Compression %s."), inf.compressed ? _("on") : _("off"));
120   tab_dim (t, tab_natural_dimensions);
121   tab_submit (t);
122
123   nr = 1 + 2 * d->nvar;
124   t = tab_create (4, nr, 1);
125   tab_dim (t, sysfile_info_dim);
126   tab_headers (t, 0, 0, 1, 0);
127   tab_text (t, 0, 0, TAB_LEFT | TAT_TITLE, _("Variable"));
128   tab_joint_text (t, 1, 0, 2, 0, TAB_LEFT | TAT_TITLE, _("Description"));
129   tab_text (t, 3, 0, TAB_LEFT | TAT_TITLE, _("Position"));
130   tab_hline (t, TAL_2, 0, 3, 1);
131   for (r = 1, i = 0; i < d->nvar; i++)
132     {
133       int nvl = d->var[i]->val_lab ? avl_count (d->var[i]->val_lab) : 0;
134       
135       if (r + 10 + nvl > nr)
136         {
137           nr = max (nr * d->nvar / (i + 1), nr);
138           nr += 10 + nvl;
139           tab_realloc (t, 4, nr);
140         }
141
142       r = describe_variable (d->var[i], t, r, AS_DICTIONARY);
143     }
144   tab_box (t, TAL_1, TAL_1, -1, -1, 0, 0, 3, r);
145   tab_vline (t, TAL_1, 0, 0, r);
146   tab_vline (t, TAL_1, 1, 0, r);
147   tab_vline (t, TAL_1, 3, 0, r);
148   tab_resize (t, -1, r);
149   tab_flags (t, SOMF_NO_TITLE);
150   tab_submit (t);
151
152   free_dictionary (d);
153   
154   return lex_end_of_command ();
155 }
156 \f
157 /* DISPLAY utility. */
158
159 static void display_macros (void);
160 static void display_documents (void);
161 static void display_variables (struct variable **, int, int);
162 static void display_vectors (int sorted);
163
164 static int cmp_var_by_name (const void *, const void *);
165
166 int
167 cmd_display (void)
168 {
169   /* Whether to sort the list of variables alphabetically. */
170   int sorted;
171
172   /* Variables to display. */
173   int n;
174   struct variable **vl;
175
176   lex_match_id ("DISPLAY");
177
178   if (lex_match_id ("MACROS"))
179     display_macros ();
180   else if (lex_match_id ("DOCUMENTS"))
181     display_documents ();
182   else if (lex_match_id ("FILE"))
183     {
184       som_blank_line ();
185       if (!lex_force_match_id ("LABEL"))
186         return CMD_FAILURE;
187       if (default_dict.label == NULL)
188         tab_output_text (TAB_LEFT,
189                          _("The active file does not have a file label."));
190       else
191         {
192           tab_output_text (TAB_LEFT | TAT_TITLE, _("File label:"));
193           tab_output_text (TAB_LEFT | TAT_FIX, default_dict.label);
194         }
195     }
196   else
197     {
198       static const char *sbc[] =
199         {"NAMES", "INDEX", "VARIABLES", "LABELS",
200          "DICTIONARY", "SCRATCH", "VECTORS", NULL};
201       const char **cp;
202       int as;
203
204       sorted = lex_match_id ("SORTED");
205
206       for (cp = sbc; *cp; cp++)
207         if (token == T_ID && lex_id_match (*cp, tokid))
208           {
209             lex_get ();
210             break;
211           }
212       as = cp - sbc;
213
214       if (*cp == NULL)
215         as = AS_NAMES;
216
217       if (as == AS_VECTOR)
218         {
219           display_vectors (sorted);
220           return CMD_SUCCESS;
221         }
222
223       lex_match ('/');
224       lex_match_id ("VARIABLES");
225       lex_match ('=');
226
227       if (token != '.')
228         {
229           if (!parse_variables (NULL, &vl, &n, PV_NONE))
230             {
231               free (vl);
232               return CMD_FAILURE;
233             }
234           as = AS_DICTIONARY;
235         }
236       else
237         fill_all_vars (&vl, &n, FV_NONE);
238
239       if (as == AS_SCRATCH)
240         {
241           int i, m;
242           for (i = 0, m = n; i < n; i++)
243             if (vl[i]->name[0] != '#')
244               {
245                 vl[i] = NULL;
246                 m--;
247               }
248           as = AS_NAMES;
249           n = m;
250         }
251
252       if (n == 0)
253         {
254           msg (SW, _("No variables to display."));
255           return CMD_FAILURE;
256         }
257
258       if (sorted)
259         qsort (vl, n, sizeof *vl, cmp_var_by_name);
260
261       display_variables (vl, n, as);
262
263       free (vl);
264     }
265
266   return lex_end_of_command ();
267 }
268
269 static int
270 cmp_var_by_name (const void *a, const void *b)
271 {
272   return strcmp ((*((struct variable **) a))->name, (*((struct variable **) b))->name);
273 }
274
275 static void
276 display_macros (void)
277 {
278   som_blank_line ();
279   tab_output_text (TAB_LEFT, _("Macros not supported."));
280 }
281
282 static void
283 display_documents (void)
284 {
285   som_blank_line ();
286   if (default_dict.n_documents == 0)
287     tab_output_text (TAB_LEFT, _("The active file dictionary does not "
288                      "contain any documents."));
289   else
290     {
291       char buf[81];
292       int i;
293
294       tab_output_text (TAB_LEFT | TAT_TITLE,
295                        _("Documents in the active file:"));
296       som_blank_line ();
297       buf[80] = 0;
298       for (i = 0; i < default_dict.n_documents; i++)
299         {
300           int len = 79;
301
302           memcpy (buf, &default_dict.documents[i * 80], 80);
303           while ((isspace ((unsigned char) buf[len]) || buf[len] == 0)
304                  && len > 0)
305             len--;
306           buf[len + 1] = 0;
307           tab_output_text (TAB_LEFT | TAT_FIX | TAT_NOWRAP, buf);
308         }
309     }
310 }
311
312 static int _as;
313
314 /* Sets the widths of all the columns and heights of all the rows in
315    table T for driver D. */
316 static void
317 variables_dim (struct tab_table *t, struct outp_driver *d)
318 {
319   int pc;
320   int i;
321   
322   t->w[0] = tab_natural_width (t, d, 0);
323   if (_as == AS_DICTIONARY || _as == AS_VARIABLES || _as == AS_LABELS)
324     {
325       t->w[1] = max (tab_natural_width (t, d, 1), d->prop_em_width * 5);
326       t->w[2] = max (tab_natural_width (t, d, 2), d->prop_em_width * 35);
327       pc = 3;
328     }
329   else pc = 1;
330   if (_as != AS_NAMES)
331     t->w[pc] = tab_natural_width (t, d, pc);
332
333   for (i = 0; i < t->nr; i++)
334     t->h[i] = tab_natural_height (t, d, i);
335 }
336   
337 static void
338 display_variables (struct variable **vl, int n, int as)
339 {
340   struct variable **vp = vl;            /* Variable pointer. */
341   struct tab_table *t;
342   int nc;                       /* Number of columns. */
343   int nr;                       /* Number of rows. */
344   int pc;                       /* `Position column' */
345   int r;                        /* Current row. */
346   int i;
347
348   _as = as;
349   switch (as)
350     {
351     case AS_INDEX:
352       nc = 2;
353       break;
354     case AS_NAMES:
355       nc = 1;
356       break;
357     default:
358       nc = 4;
359       break;
360     }
361
362   t = tab_create (nc, n + 5, 1);
363   tab_headers (t, 0, 0, 1, 0);
364   nr = n + 5;
365   tab_hline (t, TAL_2, 0, nc - 1, 1);
366   tab_text (t, 0, 0, TAB_LEFT | TAT_TITLE, _("Variable"));
367   if (as != AS_NAMES)
368     {
369       pc = (as == AS_INDEX ? 1 : 3);
370       tab_text (t, pc, 0, TAB_LEFT | TAT_TITLE, _("Position"));
371     }
372   if (as == AS_DICTIONARY || as == AS_VARIABLES)
373     tab_joint_text (t, 1, 0, 2, 0, TAB_LEFT | TAT_TITLE, _("Description"));
374   else if (as == AS_LABELS)
375     tab_joint_text (t, 1, 0, 2, 0, TAB_LEFT | TAT_TITLE, _("Label"));
376   tab_dim (t, variables_dim);
377     
378   for (i = r = 1; i <= n; i++)
379     {
380       struct variable *v;
381
382       while (*vp == NULL)
383         vp++;
384       v = *vp++;
385
386       if (as == AS_DICTIONARY || as == AS_VARIABLES)
387         {
388           int nvl = v->val_lab ? avl_count (v->val_lab) : 0;
389       
390           if (r + 10 + nvl > nr)
391             {
392               nr = max (nr * n / (i + 1), nr);
393               nr += 10 + nvl;
394               tab_realloc (t, nc, nr);
395             }
396
397           r = describe_variable (v, t, r, as);
398         } else {
399           tab_text (t, 0, r, TAB_LEFT, v->name);
400           if (as == AS_LABELS)
401             tab_joint_text (t, 1, r, 2, r, TAB_LEFT,
402                             v->label == NULL ? "(no label)" : v->label);
403           if (as != AS_NAMES)
404             {
405               tab_text (t, pc, r, TAT_PRINTF, "%d", v->index + 1);
406               tab_hline (t, TAL_1, 0, nc - 1, r);
407             }
408           r++;
409         }
410     }
411   tab_hline (t, as == AS_NAMES ? TAL_1 : TAL_2, 0, nc - 1, 1);
412   if (as != AS_NAMES)
413     {
414       tab_box (t, TAL_1, TAL_1, -1, -1, 0, 0, nc - 1, r - 1);
415       tab_vline (t, TAL_1, 1, 0, r - 1);
416     }
417   else
418     tab_flags (t, SOMF_NO_TITLE);
419   if (as == AS_DICTIONARY || as == AS_VARIABLES || as == AS_LABELS)
420     tab_vline (t, TAL_1, 3, 0, r - 1);
421   tab_resize (t, -1, r);
422   tab_columns (t, TAB_COL_DOWN, 1);
423   tab_submit (t);
424 }
425 \f
426 /* Puts a description of variable V into table T starting at row R.
427    The variable will be described in the format AS.  Returns the next
428    row available for use in the table. */
429 int 
430 describe_variable (struct variable *v, struct tab_table *t, int r, int as)
431 {
432   /* Put the name, var label, and position into the first row. */
433   tab_text (t, 0, r, TAB_LEFT, v->name);
434   tab_text (t, 3, r, TAT_PRINTF, "%d", v->index + 1);
435
436   if (as == AS_DICTIONARY && v->label)
437     {
438       tab_joint_text (t, 1, r, 2, r, TAB_LEFT, v->label);
439       r++;
440     }
441   
442   /* Print/write format, or print and write formats. */
443   if (v->print.type == v->write.type
444       && v->print.w == v->write.w
445       && v->print.d == v->write.d)
446     {
447       tab_joint_text (t, 1, r, 2, r, TAB_LEFT | TAT_PRINTF, _("Format: %s"),
448                       fmt_to_string (&v->print));
449       r++;
450     }
451   else
452     {
453       tab_joint_text (t, 1, r, 2, r, TAB_LEFT | TAT_PRINTF,
454                       _("Print Format: %s"), fmt_to_string (&v->print));
455       r++;
456       tab_joint_text (t, 1, r, 2, r, TAB_LEFT | TAT_PRINTF,
457                       _("Write Format: %s"), fmt_to_string (&v->write));
458       r++;
459     }
460
461   /* Missing values if any. */
462   if (v->miss_type != MISSING_NONE)
463     {
464       char buf[80];
465       char *cp = stpcpy (buf, _("Missing Values: "));
466
467       if (v->type == NUMERIC)
468         switch (v->miss_type)
469           {
470           case MISSING_1:
471             sprintf (cp, "%g", v->missing[0].f);
472             break;
473           case MISSING_2:
474             sprintf (cp, "%g; %g", v->missing[0].f, v->missing[1].f);
475             break;
476           case MISSING_3:
477             sprintf (cp, "%g; %g; %g", v->missing[0].f,
478                      v->missing[1].f, v->missing[2].f);
479             break;
480           case MISSING_RANGE:
481             sprintf (cp, "%g THRU %g", v->missing[0].f, v->missing[1].f);
482             break;
483           case MISSING_LOW:
484             sprintf (cp, "LOWEST THRU %g", v->missing[0].f);
485             break;
486           case MISSING_HIGH:
487             sprintf (cp, "%g THRU HIGHEST", v->missing[0].f);
488             break;
489           case MISSING_RANGE_1:
490             sprintf (cp, "%g THRU %g; %g",
491                      v->missing[0].f, v->missing[1].f, v->missing[2].f);
492             break;
493           case MISSING_LOW_1:
494             sprintf (cp, "LOWEST THRU %g; %g",
495                      v->missing[0].f, v->missing[1].f);
496             break;
497           case MISSING_HIGH_1:
498             sprintf (cp, "%g THRU HIGHEST; %g",
499                      v->missing[0].f, v->missing[1].f);
500             break;
501           default:
502             assert (0);
503           }
504       else
505         {
506           int i;
507
508           for (i = 0; i < v->miss_type; i++)
509             {
510               if (i != 0)
511                 cp = stpcpy (cp, "; ");
512               *cp++ = '"';
513               memcpy (cp, v->missing[i].s, v->width);
514               cp += v->width;
515               *cp++ = '"';
516             }
517           *cp = 0;
518         }
519
520       tab_joint_text (t, 1, r, 2, r, TAB_LEFT, buf);
521       r++;
522     }
523
524   /* Value labels. */
525   if (as == AS_DICTIONARY && v->val_lab)
526     {
527       avl_traverser trav;
528       struct value_label *vl;
529       int nvl = avl_count (v->val_lab);
530       int orig_r = r;
531       int i;
532
533 #if 0
534       tab_text (t, 1, r, TAB_LEFT, _("Value"));
535       tab_text (t, 2, r, TAB_LEFT, _("Label"));
536       r++;
537 #endif
538
539       tab_hline (t, TAL_1, 1, 2, r);
540       avl_traverser_init (trav);
541       for (i = 1, vl = avl_traverse (v->val_lab, &trav); vl;
542            i++, vl = avl_traverse (v->val_lab, &trav))
543         {
544           char buf[128];
545
546           if (v->type == ALPHA)
547             {
548               memcpy (buf, vl->v.s, v->width);
549               buf[v->width] = 0;
550             }
551           else
552             sprintf (buf, "%g", vl->v.f);
553
554           tab_text (t, 1, r, TAB_NONE, buf);
555           tab_text (t, 2, r, TAB_LEFT, vl->s);
556           r++;
557
558           if (i == nvl) 
559             break;
560         }
561
562       for (;;)
563         {
564           if (vl == NULL)
565             break;
566           vl = avl_traverse (v->val_lab, &trav);
567         }
568
569       tab_vline (t, TAL_1, 2, orig_r, r - 1);
570     }
571
572   /* Draw a line below the last row of information on this variable. */
573   tab_hline (t, TAL_1, 0, 3, r);
574
575   return r;
576 }
577
578 static int
579 compare_vectors_by_name (const void *a, const void *b)
580 {
581   return strcmp ((*((struct vector **) a))->name, (*((struct vector **) b))->name);
582 }
583
584 /* Display a list of vectors.  If SORTED is nonzero then they are
585    sorted alphabetically. */
586 static void
587 display_vectors (int sorted)
588 {
589   struct vector **vl;
590   int i;
591   struct tab_table *t;
592
593   if (nvec == 0)
594     {
595       msg (SW, _("No vectors defined."));
596       return;
597     }
598
599   vl = xmalloc (sizeof *vl * nvec);
600   for (i = 0; i < nvec; i++)
601     vl[i] = &vec[i];
602   if (sorted)
603     qsort (vl, nvec, sizeof *vl, compare_vectors_by_name);
604
605   t = tab_create (1, nvec + 1, 0);
606   tab_headers (t, 0, 0, 1, 0);
607   tab_columns (t, TAB_COL_DOWN, 1);
608   tab_dim (t, tab_natural_dimensions);
609   tab_hline (t, TAL_1, 0, 0, 1);
610   tab_text (t, 0, 0, TAT_TITLE | TAB_LEFT, _("Vector"));
611   tab_flags (t, SOMF_NO_TITLE);
612   for (i = 0; i < nvec; i++)
613     tab_text (t, 0, i + 1, TAB_LEFT, vl[i]->name);
614   tab_submit (t);
615
616   free (vl);
617 }