]> git.pond.sub.org Git - empserver/blob - src/lib/common/xundump.c
(need_uid, is_partial): Rename.
[empserver] / src / lib / common / xundump.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  xundump.c: Load back xdump output
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2005
32  *     Markus Armbruster, 2005
33  */
34
35 /* FIXME normalize terminology: table/rows/columns or file/records/fields */
36
37 #include <config.h>
38
39 #include <stdio.h>
40 #include <stdlib.h>
41
42 #include <ctype.h>
43 #include <string.h>
44 #include <stdarg.h>
45 #include <time.h>
46
47 #include "file.h"
48 #include "match.h"
49 #include "nsc.h"
50 #include "optlist.h"
51 #include "prototypes.h"
52
53 static char *fname;
54 static int lineno;
55 static int human;
56 static int ellipsis, is_partial;
57 static int cur_type, cur_id;
58 static void *cur_obj;
59 static int nflds;
60 static struct castr **fldca;
61 static int *fldidx;
62 static int *caflds;
63
64 static int gripe(char *, ...) ATTRIBUTE((format (printf, 1, 2)));
65 static int deffld(int, char *, int);
66 static int defellipsis(int fldno);
67 static int chkflds(void);
68 static int setnum(int, double);
69 static int setstr(int, char *);
70 static int xunsymbol1(char *, struct symbol *, struct castr *, int);
71 static int setsym(int, char *);
72 static int mtsymset(int, long *);
73 static int add2symset(int, long *, char *);
74 static struct symbol *get_symtab(struct castr *);
75 static int xundump1(FILE *, int, struct castr *);
76 static int xundump2(FILE *, int, struct castr *);
77
78 static int
79 gripe(char *fmt, ...)
80 {
81     va_list ap;
82
83     fprintf(stderr, "%s:%d: ", fname, lineno);
84     va_start(ap, fmt);
85     vfprintf(stderr, fmt, ap);
86     va_end(ap);
87     putc('\n', stderr);
88
89     return -1;
90 }
91
92 static int
93 skipfs(FILE *fp)
94 {
95     int ch;
96
97     do {
98         ch = getc(fp);
99     } while (ch == ' ' || ch == '\t');
100
101     if (ch == '#') {
102         do {
103             ch = getc(fp);
104         } while (ch != EOF && ch != '\n');
105     }
106
107     return ch;
108 }
109
110 static int
111 getid(FILE *fp, char *buf)
112 {
113     int n;
114     if (fscanf(fp, "%1023[^#() \t\n]%n", buf, &n) != 1 || !isalpha(buf[0]))
115         return -1;
116     return n;
117 }
118
119 static char *
120 xuesc(char *buf)
121 {
122     char *src, *dst;
123     int octal_chr, n;
124
125     dst = buf;
126     src = buf;
127     while (*src) {
128         if (*src == '\\') {
129             if (sscanf(++src, "%3o%n", &octal_chr, &n) != 1 || n != 3)
130                 return NULL;
131             *dst++ = (char)octal_chr;
132             src += 3;
133         } else
134             *dst++ = *src++;
135     }
136     *dst = '\0';
137     return buf;
138 }
139
140 static int
141 xufldname(FILE *fp, int i)
142 {
143     int ch, idx;
144     char buf[1024];
145
146     ch = skipfs(fp);
147     switch (ch) {
148     case EOF:
149         return gripe("Unexpected EOF");
150     case '\n':
151         if (chkflds() < 0)
152             return -1;
153         lineno++;
154         return 0;
155     case '.':
156         if (getc(fp) != '.' || getc(fp) != '.')
157             return gripe("Junk in header field %d", i + 1);
158         if (i == 0)
159             return gripe("... not allowed in field 1");
160         if (defellipsis(i) < 0)
161             return -1;
162         ch = skipfs(fp);
163         if (ch != EOF && ch != '\n')
164             return gripe("Junk after ...");
165         ungetc(ch, fp);
166         return 1;
167     default:
168         ungetc(ch, fp);
169         if (getid(fp, buf) < 0)
170             return gripe("Junk in header field %d", i + 1);
171         ch = getc(fp);
172         if (ch != '(') {
173             ungetc(ch, fp);
174             return deffld(i, buf, -1);
175         }
176         ch = getc(fp);
177         ungetc(ch, fp);
178         if (isdigit(ch) || ch == '-' || ch == '+') {
179             if (fscanf(fp, "%d", &idx) != 1)
180                 return gripe("Malformed number in index of header field %d",
181                              i + 1);
182             if (idx < 0)
183                 return gripe("Index must not be negative in header field %d",
184                              i + 1);
185         } else {
186             if (getid(fp, buf) < 0)
187                 return gripe("Malformed index in header field %d", i + 1);
188             return gripe("Symbolic index in header field %d not yet implemented",
189                          i + 1);
190         }
191         ch = getc(fp);
192         if (ch != ')')
193             return gripe("Malformed index in header field %d", i + 1);
194         return deffld(i, buf, idx);
195     }
196 }
197
198 static int
199 xufld(FILE *fp, int i)
200 {
201     int ch;
202     char buf[1024];
203     double dbl;
204     long set;
205
206     ch = skipfs(fp);
207     switch (ch) {
208     case EOF:
209         return gripe("Unexpected EOF");
210     case '\n':
211         if (i != nflds)
212             return gripe("Field %s missing", fldca[i]->ca_name);
213         lineno++;
214         return 0;
215     case '+': case '-': case '.':
216     case '0': case '1': case '2': case '3': case '4':
217     case '5': case '6': case '7': case '8': case '9':
218         ungetc(ch, fp);
219         if (fscanf(fp, "%lg", &dbl) != 1)
220             return gripe("Malformed number in field %d", i + 1);
221         return setnum(i, dbl);
222     case '"':
223         ch = getc(fp);
224         if (ch == '"')
225             buf[0] = 0;
226         else {
227             ungetc(ch, fp);
228             if (fscanf(fp, "%1023[^\"\n]", buf) != 1 || getc(fp) != '"')
229                 return gripe("Malformed string in field %d", i + 1);
230             if (!xuesc(buf))
231                 return gripe("Invalid escape sequence in field %d",
232                              i + 1);
233         }
234         return setstr(i, buf);
235     case '(':
236         if (mtsymset(i, &set) < 0)
237             return -1;
238         for (;;) {
239             ch = skipfs(fp);
240             if (ch == EOF || ch == '\n')
241                 return gripe("Unmatched '(' in field %d", i + 1);
242             if (ch == ')')
243                 break;
244             ungetc(ch, fp);
245             if (getid(fp, buf) < 0)
246                 return gripe("Junk in field %d", i + 1);
247             if (add2symset(i, &set, buf) < 0)
248                 return -1;
249         }
250         return setnum(i, set);
251     default:
252         ungetc(ch, fp);
253         if (getid(fp, buf) < 0)
254             return gripe("Junk in field %d", i + 1);
255         if (!strcmp(buf, "nil"))
256             return setstr(i, NULL);
257         else
258             return setsym(i, buf);
259     }
260 }
261
262 static int
263 xuflds(FILE *fp, int (*parse)(FILE *, int))
264 {
265     int i, ch, res;
266
267     for (i = 0; ; i++) {
268         res = parse(fp, i);
269         if (res < 0)
270             return -1;
271         if (res == 0)
272             return i;
273         ch = getc(fp);
274         if (ch == '\n')
275             ungetc(ch, fp);
276         else if (ch != ' ' && ch != '\t')
277             return gripe("Bad field separator after field %d", i + 1);
278     }
279 }
280
281 static int
282 deffld(int fldno, char *name, int idx)
283 {
284     struct castr *ca = ef_cadef(cur_type);
285     int res;
286
287     res = stmtch(name, ca, offsetof(struct castr, ca_name),
288                      sizeof(struct castr));
289     if (res < 0)
290         return gripe("Header %s of field %d is %s", name, fldno + 1,
291                      res == M_NOTUNIQUE ? "ambiguous" : "unknown");
292     if (ca[res].ca_type != NSC_STRINGY && ca[res].ca_len != 0) {
293         if (idx < 0)
294             return gripe("Header %s requires an index in field %d",
295                          ca[res].ca_name, fldno + 1);
296         if (idx >= ca[res].ca_len)
297             return gripe("Header %s(%d) index out of bounds in field %d",
298                          ca[res].ca_name, idx, fldno + 1);
299         if (idx < caflds[res])
300             return gripe("Duplicate header %s(%d) in field %d",
301                          ca[res].ca_name, idx, fldno + 1);
302         if (idx > caflds[res])
303             return gripe("Expected header %s(%d) in field %d",
304                          ca[res].ca_name, caflds[res], fldno + 1);
305     } else {
306         if (idx >= 0)
307             return gripe("Header %s doesn't take an index in field %d",
308                          ca[res].ca_name, fldno + 1);
309         idx = 0;
310         if (caflds[res])
311             return gripe("Duplicate header %s in field %d",
312                          ca[res].ca_name, fldno + 1);
313     }
314     fldca[fldno] = &ca[res];
315     fldidx[fldno] = idx;
316     caflds[res]++;
317     return 1;
318 }
319
320 static int
321 defellipsis(int fldno)
322 {
323     struct castr *ca = ef_cadef(cur_type);
324
325     if (ca[0].ca_table != cur_type)
326         return gripe("Table %s doesn't support ...", ef_nameof(cur_type));
327     ellipsis = fldno;
328     is_partial = 1;
329     return 0;
330 }
331
332 static int
333 chkflds(void)
334 {
335     struct castr *ca = ef_cadef(cur_type);
336     int i, len, res = 0;
337
338     if (is_partial) {
339         /* Require index field */
340         if (!caflds[0])
341             return gripe("Header field %s required with ...", ca[0].ca_name);
342         /* Want the index field again in continued table: */
343         caflds[0] = 0;
344         return 0;
345     }
346
347     for (i = 0; ca[i].ca_name; i++) {
348         if (ca[i].ca_flags & NSC_EXTRA)
349             continue;
350         len = ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0;
351         if (!len && !caflds[i])
352             res = gripe("Header field %s missing", ca[i].ca_name);
353         else if (len && caflds[i] == len - 1)
354             res = gripe("Header field %s(%d) missing",
355                         ca[i].ca_name, len - 1);
356         else if (len && caflds[i] < len - 1)
357             res = gripe("Header fields %s(%d) ... %s(%d) missing",
358                         ca[i].ca_name, caflds[i], ca[i].ca_name, len - 1);
359     }
360
361     return res;
362 }
363
364 static struct castr *
365 getfld(int fldno, int *idx)
366 {
367     if (fldno >= nflds) {
368         gripe("Too many fields, expected only %d", nflds);
369         return NULL;
370     }
371     if (CANT_HAPPEN(fldno < 0))
372         return NULL;
373     if (idx)
374         *idx = fldidx[fldno];
375     return fldca[fldno];
376 }
377
378 static void *
379 getobj(struct castr *ca, int altid)
380 {
381     struct empfile *ep = &empfile[cur_type];
382     int need_sentinel = !EF_IS_GAME_STATE(cur_type);
383
384     if (!cur_obj) {
385         if (ca->ca_table == cur_type)
386             cur_id = altid;
387         if (cur_id >= ep->fids) {
388             /* TODO grow cache (and posssibly file) unless EFF_STATIC */
389             if (cur_id < ep->csize - !!need_sentinel)
390                 ep->cids = ep->fids = cur_id + 1;
391             /* else: ef_ptr() will fail */
392         }
393         cur_obj = ef_ptr(cur_type, cur_id);
394         if (!cur_obj)
395             gripe("Can't put ID %d into table %s, it holds only 0..%d.",
396                   cur_id, ep->name, ep->fids - 1);
397     }
398
399     return cur_obj;
400 }
401
402 static int
403 setnum(int fldno, double dbl)
404 {
405     struct castr *ca;
406     int idx;
407     char *memb_ptr;
408     double old;
409
410     ca = getfld(fldno, &idx);
411     if (!ca)
412         return -1;
413
414     memb_ptr = getobj(ca, (int)dbl);
415     if (!memb_ptr)
416         return -1;
417     memb_ptr += ca->ca_off;
418
419     switch (ca->ca_type) {
420     case NSC_CHAR:
421     case NSC_TYPEID:
422         old = ((signed char *)memb_ptr)[idx];
423         ((signed char *)memb_ptr)[idx] = (signed char)dbl;
424         break;
425     case NSC_UCHAR:
426         old = ((unsigned char *)memb_ptr)[idx];
427         ((unsigned char *)memb_ptr)[idx] = (unsigned char)dbl;
428         break;
429     case NSC_SHORT:
430         old = ((short *)memb_ptr)[idx];
431         ((short *)memb_ptr)[idx] = (short)dbl;
432         break;
433     case NSC_USHORT:
434         old = ((unsigned short *)memb_ptr)[idx];
435         ((unsigned short *)memb_ptr)[idx] = (unsigned short)dbl;
436         break;
437     case NSC_INT:
438         old = ((int *)memb_ptr)[idx];
439         ((int *)memb_ptr)[idx] = (int)dbl;
440         break;
441     case NSC_LONG:
442         old = ((long *)memb_ptr)[idx];
443         ((long *)memb_ptr)[idx] = (long)dbl;
444         break;
445     case NSC_XCOORD:
446         old = ((coord *)memb_ptr)[idx];
447         /* FIXME use variant of xrel() that takes orig instead of nation */
448         if (old >= WORLD_X / 2)
449             old -= WORLD_X;
450         ((coord *)memb_ptr)[idx] = XNORM((coord)dbl);
451         break;
452     case NSC_YCOORD:
453         old = ((coord *)memb_ptr)[idx];
454         /* FIXME use variant of yrel() that takes orig instead of nation */
455         if (old >= WORLD_Y / 2)
456             old -= WORLD_Y;
457         ((coord *)memb_ptr)[idx] = YNORM((coord)dbl);
458         break;
459     case NSC_FLOAT:
460         old = ((float *)memb_ptr)[idx];
461         ((float *)memb_ptr)[idx] = (float)dbl;
462         break;
463     case NSC_DOUBLE:
464         old = ((double *)memb_ptr)[idx];
465         ((double *)memb_ptr)[idx] = dbl;
466         break;
467     case NSC_TIME:
468         old = ((time_t *)memb_ptr)[idx];
469         ((time_t *)memb_ptr)[idx] = (time_t)dbl;
470         break;
471     default:
472         return gripe("Field %d doesn't take numbers", fldno + 1);
473     }
474
475     if ((ca->ca_flags & NSC_CONST) && old != dbl)
476         return gripe("Value for field %d must be %g", fldno + 1, old);
477
478     return 1;
479 }
480
481 static int
482 setstr(int fldno, char *str)
483 {
484     struct castr *ca;
485     int idx;
486     size_t len;
487     char *memb_ptr, *old;
488
489     ca = getfld(fldno, &idx);
490     if (!ca)
491         return -1;
492
493     memb_ptr = getobj(ca, cur_id);
494     if (!memb_ptr)
495         return -1;
496     memb_ptr += ca->ca_off;
497
498     switch (ca->ca_type) {
499     case NSC_STRING:
500         old = ((char **)memb_ptr)[idx];
501         if (!(ca->ca_flags & NSC_CONST))
502             ((char **)memb_ptr)[idx] = str ? strdup(str) : NULL;
503         len = 65535;            /* really SIZE_MAX, but it's C99 */
504         break;
505     case NSC_STRINGY:
506         if (CANT_HAPPEN(idx))
507             return -1;
508         if (!str)
509             return gripe("Field doesn't take nil");
510         len = ca->ca_len;
511         if (strlen(str) > len)
512             return gripe("Field %d takes at most %d characters",
513                          fldno + 1, len);
514         old = memb_ptr;
515         if (!(ca->ca_flags & NSC_CONST))
516             strncpy(memb_ptr, str, len);
517         break;
518     default:
519         return gripe("Field %d doesn't take strings", fldno + 1);
520     }
521
522     if (ca->ca_flags & NSC_CONST) {
523         if (old && (!str || strncmp(old, str, len)))
524             return gripe("Value for field %d must be \"%.*s\"",
525                          fldno + 1, len, old);
526         if (!old && str)
527             return gripe("Value for field %d must be nil", fldno + 1);
528     }
529
530     return 1;
531 }
532
533 static int
534 xunsymbol1(char *id, struct symbol *symtab, struct castr *ca, int n)
535 {
536     int i = stmtch(id, symtab, offsetof(struct symbol, name),
537                    sizeof(struct symbol));
538     if (i < 0)
539         return gripe("%s %s symbol `%s' in field %d",
540                      i == M_NOTUNIQUE ? "Ambiguous" : "Unknown",
541                      ca->ca_name, id, n);
542     return i;
543 }
544
545 static int
546 setsym(int fldno, char *sym)
547 {
548     struct castr *ca;
549     struct symbol *symtab;
550     int i;
551
552     ca = getfld(fldno, NULL);
553     if (!ca)
554         return -1;
555
556     symtab = get_symtab(ca);
557     if (!symtab || (ca->ca_flags & NSC_BITS))
558         return gripe("Field %d doesn't take symbols", fldno + 1);
559
560     i = xunsymbol1(sym, symtab, ca, fldno);
561     if (i < 0)
562         return -1;
563     return setnum(fldno, symtab[i].value);
564 }
565
566 static int
567 mtsymset(int fldno, long *set)
568 {
569     struct castr *ca;
570     struct symbol *symtab;
571
572     ca = getfld(fldno, NULL);
573     if (!ca)
574         return -1;
575
576     symtab = get_symtab(ca);
577     if (!symtab || !(ca->ca_flags & NSC_BITS)) {
578         return gripe("Field %d doesn't take symbol sets", fldno + 1);
579     }
580     *set = 0;
581     return 0;
582 }
583
584 static int
585 add2symset(int fldno, long *set, char *sym)
586 {
587     struct castr *ca;
588     struct symbol *symtab;
589     int i;
590
591     ca = getfld(fldno, NULL);
592     if (!ca)
593         return -1;
594
595     symtab = get_symtab(ca);
596     i = xunsymbol1(sym, symtab, ca, fldno);
597     if (i < 0)
598         return -1;
599     *set |= symtab[i].value;
600     return 0;
601 }
602
603 static struct symbol *
604 get_symtab(struct castr *ca)
605 {
606     int symtype = ca->ca_table;
607     struct symbol *symtab;
608
609     if (symtype == EF_BAD || ef_cadef(symtype) != symbol_ca)
610         return NULL;
611
612     symtab = ef_ptr(symtype, 0);
613     CANT_HAPPEN(!symtab);
614     return symtab;
615 }
616
617 static int
618 xuheader(FILE *fp, int expected_table)
619 {
620     char name[64];
621     int res, ch;
622     int type;
623
624     while ((ch = skipfs(fp)) == '\n')
625         lineno++;
626     if (ch == EOF && expected_table == EF_BAD)
627         return -2;
628     ungetc(ch, fp);
629
630     human = ch == 'c';
631     res = -1;
632     if ((human
633          ? fscanf(fp, "config%*[ \t]%63[^ \t#\n]%n", name, &res) != 1
634          : fscanf(fp, "XDUMP%*[ \t]%63[^ \t#\n]%*[ \t]%*[^ \t#\n]%n",
635                   name, &res) != 1) || res < 0)
636         return gripe("Expected xdump header");
637
638     type = ef_byname(name);
639     if (type < 0)
640         return gripe("Unknown table `%s'", name);
641     if (expected_table != EF_BAD && expected_table != type)
642         return gripe("Expected table `%s', not `%s'",
643                      ef_nameof(expected_table), name);
644
645     if (!ef_cadef(type) || !(ef_flags(type) & EFF_MEM)) {
646         CANT_HAPPEN(expected_table != EF_BAD);
647         return gripe("Undumping of table `%s' not implemented", name);
648     }
649
650     if (skipfs(fp) != '\n')
651         return gripe("Junk after xdump header");
652     lineno++;
653
654     return type;
655 }
656
657 static int
658 xuheader1(FILE *fp, int type, struct castr ca[])
659 {
660     struct castr **fca;
661     int *fidx;
662     int ch, i, j, n;
663
664     if (human) {
665         while ((ch = skipfs(fp)) == '\n')
666             lineno++;
667         ungetc(ch, fp);
668         ellipsis = 0;
669         nflds = xuflds(fp, xufldname);
670         if (nflds < 0)
671             return -1;
672         nflds -= ellipsis != 0;
673     } else {
674         fca = fldca;
675         fidx = fldidx;
676
677         for (i = 0; ca[i].ca_name; i++) {
678             if ((ca[i].ca_flags & NSC_EXTRA))
679                 continue;
680             n = ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0;
681             j = 0;
682             do {
683                 *fca++ = &ca[i];
684                 *fidx++ = j;
685             } while (++j < n);
686         }
687
688         nflds = fidx - fldidx;
689     }
690
691     return 0;
692 }
693
694 static int
695 xutrailer(FILE *fp, int type, int row)
696 {
697     int rows, res;
698
699     res = -1;
700     if (human) {
701         if (fscanf(fp, "config%n",  &res) != 0 || res < 0)
702             return gripe("Malformed table footer");
703     } else {
704         if (fscanf(fp, "%d", &rows) != 1)
705             return gripe("Malformed table footer");
706         if (row != rows)
707             return gripe("Read %d rows, which doesn't match footer "
708                          "%d rows", row, rows);
709     }
710     if (skipfs(fp) != '\n')
711         return gripe("Junk after table footer");
712     lineno++;
713
714     return 0;
715 }
716
717 int
718 xundump(FILE *fp, char *file, int expected_table)
719 {
720     struct castr *ca;
721     int type, nca, nf, i, ch;
722
723     if (fname != file) {
724         fname = file;
725         lineno = 1;
726     }
727
728     if ((type = xuheader(fp, expected_table)) < 0)
729         return type;
730
731     ca = ef_cadef(type);
732     if (CANT_HAPPEN(!ca))
733         return -1;
734
735     nca = nf = 0;
736     for (i = 0; ca[i].ca_name; i++) {
737         nca++;
738         if (!(ca[i].ca_flags & NSC_EXTRA))
739             nf += MAX(1, ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0);
740     }
741     fldca = calloc(nf, sizeof(*fldca));
742     fldidx = calloc(nf, sizeof(*fldidx));
743     caflds = calloc(nca, sizeof(*caflds));
744     cur_type = type;
745
746     if (xundump2(fp, type, ca) < 0)
747         type = EF_BAD;
748
749     free(caflds);
750     free(fldidx);
751     free(fldca);
752
753     /* Skip empty lines so that callers can easily check for EOF */
754     while ((ch = skipfs(fp)) == '\n')
755         lineno++;
756     ungetc(ch, fp);
757
758     return type;
759 }
760
761 static int
762 xundump2(FILE *fp, int type, struct castr *ca)
763 {
764     is_partial = 0;
765
766     for (;;) {
767         if (xuheader1(fp, type, ca) < 0)
768             return -1;
769         if (xundump1(fp, type, ca) < 0)
770             return -1;
771         if (!ellipsis)
772             return 0;
773         if (xuheader(fp, type) < 0)
774             return -1;
775     }
776 }
777
778 static int
779 xundump1(FILE *fp, int type, struct castr *ca)
780 {
781     struct empfile *ep = &empfile[type];
782     int need_sentinel = !EF_IS_GAME_STATE(type);
783     int row, n, ch;
784
785     n = 0;
786     for (row = 0;; ++row) {
787         while ((ch = skipfs(fp)) == '\n')
788             lineno++;
789         if (ch == '/')
790             break;
791         ungetc(ch, fp);
792         cur_obj = NULL;
793         cur_id = row;
794         if (xuflds(fp, xufld) < 0)
795             return -1;
796         n = MAX(n, cur_id + 1);
797     }
798
799     if (CANT_HAPPEN(n > ep->fids))
800         n = ep->fids;
801     if (n < ep->fids) {
802         if (EF_IS_GAME_STATE(type) && n != ep->csize)
803             /* TODO truncate file */
804             gripe("Warning: should resize table %s from %d to %d, not implemented",
805                   ef_nameof(type), ep->csize, n);
806         else if (type >= EF_SHIP_CHR && type <= EF_NUKE_CHR)
807             ;                   /* shrinking these is okay */
808         else
809             return gripe("Table %s requires %d rows, got %d",
810                          ef_nameof(type), ep->fids, n);
811     }
812
813     if (need_sentinel) {
814         if (CANT_HAPPEN(n >= ep->csize))
815             return gripe("No space for sentinel");
816         memset(ep->cache + ep->size * n, 0, ep->size);
817     }
818
819     if (xutrailer(fp, type, row) < 0)
820         return -1;
821
822     return 0;
823 }