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
|
/*
* fhist - file history and comparison tools
* Copyright (C) 2000, 2002, 2008 Peter Miller
*
* This program 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 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#ifndef COMMON_INPUT_H
#define COMMON_INPUT_H
#include <main.h>
typedef struct input_ty input_ty;
struct input_ty
{
struct input_vtbl_ty *vptr;
/* private: */
unsigned char *pushback_buf;
int pushback_len;
int pushback_max;
};
/*
* This structure is *not* to be accessed by clients of this interface.
* It is only present to permit optimizations.
*/
typedef struct input_vtbl_ty input_vtbl_ty;
struct input_vtbl_ty
{
int size;
void (*destruct)(input_ty *);
long (*read)(input_ty *, void *, long);
int (*get)(input_ty *);
long (*ftell)(input_ty *);
const char *(*name)(input_ty *);
long (*length)(input_ty *);
};
long input_read(input_ty *, void *, long);
int input_getc(input_ty *);
void input_ungetc(input_ty *, int);
const char *input_name(input_ty *);
void input_delete(input_ty *);
long input_length(input_ty *);
long input_ftell(input_ty *);
void input_format_error(input_ty *);
char *input_readline(input_ty *, long *retlen, int keep, int *bin);
void input_skip_lines(input_ty *, int);
struct output_ty; /* existence */
void input_to_output(input_ty *, struct output_ty *);
struct string_ty *input_one_line(input_ty *);
#ifdef __GNUC__
extern __inline long input_read(input_ty *fp, void *data, long len)
{ if (len <= 0) return 0; if (fp->pushback_len > 0) {
fp->pushback_len--; *(char *)data = fp->pushback_buf[
fp->pushback_len ]; return 1; } return fp->vptr->read(fp, data, len); }
extern __inline int input_getc(input_ty *fp) { if (fp->pushback_len >
0) { fp->pushback_len--; return fp->pushback_buf[ fp->pushback_len
]; } return fp->vptr->get(fp); }
extern __inline const char *input_name(input_ty *fp)
{ return fp->vptr->name(fp); }
extern __inline long input_length(input_ty *fp)
{ return fp->vptr->length(fp); }
extern __inline long input_ftell(input_ty *fp)
{ return fp->vptr->ftell(fp) - fp->pushback_len; }
#else /* !__GNUC__ */
#ifndef DEBUG
#define input_name(fp) ((fp)->vptr->name(fp))
#define input_length(fp) ((fp)->vptr->length(fp))
#define input_ftell(fp) ((fp)->vptr->ftell(fp) - (fp)->pushback_len)
#endif /* DEBUG */
#endif /* !__GNUC__ */
#endif /* COMMON_INPUT_H */
|