perf tools: Change strlist to use the new rblist
[linux-2.6/btrfs-unstable.git] / tools / perf / util / strlist.h
blobdd9f922ec67c58845ff22b6d3fabe3eb888c21e6
1 #ifndef __PERF_STRLIST_H
2 #define __PERF_STRLIST_H
4 #include <linux/rbtree.h>
5 #include <stdbool.h>
7 #include "rblist.h"
9 struct str_node {
10 struct rb_node rb_node;
11 const char *s;
14 struct strlist {
15 struct rblist rblist;
16 bool dupstr;
19 struct strlist *strlist__new(bool dupstr, const char *slist);
20 void strlist__delete(struct strlist *self);
22 void strlist__remove(struct strlist *self, struct str_node *sn);
23 int strlist__load(struct strlist *self, const char *filename);
24 int strlist__add(struct strlist *self, const char *str);
26 struct str_node *strlist__entry(const struct strlist *self, unsigned int idx);
27 struct str_node *strlist__find(struct strlist *self, const char *entry);
29 static inline bool strlist__has_entry(struct strlist *self, const char *entry)
31 return strlist__find(self, entry) != NULL;
34 static inline bool strlist__empty(const struct strlist *self)
36 return rblist__empty(&self->rblist);
39 static inline unsigned int strlist__nr_entries(const struct strlist *self)
41 return rblist__nr_entries(&self->rblist);
44 /* For strlist iteration */
45 static inline struct str_node *strlist__first(struct strlist *self)
47 struct rb_node *rn = rb_first(&self->rblist.entries);
48 return rn ? rb_entry(rn, struct str_node, rb_node) : NULL;
50 static inline struct str_node *strlist__next(struct str_node *sn)
52 struct rb_node *rn;
53 if (!sn)
54 return NULL;
55 rn = rb_next(&sn->rb_node);
56 return rn ? rb_entry(rn, struct str_node, rb_node) : NULL;
59 /**
60 * strlist_for_each - iterate over a strlist
61 * @pos: the &struct str_node to use as a loop cursor.
62 * @self: the &struct strlist for loop.
64 #define strlist__for_each(pos, self) \
65 for (pos = strlist__first(self); pos; pos = strlist__next(pos))
67 /**
68 * strlist_for_each_safe - iterate over a strlist safe against removal of
69 * str_node
70 * @pos: the &struct str_node to use as a loop cursor.
71 * @n: another &struct str_node to use as temporary storage.
72 * @self: the &struct strlist for loop.
74 #define strlist__for_each_safe(pos, n, self) \
75 for (pos = strlist__first(self), n = strlist__next(pos); pos;\
76 pos = n, n = strlist__next(n))
78 int strlist__parse_list(struct strlist *self, const char *s);
79 #endif /* __PERF_STRLIST_H */