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
|
/* fn.c: arbitrarily long filenames or strings.
Copyright 1993, 2008 Karl Berry.
Copyright 2001, 2005 Olaf Weber.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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 Lesser General Public License
along with this library; if not, see <http://www.gnu.org/licenses/>. */
#include <kpathsea/config.h>
#include <kpathsea/fn.h>
/* /usr/local/lib/texmf/fonts/public/cm/pk/ljfour/cmr10.300pk is 58
chars, so ASCII `K' seems a good choice. */
#define CHUNK_SIZE 75
fn_type
fn_init (void)
{
fn_type ret;
FN_ALLOCATED (ret) = FN_LENGTH (ret) = 0;
FN_STRING (ret) = NULL;
return ret;
}
fn_type
fn_copy0 (const_string s, unsigned len)
{
fn_type ret;
FN_ALLOCATED (ret) = CHUNK_SIZE > len ? CHUNK_SIZE : len + 1;
FN_STRING (ret) = (string)xmalloc (FN_ALLOCATED (ret));
strncpy (FN_STRING (ret), s, len);
FN_STRING (ret)[len] = 0;
FN_LENGTH (ret) = len + 1;
return ret;
}
/* Don't think we ever try to free something that might usefully be
empty, so give fatal error if nothing allocated. */
void
fn_free (fn_type *f)
{
assert (FN_STRING (*f) != NULL);
free (FN_STRING (*f));
FN_STRING (*f) = NULL;
FN_ALLOCATED (*f) = 0;
FN_LENGTH (*f) = 0;
}
/* An arithmetic increase seems more reasonable than geometric. We
don't increase the length member since it may be more convenient for
the caller to add than subtract when appending the stuff that will
presumably follow. */
static void
grow (fn_type *f, unsigned len)
{
while (FN_LENGTH (*f) + len > FN_ALLOCATED (*f))
{
FN_ALLOCATED (*f) += CHUNK_SIZE;
XRETALLOC (FN_STRING (*f), FN_ALLOCATED (*f), char);
}
}
void
fn_1grow (fn_type *f, char c)
{
grow (f, 1);
FN_STRING (*f)[FN_LENGTH (*f)] = c;
FN_LENGTH (*f)++;
}
void
fn_grow (fn_type *f, const_string source, unsigned len)
{
grow (f, len);
strncpy (FN_STRING (*f) + FN_LENGTH (*f), source, len);
FN_LENGTH (*f) += len;
}
void
fn_str_grow (fn_type *f, const_string s)
{
unsigned more_len = strlen (s);
grow (f, more_len);
strcat (FN_STRING (*f), s);
FN_LENGTH (*f) += more_len;
}
void
fn_shrink_to (fn_type *f, unsigned loc)
{
assert (FN_LENGTH (*f) > loc);
FN_STRING (*f)[loc] = 0;
FN_LENGTH (*f) = loc + 1;
}
|