rpm  4.18.0
rpmstrpool.h
Go to the documentation of this file.
1 #ifndef _RPMSTRPOOL_H
2 #define _RPMSTRPOOL_H
3 
11 #include <rpm/rpmtypes.h>
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
22 
30 
37 
46 void rpmstrPoolFreeze(rpmstrPool pool, int keephash);
47 
55 
65 rpmsid rpmstrPoolId(rpmstrPool pool, const char *s, int create);
66 
78 rpmsid rpmstrPoolIdn(rpmstrPool pool, const char *s, size_t slen, int create);
79 
86 const char * rpmstrPoolStr(rpmstrPool pool, rpmsid sid);
87 
97 
109  rpmstrPool poolB, rpmsid sidB);
110 
118 
119 #ifdef __cplusplus
120 }
121 #endif
122 
123 #endif /* _RPMSIDPOOL_H */
rpmsid rpmstrPoolNumStr(rpmstrPool pool)
Return the number of strings stored in the pool.
int rpmstrPoolStreq(rpmstrPool poolA, rpmsid sidA, rpmstrPool poolB, rpmsid sidB)
Compare two strings for equality by their ids.
void rpmstrPoolUnfreeze(rpmstrPool pool)
Unfreeze a string pool to allow new additions again.
rpmstrPool rpmstrPoolFree(rpmstrPool pool)
Free a string pool and its contents.
rpmsid rpmstrPoolId(rpmstrPool pool, const char *s, int create)
Look up the id of a string.
rpmsid rpmstrPoolIdn(rpmstrPool pool, const char *s, size_t slen, int create)
Look up the id of a string with predetermined length.
void rpmstrPoolFreeze(rpmstrPool pool, int keephash)
Freeze a string pool: new strings cannot be added to a frozen pool.
rpmstrPool rpmstrPoolCreate(void)
Create a new, empty string pool.
const char * rpmstrPoolStr(rpmstrPool pool, rpmsid sid)
Look up a string by its pool id.
rpmstrPool rpmstrPoolLink(rpmstrPool pool)
Reference a string pool.
size_t rpmstrPoolStrlen(rpmstrPool pool, rpmsid sid)
Return length of a string by its pool id.
Typedefs for RPM abstract data types.
uint32_t rpmsid
Definition: rpmtypes.h:83
struct rpmstrPool_s * rpmstrPool
Definition: rpmtypes.h:84