strlist.h 996 字节
Newer Older
1 2
#ifndef __PERF_STRLIST_H
#define __PERF_STRLIST_H
3

4
#include <linux/rbtree.h>
5 6 7 8 9 10 11 12 13
#include <stdbool.h>

struct str_node {
	struct rb_node rb_node;
	const char     *s;
};

struct strlist {
	struct rb_root entries;
14 15
	unsigned int   nr_entries;
	bool	       dupstr;
16 17 18 19 20 21 22 23 24
};

struct strlist *strlist__new(bool dupstr, const char *slist);
void strlist__delete(struct strlist *self);

void strlist__remove(struct strlist *self, struct str_node *sn);
int strlist__load(struct strlist *self, const char *filename);
int strlist__add(struct strlist *self, const char *str);

25
struct str_node *strlist__entry(const struct strlist *self, unsigned int idx);
26 27 28 29
bool strlist__has_entry(struct strlist *self, const char *entry);

static inline bool strlist__empty(const struct strlist *self)
{
30 31 32 33 34 35
	return self->nr_entries == 0;
}

static inline unsigned int strlist__nr_entries(const struct strlist *self)
{
	return self->nr_entries;
36 37 38
}

int strlist__parse_list(struct strlist *self, const char *s);
39
#endif /* __PERF_STRLIST_H */