1996-08-26 18:22:31 +00:00
|
|
|
/* input.h -- Structures and unions used for reading input. */
|
|
|
|
/* Copyright (C) 1993 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of GNU Bash, the Bourne Again SHell.
|
|
|
|
|
|
|
|
Bash 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 2, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
Bash 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 Bash; see the file COPYING. If not, write to the Free Software
|
2000-03-17 21:46:59 +00:00
|
|
|
Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
|
1996-08-26 18:22:31 +00:00
|
|
|
|
1996-12-23 17:02:34 +00:00
|
|
|
#if !defined (_INPUT_H_)
|
|
|
|
#define _INPUT_H_
|
1996-08-26 18:22:31 +00:00
|
|
|
|
|
|
|
#include "stdc.h"
|
|
|
|
|
|
|
|
/* Function pointers can be declared as (Function *)foo. */
|
1996-12-23 17:02:34 +00:00
|
|
|
#if !defined (_FUNCTION_DEF)
|
|
|
|
# define _FUNCTION_DEF
|
1996-08-26 18:22:31 +00:00
|
|
|
typedef int Function ();
|
|
|
|
typedef void VFunction ();
|
2001-11-13 17:56:06 +00:00
|
|
|
typedef char *CPFunction (); /* no longer used */
|
|
|
|
typedef char **CPPFunction (); /* no longer used */
|
1996-08-26 18:22:31 +00:00
|
|
|
#endif /* _FUNCTION_DEF */
|
|
|
|
|
2001-11-13 17:56:06 +00:00
|
|
|
typedef int sh_cget_func_t __P((void)); /* sh_ivoidfunc_t */
|
|
|
|
typedef int sh_cunget_func_t __P((int)); /* sh_intfunc_t */
|
|
|
|
|
1996-12-23 17:02:34 +00:00
|
|
|
enum stream_type {st_none, st_stdin, st_stream, st_string, st_bstream};
|
1996-08-26 18:22:31 +00:00
|
|
|
|
|
|
|
#if defined (BUFFERED_INPUT)
|
|
|
|
|
|
|
|
/* Possible values for b_flag. */
|
1998-04-17 19:52:44 +00:00
|
|
|
#undef B_EOF
|
|
|
|
#undef B_ERROR /* There are some systems with this define */
|
|
|
|
#undef B_UNBUFF
|
|
|
|
|
2001-04-06 19:14:31 +00:00
|
|
|
#define B_EOF 0x01
|
|
|
|
#define B_ERROR 0x02
|
|
|
|
#define B_UNBUFF 0x04
|
|
|
|
#define B_WASBASHINPUT 0x08
|
1996-08-26 18:22:31 +00:00
|
|
|
|
|
|
|
/* A buffered stream. Like a FILE *, but with our own buffering and
|
|
|
|
synchronization. Look in input.c for the implementation. */
|
|
|
|
typedef struct BSTREAM
|
|
|
|
{
|
2001-11-13 17:56:06 +00:00
|
|
|
int b_fd;
|
1996-08-26 18:22:31 +00:00
|
|
|
char *b_buffer; /* The buffer that holds characters read. */
|
1998-04-17 19:52:44 +00:00
|
|
|
size_t b_size; /* How big the buffer is. */
|
2001-11-13 17:56:06 +00:00
|
|
|
size_t b_used; /* How much of the buffer we're using, */
|
|
|
|
int b_flag; /* Flag values. */
|
|
|
|
size_t b_inputp; /* The input pointer, index into b_buffer. */
|
1996-08-26 18:22:31 +00:00
|
|
|
} BUFFERED_STREAM;
|
|
|
|
|
1998-04-17 19:52:44 +00:00
|
|
|
#if 0
|
1996-08-26 18:22:31 +00:00
|
|
|
extern BUFFERED_STREAM **buffers;
|
1998-04-17 19:52:44 +00:00
|
|
|
#endif
|
1996-08-26 18:22:31 +00:00
|
|
|
|
|
|
|
extern int default_buffered_input;
|
|
|
|
|
|
|
|
#endif /* BUFFERED_INPUT */
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
FILE *file;
|
|
|
|
char *string;
|
|
|
|
#if defined (BUFFERED_INPUT)
|
|
|
|
int buffered_fd;
|
|
|
|
#endif
|
|
|
|
} INPUT_STREAM;
|
|
|
|
|
|
|
|
typedef struct {
|
1996-12-23 17:02:34 +00:00
|
|
|
enum stream_type type;
|
1996-08-26 18:22:31 +00:00
|
|
|
char *name;
|
|
|
|
INPUT_STREAM location;
|
2001-11-13 17:56:06 +00:00
|
|
|
sh_cget_func_t *getter;
|
|
|
|
sh_cunget_func_t *ungetter;
|
1996-08-26 18:22:31 +00:00
|
|
|
} BASH_INPUT;
|
|
|
|
|
|
|
|
extern BASH_INPUT bash_input;
|
|
|
|
|
2002-07-17 14:10:11 +00:00
|
|
|
/* Functions from parse.y whose use directly or indirectly depends on the
|
|
|
|
definitions in this file. */
|
1996-08-26 18:22:31 +00:00
|
|
|
extern void initialize_bash_input __P((void));
|
2001-11-13 17:56:06 +00:00
|
|
|
extern void init_yy_io __P((sh_cget_func_t *, sh_cunget_func_t *, enum stream_type, const char *, INPUT_STREAM));
|
2002-07-17 14:10:11 +00:00
|
|
|
extern char *yy_input_name __P((void));
|
1996-08-26 18:22:31 +00:00
|
|
|
extern void with_input_from_stdin __P((void));
|
2001-11-13 17:56:06 +00:00
|
|
|
extern void with_input_from_string __P((char *, const char *));
|
|
|
|
extern void with_input_from_stream __P((FILE *, const char *));
|
1996-12-23 17:02:34 +00:00
|
|
|
extern void push_stream __P((int));
|
|
|
|
extern void pop_stream __P((void));
|
|
|
|
extern int stream_on_stack __P((enum stream_type));
|
1996-08-26 18:22:31 +00:00
|
|
|
extern char *read_secondary_line __P((int));
|
|
|
|
extern int find_reserved_word __P((char *));
|
|
|
|
extern void gather_here_documents __P((void));
|
2006-10-10 14:15:34 +00:00
|
|
|
extern void execute_variable_command __P((char *, char *));
|
1996-08-26 18:22:31 +00:00
|
|
|
|
2000-03-17 21:46:59 +00:00
|
|
|
extern int *save_token_state __P((void));
|
|
|
|
extern void restore_token_state __P((int *));
|
|
|
|
|
1996-12-23 17:02:34 +00:00
|
|
|
/* Functions from input.c */
|
2001-11-13 17:56:06 +00:00
|
|
|
extern int getc_with_restart __P((FILE *));
|
|
|
|
extern int ungetc_with_restart __P((int, FILE *));
|
1996-12-23 17:02:34 +00:00
|
|
|
|
1996-08-26 18:22:31 +00:00
|
|
|
#if defined (BUFFERED_INPUT)
|
|
|
|
/* Functions from input.c. */
|
2001-04-06 19:14:31 +00:00
|
|
|
extern int fd_is_bash_input __P((int));
|
|
|
|
extern int set_bash_input_fd __P((int));
|
|
|
|
extern int save_bash_input __P((int, int));
|
1996-08-26 18:22:31 +00:00
|
|
|
extern int check_bash_input __P((int));
|
|
|
|
extern int duplicate_buffered_stream __P((int, int));
|
|
|
|
extern BUFFERED_STREAM *fd_to_buffered_stream __P((int));
|
1998-04-17 19:52:44 +00:00
|
|
|
extern BUFFERED_STREAM *set_buffered_stream __P((int, BUFFERED_STREAM *));
|
1996-08-26 18:22:31 +00:00
|
|
|
extern BUFFERED_STREAM *open_buffered_stream __P((char *));
|
|
|
|
extern void free_buffered_stream __P((BUFFERED_STREAM *));
|
|
|
|
extern int close_buffered_stream __P((BUFFERED_STREAM *));
|
|
|
|
extern int close_buffered_fd __P((int));
|
|
|
|
extern int sync_buffered_stream __P((int));
|
|
|
|
extern int buffered_getchar __P((void));
|
|
|
|
extern int buffered_ungetchar __P((int));
|
|
|
|
extern void with_input_from_buffered_stream __P((int, char *));
|
|
|
|
#endif /* BUFFERED_INPUT */
|
|
|
|
|
1996-12-23 17:02:34 +00:00
|
|
|
#endif /* _INPUT_H_ */
|