dump: Drop match1 parameter from dump_value().
[pspp] / dump.c
1 #include <float.h>
2 #include <stdbool.h>
3 #include <stdint.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <sys/stat.h>
8 #include <unistd.h>
9
10 static uint8_t *data;
11 static size_t n;
12
13 int version;
14
15 static bool
16 all_ascii(const uint8_t *p, size_t n)
17 {
18   for (size_t i = 0; i < n; i++)
19     if (p[i] < 32 || p[i] > 126)
20       return false;
21   return true;
22 }
23
24 static size_t
25 try_find(const char *target, size_t target_len)
26 {
27   const uint8_t *pos = (const uint8_t *) memmem (data, n, target, target_len);
28   return pos ? pos - data : 0;
29 }
30
31 static size_t
32 find(const char *target, size_t target_len)
33 {
34   size_t pos = try_find(target, target_len);
35   if (!pos)
36     {
37       fprintf (stderr, "not found\n");
38       exit(1);
39     }
40   return pos;
41 }
42
43 size_t pos;
44
45 #define XSTR(x) #x
46 #define STR(x) XSTR(x)
47 #define WHERE __FILE__":" STR(__LINE__)
48
49 static unsigned int
50 get_u32(void)
51 {
52   uint32_t x;
53   memcpy(&x, &data[pos], 4);
54   pos += 4;
55   return x;
56 }
57
58 static double
59 get_double(void)
60 {
61   double x;
62   memcpy(&x, &data[pos], 8);
63   pos += 8;
64   return x;
65 }
66
67 static bool
68 match_u32(uint32_t x)
69 {
70   if (get_u32() == x)
71     return true;
72   pos -= 4;
73   return false;
74 }
75
76 static void
77 match_u32_assert(uint32_t x, const char *where)
78 {
79   unsigned int y = get_u32();
80   if (x != y)
81     {
82       fprintf(stderr, "%s: 0x%x: expected i%u, got i%u\n", where, pos - 4, x, y);
83       exit(1);
84     }
85 }
86 #define match_u32_assert(x) match_u32_assert(x, WHERE)
87
88 static bool
89 match_byte(uint8_t b)
90 {
91   if (pos < n && data[pos] == b)
92     {
93       pos++;
94       return true;
95     }
96   else
97     return false;
98 }
99
100 static void
101 match_byte_assert(uint8_t b, const char *where)
102 {
103   if (!match_byte(b))
104     {
105       fprintf(stderr, "%s: 0x%x: expected %02x, got %02x\n", where, pos, b, data[pos]);
106       exit(1);
107     }
108 }
109 #define match_byte_assert(b) match_byte_assert(b, WHERE)
110
111 static void
112 newline(FILE *stream, int pos)
113 {
114   fprintf(stream, "\n%08x: ", pos);
115 }
116
117 static void
118 dump_raw(FILE *stream, int start, int end)
119 {
120   for (size_t i = start; i < end; )
121     {
122       if (i + 5 <= n
123           && data[i]
124           //&& !data[i + 1]
125           && !data[i + 2]
126           && !data[i + 3]
127           && i + 4 + data[i] + data[i + 1] * 256 <= end
128           && all_ascii(&data[i + 4], data[i] + data[i + 1] * 256))
129         {
130           newline(stream, i);
131           fprintf(stream, "\"");
132           fwrite(&data[i + 4], 1, data[i] + data[i + 1] * 256, stream);
133           fputs("\" ", stream);
134
135           i += 4 + data[i] + data[i + 1] * 256;
136         }
137       else if (i + 12 <= end
138                && data[i + 1] == 40
139                && data[i + 2] == 5
140                && data[i + 3] == 0)
141         {
142           double d;
143
144           memcpy (&d, &data[i + 4], 8);
145           fprintf (stream, "F40.%d(%.*f)", data[i], data[i], d);
146           i += 12;
147           newline (stream, i);
148         }
149       else if (i + 12 <= end
150                && data[i + 1] == 40
151                && data[i + 2] == 31
152                && data[i + 3] == 0)
153         {
154           double d;
155
156           memcpy (&d, &data[i + 4], 8);
157           fprintf (stream, "PCT40.%d(%.*f)", data[i], data[i], d);
158           i += 12;
159           newline(stream, i);
160         }
161       else if (i + 4 <= end
162                && (data[i] && data[i] != 88 && data[i] != 0x41)
163                && !data[i + 1]
164                && !data[i + 2]
165                && !data[i + 3])
166         {
167           fprintf (stream, "i%d ", data[i]);
168           i += 4;
169         }
170       else
171         {
172           fprintf(stream, "%02x ", data[i]);
173           i++;
174         }
175     }
176
177
178 }
179
180 static char *
181 get_string(const char *where)
182 {
183   if (1
184       /*data[pos + 1] == 0 && data[pos + 2] == 0 && data[pos + 3] == 0*/
185       /*&& all_ascii(&data[pos + 4], data[pos])*/)
186     {
187       int len = data[pos] + data[pos + 1] * 256;
188       char *s = malloc(len + 1);
189
190       memcpy(s, &data[pos + 4], len);
191       s[len] = 0;
192       pos += 4 + len;
193       return s;
194     }
195   else
196     {
197       fprintf(stderr, "%s: 0x%x: expected string\n", where, pos);
198       exit(1);
199     }
200 }
201 #define get_string() get_string(WHERE)
202
203 static char *
204 dump_nested_string(void)
205 {
206   char *s = NULL;
207
208   match_byte_assert (0);
209   match_byte_assert (0);
210   int outer_end = pos + get_u32();
211   int inner_end = pos + get_u32();
212   if (pos != inner_end)
213     {
214       match_u32_assert(0);
215       if (match_byte(0x31))
216         s = get_string();
217       else
218         match_byte_assert(0x58);
219       if (pos != inner_end)
220         {
221           fprintf(stderr, "inner end discrepancy\n");
222           exit(1);
223         }
224     }
225   match_byte_assert(0x58);
226   match_byte_assert(0x58);
227   if (pos != outer_end)
228     {
229       fprintf(stderr, "outer end discrepancy\n");
230       exit(1);
231     }
232
233   return s;
234 }
235
236 static void
237 dump_value_31(FILE *stream)
238 {
239   if (match_byte (0x31))
240     {
241       if (match_u32 (0))
242         {
243           if (match_u32 (1))
244             {
245               /* Only "a" observed as a sample value (although it appears 44 times in the corpus). */
246               get_string();
247             }
248           else
249             match_u32_assert (0);
250
251           if (version == 1)
252             {
253               /* We only have one SPV file for this version (with many
254                  tables). */
255               match_byte(0);
256               if (!match_u32(1))
257                 match_u32_assert(2);
258               match_byte(0);
259               match_byte(0);
260               if (!match_u32(0) && !match_u32(1) && !match_u32(2) && !match_u32(3) && !match_u32(4) && !match_u32(5) && !match_u32(6) && !match_u32(7) && !match_u32(8) && !match_u32(9))
261                 match_u32_assert(10);
262               match_byte(0);
263               match_byte(0);
264               return;
265             }
266
267           int outer_end = pos + get_u32();
268           int inner_end = pos + get_u32();
269           if (pos != inner_end)
270             {
271               match_u32_assert(0);
272               if (match_byte(0x31))
273                 {
274                   /* Appears to be a template string, e.g. '^1 cells (^2) expf < 5. Min exp = ^3...'.
275                      Probably doesn't actually appear in output because many examples look unpolished,
276                      e.g. 'partial list cases value ^1 shown upper...' */
277                   get_string();
278                 }
279               else
280                 match_byte_assert(0x58);
281               if (pos != inner_end)
282                 {
283                   fprintf(stderr, "inner end discrepancy\n");
284                   exit(1);
285                 }
286             }
287
288           if (match_byte(0x31))
289             {
290               /* Only one example in the corpus. */
291               match_byte(1);
292               match_byte(0);
293               match_byte(0);
294               match_byte(0);
295               match_byte_assert(1);
296               get_string();     /* foreground */
297               get_string();     /* background */
298               get_string();     /* font */
299               if (!match_byte(14))
300                 match_byte_assert(12); /* size? */
301             }
302           else
303             match_byte_assert(0x58);
304           if (match_byte(0x31))
305             {
306               /* Only two SPV files have anything like this, so it's hard to
307                  generalize. */
308               match_u32_assert(0);
309               match_u32_assert(0);
310               match_u32_assert(0);
311               match_u32_assert(0);
312               match_byte_assert(1);
313               match_byte_assert(0);
314               if (!match_byte(8) && !match_byte(1))
315                 match_byte_assert(2);
316               match_byte_assert(0);
317               match_byte_assert(8);
318               match_byte_assert(0);
319               match_byte_assert(10);
320               match_byte_assert(0);
321             }
322           else
323             match_byte_assert(0x58);
324           if (pos != outer_end)
325             {
326               fprintf(stderr, "outer end discrepancy\n");
327               exit(1);
328             }
329         }
330       else if (match_u32 (1))
331         {
332           fprintf(stream, "(footnote %d) ", get_u32());
333           dump_nested_string();
334         }
335       else if (match_u32 (2))
336         {
337           fprintf(stream, "(special 2)");
338           if (!match_byte(0))
339             match_byte_assert(2);
340           match_byte_assert(0);
341           if (!match_u32 (2) && !match_u32(1))
342             match_u32_assert(3);
343           dump_nested_string(); /* Our corpus doesn't contain any examples with strings though. */
344         }
345       else
346         {
347           match_u32_assert(3);
348           fprintf(stream, "(special 3)");
349           match_byte_assert(0);
350           match_byte_assert(0);
351           match_byte_assert(1);
352           match_byte_assert(0);
353           match_u32_assert(2);
354           dump_nested_string(); /* Our corpus doesn't contain any examples with strings though. */
355         }
356     }
357   else
358     match_byte_assert (0x58);
359 }
360
361 static const char *
362 format_to_string (int type)
363 {
364   static char tmp[16];
365   switch (type)
366     {
367     case 1: return "A";
368     case 2: return "AHEX";
369     case 3: return "COMMA";
370     case 4: return "DOLLAR";
371     case 5: case 40: return "F";
372     case 6: return "IB";
373     case 7: return "PIBHEX";
374     case 8: return "P";
375     case 9: return "PIB";
376     case 10: return "PK";
377     case 11: return "RB";
378     case 12: return "RBHEX";
379     case 15: return "Z";
380     case 16: return "N";
381     case 17: return "E";
382     case 20: return "DATE";
383     case 21: return "TIME";
384     case 22: return "DATETIME";
385     case 23: return "ADATE";
386     case 24: return "JDATE";
387     case 25: return "DTIME";
388     case 26: return "WKDAY";
389     case 27: return "MONTH";
390     case 28: return "MOYR";
391     case 29: return "QYR";
392     case 30: return "WKYR";
393     case 31: return "PCT";
394     case 32: return "DOT";
395     case 33: return "CCA";
396     case 34: return "CCB";
397     case 35: return "CCC";
398     case 36: return "CCD";
399     case 37: return "CCE";
400     case 38: return "EDATE";
401     case 39: return "SDATE";
402     default:
403       abort();
404       sprintf(tmp, "<%d>", type);
405       return tmp;
406     }
407 }
408
409 static void
410 dump_value(FILE *stream, int level)
411 {
412   match_byte(0);
413   match_byte(0);
414   match_byte(0);
415   match_byte(0);
416
417   for (int i = 0; i <= level; i++)
418     fprintf (stream, "    ");
419
420   if (match_byte (3))
421     {
422       char *text = get_string();
423       dump_value_31(stream);
424       char *identifier = get_string();
425       char *text_eng = get_string();
426       fprintf (stream, "<string c=\"%s\"", text_eng);
427       if (identifier[0])
428         fprintf (stream, " identifier=\"%s\"", identifier);
429       if (strcmp(text_eng, text))
430         fprintf (stream, " local=\"%s\"", text);
431       fprintf (stream, "/>\n");
432       if (!match_byte (0))
433         match_byte_assert(1);
434
435     }
436   else if (match_byte (5))
437     {
438       dump_value_31(stream);
439       char *name = get_string ();
440       char *label = get_string ();
441       fprintf (stream, "<variable name=\"%s\"", name);
442       if (label[0])
443         fprintf (stream, " label=\"%s\"", label);
444       fprintf (stream, "/>\n");
445       if (!match_byte(1) && !match_byte(2))
446         match_byte_assert(3);
447     }
448   else if (match_byte (2))
449     {
450       unsigned int format;
451       char *var, *vallab;
452       double value;
453
454       dump_value_31 (stream);
455       format = get_u32 ();
456       value = get_double ();
457       var = get_string ();
458       vallab = get_string ();
459       fprintf (stream, "<numeric-datum value=\"%.*g\" format=\"%s%d.%d\"",
460               DBL_DIG, value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff);
461       if (var[0])
462         fprintf (stream, " variable=\"%s\"", var);
463       if (vallab[0])
464         fprintf (stream, " label=\"%s\"/>\n", vallab);
465       fprintf (stream, "/>\n");
466       if (!match_byte (1) && !match_byte(2))
467         match_byte_assert (3);
468     }
469   else if (match_byte (4))
470     {
471       unsigned int format;
472       char *var, *vallab, *value;
473
474       match_byte_assert (0x58);
475       format = get_u32 ();
476       vallab = get_string ();
477       var = get_string ();
478       if (!match_byte(1) && !match_byte(2))
479         match_byte_assert (3);
480       value = get_string ();
481       fprintf (stream, "<string-datum value=\"%s\" format=\"%s%d.%d\"",
482               value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff);
483       if (var[0])
484         fprintf (stream, " variable=\"%s\"", var);
485       if (vallab[0])
486         fprintf (stream, " label=\"%s\"/>\n", vallab);
487       fprintf (stream, "/>\n");
488     }
489   else if (match_byte (1))
490     {
491       unsigned int format;
492       double value;
493
494       dump_value_31(stream);
495       format = get_u32 ();
496       value = get_double ();
497       fprintf (stream, "<number value=\"%.*g\" format=\"%s%d.%d\"/>\n",
498                DBL_DIG, value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff);
499     }
500   else
501     {
502       dump_value_31(stream);
503
504       char *base = get_string();
505       int x = get_u32();
506       fprintf (stream, "<template format=\"%s\">\n", base);
507       for (int i = 0; i < x; i++)
508         {
509           int y = get_u32();
510           if (!y)
511             y = 1;
512           else
513             match_u32_assert(0);
514           for (int j = 0; j <= level + 1; j++)
515             fprintf (stream, "    ");
516           fprintf (stream, "<substitution index=\"%d\">\n", i + 1);
517           for (int j = 0; j < y; j++)
518             dump_value (stream, level + 2);
519           for (int j = 0; j <= level + 1; j++)
520             fprintf (stream, "    ");
521           fprintf (stream, "</substitution>\n");
522         }
523       for (int j = 0; j <= level; j++)
524         fprintf (stream, "    ");
525       fprintf (stream, "</template>\n");
526     }
527 }
528
529 static int
530 compare_int(const void *a_, const void *b_)
531 {
532   const int *a = a_;
533   const int *b = b_;
534   return *a < *b ? -1 : *a > *b;
535 }
536
537 static void
538 check_permutation(int *a, int n, const char *name)
539 {
540   int b[n];
541   memcpy(b, a, n * sizeof *a);
542   qsort(b, n, sizeof *b, compare_int);
543   for (int i = 0; i < n; i++)
544     if (b[i] != i)
545       {
546         fprintf(stderr, "bad %s permutation:", name);
547         for (int i = 0; i < n; i++)
548           fprintf(stderr, " %d", a[i]);
549         putc('\n', stderr);
550         exit(1);
551       }
552 }
553
554 static void
555 dump_category(int level, int *indexes, int *n_indexes, int max_indexes)
556 {
557   for (int i = 0; i <= level; i++)
558     fprintf (stdout, "    ");
559   printf ("<category>\n");
560   dump_value (stdout, level + 1);
561   match_u32(1);
562
563   if (match_u32 (1))
564     match_byte (0);
565   else if (match_byte (1))
566     {
567       match_byte (0);
568       if (!match_u32 (2))
569         match_u32_assert (1);
570       match_byte (0);
571     }
572   else if (!match_u32(2))
573     match_u32_assert (0);
574
575   int indx = get_u32();
576   int n_categories = get_u32();
577   if (indx != -1)
578     {
579       if (n_categories != 0)
580         {
581           fprintf(stderr, "index not -1 but subcategories\n");
582           exit(1);
583         }
584       if (*n_indexes >= max_indexes)
585         {
586           fprintf(stderr, "too many categories (increase max_indexes)\n");
587           exit(1);
588         }
589       indexes[(*n_indexes)++] = indx;
590     }
591   if (n_categories == 0)
592     {
593       for (int i = 0; i <= level + 1; i++)
594         fprintf (stdout, "    ");
595       fprintf (stdout, "<category-index>%d</category-index>\n", indx);
596     }
597   for (int i = 0; i < n_categories; i++)
598     dump_category (level + 1, indexes, n_indexes, max_indexes);
599   for (int i = 0; i <= level; i++)
600     fprintf (stdout, "    ");
601   printf ("</category>\n");
602 }
603
604 static void
605 dump_dim(int indx)
606 {
607   int n_categories;
608
609   printf ("<dimension index=\"%d\">\n", indx);
610   dump_value (stdout, 0);
611
612   /* This byte is usually 0x02 but many other values have been spotted. */
613   pos++;
614
615   if (!match_byte(0) && !match_byte(1))
616     match_byte_assert(2);
617   if (!match_u32(0))
618     match_u32_assert(2);
619   if (!match_byte(0))
620     match_byte_assert(1);
621   if (!match_byte(0))
622     match_byte_assert(1);
623   match_byte_assert(1);
624   if (!match_u32(UINT32_MAX))
625     match_u32_assert(indx);
626   n_categories = get_u32();
627
628   int indexes[2048];
629   int n_indexes = 0;
630   for (int i = 0; i < n_categories; i++)
631     dump_category (0, indexes, &n_indexes, sizeof indexes / sizeof *indexes);
632   check_permutation(indexes, n_indexes, "categories");
633
634   fprintf (stdout, "</dimension>\n");
635 }
636
637 int n_dims;
638 static void
639 dump_dims(void)
640 {
641   n_dims = get_u32();
642   for (int i = 0; i < n_dims; i++)
643     dump_dim (i);
644 }
645
646 static void
647 dump_data(void)
648 {
649   /* The first three numbers add to the number of dimensions. */
650   int t = get_u32();
651   t += get_u32();
652   match_u32_assert(n_dims - t);
653
654   /* The next n_dims numbers are a permutation of the dimension numbers. */
655   int a[n_dims];
656   for (int i = 0; i < n_dims; i++)
657     a[i] = get_u32();
658   check_permutation(a, n_dims, "dimensions");
659
660   int x = get_u32();
661   printf ("<data>\n");
662   for (int i = 0; i < x; i++)
663     {
664       printf ("    <datum index=\"%d\">\n", get_u32());
665       match_u32_assert(0);
666       if (version == 1)
667         match_byte(0);
668       dump_value(stdout, 1);
669       fprintf (stdout, "    </datum>\n");
670     }
671   printf ("</data>\n");
672 }
673
674 static void
675 dump_title(void)
676 {
677   pos = 0x27;
678   printf ("<title-local>\n");
679   dump_value(stdout, 0);
680   match_byte(1);
681   printf ("</title-local>\n");
682
683   printf ("<subtype>\n");
684   dump_value(stdout, 0);
685   match_byte(1);
686   printf ("</subtype>\n");
687
688   match_byte_assert(0x31);
689
690   printf ("<title-c>\n");
691   dump_value(stdout, 0);
692   match_byte(1);
693   printf ("</title-c>\n");
694
695   match_byte(0);
696   match_byte_assert(0x58);
697   if (match_byte(0x31))
698     {
699       printf ("<caption>\n");
700       dump_value(stdout, 0);
701       printf ("</caption>\n");
702     }
703   else
704     match_byte_assert(0x58);
705
706
707   int n_footnotes = get_u32();
708   for (int i = 0; i < n_footnotes; i++)
709     {
710       printf ("<footnote index=\"%d\">\n", i);
711       dump_value(stdout, 0);
712       if (match_byte (0x31))
713         {
714           /* Custom footnote marker string. */
715           match_byte_assert(3);
716           get_string();
717           match_byte_assert(0x58);
718           match_u32_assert(0);
719           get_string();
720         }
721       else
722         match_byte_assert (0x58);
723       printf("(%d)\n", get_u32());
724       printf ("</footnote>\n");
725     }
726 }
727
728 static void
729 dump_fonts(void)
730 {
731   match_byte(0);
732   for (int i = 1; i <= 8; i++)
733     {
734       printf ("<style index=\"%d\"", i);
735       match_byte_assert(i);
736       match_byte_assert(0x31);
737       printf(" font=\"%s\"", get_string());
738       match_byte_assert(0);
739       match_byte_assert(0);
740       if (!match_byte(0x40) && !match_byte(0x20) && !match_byte(0x80) && !match_byte(0x10) && !match_byte(0x70))
741         match_byte_assert(0x50);
742       if (!match_byte(0x41))
743         match_byte_assert(0x51);
744       if (!match_u32(0) && !match_u32(1))
745         match_u32_assert(2);
746       match_byte_assert(0);
747
748       /* OK, this seems really unlikely to be totally correct, but it matches my corpus... */
749       if (!match_u32(0) && !match_u32(2))
750         match_u32_assert(0xfaad);
751
752       if (!match_u32(0) && !match_u32(1) && !match_u32(2))
753         match_u32_assert(3);
754       printf (" fgcolor=\"%s\"", get_string());
755       printf (" bgcolor=\"%s\"", get_string());
756       match_u32_assert(0);
757       match_u32_assert(0);
758       match_byte_assert(0);
759
760       if (version > 1)
761         {
762           /* These seem unlikely to be correct too. */
763           if (i != 3)
764             {
765               if (!match_u32(8))
766                 match_u32_assert(5);
767               if (!match_u32(10) && !match_u32(11) && !match_u32(5))
768                 match_u32_assert(9);
769               if (!match_u32(0))
770                 match_u32_assert(1);
771             }
772           else
773             {
774               get_u32();
775               if (!match_u32(-1) && !match_u32(8))
776                 match_u32_assert(24);
777               if (!match_u32(-1) && !match_u32(2))
778                 match_u32_assert(3);
779             }
780
781           /* Who knows? Ranges from -1 to 8 with no obvious pattern. */
782           get_u32();
783         }
784
785       printf ("/>\n");
786     }
787
788   match_u32_assert(240);
789   pos += 240;
790
791   match_u32_assert(18);
792   pos += 18;
793
794   if (match_u32(117))
795     pos += 117;
796   else if (match_u32(142))
797     pos += 142;
798   else if (match_u32(143))
799     pos += 143;
800   else if (match_u32(150))
801     pos += 150;
802   else
803     {
804       match_u32_assert(16);
805       pos += 16;
806     }
807
808   int count = get_u32();
809   pos += 4 * count;
810
811   printf ("<encoding>%s</encoding>\n", get_string ());
812
813   if (!match_u32(0))
814     match_u32_assert(UINT32_MAX);
815   if (!match_byte(0))
816     match_byte_assert(1);
817   match_byte_assert(0);
818   if (!match_byte(0))
819     match_byte_assert(1);
820   if (version > 1)
821     {
822       if (!match_byte(0x97) && !match_byte(0x98) && !match_byte(0x99))
823         match_byte_assert(0x9a);
824       match_byte_assert(7);
825       match_byte_assert(0);
826       match_byte_assert(0);
827     }
828   else
829     match_u32_assert(UINT32_MAX);
830   if (match_byte('.'))
831     {
832       if (!match_byte(','))
833         match_byte_assert(' ');
834     }
835   else
836     {
837       match_byte_assert(',');
838       if (!match_byte('.') && !match_byte(' '))
839         match_byte_assert(0);
840     }
841   if (match_u32(5))
842     {
843       for (int i = 0; i < 5; i++)
844         get_string();
845     }
846   else
847     match_u32_assert(0);
848   int skip = get_u32();
849   pos += skip;
850 }
851
852 int
853 main(int argc, char *argv[])
854 {
855   size_t start;
856   struct stat s;
857
858   if (isatty(STDIN_FILENO))
859     {
860       fprintf(stderr, "redirect stdin from a .bin file\n");
861       exit(1);
862     }
863   if (fstat(STDIN_FILENO, &s))
864     {
865       perror("fstat");
866       exit(1);
867     }
868   n = s.st_size;
869   data = malloc(n);
870   if (!data)
871     {
872       perror("malloc");
873       exit(1);
874     }
875   if (read(STDIN_FILENO, data, n) != n)
876     {
877       perror("read");
878       exit(1);
879     }
880
881   if (argc > 1)
882     {
883       if (!strcmp(argv[1], "title0"))
884         {
885           pos = 0x27;
886           if (match_byte (0x03)
887               || (match_byte (0x05) && match_byte (0x58)))
888             printf ("%s\n", get_string());
889           else
890             printf ("<unknown>\n");
891           return 0;
892         }
893       else if (!strcmp(argv[1], "title"))
894         {
895           dump_title();
896           exit(0);
897         }
898       else if (!strcmp(argv[1], "titleraw"))
899         {
900           const char fonts[] = "\x01\x31\x09\0\0\0SansSerif";
901           start = 0x27;
902           n = find(fonts, sizeof fonts - 1);
903         }
904       else if (!strcmp(argv[1], "fonts"))
905         {
906           const char fonts[] = "\x01\x31\x09\0\0\0SansSerif";
907           const char styles[] = "\xf0\0\0\0";
908           start = find(fonts, sizeof fonts - 1);
909           n = find(styles, sizeof styles - 1);
910         }
911       else if (!strcmp(argv[1], "styles"))
912         {
913           const char styles[] = "\xf0\0\0\0";
914           const char dimensions[] = "-,,,.\0";
915           start = find(styles, sizeof styles - 1);
916           n = find(dimensions, sizeof dimensions - 1) + sizeof dimensions - 1;
917         }
918       else if (!strcmp(argv[1], "dimensions") || !strcmp(argv[1], "all"))
919         {
920           pos = 0;
921           match_byte_assert(1);
922           match_byte_assert(0);
923
924           /* This might be a version number of some kind, because value 1 seems
925              to only appear in an SPV file that also required its own weird
926              special cases in dump_value_31(). */
927           version = get_u32();
928           pos -= 4;
929           if (!match_u32(1))
930             match_u32_assert(3);
931
932           match_byte_assert(1);
933           if (!match_byte(0))
934             match_byte_assert(1);
935           match_byte_assert(0);
936           match_byte_assert(0);
937           if (!match_byte(0))
938             match_byte_assert(1);
939           pos++;
940           match_byte_assert(0);
941           match_byte_assert(0);
942           match_byte_assert(0);
943           dump_title ();
944           dump_fonts();
945           dump_dims ();
946           dump_data ();
947           match_byte (1);
948           if (pos != n)
949             {
950               fprintf (stderr, "%x / %x\n", pos, n);
951               exit(1);
952             }
953           exit(0);
954         }
955       else
956         {
957           fprintf (stderr, "unknown section %s\n", argv[1]);
958           exit(1);
959         }
960     }
961   else
962     start = 0x27;
963
964   dump_raw(stdout, start, n);
965
966   return 0;
967 }