X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/halibut/blobdiff_plain/3e2dd889175865f670a2309f757eee3d6a7f4723..0dfaac7284d7f1a54e957bba4a881d93328c1630:/input.c diff --git a/input.c b/input.c index 66f4afa..4978bb9 100644 --- a/input.c +++ b/input.c @@ -119,7 +119,8 @@ static int get(input *in, filepos *pos, rdstringc *rsc) { int c = getc(in->currfp); if (c == EOF) { - fclose(in->currfp); + if (in->wantclose) + fclose(in->currfp); in->currfp = NULL; return EOF; } @@ -835,8 +836,10 @@ static void read_file(paragraph ***ret, input *in, indexdata *idx, needkw = 4; break; case c__comment: - if (isbrace(in)) + if (isbrace(in)) { + needkw = -1; break; /* `\#{': isn't a comment para */ + } do { dtor(t), t = get_token(in); } while (t.type != tok_eop && t.type != tok_eof); @@ -1584,6 +1587,8 @@ struct { { "%!PS-AdobeFont-", 15, &read_pfa_file }, { "\x80\x01", 2, &read_pfb_file }, { "StartFontMetrics", 16, &read_afm_file }, + { "\x00\x01\x00\x00", 4, &read_sfnt_file }, + { "true", 4, &read_sfnt_file }, }; paragraph *read_input(input *in, indexdata *idx) { @@ -1597,23 +1602,38 @@ paragraph *read_input(input *in, indexdata *idx) { macros = newtree234(macrocmp); while (in->currindex < in->nfiles) { - in->currfp = fopen(in->filenames[in->currindex], "r"); - if (in->currfp) { - setpos(in, in->filenames[in->currindex]); - in->charset = in->defcharset; - in->csstate = charset_init_state; - in->wcpos = in->nwc = 0; - in->pushback_chars = NULL; + setpos(in, in->filenames[in->currindex]); + in->charset = in->defcharset; + in->csstate = charset_init_state; + in->wcpos = in->nwc = 0; + in->pushback_chars = NULL; + + if (!in->filenames[in->currindex]) { + in->currfp = stdin; + in->wantclose = FALSE; /* don't fclose stdin */ + /* + * When reading standard input, we always expect to see + * an actual Halibut file and not any of the unusual + * input types like fonts. + */ reader = NULL; - len = fread(mag, 1, sizeof(mag), in->currfp); - for (i = 0; i < lenof(magics); i++) { - if (len >= magics[i].nmagic && - memcmp(mag, magics[i].magic, magics[i].nmagic) == 0) { - reader = magics[i].reader; - break; + } else { + in->currfp = fopen(in->filenames[in->currindex], "r"); + if (in->currfp) { + in->wantclose = TRUE; + reader = NULL; + len = fread(mag, 1, sizeof(mag), in->currfp); + for (i = 0; i < lenof(magics); i++) { + if (len >= magics[i].nmagic && + memcmp(mag, magics[i].magic, magics[i].nmagic) == 0) { + reader = magics[i].reader; + break; + } } + rewind(in->currfp); } - rewind(in->currfp); + } + if (in->currfp) { if (reader == NULL) read_file(&hptr, in, idx, macros); else