c3ab4ae1b1d8608214269dad4dda966d32540130
[fio.git] / t / genzipf.c
1 /*
2  * Generate/analyze pareto/zipf distributions to better understand
3  * what an access pattern would look like.
4  *
5  * For instance, the following would generate a zipf distribution
6  * with theta 1.2, using 100,000 values and split the reporting into
7  * 20 buckets:
8  *
9  *      t/genzipf zipf 1.2 100000 20
10  *
11  * Only the distribution type (zipf or pareto) and spread input need
12  * to be given, if not given defaults are used.
13  *
14  */
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <fcntl.h>
18 #include <string.h>
19
20 #include "../lib/zipf.h"
21 #include "../flist.h"
22 #include "../hash.h"
23 #include "../rbtree.h"
24
25 #define DEF_NR          1000000
26 #define DEF_NR_OUTPUT   23
27
28 struct node {
29         struct flist_head list;
30         struct rb_node rb;
31         unsigned long long val;
32         unsigned long hits;
33 };
34
35 static struct flist_head *hash;
36 static unsigned long hash_bits = 24;
37 static unsigned long hash_size = 1 << 24;
38 static struct rb_root rb;
39
40 static struct node *hash_lookup(unsigned long long val)
41 {
42         struct flist_head *l = &hash[hash_long(val, hash_bits)];
43         struct flist_head *entry;
44         struct node *n;
45
46         flist_for_each(entry, l) {
47                 n = flist_entry(entry, struct node, list);
48                 if (n->val == val)
49                         return n;
50         }
51
52         return NULL;
53 }
54
55 static void hash_insert(unsigned long long val)
56 {
57         struct flist_head *l = &hash[hash_long(val, hash_bits)];
58         struct node *n = malloc(sizeof(*n));
59
60         n->val = val;
61         n->hits = 1;
62         flist_add_tail(&n->list, l);
63 }
64
65 static void rb_insert(struct node *n)
66 {
67         struct rb_node **p, *parent;
68
69         memset(&n->rb, 0, sizeof(n->rb));
70         p = &rb.rb_node;
71         parent = NULL;
72         while (*p) {
73                 struct node *__n;
74
75                 parent = *p;
76                 __n = rb_entry(parent, struct node, rb);
77                 if (n->hits > __n->hits)
78                         p = &(*p)->rb_left;
79                 else
80                         p = &(*p)->rb_right;
81         }
82
83         rb_link_node(&n->rb, parent, p);
84         rb_insert_color(&n->rb, &rb);
85 }
86
87 static unsigned long rb_add(struct flist_head *list)
88 {
89         struct flist_head *entry;
90         unsigned long ret = 0;
91         struct node *n;
92
93         flist_for_each(entry, list) {
94                 n = flist_entry(entry, struct node, list);
95
96                 rb_insert(n);
97                 ret++;
98         }
99
100         return ret;
101 }
102
103 static unsigned long rb_gen(void)
104 {
105         unsigned long ret = 0;
106         unsigned int i;
107
108         for (i = 0; i < hash_size; i++)
109                 ret += rb_add(&hash[i]);
110
111         return ret;
112 }
113
114 int main(int argc, char *argv[])
115 {
116         unsigned long nranges, output_nranges;
117         unsigned long offset;
118         unsigned long i, j, nr_vals, cur_vals, interval;
119         double *output, perc, perc_i;
120         struct zipf_state zs;
121         struct rb_node *n;
122         int use_zipf;
123         double val;
124
125         if (argc < 3) {
126                 printf("%s: {zipf,pareto} val values [output ranges]\n", argv[0]);
127                 return 1;
128         }
129
130         if (!strcmp(argv[1], "zipf"))
131                 use_zipf = 1;
132         else if (!strcmp(argv[1], "pareto"))
133                 use_zipf = 0;
134         else {
135                 printf("Bad distribution type <%s>\n", argv[1]);
136                 return 1;
137         }
138
139         val = atof(argv[2]);
140         if ((val >= 1.00 || val < 0.00) && !use_zipf) {
141                 printf("pareto input must be > 0.00 and < 1.00\n");
142                 return 1;
143         }
144
145         nranges = DEF_NR;
146         output_nranges = DEF_NR_OUTPUT;
147
148         if (argc >= 4)
149                 nranges = strtoul(argv[3], NULL, 10);
150         if (argc >= 5)
151                 output_nranges = strtoul(argv[4], NULL, 10);
152
153         printf("Generating %s distribution with %f input and %lu ranges.\n", use_zipf ? "zipf" : "pareto", val, nranges);
154
155         if (use_zipf)
156                 zipf_init(&zs, nranges, val);
157         else
158                 pareto_init(&zs, nranges, val);
159
160         hash_bits = 0;
161         hash_size = nranges;
162         while ((hash_size >>= 1) != 0)
163                 hash_bits++;
164
165         hash_size = 1 << hash_bits;
166
167         hash = malloc(hash_size * sizeof(struct flist_head));
168         for (i = 0; i < hash_size; i++)
169                 INIT_FLIST_HEAD(&hash[i]);
170
171         for (nr_vals = 0, i = 0; i < nranges; i++) {
172                 struct node *n;
173
174                 if (use_zipf)
175                         offset = zipf_next(&zs);
176                 else
177                         offset = pareto_next(&zs);
178
179                 n = hash_lookup(offset);
180                 if (n)
181                         n->hits++;
182                 else
183                         hash_insert(offset);
184
185                 nr_vals++;
186         }
187
188         nr_vals = rb_gen();
189
190         interval = (nr_vals + output_nranges - 1) / output_nranges;
191
192         output = malloc(output_nranges * sizeof(double));
193
194         i = j = cur_vals = 0;
195         
196         n = rb_first(&rb);
197         while (n) {
198                 struct node *node = rb_entry(n, struct node, rb);
199
200                 if (i >= interval) {
201                         output[j] = (double) (cur_vals + 1) / (double) nranges;
202                         output[j] *= 100.0;
203                         j++;
204                         cur_vals = node->hits;
205                         interval += (nr_vals + output_nranges - 1) / output_nranges;
206                 } else
207                         cur_vals += node->hits;
208
209                 n = rb_next(n);
210                 i++;
211         }
212
213         perc_i = 100.0 / (double) output_nranges;
214         perc = 0.0;
215         for (i = 0; i < j; i++) {
216                 perc += perc_i;
217                 printf("%s %6.2f%%:\t%6.2f%% of hits\n", i ? "|->" : "Top", perc, output[i]);
218         }
219
220         free(output);
221         free(hash);
222         return 0;
223 }