blob: 9abc59878fc1d67f1ebefae7526e25967de2c7b9 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossum9bfef441993-03-29 10:43:31 +00002Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,
3Amsterdam, The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00004
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025/* Tokenizer interface */
26
27#include "token.h" /* For token types */
28
29#define MAXINDENT 100 /* Max indentation level */
30
31/* Tokenizer state */
32struct tok_state {
33 /* Input state; buf <= cur <= inp <= end */
Guido van Rossum6ac258d1993-05-12 08:24:20 +000034 /* NB an entire line is held in the buffer */
35 char *buf; /* Input buffer, or NULL; malloc'ed if fp != NULL */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000036 char *cur; /* Next character in buffer */
37 char *inp; /* End of data in buffer */
Guido van Rossum6ac258d1993-05-12 08:24:20 +000038 char *end; /* End of input buffer if buf != NULL */
39 int done; /* E_OK normally, E_EOF at EOF, otherwise error code */
40 /* NB If done != E_OK, cur must be == inp!!! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000041 FILE *fp; /* Rest of input; NULL if tokenizing a string */
42 int tabsize; /* Tab spacing */
43 int indent; /* Current indentation index */
44 int indstack[MAXINDENT]; /* Stack of indents */
45 int atbol; /* Nonzero if at begin of new line */
46 int pendin; /* Pending indents (if > 0) or dedents (if < 0) */
47 char *prompt, *nextprompt; /* For interactive prompting */
48 int lineno; /* Current line number */
49};
50
51extern struct tok_state *tok_setups PROTO((char *));
52extern struct tok_state *tok_setupf PROTO((FILE *, char *ps1, char *ps2));
53extern void tok_free PROTO((struct tok_state *));
54extern int tok_get PROTO((struct tok_state *, char **, char **));