summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/tex/stringpool.c
blob: bc09f814b00ec0d084eea77a57cce89ef052ce32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/*

stringpool.w

Copyright 2009-2010 Taco Hoekwater <taco@@luatex.org>

This file is part of LuaTeX.

LuaTeX is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your
option) any later version.

LuaTeX is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU General Public License along
with LuaTeX; if not, see <http://www.gnu.org/licenses/>.

*/

#include "ptexlib.h"

/*tex

Control sequence names and diagnostic messages are variable-length strings of
eight-bit characters. Since PASCAL did not have a well-developed string
mechanism, \TeX\ did all of its string processing by homegrown methods.

Elaborate facilities for dynamic strings are not needed, so all of the necessary
operations can be handled with a simple data structure. The array |str_pool|
contains all of the (eight-bit) bytes off all of the strings, and the array
|str_start| contains indices of the starting points of each string. Strings are
referred to by integer numbers, so that string number |s| comprises the
characters |str_pool[j]| for |str_start_macro(s)<=j<str_start_macro(s+1)|.
Additional integer variables |pool_ptr| and |str_ptr| indicate the number of
entries used so far in |str_pool| and |str_start|, respectively; locations
|str_pool[pool_ptr]| and |str_start_macro(str_ptr)| are ready for the next string
to be allocated.

String numbers 0 to |biggest_char| are reserved for strings that correspond to
single UNICODE characters. This is in accordance with the conventions of \.{WEB}
which converts single-character strings into the ASCII code number of the single
character involved.

*/

/*tex The array of strings: */

lstring *string_pool;

/*tex
    This variable lives |STRING_OFFSET| below |string_pool| (handy for debugging:
    |_string_pool[str_ptr] == str_string(str_ptr)|:
*/

lstring *_string_pool;

/*tex The number of the current string being created: */

str_number str_ptr = (STRING_OFFSET + 1);

/*tex The starting value of |str_ptr|: */

str_number init_str_ptr;

/*tex
    The current string buffer, the current index in that buffer, the malloced
    size of |cur_string| and the occupied byte count:
*/

unsigned char *cur_string;
unsigned cur_length;
unsigned cur_string_size;
unsigned pool_size;

/*tex

Once a sequence of characters has been appended to |cur_string|, it officially
becomes a string when the function |make_string| is called. This function returns
the identification number of the new string as its value.

*/

void reset_cur_string(void)
{
    cur_length = 0;
    cur_string_size = 255;
    cur_string = (unsigned char *) xmalloc(256);
    memset(cur_string, 0, 256);
}

str_number make_string(void)
{
    if (str_ptr == (max_strings + STRING_OFFSET)) {
        overflow(
            "number of strings",
             (unsigned) (max_strings - init_str_ptr + STRING_OFFSET)
        );
    }
    str_room(1);
    cur_string[cur_length] = '\0';      /* now |lstring.s| is always a valid C string */
    str_string(str_ptr) = (unsigned char *) cur_string;
    str_length(str_ptr) = cur_length;
    pool_size += cur_length;
    reset_cur_string();
    str_ptr++;
    return (str_ptr - 1);
}

int pool_to_unichar(unsigned char *t)
{
    return (int) str2uni(t);
}

/*tex

The following subroutine compares string |s| with another string of the same
length that appears in |buffer| starting at position |k|; the result is |true| if
and only if the strings are equal. Empirical tests indicate that |str_eq_buf| is
used in such a way that it tends to return |true| about 80 percent of the time.

*/

boolean str_eq_buf(str_number s, int k)
{
    int a;
    if (s < STRING_OFFSET) {
        a = buffer_to_unichar(k);
        if (a != s)
            return false;
    } else {
        unsigned char *j = str_string(s);
        unsigned char *l = j + str_length(s);
        while (j < l) {
            if (*j++ != buffer[k++])
                return false;
        }
    }
    return true;
}

/*tex

Here is a similar routine, but it compares two strings in the string pool, and it
does not assume that they have the same length.

*/

boolean str_eq_str(str_number s, str_number t)
{
    int a = 0;
    unsigned char *j, *k, *l;
    if (s < STRING_OFFSET) {
        if (t >= STRING_OFFSET) {
            k = str_string(t);
            if (s <= 0x7F && (str_length(t) == 1) && *k == s)
                return true;
            a = pool_to_unichar(k);
            if (a != s)
                return false;
        } else {
            if (t != s)
                return false;
        }
    } else if (t < STRING_OFFSET) {
        j = str_string(s);
        if (t <= 0x7F && (str_length(s) == 1) && *j == t)
            return true;
        a = pool_to_unichar(j);
        if (a != t)
            return false;
    } else {
        if (str_length(s) != str_length(t))
            return false;
        k = str_string(t);
        j = str_string(s);
        l = j + str_length(s);
        while (j < l) {
            if (*j++ != *k++)
                return false;
        }
    }
    return true;
}

/*tex A string compare helper: */

