gfio: make the end results window a scrolled one
[fio.git] / graph.c
CommitLineData
af58ef32
SC
1/*
2 * gfio - gui front end for fio - the flexible io tester
3 *
4 * Copyright (C) 2012 Stephen M. Cameron <stephenmcameron@gmail.com>
5 *
6 * The license below covers all files distributed with fio unless otherwise
7 * noted in the file itself.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23#include <string.h>
24#include <malloc.h>
25#include <math.h>
26#include <assert.h>
27
28#include <cairo.h>
29#include <gtk/gtk.h>
30
31#include "tickmarks.h"
32
33struct xyvalue {
34 double x, y;
35};
36
37struct graph_value {
38 struct graph_value *next;
39 void *value;
40};
41
42struct graph_label {
43 char *label;
44 struct graph_value *tail;
45 struct graph_value *values;
46 struct graph_label *next;
47 double r, g, b;
48 int value_count;
49 struct graph *parent;
50};
51
52struct graph {
53 char *title;
54 char *xtitle;
55 char *ytitle;
87d5f276 56 unsigned int xdim, ydim;
af58ef32
SC
57 struct graph_label *labels;
58 struct graph_label *tail;
59 int per_label_limit;
f3e8440f 60 const char *font;
af58ef32
SC
61};
62
3ea48b88
SC
63void graph_set_size(struct graph *g, unsigned int xdim, unsigned int ydim)
64{
65 g->xdim = xdim;
66 g->ydim = ydim;
67}
68
f3e8440f 69struct graph *graph_new(unsigned int xdim, unsigned int ydim, const char *font)
af58ef32
SC
70{
71 struct graph *g;
72
73 g = calloc(1, sizeof(*g));
3ea48b88 74 graph_set_size(g, xdim, ydim);
af58ef32 75 g->per_label_limit = -1;
f3e8440f
JA
76 g->font = font;
77 if (!g->font)
78 g->font = "Sans";
af58ef32
SC
79 return g;
80}
81
82static int count_labels(struct graph_label *labels)
83{
84 int count = 0;
85 struct graph_label *i;
86
87 for (i = labels; i; i = i->next)
88 count++;
89 return count;
90}
91
92static int count_values(struct graph_value *values)
93{
94 int count = 0;
95 struct graph_value *i;
96
97 for (i = values; i; i = i->next)
98 count++;
99 return count;
100}
101
102typedef double (*double_comparator)(double a, double b);
103
104static double mindouble(double a, double b)
105{
106 return a < b ? a : b;
107}
108
109static double maxdouble(double a, double b)
110{
111 return a < b ? b : a;
112}
113
114static double find_double_values(struct graph_value *values, double_comparator cmp)
115{
116 struct graph_value *i;
117 int first = 1;
118 double answer, tmp;
119
120 assert(values != NULL);
121 answer = 0.0; /* shut the compiler up, might need to think harder though. */
122 for (i = values; i; i = i->next) {
123 tmp = *(double *) i->value;
124 if (first) {
125 answer = tmp;
126 first = 0;
127 } else {
128 answer = cmp(answer, tmp);
129 }
130 }
131 return answer;
132}
133
134static double find_double_data(struct graph_label *labels, double_comparator cmp)
135{
136 struct graph_label *i;
137 int first = 1;
138 double answer, tmp;
139
140 assert(labels != NULL);
141 answer = 0.0; /* shut the compiler up, might need to think harder though. */
142 for (i = labels; i; i = i->next) {
143 tmp = find_double_values(i->values, cmp);
144 if (first) {
145 answer = tmp;
146 first = 0;
147 } else {
148 answer = cmp(tmp, answer);
149 }
150 }
151 return answer;
152}
153
154static double find_min_data(struct graph_label *labels)
155{
156 return find_double_data(labels, mindouble);
157}
158
159static double find_max_data(struct graph_label *labels)
160{
161 return find_double_data(labels, maxdouble);
162}
163
164static void draw_bars(struct graph *bg, cairo_t *cr, struct graph_label *lb,
165 double label_offset, double bar_width,
166 double mindata, double maxdata)
167{
168 struct graph_value *i;
169 double x1, y1, x2, y2;
170 int bar_num = 0;
171 double domain, range, v;
172
173 domain = (maxdata - mindata);
174 range = (double) bg->ydim * 0.80; /* FIXME */
175 cairo_stroke(cr);
176 for (i = lb->values; i; i = i->next) {
177
178 x1 = label_offset + (double) bar_num * bar_width + (bar_width * 0.05);
179 x2 = x1 + bar_width * 0.90;
180 y2 = bg->ydim * 0.90;
181 v = *(double *) i->value;
182 y1 = y2 - (((v - mindata) / domain) * range);
183 cairo_move_to(cr, x1, y1);
184 cairo_line_to(cr, x1, y2);
185 cairo_line_to(cr, x2, y2);
186 cairo_line_to(cr, x2, y1);
187 cairo_close_path(cr);
188 cairo_fill(cr);
189 cairo_stroke(cr);
190 bar_num++;
191 }
192}
193
10e54cdc
SC
194static void draw_aligned_text(struct graph *g, cairo_t *cr, double x, double y,
195 double fontsize, const char *text, int alignment)
af58ef32 196{
10e54cdc
SC
197#define CENTERED 0
198#define LEFT_JUSTIFIED 1
199#define RIGHT_JUSTIFIED 2
200
201 double factor, direction;
af58ef32
SC
202 cairo_text_extents_t extents;
203
10e54cdc
SC
204 switch(alignment) {
205 case CENTERED:
206 direction = -1.0;
207 factor = 0.5;
208 break;
209 case RIGHT_JUSTIFIED:
210 direction = -1.0;
211 factor = 1.0;
212 break;
213 case LEFT_JUSTIFIED:
214 default:
215 direction = 1.0;
216 factor = 1.0;
217 break;
218 }
f3e8440f 219 cairo_select_font_face (cr, g->font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
af58ef32
SC
220
221 cairo_set_font_size(cr, fontsize);
222 cairo_text_extents(cr, text, &extents);
10e54cdc 223 x = x + direction * (factor * extents.width + extents.x_bearing);
af58ef32
SC
224 y = y - (extents.height / 2 + extents.y_bearing);
225
226 cairo_move_to(cr, x, y);
227 cairo_show_text(cr, text);
228}
229
10e54cdc
SC
230static inline void draw_centered_text(struct graph *g, cairo_t *cr, double x, double y,
231 double fontsize, const char *text)
232{
233 draw_aligned_text(g, cr, x, y, fontsize, text, CENTERED);
234}
235
236static inline void draw_right_justified_text(struct graph *g, cairo_t *cr,
237 double x, double y,
238 double fontsize, const char *text)
239{
240 draw_aligned_text(g, cr, x, y, fontsize, text, RIGHT_JUSTIFIED);
241}
242
243static inline void draw_left_justified_text(struct graph *g, cairo_t *cr,
244 double x, double y,
245 double fontsize, const char *text)
246{
247 draw_aligned_text(g, cr, x, y, fontsize, text, LEFT_JUSTIFIED);
248}
249
f3e8440f
JA
250static void draw_vertical_centered_text(struct graph *g, cairo_t *cr, double x,
251 double y, double fontsize,
252 const char *text)
af58ef32
SC
253{
254 double sx, sy;
255 cairo_text_extents_t extents;
256
f3e8440f 257 cairo_select_font_face(cr, g->font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
af58ef32
SC
258
259 cairo_set_font_size(cr, fontsize);
260 cairo_text_extents(cr, text, &extents);
261 sx = x;
262 sy = y;
263 y = y + (extents.width / 2.0 + extents.x_bearing);
264 x = x - (extents.height / 2.0 + extents.y_bearing);
265
266 cairo_move_to(cr, x, y);
267 cairo_save(cr);
268 cairo_translate(cr, -sx, -sy);
269 cairo_rotate(cr, -90.0 * M_PI / 180.0);
270 cairo_translate(cr, sx, sy);
271 cairo_show_text(cr, text);
272 cairo_restore(cr);
273}
274
275static void graph_draw_common(struct graph *g, cairo_t *cr,
276 double *x1, double *y1, double *x2, double *y2)
277{
278 cairo_set_source_rgb(cr, 0, 0, 0);
f3e8440f 279 cairo_set_line_width (cr, 0.8);
af58ef32 280
af58ef32
SC
281 /* for now just set margins at 10% of width. This is not very good. */
282 *x1 = g->xdim / 10.0;
f3e8440f 283 *x2 = 9.0 * *x1;
af58ef32 284 *y1 = g->ydim / 10.0;
f3e8440f 285 *y2 = 9.0 * *y1;
af58ef32
SC
286
287 cairo_move_to(cr, *x1, *y1);
288 cairo_line_to(cr, *x1, *y2);
289 cairo_line_to(cr, *x2, *y2);
290 cairo_line_to(cr, *x2, *y1);
291 cairo_line_to(cr, *x1, *y1);
292 cairo_stroke(cr);
293
f3e8440f
JA
294 draw_centered_text(g, cr, g->xdim / 2, g->ydim / 20, 20.0, g->title);
295 draw_centered_text(g, cr, g->xdim / 2, g->ydim * 0.97, 14.0, g->xtitle);
296 draw_vertical_centered_text(g, cr, g->xdim * 0.02, g->ydim / 2, 14.0, g->ytitle);
af58ef32
SC
297 cairo_stroke(cr);
298}
299
300static void graph_draw_x_ticks(struct graph *g, cairo_t *cr,
301 double x1, double y1, double x2, double y2,
302 double minx, double maxx, int nticks)
303{
304 struct tickmark *tm;
305 double tx;
306 int i;
307 static double dash[] = { 1.0, 2.0 };
308
309 nticks = calc_tickmarks(minx, maxx, nticks, &tm);
310
311 for (i = 0; i < nticks; i++) {
312 tx = (((tm[i].value) - minx) / (maxx - minx)) * (x2 - x1) + x1;
313 if (tx < x1 || tx > x2)
314 continue;
315
316 /* Draw tick mark */
f3e8440f 317 cairo_set_line_width(cr, 0.8);
af58ef32
SC
318 cairo_move_to(cr, tx, y2);
319 cairo_line_to(cr, tx, y2 + (y2 - y1) * 0.03);
320 cairo_stroke(cr);
321
322 /* draw grid lines */
323 cairo_save(cr);
324 cairo_set_dash(cr, dash, 2, 2.0);
325 cairo_set_line_width(cr, 0.5);
326 cairo_move_to(cr, tx, y1);
327 cairo_line_to(cr, tx, y2);
328 cairo_stroke(cr);
329 cairo_restore(cr);
330
331 /* draw tickmark label */
f3e8440f 332 draw_centered_text(g, cr, tx, y2 * 1.04, 12.0, tm[i].string);
af58ef32
SC
333 cairo_stroke(cr);
334
335 }
336}
337
338static void graph_draw_y_ticks(struct graph *g, cairo_t *cr,
339 double x1, double y1, double x2, double y2,
340 double miny, double maxy, int nticks)
341{
342 struct tickmark *tm;
343 double ty;
344 int i;
345 static double dash[] = { 2.0, 2.0 };
346
347 nticks = calc_tickmarks(miny, maxy, nticks, &tm);
348
349 for (i = 0; i < nticks; i++) {
350 ty = y2 - (((tm[i].value) - miny) / (maxy - miny)) * (y2 - y1);
351 if (ty < y1 || ty > y2)
352 continue;
353 /* draw tick mark */
354 cairo_move_to(cr, x1, ty);
355 cairo_line_to(cr, x1 - (x2 - x1) * 0.02, ty);
356 cairo_stroke(cr);
357
358 /* draw grid lines */
359 cairo_save(cr);
360 cairo_set_dash(cr, dash, 2, 2.0);
361 cairo_set_line_width(cr, 0.5);
362 cairo_move_to(cr, x1, ty);
363 cairo_line_to(cr, x2, ty);
364 cairo_stroke(cr);
365 cairo_restore(cr);
366
367 /* draw tickmark label */
10e54cdc 368 draw_right_justified_text(g, cr, x1 - (x2 - x1) * 0.025, ty, 12.0, tm[i].string);
af58ef32
SC
369 cairo_stroke(cr);
370 }
371}
372
373void bar_graph_draw(struct graph *bg, cairo_t *cr)
374{
375 double x1, y1, x2, y2;
376 double space_per_label, bar_width;
377 double label_offset, mindata, maxdata;
378 int i, nlabels;
379 struct graph_label *lb;
380
381 cairo_save(cr);
382 graph_draw_common(bg, cr, &x1, &y1, &x2, &y2);
383
384 nlabels = count_labels(bg->labels);
385 space_per_label = (x2 - x1) / (double) nlabels;
386
387 mindata = find_min_data(bg->labels);
388 maxdata = find_max_data(bg->labels);
389
390 if (fabs(maxdata - mindata) < 1e-20) {
f3e8440f 391 draw_centered_text(bg, cr,
af58ef32
SC
392 x1 + (x2 - x1) / 2.0,
393 y1 + (y2 - y1) / 2.0, 20.0, "No good data");
394 return;
395 }
396
397 graph_draw_y_ticks(bg, cr, x1, y1, x2, y2, mindata, maxdata, 10);
398
399 i = 0;
400 for (lb = bg->labels; lb; lb = lb->next) {
401 int nvalues;
402 nvalues = count_values(lb->values);
403 bar_width = (space_per_label - space_per_label * 0.2) / (double) nvalues;
404 label_offset = bg->xdim * 0.1 + space_per_label * (double) i + space_per_label * 0.1;
405 draw_bars(bg, cr, lb, label_offset, bar_width, mindata, maxdata);
406 // draw_centered_text(cr, label_offset + (bar_width / 2.0 + bar_width * 0.1), bg->ydim * 0.93,
f3e8440f 407 draw_centered_text(bg, cr, x1 + space_per_label * (i + 0.5), bg->ydim * 0.93,
af58ef32
SC
408 12.0, lb->label);
409 i++;
410 }
411 cairo_stroke(cr);
412 cairo_restore(cr);
413}
414
415typedef double (*xy_value_extractor)(struct graph_value *v);
416
417static double getx(struct graph_value *v)
418{
419 struct xyvalue *xy = v->value;
420 return xy->x;
421}
422
423static double gety(struct graph_value *v)
424{
425 struct xyvalue *xy = v->value;
426 return xy->y;
427}
428
429static double find_xy_value(struct graph *g, xy_value_extractor getvalue, double_comparator cmp)
430{
10e54cdc 431 double tmp, answer = 0.0;
af58ef32
SC
432 struct graph_label *i;
433 struct graph_value *j;
d582bf70 434 int first = 1;
af58ef32
SC
435
436 for (i = g->labels; i; i = i->next)
437 for (j = i->values; j; j = j->next) {
438 tmp = getvalue(j);
d582bf70
SC
439 if (first) {
440 first = 0;
441 answer = tmp;
442 }
af58ef32
SC
443 answer = cmp(tmp, answer);
444 }
445 return answer;
446}
447
448void line_graph_draw(struct graph *g, cairo_t *cr)
449{
450 double x1, y1, x2, y2;
451 double minx, miny, maxx, maxy;
452 double tx, ty;
453 struct graph_label *i;
454 struct graph_value *j;
9ce9cfbd 455 int good_data = 1, first = 1;
af58ef32
SC
456
457 cairo_save(cr);
458 graph_draw_common(g, cr, &x1, &y1, &x2, &y2);
459
460 minx = find_xy_value(g, getx, mindouble);
461 maxx = find_xy_value(g, getx, maxdouble);
462 miny = find_xy_value(g, gety, mindouble);
463 maxy = find_xy_value(g, gety, maxdouble);
464
465 if (fabs(maxx - minx) < 1e-20 || fabs(maxy - miny) < 1e-20) {
9ce9cfbd
SC
466 good_data = 0;
467 minx = 0.0;
468 miny = 0.0;
469 maxx = 10.0;
470 maxy = 100.0;
af58ef32
SC
471 }
472
473 graph_draw_x_ticks(g, cr, x1, y1, x2, y2, minx, maxx, 10);
474 graph_draw_y_ticks(g, cr, x1, y1, x2, y2, miny, maxy, 10);
475
9ce9cfbd
SC
476 if (!good_data)
477 goto skip_data;
478
f3e8440f 479 cairo_set_line_width(cr, 1.5);
af58ef32
SC
480 for (i = g->labels; i; i = i->next) {
481 first = 1;
cae08727
SC
482 if (i->r < 0) /* invisible data */
483 continue;
af58ef32
SC
484 cairo_set_source_rgb(cr, i->r, i->g, i->b);
485 for (j = i->values; j; j = j->next) {
486 tx = ((getx(j) - minx) / (maxx - minx)) * (x2 - x1) + x1;
487 ty = y2 - ((gety(j) - miny) / (maxy - miny)) * (y2 - y1);
488 if (first) {
489 cairo_move_to(cr, tx, ty);
490 first = 0;
491 } else {
492 cairo_line_to(cr, tx, ty);
493 }
494 }
495 cairo_stroke(cr);
496 }
9ce9cfbd
SC
497
498skip_data:
af58ef32 499 cairo_restore(cr);
9ce9cfbd 500
af58ef32
SC
501}
502
503static void gfree(void *f)
504{
505 if (f)
506 free(f);
507}
508
509static void setstring(char **str, const char *value)
510{
511 gfree(*str);
512 *str = strdup(value);
513}
514
515void graph_title(struct graph *bg, const char *title)
516{
517 setstring(&bg->title, title);
518}
519
520void graph_x_title(struct graph *bg, const char *title)
521{
522 setstring(&bg->xtitle, title);
523}
524
525void graph_y_title(struct graph *bg, const char *title)
526{
527 setstring(&bg->ytitle, title);
528}
529
530static struct graph_label *graph_find_label(struct graph *bg,
531 const char *label)
532{
533 struct graph_label *i;
534
535 for (i = bg->labels; i; i = i->next)
536 if (strcmp(label, i->label) == 0)
537 return i;
538 return NULL;
539}
540
541void graph_add_label(struct graph *bg, const char *label)
542{
543 struct graph_label *i;
544
545 i = graph_find_label(bg, label);
546 if (i)
547 return; /* already present. */
548 i = calloc(1, sizeof(*i));
549 i->parent = bg;
550 setstring(&i->label, label);
551 i->next = NULL;
552 if (!bg->tail)
553 bg->labels = i;
554 else
555 bg->tail->next = i;
556 bg->tail = i;
557}
558
559static void graph_label_add_value(struct graph_label *i, void *value)
560{
561 struct graph_value *x;
562
563 x = malloc(sizeof(*x));
564 x->value = value;
565 x->next = NULL;
566 if (!i->tail) {
567 i->values = x;
568 } else {
569 i->tail->next = x;
570 }
571 i->tail = x;
572 i->value_count++;
573
574 if (i->parent->per_label_limit != -1 &&
575 i->value_count > i->parent->per_label_limit) {
576 x = i->values;
577 i->values = i->values->next;
578 free(x->value);
579 free(x);
580 i->value_count--;
581 }
582}
583
584int graph_add_data(struct graph *bg, const char *label, const double value)
585{
586 struct graph_label *i;
587 double *d;
588
589 d = malloc(sizeof(*d));
590 *d = value;
591
592 i = graph_find_label(bg, label);
593 if (!i)
594 return -1;
595 graph_label_add_value(i, d);
596 return 0;
597}
598
599int graph_add_xy_data(struct graph *bg, const char *label,
600 const double x, const double y)
601{
602 struct graph_label *i;
603 struct xyvalue *xy;
604
605 xy = malloc(sizeof(*xy));
606 xy->x = x;
607 xy->y = y;
608
609 i = graph_find_label(bg, label);
610 if (!i)
611 return -1;
612 graph_label_add_value(i, xy);
613 return 0;
614}
615
616static void graph_free_values(struct graph_value *values)
617{
618 struct graph_value *i, *next;
619
620 for (i = values; i; i = next) {
621 next = i->next;
622 gfree(i->value);
623 gfree(i);
624 }
625}
626
627static void graph_free_labels(struct graph_label *labels)
628{
629 struct graph_label *i, *next;
630
631 for (i = labels; i; i = next) {
632 next = i->next;
633 graph_free_values(i->values);
634 gfree(i);
635 }
636}
637
638void graph_set_color(struct graph *gr, const char *label,
639 double red, double green, double blue)
640{
641 struct graph_label *i;
642 double r, g, b;
643
cae08727
SC
644 if (red < 0.0) { /* invisible color */
645 r = -1.0;
646 g = -1.0;
647 b = -1.0;
648 } else {
649 r = fabs(red);
650 g = fabs(green);
651 b = fabs(blue);
652
653 if (r > 1.0)
654 r = 1.0;
655 if (g > 1.0)
656 g = 1.0;
657 if (b > 1.0)
658 b =1.0;
659 }
af58ef32
SC
660
661 for (i = gr->labels; i; i = i->next)
662 if (strcmp(i->label, label) == 0) {
663 i->r = r;
664 i->g = g;
665 i->b = b;
666 break;
667 }
668}
669
670void graph_free(struct graph *bg)
671{
672 gfree(bg->title);
673 gfree(bg->xtitle);
674 gfree(bg->ytitle);
675 graph_free_labels(bg->labels);
676}
677
678/* For each line in the line graph, up to per_label_limit segments may
679 * be added. After that, adding more data to the end of the line
680 * causes data to drop off of the front of the line.
681 */
682void line_graph_set_data_count_limit(struct graph *g, int per_label_limit)
683{
684 g->per_label_limit = per_label_limit;
685}
686