#ifndef LIBSOLV_STRINGPOOL_H
#define LIBSOLV_STRINGPOOL_H
#include "pooltypes.h"
#include "hash.h"
#ifdef __cplusplus
extern "C" {
#endif
#define STRID_NULL 0
#define STRID_EMPTY 1
struct s_Stringpool
{
Offset *strings;
int nstrings;
char *stringspace;
Offset sstrings;
Hashtable stringhashtbl;
Hashval stringhashmask;
};
void stringpool_init(Stringpool *ss, const char *strs[]);
void stringpool_init_empty(Stringpool *ss);
void stringpool_clone(Stringpool *ss, Stringpool *from);
void stringpool_free(Stringpool *ss);
void stringpool_freehash(Stringpool *ss);
Id stringpool_str2id(Stringpool *ss, const char *str, int create);
Id stringpool_strn2id(Stringpool *ss, const char *str, unsigned int len, int create);
void stringpool_shrink(Stringpool *ss);
void stringpool_reserve(Stringpool *ss, int numid, Offset sizeid);
int stringpool_integrate(Stringpool *ss, int numid, Offset sizeid, Id *idmap);
static inline const char *
stringpool_id2str(Stringpool *ss, Id id)
{
return ss->stringspace + ss->strings[id];
}
#ifdef __cplusplus
}
#endif
#endif