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