Fix problems with rb code
[fio.git] / log.c
... / ...
CommitLineData
1#include <stdio.h>
2#include <stdlib.h>
3#include "list.h"
4#include "fio.h"
5
6void write_iolog_put(struct thread_data *td, struct io_u *io_u)
7{
8 fprintf(td->iolog_f, "%u,%llu,%lu\n", io_u->ddir, io_u->offset, io_u->buflen);
9}
10
11int read_iolog_get(struct thread_data *td, struct io_u *io_u)
12{
13 struct io_piece *ipo;
14
15 if (!list_empty(&td->io_log_list)) {
16 ipo = list_entry(td->io_log_list.next, struct io_piece, list);
17 list_del(&ipo->list);
18 io_u->offset = ipo->offset;
19 io_u->buflen = ipo->len;
20 io_u->ddir = ipo->ddir;
21 io_u->file = ipo->file;
22 free(ipo);
23 return 0;
24 }
25
26 return 1;
27}
28
29void prune_io_piece_log(struct thread_data *td)
30{
31 struct io_piece *ipo;
32 struct rb_node *n;
33
34 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
35 ipo = rb_entry(n, struct io_piece, rb_node);
36 rb_erase(n, &td->io_hist_tree);
37 free(ipo);
38 }
39}
40
41/*
42 * log a successful write, so we can unwind the log for verify
43 */
44void log_io_piece(struct thread_data *td, struct io_u *io_u)
45{
46 struct rb_node **p = &td->io_hist_tree.rb_node;
47 struct rb_node *parent = NULL;
48 struct io_piece *ipo, *__ipo;
49
50 ipo = malloc(sizeof(struct io_piece));
51 RB_CLEAR_NODE(&ipo->rb_node);
52 ipo->file = io_u->file;
53 ipo->offset = io_u->offset;
54 ipo->len = io_u->buflen;
55
56 /*
57 * Sort the entry into the verification list
58 */
59 while (*p) {
60 parent = *p;
61
62 __ipo = rb_entry(parent, struct io_piece, rb_node);
63 if (ipo->offset <= __ipo->offset)
64 p = &(*p)->rb_left;
65 else
66 p = &(*p)->rb_right;
67 }
68
69 rb_link_node(&ipo->rb_node, parent, p);
70 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
71}
72
73void write_iolog_close(struct thread_data *td)
74{
75 fflush(td->iolog_f);
76 fclose(td->iolog_f);
77 free(td->iolog_buf);
78}
79
80/*
81 * Open a stored log and read in the entries.
82 */
83static int init_iolog_read(struct thread_data *td)
84{
85 unsigned long long offset;
86 unsigned int bytes;
87 char *str, *p;
88 FILE *f;
89 int rw, reads, writes;
90
91 f = fopen(td->o.read_iolog_file, "r");
92 if (!f) {
93 perror("fopen read iolog");
94 return 1;
95 }
96
97 /*
98 * Read in the read iolog and store it, reuse the infrastructure
99 * for doing verifications.
100 */
101 str = malloc(4096);
102 reads = writes = 0;
103 while ((p = fgets(str, 4096, f)) != NULL) {
104 struct io_piece *ipo;
105
106 if (sscanf(p, "%d,%llu,%u", &rw, &offset, &bytes) != 3) {
107 log_err("bad iolog: %s\n", p);
108 continue;
109 }
110 if (rw == DDIR_READ)
111 reads++;
112 else if (rw == DDIR_WRITE)
113 writes++;
114 else if (rw != DDIR_SYNC) {
115 log_err("bad ddir: %d\n", rw);
116 continue;
117 }
118
119 ipo = malloc(sizeof(*ipo));
120 INIT_LIST_HEAD(&ipo->list);
121 ipo->offset = offset;
122 ipo->len = bytes;
123 ipo->ddir = (enum fio_ddir) rw;
124 if (bytes > td->o.max_bs[rw])
125 td->o.max_bs[rw] = bytes;
126 list_add_tail(&ipo->list, &td->io_log_list);
127 }
128
129 free(str);
130 fclose(f);
131
132 if (!reads && !writes)
133 return 1;
134 else if (reads && !writes)
135 td->o.td_ddir = TD_DDIR_READ;
136 else if (!reads && writes)
137 td->o.td_ddir = TD_DDIR_READ;
138 else
139 td->o.td_ddir = TD_DDIR_RW;
140
141 return 0;
142}
143
144/*
145 * Setup a log for storing io patterns.
146 */
147static int init_iolog_write(struct thread_data *td)
148{
149 FILE *f;
150
151 f = fopen(td->o.write_iolog_file, "w+");
152 if (!f) {
153 perror("fopen write iolog");
154 return 1;
155 }
156
157 /*
158 * That's it for writing, setup a log buffer and we're done.
159 */
160 td->iolog_f = f;
161 td->iolog_buf = malloc(8192);
162 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
163 return 0;
164}
165
166int init_iolog(struct thread_data *td)
167{
168 int ret = 0;
169
170 if (td->io_ops->flags & FIO_DISKLESSIO)
171 return 0;
172
173 if (td->o.read_iolog_file)
174 ret = init_iolog_read(td);
175 else if (td->o.write_iolog_file)
176 ret = init_iolog_write(td);
177
178 return ret;
179}
180
181void setup_log(struct io_log **log)
182{
183 struct io_log *l = malloc(sizeof(*l));
184
185 l->nr_samples = 0;
186 l->max_samples = 1024;
187 l->log = malloc(l->max_samples * sizeof(struct io_sample));
188 *log = l;
189}
190
191void __finish_log(struct io_log *log, const char *name)
192{
193 unsigned int i;
194 FILE *f;
195
196 f = fopen(name, "w");
197 if (!f) {
198 perror("fopen log");
199 return;
200 }
201
202 for (i = 0; i < log->nr_samples; i++)
203 fprintf(f, "%lu, %lu, %u\n", log->log[i].time, log->log[i].val, log->log[i].ddir);
204
205 fclose(f);
206 free(log->log);
207 free(log);
208}
209
210void finish_log(struct thread_data *td, struct io_log *log, const char *name)
211{
212 char file_name[256];
213
214 snprintf(file_name, 200, "client%d_%s.log", td->thread_number, name);
215 __finish_log(log, file_name);
216}