X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fpor-file-reader.c;h=ce1f562f4f9389f323acacdeff5f606e289f68a7;hb=c90c44ab307b3ba49f606d2bae80e6aff1e228d7;hp=4636d5fb806cf82b81124f0515c96a9f89feb965;hpb=9f087e7aa4cdff1d5d46d5e188c0017a9d2d0029;p=pspp diff --git a/src/data/por-file-reader.c b/src/data/por-file-reader.c index 4636d5fb80..ce1f562f4f 100644 --- a/src/data/por-file-reader.c +++ b/src/data/por-file-reader.c @@ -46,6 +46,7 @@ #include "gettext.h" #define _(msgid) gettext (msgid) +#define N_(msgid) (msgid) /* portable_to_local[PORTABLE] translates the given portable character into the local character set. */ @@ -65,6 +66,7 @@ struct pfm_reader jmp_buf bail_out; /* longjmp() target for error handling. */ struct file_handle *fh; /* File handle. */ + struct fh_lock *lock; /* Read lock for file. */ FILE *file; /* File stream. */ int line_length; /* Number of characters so far on this line. */ char cc; /* Current character. */ @@ -157,8 +159,8 @@ close_reader (struct pfm_reader *r) r->file = NULL; } - if (r->fh != NULL) - fh_close (r->fh, "portable file", "rs"); + fh_unlock (r->lock); + fh_unref (r->fh); ok = r->ok; pool_destroy (r->pool); @@ -241,15 +243,14 @@ pfm_open_reader (struct file_handle *fh, struct dictionary **dict, struct pfm_reader *volatile r = NULL; *dict = dict_create (); - if (!fh_open (fh, FH_REF_FILE, "portable file", "rs")) - goto error; /* Create and initialize reader. */ pool = pool_create (); r = pool_alloc (pool, sizeof *r); r->pool = pool; - r->fh = fh; - r->file = fn_open (fh_get_file_name (r->fh), "rb"); + r->fh = fh_ref (fh); + r->lock = NULL; + r->file = NULL; r->line_length = 0; r->weight_index = -1; r->trans = NULL; @@ -257,11 +258,18 @@ pfm_open_reader (struct file_handle *fh, struct dictionary **dict, r->widths = NULL; r->value_cnt = 0; r->ok = true; - if (setjmp (r->bail_out)) goto error; - /* Check that file open succeeded. */ + /* Lock file. */ + /* TRANSLATORS: this fragment will be interpolated into + messages in fh_lock() that identify types of files. */ + r->lock = fh_lock (fh, FH_REF_FILE, N_("portable file"), FH_ACC_READ, false); + if (r->lock == NULL) + goto error; + + /* Open file. */ + r->file = fn_open (fh_get_file_name (r->fh), "rb"); if (r->file == NULL) { msg (ME, _("An error occurred while opening \"%s\" for reading " @@ -515,9 +523,9 @@ read_version_data (struct pfm_reader *r, struct pfm_read_info *info) /* Validate file. */ if (strlen (date) != 8) - error (r, _("Bad date string length %d."), (int) strlen (date)); + error (r, _("Bad date string length %zu."), strlen (date)); if (strlen (time) != 6) - error (r, _("Bad time string length %d."), (int) strlen (time)); + error (r, _("Bad time string length %zu."), strlen (time)); /* Save file info. */ if (info != NULL)