1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/* This file is part of GDBM, the GNU data base manager.
Copyright (C) 2018-2024 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
#include "gdbmtool.h"
struct instream_file
{
struct instream base; /* Base structure */
FILE *fp; /* Opened file */
dev_t dev; /* Device number */
ino_t ino; /* Inode number */
};
static ssize_t
instream_file_read (instream_t istr, char *buf, size_t size)
{
struct instream_file *file = (struct instream_file *)istr;
return fread (buf, 1, size, file->fp);
}
static void
instream_file_close (instream_t istr)
{
struct instream_file *file = (struct instream_file *)istr;
fclose (file->fp);
free (file->base.in_name);
free (file);
}
static int
instream_file_eq (instream_t a, instream_t b)
{
struct instream_file *file_a = (struct instream_file *)a;
struct instream_file *file_b = (struct instream_file *)b;
return file_a->dev == file_b->dev && file_a->ino == file_b->ino;
}
instream_t
instream_file_create (char const *name)
{
struct instream_file *istr;
struct stat st;
FILE *fp;
if (stat (name, &st))
{
terror (_("cannot open `%s': %s"), name, strerror (errno));
return NULL;
}
else if (!S_ISREG (st.st_mode))
{
terror (_("%s is not a regular file"), name);
return NULL;
}
fp = fopen (name, "r");
if (!fp)
{
terror (_("cannot open %s for reading: %s"), name,
strerror (errno));
return NULL;
}
istr = emalloc (sizeof *istr);
istr->base.in_name = estrdup (name);
istr->base.in_inter = 0;
istr->base.in_read = instream_file_read;
istr->base.in_close = instream_file_close;
istr->base.in_eq = instream_file_eq;
istr->base.in_history_size = NULL;
istr->base.in_history_get = NULL;
istr->fp = fp;
istr->dev = st.st_dev;
istr->ino = st.st_ino;
return (instream_t) istr;
}
|