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
|
/*
This file was generated by "mtxrun --script "mtx-wtoc.lua" from the metapost cweb files but
now maintained as C file.
*/
# include "mpstrings.h"
/*tex
Housekeeping:
*/
void mp_add_string_reference(MP mp, mp_string s)
{
(void) mp;
if (s->refs < MAX_STR_REF) {
(s->refs)++;
}
}
void mp_delete_string_reference(MP mp, mp_string s)
{
if (s->refs < MAX_STR_REF) {
if (s->refs > 1) {
(s->refs)--;
} else {
mp_flush_string(mp, s);
}
}
}
/*tex
Here is a routine that compares two strings in the string pool, and it does not assume that
they have the same length. If the first string is lexicographically greater than, less than,
or equal to the second, the result is respectively positive, negative, or zero.
An earlier version of this function used |strncmp|, but that produces wrong results in some
cases.
*/
# define STRCMP_RESULT(a) ((a) < 0 ? -1 : ((a) > 0 ? 1 : 0))
static int mp_aux_comp_strings_entry(void *p, const void *pa, const void *pb)
{
const mp_lstring *a = (const mp_lstring *) pa;
const mp_lstring *b = (const mp_lstring *) pb;
unsigned char *s = a->str;
unsigned char *t = b->str;
size_t l = a->len <= b->len ? a->len : b->len;
(void) p;
while (l-- > 0) {
if (*s != *t) {
return STRCMP_RESULT(*s - *t);
} else {
s++;
t++;
}
}
return STRCMP_RESULT((int)(a->len - b->len));
}
void *mp_aux_copy_strings_entry(const void *p)
{
mp_string ff = mp_memory_allocate(sizeof(mp_lstring));
if (ff) {
const mp_lstring *fp = (const mp_lstring *) p;
ff->str = mp_memory_allocate((size_t) fp->len + 1);
if (ff->str) {
memcpy((char *) ff->str, (char *) fp->str, fp->len + 1);
ff->len = fp->len;
ff->refs = 0;
return ff;
}
}
return NULL;
}
static void *delete_strings_entry(void *p)
{
mp_string ff = (mp_string) p;
mp_memory_free(ff->str);
mp_memory_free(ff);
return NULL;
}
static mp_string new_strings_entry(void)
{
mp_string ff = mp_memory_allocate(sizeof(mp_lstring));
ff->str = NULL;
ff->len = 0;
ff->refs = 0;
return ff;
}
char *mp_strdup(const char *s)
{
if (s) {
char *w = lmt_memory_strdup(s);
if (w) {
return w;
} else {
printf("mplib ran out of memory, case 3");
exit(EXIT_FAILURE);
}
}
return NULL;
}
char *mp_strndup(const char *p, size_t l)
{
if (p) {
char *r = mp_memory_allocate(l * sizeof(char) + 1);
if (r) {
char *s = memcpy(r, p, l);
*(s + l) = '\0';
return s;
} else {
printf("mplib ran out of memory, case 4");
exit(EXIT_FAILURE);
}
}
return NULL;
}
// int mp_strcmp(const char *a, const char *b)
// {
// return a == NULL ? (b == NULL ? 0 : -1) : (b == NULL ? 1 : strcmp(a, b));
// }
void mp_initialize_strings(MP mp)
{
mp->strings = avl_create(mp_aux_comp_strings_entry, mp_aux_copy_strings_entry, delete_strings_entry, mp_memory_allocate, mp_memory_free, NULL);
mp->cur_string = NULL;
mp->cur_length = 0;
mp->cur_string_size = 0;
}
void mp_free_strings(MP mp)
{
if (mp->strings != NULL) {
avl_destroy(mp->strings);
} else {
mp->strings = NULL;
mp_memory_free(mp->cur_string);
mp->cur_string = NULL;
mp->cur_length = 0;
mp->cur_string_size = 0;
}
}
/*tex
Most printing is done from |char *|s, but sometimes not. Here are functions that convert an
internal string into a |char *| for use by the printing routines, and vice versa.
*/
// char *mp_str(MP mp, mp_string ss)
// {
// (void) mp;
// return (char *) ss->str;
// }
mp_string mp_rtsl(MP mp, const char *s, size_t l)
{
mp_string nstr;
mp_string str = new_strings_entry();
str->str = (unsigned char *) mp_strndup(s, l);
str->len = l;
nstr = (mp_string) avl_find(str, mp->strings);
if (nstr == NULL) {
avl_ins(str, mp->strings, avl_false);
nstr = (mp_string) avl_find(str, mp->strings);
}
delete_strings_entry(str);
mp_add_string_reference(mp, nstr);
return nstr;
}
mp_string mp_rts(MP mp, const char *s)
{
return mp_rtsl(mp, s, strlen(s));
}
/*tex
Strings are created by appending character codes to |cur_string|. The |mp_append_char|
function, defined here, does not check to see if the buffer overflows; this test is supposed
to be made before |mp_append_char| is used.
To test if there is room to append |l| more characters to |cur_string|, we shall write
|str_room(l)|, which tries to make sure there is enough room in the |cur_string|. At the very
start of the metapost run and each time after |make_string| has stored a new string in the
avl tree, the |cur_string| variable has to be prepared so that it will be ready to start
creating a new string. The initial size is fairly arbitrary, but setting it a little higher
than expected helps prevent |reallocs|.
*/
# define EXTRA_STRING 500
void mp_str_room(MP mp, int wsize)
{
/* we always add one more */
if ((mp->cur_length + (size_t) wsize + 1) > mp->cur_string_size) {
size_t nsize = mp->cur_string_size + mp->cur_string_size / 5 + EXTRA_STRING;
if (nsize < (size_t) wsize) {
nsize = (size_t) wsize + EXTRA_STRING;
}
mp->cur_string = (unsigned char *) mp_memory_reallocate(mp->cur_string, (size_t) nsize * sizeof(unsigned char));
memset(mp->cur_string + mp->cur_length, 0, nsize-mp->cur_length);
mp->cur_string_size = nsize;
}
}
void mp_append_char(MP mp, unsigned char c)
{
*(mp->cur_string + mp->cur_length) = c;
mp->cur_length++;
}
void mp_append_str(MP mp, const char *s)
{
int j = 0;
while ((unsigned char) s[j]) {
*(mp->cur_string + mp->cur_length) = s[j++];
mp->cur_length++;
}
}
void mp_reset_cur_string(MP mp)
{
mp_memory_free(mp->cur_string);
mp->cur_length = 0;
mp->cur_string_size = 63;
mp->cur_string = (unsigned char *) mp_memory_allocate(64 * sizeof(unsigned char));
memset(mp->cur_string, 0, 64);
}
/*tex
\MP's string expressions are implemented in a brute-force way: Every new string or substring
that is needed is simply stored into the string pool. Space is eventually reclaimed using the
aid of a simple system system of reference counts.
The number of references to string number |s| will be |s->refs|. The special value |s->refs =
MAX_STR_REF=127| is used to denote an unknown positive number of references; such strings will
never be recycled. If a string is ever referred to more than 126 times, simultaneously, we put
it in this category. Here's what we do when a string reference disappears:
*/
void mp_flush_string(MP mp, mp_string s) {
if (s->refs == 0) {
mp->strings_in_use--;
mp->pool_in_use = mp->pool_in_use - (int) s->len;
avl_del(s, mp->strings, NULL);
}
}
/*tex
Some C literals that are used as values cannot be simply added, their reference count has to be
set such that they can not be flushed.
*/
mp_string mp_intern(MP mp, const char *s)
{
mp_string r = mp_rts(mp, s);
r->refs = MAX_STR_REF;
return r;
}
/*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 a pointer to the new string as
its value.
*/
mp_string mp_make_string(MP mp)
{
mp_lstring tmp = {
.str = mp->cur_string,
.len = mp->cur_length,
};
mp_string str = (mp_string) avl_find(&tmp, mp->strings);
if (str == NULL) {
str = mp_memory_allocate(sizeof(mp_lstring));
str->str = mp->cur_string;
str->len = tmp.len;
avl_ins(str, mp->strings, avl_false);
str = (mp_string) avl_find(&tmp, mp->strings);
mp->pool_in_use = mp->pool_in_use + (int) str->len;
if (mp->pool_in_use > mp->max_pool_used) {
mp->max_pool_used = mp->pool_in_use;
}
mp->strings_in_use++;
if (mp->strings_in_use > mp->max_strings_used) {
mp->max_strings_used = mp->strings_in_use;
}
}
mp_add_string_reference(mp, str);
mp_reset_cur_string(mp);
return str;
}
int mp_str_vs_str(MP mp, mp_string s, mp_string t)
{
(void) mp;
return mp_aux_comp_strings_entry(NULL, (const void *) s, (const void *) t);
}
mp_string mp_cat(MP mp, mp_string a, mp_string b)
{
mp_string str;
size_t saved_cur_length = mp->cur_length;
unsigned char *saved_cur_string = mp->cur_string;
size_t saved_cur_string_size = mp->cur_string_size;
size_t needed = a->len + b->len;
mp->cur_length = 0;
/* |mp->cur_string = NULL;| needs malloc, spotted by clang */
mp->cur_string = (unsigned char *) mp_memory_allocate((size_t) (needed + 1) * sizeof(unsigned char));
mp->cur_string_size = 0;
mp_str_room(mp, (int) needed + 1);
memcpy(mp->cur_string, a->str, a->len);
memcpy(mp->cur_string + a->len, b->str, b->len);
mp->cur_length = needed;
mp->cur_string[needed] = '\0';
str = mp_make_string(mp);
mp_memory_free(mp->cur_string); /* created by |mp_make_string| */
mp->cur_length = saved_cur_length;
mp->cur_string = saved_cur_string;
mp->cur_string_size = saved_cur_string_size;
return str;
}
mp_string mp_chop_string(MP mp, mp_string s, int a, int b)
{
int l = (int) s->len;
int reversed;
if (a <= b) {
reversed = 0;
} else {
int k = a;
a = b;
b = k;
reversed = 1;
}
if (a < 0) {
a = 0;
if (b < 0) {
b = 0;
}
}
if (b > l) {
b = l;
if (a > l) {
a = l;
}
}
mp_str_room(mp, (b - a));
if (reversed) {
for (int k = b - 1; k >= a; k--) {
mp_append_char(mp, *(s->str + k));
}
} else {
for (int k = a; k < b; k++) {
mp_append_char(mp, *(s->str + k));
}
}
return mp_make_string(mp);
}
|