dump: Fix dumping of entire contents for all v3.
[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_u32_assert(0x200);
256               match_u32_assert(0x1000000);
257               match_u32_assert(0);
258               match_byte_assert(0);
259               return;
260             }
261
262           int outer_end = pos + get_u32();
263           int inner_end = pos + get_u32();
264           if (pos != inner_end)
265             {
266               match_u32_assert(0);
267               if (match_byte(0x31))
268                 {
269                   /* Appears to be a template string, e.g. '^1 cells (^2) expf < 5. Min exp = ^3...'.
270                      Probably doesn't actually appear in output because many examples look unpolished,
271                      e.g. 'partial list cases value ^1 shown upper...' */
272                   get_string();
273                 }
274               else
275                 match_byte_assert(0x58);
276               if (pos != inner_end)
277                 {
278                   fprintf(stderr, "inner end discrepancy\n");
279                   exit(1);
280                 }
281             }
282
283           if (match_byte(0x31))
284             {
285               /* Only one example in the corpus. */
286               match_byte(1);
287               match_byte(0);
288               match_byte(0);
289               match_byte(0);
290               match_byte_assert(1);
291               get_string();     /* foreground */
292               get_string();     /* background */
293               get_string();     /* font */
294               if (!match_byte(14))
295                 match_byte_assert(12); /* size? */
296             }
297           else
298             match_byte_assert(0x58);
299           if (match_byte(0x31))
300             {
301               /* Only two SPV files have anything like this, so it's hard to
302                  generalize. */
303               match_u32_assert(0);
304               match_u32_assert(0);
305               match_u32_assert(0);
306               match_u32_assert(0);
307               match_byte_assert(1);
308               match_byte_assert(0);
309               if (!match_byte(8) && !match_byte(1))
310                 match_byte_assert(2);
311               match_byte_assert(0);
312               match_byte_assert(8);
313               match_byte_assert(0);
314               match_byte_assert(10);
315               match_byte_assert(0);
316             }
317           else
318             match_byte_assert(0x58);
319           if (pos != outer_end)
320             {
321               fprintf(stderr, "outer end discrepancy\n");
322               exit(1);
323             }
324         }
325       else if (match_u32 (1))
326         {
327           fprintf(stream, "(footnote %d) ", get_u32());
328           dump_nested_string();
329         }
330       else if (match_u32 (2))
331         {
332           fprintf(stream, "(special 2)");
333           if (!match_byte(0))
334             match_byte_assert(2);
335           match_byte_assert(0);
336           if (!match_u32 (2) && !match_u32(1))
337             match_u32_assert(3);
338           dump_nested_string(); /* Our corpus doesn't contain any examples with strings though. */
339         }
340       else
341         {
342           match_u32_assert(3);
343           fprintf(stream, "(special 3)");
344           match_byte_assert(0);
345           match_byte_assert(0);
346           match_byte_assert(1);
347           match_byte_assert(0);
348           match_u32_assert(2);
349           dump_nested_string(); /* Our corpus doesn't contain any examples with strings though. */
350         }
351     }
352   else
353     match_byte_assert (0x58);
354 }
355
356 static const char *
357 format_to_string (int type)
358 {
359   static char tmp[16];
360   switch (type)
361     {
362     case 1: return "A";
363     case 2: return "AHEX";
364     case 3: return "COMMA";
365     case 4: return "DOLLAR";
366     case 5: case 40: return "F";
367     case 6: return "IB";
368     case 7: return "PIBHEX";
369     case 8: return "P";
370     case 9: return "PIB";
371     case 10: return "PK";
372     case 11: return "RB";
373     case 12: return "RBHEX";
374     case 15: return "Z";
375     case 16: return "N";
376     case 17: return "E";
377     case 20: return "DATE";
378     case 21: return "TIME";
379     case 22: return "DATETIME";
380     case 23: return "ADATE";
381     case 24: return "JDATE";
382     case 25: return "DTIME";
383     case 26: return "WKDAY";
384     case 27: return "MONTH";
385     case 28: return "MOYR";
386     case 29: return "QYR";
387     case 30: return "WKYR";
388     case 31: return "PCT";
389     case 32: return "DOT";
390     case 33: return "CCA";
391     case 34: return "CCB";
392     case 35: return "CCC";
393     case 36: return "CCD";
394     case 37: return "CCE";
395     case 38: return "EDATE";
396     case 39: return "SDATE";
397     default:
398       abort();
399       sprintf(tmp, "<%d>", type);
400       return tmp;
401     }
402 }
403
404 static void
405 dump_value(FILE *stream, int level, bool match1)
406 {
407   match_byte(0);
408   match_byte(0);
409   match_byte(0);
410   match_byte(0);
411
412   for (int i = 0; i <= level; i++)
413     fprintf (stream, "    ");
414
415   if (match_byte (3))
416     {
417       char *text = get_string();
418       dump_value_31(stream);
419       char *identifier = get_string();
420       char *text_eng = get_string();
421       fprintf (stream, "<string c=\"%s\"", text_eng);
422       if (identifier[0])
423         fprintf (stream, " identifier=\"%s\"", identifier);
424       if (strcmp(text_eng, text))
425         fprintf (stream, " local=\"%s\"", text);
426       fprintf (stream, "/>\n");
427       if (!match_byte (0))
428         match_byte_assert(1);
429       if (match1)
430         match_byte (1);
431     }
432   else if (match_byte (5))
433     {
434       dump_value_31(stream);
435       char *name = get_string ();
436       char *label = get_string ();
437       fprintf (stream, "<variable name=\"%s\"", name);
438       if (label[0])
439         fprintf (stream, " label=\"%s\"", label);
440       fprintf (stream, "/>\n");
441       if (!match_byte(1) && !match_byte(2))
442         match_byte_assert(3);
443     }
444   else if (match_byte (2))
445     {
446       unsigned int format;
447       char *var, *vallab;
448       double value;
449
450       dump_value_31 (stream);
451       format = get_u32 ();
452       value = get_double ();
453       var = get_string ();
454       vallab = get_string ();
455       fprintf (stream, "<numeric-datum value=\"%.*g\" format=\"%s%d.%d\"",
456               DBL_DIG, value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff);
457       if (var[0])
458         fprintf (stream, " variable=\"%s\"", var);
459       if (vallab[0])
460         fprintf (stream, " label=\"%s\"/>\n", vallab);
461       fprintf (stream, "/>\n");
462       if (!match_byte (1) && !match_byte(2))
463         match_byte_assert (3);
464     }
465   else if (match_byte (4))
466     {
467       unsigned int format;
468       char *var, *vallab, *value;
469
470       match_byte_assert (0x58);
471       format = get_u32 ();
472       vallab = get_string ();
473       var = get_string ();
474       if (!match_byte(1) && !match_byte(2))
475         match_byte_assert (3);
476       value = get_string ();
477       fprintf (stream, "<string-datum value=\"%s\" format=\"%s%d.%d\"",
478               value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff);
479       if (var[0])
480         fprintf (stream, " variable=\"%s\"", var);
481       if (vallab[0])
482         fprintf (stream, " label=\"%s\"/>\n", vallab);
483       fprintf (stream, "/>\n");
484     }
485   else if (match_byte (1))
486     {
487       unsigned int format;
488       double value;
489
490       dump_value_31(stream);
491       format = get_u32 ();
492       value = get_double ();
493       fprintf (stream, "<number value=\"%.*g\" format=\"%s%d.%d\"/>\n",
494                DBL_DIG, value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff);
495       if (match1)
496         match_byte (1);
497     }
498   else
499     {
500       dump_value_31(stream);
501
502       char *base = get_string();
503       int x = get_u32();
504       fprintf (stream, "<template format=\"%s\">\n", base);
505       for (int i = 0; i < x; i++)
506         {
507           int y = get_u32();
508           if (!y)
509             y = 1;
510           else
511             match_u32_assert(0);
512           for (int j = 0; j <= level + 1; j++)
513             fprintf (stream, "    ");
514           fprintf (stream, "<substitution index=\"%d\">\n", i + 1);
515           for (int j = 0; j < y; j++)
516             dump_value (stream, level + 2, false);
517           for (int j = 0; j <= level + 1; j++)
518             fprintf (stream, "    ");
519           fprintf (stream, "</substitution>\n");
520         }
521       for (int j = 0; j <= level; j++)
522         fprintf (stream, "    ");
523       fprintf (stream, "</template>\n");
524     }
525 }
526
527 static int
528 compare_int(const void *a_, const void *b_)
529 {
530   const int *a = a_;
531   const int *b = b_;
532   return *a < *b ? -1 : *a > *b;
533 }
534
535 static void
536 check_permutation(int *a, int n, const char *name)
537 {
538   int b[n];
539   memcpy(b, a, n * sizeof *a);
540   qsort(b, n, sizeof *b, compare_int);
541   for (int i = 0; i < n; i++)
542     if (b[i] != i)
543       {
544         fprintf(stderr, "bad %s permutation:", name);
545         for (int i = 0; i < n; i++)
546           fprintf(stderr, " %d", a[i]);
547         putc('\n', stderr);
548         exit(1);
549       }
550 }
551
552 static void
553 dump_category(int level, int *indexes, int *n_indexes, int max_indexes)
554 {
555   for (int i = 0; i <= level; i++)
556     fprintf (stdout, "    ");
557   printf ("<category>\n");
558   dump_value (stdout, level + 1, true);
559   match_byte(0);
560   match_byte(0);
561   match_byte(0);
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, false);
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       dump_value(stdout, 1, false);
667       fprintf (stdout, "    </datum>\n");
668     }
669   printf ("</data>\n");
670 }
671
672 static void
673 dump_title(void)
674 {
675   pos = 0x27;
676   printf ("<title-local>\n");
677   dump_value(stdout, 0, true);
678   printf ("</title-local>\n");
679
680   printf ("<subtype>\n");
681   dump_value(stdout, 0, true);
682   printf ("</subtype>\n");
683
684   match_byte_assert(0x31);
685
686   printf ("<title-c>\n");
687   dump_value(stdout, 0, true);
688   printf ("</title-c>\n");
689
690   match_byte(0);
691   match_byte_assert(0x58);
692   if (match_byte(0x31))
693     {
694       printf ("<caption>\n");
695       dump_value(stdout, 0, false);
696       printf ("</caption>\n");
697     }
698   else
699     match_byte_assert(0x58);
700
701
702   int n_footnotes = get_u32();
703   for (int i = 0; i < n_footnotes; i++)
704     {
705       printf ("<footnote index=\"%d\">\n", i);
706       dump_value(stdout, 0, false);
707       if (match_byte (0x31))
708         {
709           /* Custom footnote marker string. */
710           match_byte_assert(3);
711           get_string();
712           match_byte_assert(0x58);
713           match_u32_assert(0);
714           get_string();
715         }
716       else
717         match_byte_assert (0x58);
718       printf("(%d)\n", get_u32());
719       printf ("</footnote>\n");
720     }
721 }
722
723 static void
724 dump_fonts(void)
725 {
726   match_byte(0);
727   for (int i = 1; i <= 8; i++)
728     {
729       printf ("<style index=\"%d\"", i);
730       match_byte_assert(i);
731       match_byte_assert(0x31);
732       printf(" font=\"%s\"", get_string());
733       match_byte_assert(0);
734       match_byte_assert(0);
735       if (!match_byte(0x40) && !match_byte(0x20) && !match_byte(0x80) && !match_byte(0x10) && !match_byte(0x70))
736         match_byte_assert(0x50);
737       if (!match_byte(0x41))
738         match_byte_assert(0x51);
739       if (!match_u32(0) && !match_u32(1))
740         match_u32_assert(2);
741       match_byte_assert(0);
742
743       /* OK, this seems really unlikely to be totally correct, but it matches my corpus... */
744       if (!match_u32(0) && !match_u32(2))
745         match_u32_assert(0xfaad);
746
747       if (!match_u32(0) && !match_u32(1) && !match_u32(2))
748         match_u32_assert(3);
749       printf (" fgcolor=\"%s\"", get_string());
750       printf (" bgcolor=\"%s\"", get_string());
751       match_u32_assert(0);
752       match_u32_assert(0);
753       match_byte_assert(0);
754
755       if (version > 1)
756         {
757           /* These seem unlikely to be correct too. */
758           if (i != 3)
759             {
760               if (!match_u32(8))
761                 match_u32_assert(5);
762               if (!match_u32(10) && !match_u32(11) && !match_u32(5))
763                 match_u32_assert(9);
764               if (!match_u32(0))
765                 match_u32_assert(1);
766             }
767           else
768             {
769               get_u32();
770               if (!match_u32(-1) && !match_u32(8))
771                 match_u32_assert(24);
772               if (!match_u32(-1) && !match_u32(2))
773                 match_u32_assert(3);
774             }
775
776           /* Who knows? Ranges from -1 to 8 with no obvious pattern. */
777           get_u32();
778         }
779
780       printf ("/>\n");
781     }
782
783   match_u32_assert(240);
784   pos += 240;
785
786   match_u32_assert(18);
787   pos += 18;
788
789   if (match_u32(117))
790     pos += 117;
791   else if (match_u32(142))
792     pos += 142;
793   else if (match_u32(143))
794     pos += 143;
795   else if (match_u32(150))
796     pos += 150;
797   else
798     {
799       match_u32_assert(16);
800       pos += 16;
801     }
802
803   int count = get_u32();
804   pos += 4 * count;
805
806   printf ("<encoding>%s</encoding>\n", get_string ());
807
808   if (!match_u32(0))
809     match_u32_assert(UINT32_MAX);
810   if (!match_byte(0))
811     match_byte_assert(1);
812   match_byte_assert(0);
813   if (!match_byte(0))
814     match_byte_assert(1);
815   if (version > 1)
816     {
817       if (!match_byte(0x97) && !match_byte(0x98) && !match_byte(0x99))
818         match_byte_assert(0x9a);
819       match_byte_assert(7);
820       match_byte_assert(0);
821       match_byte_assert(0);
822     }
823   else
824     match_u32_assert(UINT32_MAX);
825   if (match_byte('.'))
826     {
827       if (!match_byte(','))
828         match_byte_assert(' ');
829     }
830   else
831     {
832       match_byte_assert(',');
833       if (!match_byte('.') && !match_byte(' '))
834         match_byte_assert(0);
835     }
836   if (match_u32(5))
837     {
838       for (int i = 0; i < 5; i++)
839         get_string();
840     }
841   else
842     match_u32_assert(0);
843   int skip = get_u32();
844   pos += skip;
845 }
846
847 int
848 main(int argc, char *argv[])
849 {
850   size_t start;
851   struct stat s;
852
853   if (isatty(STDIN_FILENO))
854     {
855       fprintf(stderr, "redirect stdin from a .bin file\n");
856       exit(1);
857     }
858   if (fstat(STDIN_FILENO, &s))
859     {
860       perror("fstat");
861       exit(1);
862     }
863   n = s.st_size;
864   data = malloc(n);
865   if (!data)
866     {
867       perror("malloc");
868       exit(1);
869     }
870   if (read(STDIN_FILENO, data, n) != n)
871     {
872       perror("read");
873       exit(1);
874     }
875
876   if (argc > 1)
877     {
878       if (!strcmp(argv[1], "title0"))
879         {
880           pos = 0x27;
881           if (match_byte (0x03)
882               || (match_byte (0x05) && match_byte (0x58)))
883             printf ("%s\n", get_string());
884           else
885             printf ("<unknown>\n");
886           return 0;
887         }
888       else if (!strcmp(argv[1], "title"))
889         {
890           dump_title();
891           exit(0);
892         }
893       else if (!strcmp(argv[1], "titleraw"))
894         {
895           const char fonts[] = "\x01\x31\x09\0\0\0SansSerif";
896           start = 0x27;
897           n = find(fonts, sizeof fonts - 1);
898         }
899       else if (!strcmp(argv[1], "fonts"))
900         {
901           const char fonts[] = "\x01\x31\x09\0\0\0SansSerif";
902           const char styles[] = "\xf0\0\0\0";
903           start = find(fonts, sizeof fonts - 1);
904           n = find(styles, sizeof styles - 1);
905         }
906       else if (!strcmp(argv[1], "styles"))
907         {
908           const char styles[] = "\xf0\0\0\0";
909           const char dimensions[] = "-,,,.\0";
910           start = find(styles, sizeof styles - 1);
911           n = find(dimensions, sizeof dimensions - 1) + sizeof dimensions - 1;
912         }
913       else if (!strcmp(argv[1], "dimensions") || !strcmp(argv[1], "all"))
914         {
915           pos = 0;
916           match_byte_assert(1);
917           match_byte_assert(0);
918
919           /* This might be a version number of some kind, because value 1 seems
920              to only appear in an SPV file that also required its own weird
921              special cases in dump_value_31(). */
922           version = get_u32();
923           pos -= 4;
924           if (!match_u32(1))
925             match_u32_assert(3);
926
927           match_byte_assert(1);
928           if (!match_byte(0))
929             match_byte_assert(1);
930           match_byte_assert(0);
931           match_byte_assert(0);
932           if (!match_byte(0))
933             match_byte_assert(1);
934           pos++;
935           match_byte_assert(0);
936           match_byte_assert(0);
937           match_byte_assert(0);
938           dump_title ();
939           dump_fonts();
940           dump_dims ();
941           dump_data ();
942           match_byte (1);
943           if (pos != n)
944             {
945               fprintf (stderr, "%x / %x\n", pos, n);
946               exit(1);
947             }
948           exit(0);
949         }
950       else
951         {
952           fprintf (stderr, "unknown section %s\n", argv[1]);
953           exit(1);
954         }
955     }
956   else
957     start = 0x27;
958
959   dump_raw(stdout, start, n);
960
961   return 0;
962 }