boolean str_eq_cstr(str_number r, const char *s, size_t l)
{
    if (l != (size_t) str_length(r))
        return false;
    return (strncmp((const char *) (str_string(r)), s, l) == 0);
}


/*tex

The initial values of |str_pool|, |str_start|, |pool_ptr|, and |str_ptr| are
computed by the \.{INITEX} program, based in part on the information that \.{WEB}
has output while processing \TeX.

The first |string_offset| strings are single-characters strings matching Unicode.
There is no point in generating all of these. But |str_ptr| has initialized
properly, otherwise |print_char| cannot see the difference between characters and
strings.

*/

boolean get_strings_started(void)
{
    reset_cur_string();
    return true;
}

/*tex

The string recycling routines. \TeX{} uses 2 upto 4 {\it new\/} strings when
scanning a filename in an \.{\\input}, \.{\\openin}, or \.{\\openout} operation.
These strings are normally lost because the reference to them are not saved after
finishing the operation. |search_string| searches through the string pool for the
given string and returns either 0 or the found string number.

*/

str_number search_string(str_number search)
{
    str_number s;
    size_t len;
    len = str_length(search);
    if (len == 0) {
        return get_nullstr();
    } else {
        /*tex We start the search with newest string below |s|; |search>1|! */
        s = search - 1;
        while (s >= STRING_OFFSET) {
            /* The first |string_offset| of strings depend on the implementation! */
            if (str_length(s) == len)
                if (str_eq_str(s, search))
                    return s;
            s--;
        }
    }
    return 0;
}

str_number maketexstring(const char *s)
{
    if (s == NULL || *s == 0)
        return get_nullstr();
    return maketexlstring(s, strlen(s));
}

str_number maketexlstring(const char *s, size_t l)
{
    if (s == NULL || l == 0)
        return get_nullstr();
    str_string(str_ptr) = xmalloc((unsigned) (l + 1));
    memcpy(str_string(str_ptr), s, (l + 1));
    str_length(str_ptr) = (unsigned) l;
    str_ptr++;
    return (str_ptr - 1);
}

/*tex

    This appends a C string to a \TEX\ string:

*/

void append_string(const unsigned char *s, unsigned l)
{
    if (s == NULL || *s == 0)
        return;
    l = (unsigned) strlen((const char *) s);
    str_room(l);
    memcpy(cur_string + cur_length, s, l);
    cur_length += l;
    return;
}

char *makecstring(int s)
{
    size_t l;
    return makeclstring(s, &l);
}

char *makeclstring(int s, size_t * len)
{
    if (s < STRING_OFFSET) {
        *len = (size_t) utf8_size(s);
        return (char *) uni2str((unsigned) s);
    } else {
        unsigned l = (unsigned) str_length(s);
        char *cstrbuf = xmalloc(l + 1);
        memcpy(cstrbuf, str_string(s), l);
        cstrbuf[l] = '\0';
        *len = (size_t) l;
        return cstrbuf;
    }
}

int dump_string_pool(void)
{
    int j;
    int l;
    int k = str_ptr;
    dump_int(k - STRING_OFFSET);
    for (j = STRING_OFFSET + 1; j < k; j++) {
        l = (int) str_length(j);
        if (str_string(j) == NULL)
            l = -1;
        dump_int(l);
        if (l > 0)
            dump_things(*str_string(j), str_length(j));
    }
    return (k - STRING_OFFSET);
}

int undump_string_pool(void)
{
    int j;
    int x;
    undump_int(str_ptr);
    if (max_strings < str_ptr + strings_free)
        max_strings = str_ptr + strings_free;
    str_ptr += STRING_OFFSET;
    if (ini_version)
        libcfree(string_pool);
    init_string_pool_array((unsigned) max_strings);
    for (j = STRING_OFFSET + 1; j < str_ptr; j++) {
        undump_int(x);
        if (x >= 0) {
            str_length(j) = (unsigned) x;
            pool_size += (unsigned) x;
            str_string(j) = xmallocarray(unsigned char, (unsigned) (x + 1));
            undump_things(*str_string(j), (unsigned) x);
            *(str_string(j) + str_length(j)) = '\0';
        } else {
            str_length(j) = 0;
        }
    }
    init_str_ptr = str_ptr;
    return str_ptr;
}

void init_string_pool_array(unsigned s)
{
    string_pool = xmallocarray(lstring, s);
    _string_pool = string_pool - STRING_OFFSET;
    memset(string_pool, 0, s * sizeof(lstring));
    /* seed the null string */
    string_pool[0].s = xmalloc(1);
    string_pool[0].s[0] = '\0';
}

/*tex

    To destroy an already made string, we say |flush_str|.

*/

void flush_str(str_number s)
{
    if (s > STRING_OFFSET) {
        /*tex Don't ever delete the null string! */
        pool_size -= (unsigned) str_length(s);
        str_length(s) = 0;
        xfree(str_string(s));
    }
    while (str_string((str_ptr - 1)) == NULL)
        str_ptr--;
}