You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
3.2 KiB

36 years ago
36 years ago
36 years ago
36 years ago
36 years ago
  1. #ifndef Py_TOKENIZER_H
  2. #define Py_TOKENIZER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "object.h"
  7. /* Tokenizer interface */
  8. #include "token.h" /* For token types */
  9. #define MAXINDENT 100 /* Max indentation level */
  10. enum decoding_state {
  11. STATE_INIT,
  12. STATE_RAW,
  13. STATE_NORMAL /* have a codec associated with input */
  14. };
  15. /* Tokenizer state */
  16. struct tok_state {
  17. /* Input state; buf <= cur <= inp <= end */
  18. /* NB an entire line is held in the buffer */
  19. char *buf; /* Input buffer, or NULL; malloc'ed if fp != NULL */
  20. char *cur; /* Next character in buffer */
  21. char *inp; /* End of data in buffer */
  22. char *end; /* End of input buffer if buf != NULL */
  23. char *start; /* Start of current token if not NULL */
  24. int done; /* E_OK normally, E_EOF at EOF, otherwise error code */
  25. /* NB If done != E_OK, cur must be == inp!!! */
  26. FILE *fp; /* Rest of input; NULL if tokenizing a string */
  27. int tabsize; /* Tab spacing */
  28. int indent; /* Current indentation index */
  29. int indstack[MAXINDENT]; /* Stack of indents */
  30. int atbol; /* Nonzero if at begin of new line */
  31. int pendin; /* Pending indents (if > 0) or dedents (if < 0) */
  32. char *prompt, *nextprompt; /* For interactive prompting */
  33. int lineno; /* Current line number */
  34. int level; /* () [] {} Parentheses nesting level */
  35. /* Used to allow free continuations inside them */
  36. /* Stuff for checking on different tab sizes */
  37. const char *filename; /* encoded to the filesystem encoding */
  38. int altwarning; /* Issue warning if alternate tabs don't match */
  39. int alterror; /* Issue error if alternate tabs don't match */
  40. int alttabsize; /* Alternate tab spacing */
  41. int altindstack[MAXINDENT]; /* Stack of alternate indents */
  42. /* Stuff for PEP 0263 */
  43. enum decoding_state decoding_state;
  44. int decoding_erred; /* whether erred in decoding */
  45. int read_coding_spec; /* whether 'coding:...' has been read */
  46. char *encoding; /* Source encoding. */
  47. int cont_line; /* whether we are in a continuation line. */
  48. const char* line_start; /* pointer to start of current line */
  49. #ifndef PGEN
  50. PyObject *decoding_readline; /* open(...).readline */
  51. PyObject *decoding_buffer;
  52. #endif
  53. const char* enc; /* Encoding for the current str. */
  54. const char* str;
  55. const char* input; /* Tokenizer's newline translated copy of the string. */
  56. };
  57. extern struct tok_state *PyTokenizer_FromString(const char *, int);
  58. extern struct tok_state *PyTokenizer_FromUTF8(const char *, int);
  59. extern struct tok_state *PyTokenizer_FromFile(FILE *, char*,
  60. char *, char *);
  61. extern void PyTokenizer_Free(struct tok_state *);
  62. extern int PyTokenizer_Get(struct tok_state *, char **, char **);
  63. extern char * PyTokenizer_RestoreEncoding(struct tok_state* tok,
  64. int len, int *offset);
  65. extern char * PyTokenizer_FindEncoding(int);
  66. #ifdef __cplusplus
  67. }
  68. #endif
  69. #endif /* !Py_TOKENIZER_H */