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