2016-10-04 16:12:28 +08:00
|
|
|
/* ----------------------------------------------------------------------- *
|
|
|
|
*
|
2020-07-01 00:54:01 +08:00
|
|
|
* Copyright 1996-2020 The NASM Authors - All Rights Reserved
|
2016-10-04 16:12:28 +08:00
|
|
|
* See the file AUTHORS included with the NASM distribution for
|
|
|
|
* the specific copyright holders.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following
|
|
|
|
* conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimer in the documentation and/or other materials provided
|
|
|
|
* with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* ----------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/*
|
2018-12-14 14:48:14 +08:00
|
|
|
* strlist.c - list of ordered strings, optionally made unique
|
2016-10-04 16:12:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "strlist.h"
|
|
|
|
|
2018-10-26 03:33:58 +08:00
|
|
|
/*
|
2018-12-14 14:48:14 +08:00
|
|
|
* Create a string list. The list can be uniqizing or not.
|
2018-10-26 03:33:58 +08:00
|
|
|
*/
|
2018-12-14 14:48:14 +08:00
|
|
|
struct strlist *strlist_alloc(bool uniq)
|
2016-10-04 16:12:28 +08:00
|
|
|
{
|
2018-11-12 02:33:52 +08:00
|
|
|
struct strlist *list = nasm_zalloc(sizeof(*list));
|
|
|
|
list->tailp = &list->head;
|
2018-12-14 14:48:14 +08:00
|
|
|
list->uniq = uniq;
|
2018-11-12 02:33:52 +08:00
|
|
|
return list;
|
2016-10-04 16:12:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-12-14 14:48:14 +08:00
|
|
|
* Append a string to a string list. Return the entry pointer, which
|
|
|
|
* may be a pre-existing entry for a uniqizing list.
|
2016-10-04 16:12:28 +08:00
|
|
|
*/
|
2018-12-14 14:48:14 +08:00
|
|
|
|
|
|
|
static const struct strlist_entry *
|
|
|
|
strlist_add_common(struct strlist *list, struct strlist_entry *e,
|
|
|
|
struct hash_insert *hi)
|
|
|
|
{
|
|
|
|
e->offset = list->size;
|
|
|
|
e->next = NULL;
|
|
|
|
|
|
|
|
*list->tailp = e;
|
|
|
|
list->tailp = &e->next;
|
|
|
|
list->nstr++;
|
|
|
|
list->size += e->size;
|
|
|
|
|
|
|
|
if (list->uniq)
|
|
|
|
hash_add(hi, e->str, (void *)e);
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct strlist_entry *
|
|
|
|
strlist_add(struct strlist *list, const char *str)
|
2016-10-04 16:12:28 +08:00
|
|
|
{
|
2018-11-12 02:33:52 +08:00
|
|
|
struct strlist_entry *e;
|
|
|
|
struct hash_insert hi;
|
2018-12-12 04:30:25 +08:00
|
|
|
size_t size;
|
2016-10-04 16:12:28 +08:00
|
|
|
|
2018-11-12 02:33:52 +08:00
|
|
|
if (!list)
|
2018-12-12 05:06:14 +08:00
|
|
|
return NULL;
|
2016-10-04 16:12:28 +08:00
|
|
|
|
2018-12-12 04:30:25 +08:00
|
|
|
size = strlen(str) + 1;
|
2018-12-14 14:48:14 +08:00
|
|
|
if (list->uniq) {
|
|
|
|
void **dp = hash_findb(&list->hash, str, size, &hi);
|
|
|
|
if (dp)
|
|
|
|
return *dp;
|
|
|
|
}
|
2018-10-26 03:33:58 +08:00
|
|
|
|
2018-11-12 02:33:52 +08:00
|
|
|
/* Structure already has char[1] as EOS */
|
2018-12-12 05:06:14 +08:00
|
|
|
e = nasm_malloc(sizeof(*e) - 1 + size);
|
2018-12-12 04:30:25 +08:00
|
|
|
e->size = size;
|
|
|
|
memcpy(e->str, str, size);
|
2018-10-26 03:33:58 +08:00
|
|
|
|
2018-12-14 14:48:14 +08:00
|
|
|
return strlist_add_common(list, e, &hi);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* printf() to a string list
|
|
|
|
*/
|
|
|
|
const struct strlist_entry *
|
|
|
|
strlist_vprintf(struct strlist *list, const char *fmt, va_list ap)
|
|
|
|
{
|
2020-07-01 00:54:01 +08:00
|
|
|
/* clang miscompiles offsetin() unless e is initialized here */
|
|
|
|
struct strlist_entry *e = NULL;
|
2018-12-14 14:48:14 +08:00
|
|
|
struct hash_insert hi;
|
|
|
|
|
|
|
|
if (!list)
|
|
|
|
return NULL;
|
|
|
|
|
2018-12-14 16:27:59 +08:00
|
|
|
e = nasm_vaxprintf(offsetin(*e, str), fmt, ap);
|
2019-08-09 17:34:21 +08:00
|
|
|
e->size = nasm_last_string_size();
|
2018-12-14 14:48:14 +08:00
|
|
|
|
|
|
|
if (list->uniq) {
|
|
|
|
void **dp = hash_findb(&list->hash, e->str, e->size, &hi);
|
|
|
|
if (dp) {
|
|
|
|
nasm_free(e);
|
|
|
|
return *dp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return strlist_add_common(list, e, &hi);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct strlist_entry *
|
|
|
|
strlist_printf(struct strlist *list, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
const struct strlist_entry *e;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
e = strlist_vprintf(list, fmt, ap);
|
|
|
|
va_end(ap);
|
2018-11-12 02:33:52 +08:00
|
|
|
|
2018-12-12 05:06:14 +08:00
|
|
|
return e;
|
2016-10-04 16:12:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-12-14 16:17:13 +08:00
|
|
|
* Free a string list. Sets the pointed to pointer to NULL.
|
2016-10-04 16:12:28 +08:00
|
|
|
*/
|
2018-12-14 16:17:13 +08:00
|
|
|
void strlist_free(struct strlist **listp)
|
2016-10-04 16:12:28 +08:00
|
|
|
{
|
2018-12-14 16:17:13 +08:00
|
|
|
struct strlist *list = *listp;
|
|
|
|
struct strlist_entry *e, *tmp;
|
2018-12-14 14:58:35 +08:00
|
|
|
|
2018-12-14 16:17:13 +08:00
|
|
|
if (!list)
|
|
|
|
return;
|
2018-12-14 14:58:35 +08:00
|
|
|
|
2018-12-14 16:17:13 +08:00
|
|
|
if (list->uniq)
|
|
|
|
hash_free(&list->hash);
|
2018-12-14 14:58:35 +08:00
|
|
|
|
2018-12-14 16:17:13 +08:00
|
|
|
list_for_each_safe(e, tmp, list->head)
|
|
|
|
nasm_free(e);
|
|
|
|
|
|
|
|
nasm_free(list);
|
|
|
|
*listp = NULL;
|
2016-10-04 16:12:28 +08:00
|
|
|
}
|
2018-12-12 05:06:14 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Search the string list for an entry. If found, return the entry pointer.
|
2018-12-14 14:48:14 +08:00
|
|
|
* Only possible on a uniqizing list.
|
2018-12-12 05:06:14 +08:00
|
|
|
*/
|
|
|
|
const struct strlist_entry *
|
|
|
|
strlist_find(const struct strlist *list, const char *str)
|
|
|
|
{
|
|
|
|
void **hf;
|
2018-12-14 14:48:14 +08:00
|
|
|
|
|
|
|
nasm_assert(list->uniq);
|
|
|
|
|
2018-12-12 05:06:14 +08:00
|
|
|
hf = hash_find((struct hash_table *)&list->hash, str, NULL);
|
|
|
|
return hf ? *hf : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Produce a linearized buffer containing the whole list, in order;
|
|
|
|
* The character "sep" is the separator between strings; this is
|
|
|
|
* typically either 0 or '\n'. strlist_size() will give the size of
|
|
|
|
* the returned buffer.
|
|
|
|
*/
|
|
|
|
void *strlist_linearize(const struct strlist *list, char sep)
|
|
|
|
{
|
|
|
|
const struct strlist_entry *sl;
|
|
|
|
char *buf = nasm_malloc(list->size);
|
|
|
|
char *p = buf;
|
2018-12-14 14:48:14 +08:00
|
|
|
|
2018-12-12 05:06:14 +08:00
|
|
|
strlist_for_each(sl, list) {
|
|
|
|
p = mempcpy(p, sl->str, sl->size);
|
|
|
|
p[-1] = sep;
|
|
|
|
}
|
2018-12-14 14:48:14 +08:00
|
|
|
|
2018-12-12 05:06:14 +08:00
|
|
|
return buf;
|
|
|
|
}
|
2018-12-14 16:17:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Output a string list to a file. The separator can be any string.
|
|
|
|
*/
|
|
|
|
void strlist_write(const struct strlist *list, const char *sep, FILE *f)
|
|
|
|
{
|
|
|
|
const struct strlist_entry *sl;
|
|
|
|
size_t seplen = strlen(sep);
|
|
|
|
|
|
|
|
strlist_for_each(sl, list) {
|
|
|
|
fwrite(sl->str, 1, sl->size - 1, f);
|
|
|
|
fwrite(sep, 1, seplen, f);
|
|
|
|
}
|
|
|
|
}
|