Coverage Report

Created: 2026-07-16 07:04

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython3/Parser/tokenizer/string_tokenizer.c
Line
Count
Source
1
#include "Python.h"
2
#include "errcode.h"
3
4
#include "helpers.h"
5
#include "../lexer/state.h"
6
7
static int
8
0
tok_underflow_string(struct tok_state *tok) {
9
0
    char *end = strchr(tok->inp, '\n');
10
0
    if (end != NULL) {
11
0
        end++;
12
0
    }
13
0
    else {
14
0
        end = strchr(tok->inp, '\0');
15
0
        if (end == tok->inp) {
16
0
            tok->done = E_EOF;
17
0
            return 0;
18
0
        }
19
0
    }
20
0
    if (tok->start == NULL) {
21
0
        tok->buf = tok->cur;
22
0
    }
23
0
    tok->line_start = tok->cur;
24
0
    ADVANCE_LINENO();
25
0
    tok->inp = end;
26
0
    return 1;
27
0
}
28
29
/* Fetch a byte from TOK, using the string buffer. */
30
static int
31
0
buf_getc(struct tok_state *tok) {
32
0
    return Py_CHARMASK(*tok->str++);
33
0
}
34
35
/* Unfetch a byte from TOK, using the string buffer. */
36
static void
37
0
buf_ungetc(int c, struct tok_state *tok) {
38
0
    tok->str--;
39
0
    assert(Py_CHARMASK(*tok->str) == c);        /* tok->cur may point to read-only segment */
40
0
}
41
42
/* Set the readline function for TOK to ENC. For the string-based
43
   tokenizer, this means to just record the encoding. */
44
static int
45
0
buf_setreadl(struct tok_state *tok, const char* enc) {
46
0
    tok->enc = enc;
47
0
    return 1;
48
0
}
49
50
/* Decode a byte string STR for use as the buffer of TOK.
51
   Look for encoding declarations inside STR, and record them
52
   inside TOK.  */
53
static char *
54
decode_str(const char *input, int single, struct tok_state *tok, int preserve_crlf)
55
0
{
56
0
    PyObject* utf8 = NULL;
57
0
    char *str;
58
0
    const char *s;
59
0
    const char *newl[2] = {NULL, NULL};
60
0
    int lineno = 0;
61
0
    tok->input = str = _PyTokenizer_translate_newlines(input, single, preserve_crlf, tok);
62
0
    if (str == NULL)
63
0
        return NULL;
64
0
    tok->enc = NULL;
65
0
    tok->str = str;
66
0
    if (!_PyTokenizer_check_bom(buf_getc, buf_ungetc, buf_setreadl, tok))
67
0
        return _PyTokenizer_error_ret(tok);
68
0
    str = tok->str;             /* string after BOM if any */
69
0
    assert(str);
70
0
    if (tok->enc != NULL) {
71
0
        utf8 = _PyTokenizer_translate_into_utf8(str, tok->enc);
72
0
        if (utf8 == NULL)
73
0
            return _PyTokenizer_error_ret(tok);
74
0
        str = PyBytes_AsString(utf8);
75
0
    }
76
0
    for (s = str;; s++) {
77
0
        if (*s == '\0') break;
78
0
        else if (*s == '\n') {
79
0
            assert(lineno < 2);
80
0
            newl[lineno] = s;
81
0
            lineno++;
82
0
            if (lineno == 2) break;
83
0
        }
84
0
    }
85
0
    tok->enc = NULL;
86
    /* need to check line 1 and 2 separately since check_coding_spec
87
       assumes a single line as input */
88
0
    if (newl[0]) {
89
0
        tok->lineno = 1;
90
0
        if (!_PyTokenizer_check_coding_spec(str, newl[0] - str, tok, buf_setreadl)) {
91
0
            return NULL;
92
0
        }
93
0
        if (tok->enc == NULL && tok->decoding_state != STATE_NORMAL && newl[1]) {
94
0
            tok->lineno = 2;
95
0
            if (!_PyTokenizer_check_coding_spec(newl[0]+1, newl[1] - newl[0],
96
0
                                   tok, buf_setreadl))
97
0
                return NULL;
98
0
        }
99
0
    }
100
0
    tok->lineno = 0;
101
0
    if (tok->enc != NULL) {
102
0
        assert(utf8 == NULL);
103
0
        utf8 = _PyTokenizer_translate_into_utf8(str, tok->enc);
104
0
        if (utf8 == NULL)
105
0
            return _PyTokenizer_error_ret(tok);
106
0
        str = PyBytes_AS_STRING(utf8);
107
0
    }
108
0
    else if (!_PyTokenizer_ensure_utf8(str, tok, 1)) {
109
0
        return _PyTokenizer_error_ret(tok);
110
0
    }
111
0
    if (utf8 != NULL) {
112
0
        char *translated = _PyTokenizer_translate_newlines(
113
0
            str, single, preserve_crlf, tok);
114
0
        if (translated == NULL) {
115
0
            Py_DECREF(utf8);
116
0
            return _PyTokenizer_error_ret(tok);
117
0
        }
118
0
        PyMem_Free(tok->input);
119
0
        tok->input = translated;
120
0
        str = translated;
121
0
        Py_CLEAR(utf8);
122
0
    }
123
0
    tok->str = str;
124
0
    assert(tok->decoding_buffer == NULL);
125
0
    tok->decoding_buffer = utf8; /* CAUTION */
126
0
    return str;
127
0
}
128
129
/* Set up tokenizer for string */
130
struct tok_state *
131
_PyTokenizer_FromString(const char *str, int exec_input, int preserve_crlf)
132
0
{
133
0
    struct tok_state *tok = _PyTokenizer_tok_new();
134
0
    char *decoded;
135
136
0
    if (tok == NULL)
137
0
        return NULL;
138
0
    decoded = decode_str(str, exec_input, tok, preserve_crlf);
139
0
    if (decoded == NULL) {
140
0
        _PyTokenizer_Free(tok);
141
0
        return NULL;
142
0
    }
143
144
0
    tok->buf = tok->cur = tok->inp = decoded;
145
0
    tok->end = decoded;
146
0
    tok->underflow = &tok_underflow_string;
147
0
    return tok;
148
0
}