blob: 5bcefbe4fc871645ab975dd7f0f3662d6067f2f0 [file] [log] [blame]
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +01001/*
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>
Jens Axboe93e2db22012-03-13 09:45:22 +010027#include <stdlib.h>
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010028
29#include <cairo.h>
30#include <gtk/gtk.h>
31
32#include "tickmarks.h"
Stephen M. Cameron09ad20f2012-03-11 11:34:38 +010033#include "graph.h"
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010034
35struct xyvalue {
36 double x, y;
Jens Axboe93e2db22012-03-13 09:45:22 +010037 int gx, gy;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010038};
39
40struct graph_value {
41 struct graph_value *next;
Jens Axboe93e2db22012-03-13 09:45:22 +010042 char *tooltip;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010043 void *value;
44};
45
46struct graph_label {
47 char *label;
48 struct graph_value *tail;
49 struct graph_value *values;
50 struct graph_label *next;
51 double r, g, b;
52 int value_count;
Jens Axboe93e2db22012-03-13 09:45:22 +010053 unsigned int tooltip_count;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010054 struct graph *parent;
55};
56
57struct graph {
58 char *title;
59 char *xtitle;
60 char *ytitle;
Jens Axboe87d5f272012-03-07 12:31:40 +010061 unsigned int xdim, ydim;
Stephen M. Cameron57f9d282012-03-11 11:36:51 +010062 double xoffset, yoffset;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010063 struct graph_label *labels;
64 struct graph_label *tail;
65 int per_label_limit;
Jens Axboef3e84402012-03-07 13:14:32 +010066 const char *font;
Stephen M. Cameron7175d912012-03-11 11:35:10 +010067 graph_axis_unit_change_callback x_axis_unit_change_callback;
68 graph_axis_unit_change_callback y_axis_unit_change_callback;
Jens Axboed8fbeef2012-03-14 10:25:44 +010069 unsigned int base_offset;
Stephen M. Camerondef0ac22012-03-12 07:32:57 +010070 double left_extra;
71 double right_extra;
72 double top_extra;
73 double bottom_extra;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010074};
75
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +010076void graph_set_size(struct graph *g, unsigned int xdim, unsigned int ydim)
77{
78 g->xdim = xdim;
79 g->ydim = ydim;
80}
81
Stephen M. Cameron57f9d282012-03-11 11:36:51 +010082void graph_set_position(struct graph *g, double xoffset, double yoffset)
83{
84 g->xoffset = xoffset;
85 g->yoffset = yoffset;
86}
87
Jens Axboef3e84402012-03-07 13:14:32 +010088struct graph *graph_new(unsigned int xdim, unsigned int ydim, const char *font)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010089{
90 struct graph *g;
91
92 g = calloc(1, sizeof(*g));
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +010093 graph_set_size(g, xdim, ydim);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010094 g->per_label_limit = -1;
Jens Axboef3e84402012-03-07 13:14:32 +010095 g->font = font;
96 if (!g->font)
97 g->font = "Sans";
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +010098 return g;
99}
100
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100101void graph_x_axis_unit_change_notify(struct graph *g, graph_axis_unit_change_callback f)
102{
103 g->x_axis_unit_change_callback = f;
104}
105
106void graph_y_axis_unit_change_notify(struct graph *g, graph_axis_unit_change_callback f)
107{
108 g->y_axis_unit_change_callback = f;
109}
110
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100111static int count_labels(struct graph_label *labels)
112{
113 int count = 0;
114 struct graph_label *i;
115
116 for (i = labels; i; i = i->next)
117 count++;
118 return count;
119}
120
121static int count_values(struct graph_value *values)
122{
123 int count = 0;
124 struct graph_value *i;
125
126 for (i = values; i; i = i->next)
127 count++;
128 return count;
129}
130
131typedef double (*double_comparator)(double a, double b);
132
133static double mindouble(double a, double b)
134{
135 return a < b ? a : b;
136}
137
138static double maxdouble(double a, double b)
139{
140 return a < b ? b : a;
141}
142
143static double find_double_values(struct graph_value *values, double_comparator cmp)
144{
145 struct graph_value *i;
146 int first = 1;
147 double answer, tmp;
148
149 assert(values != NULL);
150 answer = 0.0; /* shut the compiler up, might need to think harder though. */
151 for (i = values; i; i = i->next) {
152 tmp = *(double *) i->value;
153 if (first) {
154 answer = tmp;
155 first = 0;
156 } else {
157 answer = cmp(answer, tmp);
158 }
159 }
160 return answer;
161}
162
163static double find_double_data(struct graph_label *labels, double_comparator cmp)
164{
165 struct graph_label *i;
166 int first = 1;
167 double answer, tmp;
168
169 assert(labels != NULL);
170 answer = 0.0; /* shut the compiler up, might need to think harder though. */
171 for (i = labels; i; i = i->next) {
172 tmp = find_double_values(i->values, cmp);
173 if (first) {
174 answer = tmp;
175 first = 0;
176 } else {
177 answer = cmp(tmp, answer);
178 }
179 }
180 return answer;
181}
182
183static double find_min_data(struct graph_label *labels)
184{
185 return find_double_data(labels, mindouble);
186}
187
188static double find_max_data(struct graph_label *labels)
189{
190 return find_double_data(labels, maxdouble);
191}
192
193static void draw_bars(struct graph *bg, cairo_t *cr, struct graph_label *lb,
194 double label_offset, double bar_width,
195 double mindata, double maxdata)
196{
197 struct graph_value *i;
198 double x1, y1, x2, y2;
199 int bar_num = 0;
200 double domain, range, v;
201
202 domain = (maxdata - mindata);
203 range = (double) bg->ydim * 0.80; /* FIXME */
204 cairo_stroke(cr);
205 for (i = lb->values; i; i = i->next) {
206
207 x1 = label_offset + (double) bar_num * bar_width + (bar_width * 0.05);
208 x2 = x1 + bar_width * 0.90;
209 y2 = bg->ydim * 0.90;
210 v = *(double *) i->value;
211 y1 = y2 - (((v - mindata) / domain) * range);
212 cairo_move_to(cr, x1, y1);
213 cairo_line_to(cr, x1, y2);
214 cairo_line_to(cr, x2, y2);
215 cairo_line_to(cr, x2, y1);
216 cairo_close_path(cr);
217 cairo_fill(cr);
218 cairo_stroke(cr);
219 bar_num++;
220 }
221}
222
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100223static void draw_aligned_text(struct graph *g, cairo_t *cr, double x, double y,
224 double fontsize, const char *text, int alignment)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100225{
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100226#define CENTERED 0
227#define LEFT_JUSTIFIED 1
228#define RIGHT_JUSTIFIED 2
229
230 double factor, direction;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100231 cairo_text_extents_t extents;
232
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100233 switch(alignment) {
234 case CENTERED:
235 direction = -1.0;
236 factor = 0.5;
237 break;
238 case RIGHT_JUSTIFIED:
239 direction = -1.0;
240 factor = 1.0;
241 break;
242 case LEFT_JUSTIFIED:
243 default:
244 direction = 1.0;
245 factor = 1.0;
246 break;
247 }
Jens Axboef3e84402012-03-07 13:14:32 +0100248 cairo_select_font_face (cr, g->font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100249
250 cairo_set_font_size(cr, fontsize);
251 cairo_text_extents(cr, text, &extents);
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100252 x = x + direction * (factor * extents.width + extents.x_bearing);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100253 y = y - (extents.height / 2 + extents.y_bearing);
254
255 cairo_move_to(cr, x, y);
256 cairo_show_text(cr, text);
257}
258
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100259static inline void draw_centered_text(struct graph *g, cairo_t *cr, double x, double y,
260 double fontsize, const char *text)
261{
262 draw_aligned_text(g, cr, x, y, fontsize, text, CENTERED);
263}
264
265static inline void draw_right_justified_text(struct graph *g, cairo_t *cr,
266 double x, double y,
267 double fontsize, const char *text)
268{
269 draw_aligned_text(g, cr, x, y, fontsize, text, RIGHT_JUSTIFIED);
270}
271
272static inline void draw_left_justified_text(struct graph *g, cairo_t *cr,
273 double x, double y,
274 double fontsize, const char *text)
275{
276 draw_aligned_text(g, cr, x, y, fontsize, text, LEFT_JUSTIFIED);
277}
278
Jens Axboef3e84402012-03-07 13:14:32 +0100279static void draw_vertical_centered_text(struct graph *g, cairo_t *cr, double x,
280 double y, double fontsize,
281 const char *text)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100282{
283 double sx, sy;
284 cairo_text_extents_t extents;
285
Jens Axboef3e84402012-03-07 13:14:32 +0100286 cairo_select_font_face(cr, g->font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100287
288 cairo_set_font_size(cr, fontsize);
289 cairo_text_extents(cr, text, &extents);
290 sx = x;
291 sy = y;
292 y = y + (extents.width / 2.0 + extents.x_bearing);
293 x = x - (extents.height / 2.0 + extents.y_bearing);
294
295 cairo_move_to(cr, x, y);
296 cairo_save(cr);
297 cairo_translate(cr, -sx, -sy);
298 cairo_rotate(cr, -90.0 * M_PI / 180.0);
299 cairo_translate(cr, sx, sy);
300 cairo_show_text(cr, text);
301 cairo_restore(cr);
302}
303
304static void graph_draw_common(struct graph *g, cairo_t *cr,
305 double *x1, double *y1, double *x2, double *y2)
306{
307 cairo_set_source_rgb(cr, 0, 0, 0);
Jens Axboef3e84402012-03-07 13:14:32 +0100308 cairo_set_line_width (cr, 0.8);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100309
Stephen M. Cameron6bf86002012-03-08 16:58:50 +0100310 *x1 = 0.15 * g->xdim;
311 *x2 = 0.95 * g->xdim;
312 *y1 = 0.10 * g->ydim;
313 *y2 = 0.90 * g->ydim;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100314
315 cairo_move_to(cr, *x1, *y1);
316 cairo_line_to(cr, *x1, *y2);
317 cairo_line_to(cr, *x2, *y2);
318 cairo_line_to(cr, *x2, *y1);
319 cairo_line_to(cr, *x1, *y1);
320 cairo_stroke(cr);
321
Jens Axboef3e84402012-03-07 13:14:32 +0100322 draw_centered_text(g, cr, g->xdim / 2, g->ydim / 20, 20.0, g->title);
323 draw_centered_text(g, cr, g->xdim / 2, g->ydim * 0.97, 14.0, g->xtitle);
324 draw_vertical_centered_text(g, cr, g->xdim * 0.02, g->ydim / 2, 14.0, g->ytitle);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100325 cairo_stroke(cr);
326}
327
328static void graph_draw_x_ticks(struct graph *g, cairo_t *cr,
329 double x1, double y1, double x2, double y2,
Jens Axboed8fbeef2012-03-14 10:25:44 +0100330 double minx, double maxx, int nticks, int add_tm_text)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100331{
332 struct tickmark *tm;
333 double tx;
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100334 int i, power_of_ten;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100335 static double dash[] = { 1.0, 2.0 };
336
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100337 nticks = calc_tickmarks(minx, maxx, nticks, &tm, &power_of_ten,
Jens Axboed8fbeef2012-03-14 10:25:44 +0100338 g->x_axis_unit_change_callback == NULL, g->base_offset);
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100339 if (g->x_axis_unit_change_callback)
340 g->x_axis_unit_change_callback(g, power_of_ten);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100341
342 for (i = 0; i < nticks; i++) {
343 tx = (((tm[i].value) - minx) / (maxx - minx)) * (x2 - x1) + x1;
Jens Axboed8fbeef2012-03-14 10:25:44 +0100344
345 /* really tx < yx || tx > x2, but protect against rounding */
346 if (x1 - tx > 0.01 || tx - x2 > 0.01)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100347 continue;
348
349 /* Draw tick mark */
Jens Axboef3e84402012-03-07 13:14:32 +0100350 cairo_set_line_width(cr, 0.8);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100351 cairo_move_to(cr, tx, y2);
352 cairo_line_to(cr, tx, y2 + (y2 - y1) * 0.03);
353 cairo_stroke(cr);
354
355 /* draw grid lines */
356 cairo_save(cr);
357 cairo_set_dash(cr, dash, 2, 2.0);
358 cairo_set_line_width(cr, 0.5);
359 cairo_move_to(cr, tx, y1);
360 cairo_line_to(cr, tx, y2);
361 cairo_stroke(cr);
362 cairo_restore(cr);
363
Jens Axboed8fbeef2012-03-14 10:25:44 +0100364 if (!add_tm_text)
365 continue;
366
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100367 /* draw tickmark label */
Jens Axboef3e84402012-03-07 13:14:32 +0100368 draw_centered_text(g, cr, tx, y2 * 1.04, 12.0, tm[i].string);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100369 cairo_stroke(cr);
370
371 }
372}
373
Jens Axboed8fbeef2012-03-14 10:25:44 +0100374static double graph_draw_y_ticks(struct graph *g, cairo_t *cr,
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100375 double x1, double y1, double x2, double y2,
Jens Axboed8fbeef2012-03-14 10:25:44 +0100376 double miny, double maxy, int nticks, int add_tm_text)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100377{
378 struct tickmark *tm;
379 double ty;
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100380 int i, power_of_ten;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100381 static double dash[] = { 2.0, 2.0 };
382
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100383 nticks = calc_tickmarks(miny, maxy, nticks, &tm, &power_of_ten,
Jens Axboed8fbeef2012-03-14 10:25:44 +0100384 g->y_axis_unit_change_callback == NULL, g->base_offset);
Stephen M. Cameron7175d912012-03-11 11:35:10 +0100385 if (g->y_axis_unit_change_callback)
386 g->y_axis_unit_change_callback(g, power_of_ten);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100387
Jens Axboed8fbeef2012-03-14 10:25:44 +0100388 /*
389 * Use highest tickmark as top of graph, not highest value. Otherwise
390 * it's impossible to see what the max value is, if the graph is
391 * fairly flat.
392 */
393 maxy = tm[nticks - 1].value;
394
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100395 for (i = 0; i < nticks; i++) {
396 ty = y2 - (((tm[i].value) - miny) / (maxy - miny)) * (y2 - y1);
Jens Axboed8fbeef2012-03-14 10:25:44 +0100397
398 /* really ty < y1 || ty > y2, but protect against rounding */
399 if (y1 - ty > 0.01 || ty - y2 > 0.01)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100400 continue;
Jens Axboed8fbeef2012-03-14 10:25:44 +0100401
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100402 /* draw tick mark */
403 cairo_move_to(cr, x1, ty);
404 cairo_line_to(cr, x1 - (x2 - x1) * 0.02, ty);
405 cairo_stroke(cr);
406
407 /* draw grid lines */
408 cairo_save(cr);
409 cairo_set_dash(cr, dash, 2, 2.0);
410 cairo_set_line_width(cr, 0.5);
411 cairo_move_to(cr, x1, ty);
412 cairo_line_to(cr, x2, ty);
413 cairo_stroke(cr);
414 cairo_restore(cr);
415
Jens Axboed8fbeef2012-03-14 10:25:44 +0100416 if (!add_tm_text)
417 continue;
418
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100419 /* draw tickmark label */
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100420 draw_right_justified_text(g, cr, x1 - (x2 - x1) * 0.025, ty, 12.0, tm[i].string);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100421 cairo_stroke(cr);
422 }
Jens Axboed8fbeef2012-03-14 10:25:44 +0100423
424 /*
425 * Return new max to use
426 */
427 return maxy;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100428}
429
430void bar_graph_draw(struct graph *bg, cairo_t *cr)
431{
432 double x1, y1, x2, y2;
433 double space_per_label, bar_width;
434 double label_offset, mindata, maxdata;
435 int i, nlabels;
436 struct graph_label *lb;
437
438 cairo_save(cr);
Stephen M. Cameron57f9d282012-03-11 11:36:51 +0100439 cairo_translate(cr, bg->xoffset, bg->yoffset);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100440 graph_draw_common(bg, cr, &x1, &y1, &x2, &y2);
441
442 nlabels = count_labels(bg->labels);
Jens Axboed8fbeef2012-03-14 10:25:44 +0100443 space_per_label = (x2 - x1) / (double) nlabels;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100444
445 mindata = find_min_data(bg->labels);
446 maxdata = find_max_data(bg->labels);
447
448 if (fabs(maxdata - mindata) < 1e-20) {
Jens Axboef3e84402012-03-07 13:14:32 +0100449 draw_centered_text(bg, cr,
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100450 x1 + (x2 - x1) / 2.0,
451 y1 + (y2 - y1) / 2.0, 20.0, "No good data");
452 return;
453 }
454
Jens Axboed8fbeef2012-03-14 10:25:44 +0100455 graph_draw_y_ticks(bg, cr, x1, y1, x2, y2, mindata, maxdata, 10, 1);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100456
457 i = 0;
458 for (lb = bg->labels; lb; lb = lb->next) {
459 int nvalues;
460 nvalues = count_values(lb->values);
461 bar_width = (space_per_label - space_per_label * 0.2) / (double) nvalues;
462 label_offset = bg->xdim * 0.1 + space_per_label * (double) i + space_per_label * 0.1;
463 draw_bars(bg, cr, lb, label_offset, bar_width, mindata, maxdata);
464 // draw_centered_text(cr, label_offset + (bar_width / 2.0 + bar_width * 0.1), bg->ydim * 0.93,
Jens Axboef3e84402012-03-07 13:14:32 +0100465 draw_centered_text(bg, cr, x1 + space_per_label * (i + 0.5), bg->ydim * 0.93,
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100466 12.0, lb->label);
467 i++;
468 }
469 cairo_stroke(cr);
470 cairo_restore(cr);
471}
472
473typedef double (*xy_value_extractor)(struct graph_value *v);
474
475static double getx(struct graph_value *v)
476{
477 struct xyvalue *xy = v->value;
478 return xy->x;
479}
480
481static double gety(struct graph_value *v)
482{
483 struct xyvalue *xy = v->value;
484 return xy->y;
485}
486
487static double find_xy_value(struct graph *g, xy_value_extractor getvalue, double_comparator cmp)
488{
Stephen M. Cameron10e54cd2012-03-07 19:39:55 +0100489 double tmp, answer = 0.0;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100490 struct graph_label *i;
491 struct graph_value *j;
Stephen M. Camerond582bf72012-03-07 19:37:57 +0100492 int first = 1;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100493
494 for (i = g->labels; i; i = i->next)
495 for (j = i->values; j; j = j->next) {
496 tmp = getvalue(j);
Stephen M. Camerond582bf72012-03-07 19:37:57 +0100497 if (first) {
498 first = 0;
499 answer = tmp;
500 }
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100501 answer = cmp(tmp, answer);
502 }
503 return answer;
504}
505
506void line_graph_draw(struct graph *g, cairo_t *cr)
507{
508 double x1, y1, x2, y2;
Stephen M. Camerondef0ac22012-03-12 07:32:57 +0100509 double minx, miny, maxx, maxy, gminx, gminy, gmaxx, gmaxy;
510 double tx, ty, top_extra, bottom_extra, left_extra, right_extra;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100511 struct graph_label *i;
512 struct graph_value *j;
Stephen M. Cameron9ce9cfb2012-03-07 19:37:25 +0100513 int good_data = 1, first = 1;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100514
515 cairo_save(cr);
Stephen M. Cameron57f9d282012-03-11 11:36:51 +0100516 cairo_translate(cr, g->xoffset, g->yoffset);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100517 graph_draw_common(g, cr, &x1, &y1, &x2, &y2);
518
519 minx = find_xy_value(g, getx, mindouble);
520 maxx = find_xy_value(g, getx, maxdouble);
521 miny = find_xy_value(g, gety, mindouble);
522 maxy = find_xy_value(g, gety, maxdouble);
523
524 if (fabs(maxx - minx) < 1e-20 || fabs(maxy - miny) < 1e-20) {
Stephen M. Cameron9ce9cfb2012-03-07 19:37:25 +0100525 good_data = 0;
526 minx = 0.0;
527 miny = 0.0;
528 maxx = 10.0;
529 maxy = 100.0;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100530 }
531
Stephen M. Camerondef0ac22012-03-12 07:32:57 +0100532 top_extra = 0.0;
533 bottom_extra = 0.0;
534 left_extra = 0.0;
535 right_extra = 0.0;
536
537 if (g->top_extra > 0.001)
538 top_extra = fabs(maxy - miny) * g->top_extra;
539 if (g->bottom_extra > 0.001)
540 bottom_extra = fabs(maxy - miny) * g->bottom_extra;
541 if (g->left_extra > 0.001)
542 left_extra = fabs(maxx - minx) * g->left_extra;
543 if (g->right_extra > 0.001)
544 right_extra = fabs(maxx - minx) * g->right_extra;
545
546 gminx = minx - left_extra;
547 gmaxx = maxx + right_extra;
548 gminy = miny - bottom_extra;
549 gmaxy = maxy + top_extra;
550
Jens Axboed8fbeef2012-03-14 10:25:44 +0100551 graph_draw_x_ticks(g, cr, x1, y1, x2, y2, gminx, gmaxx, 10, good_data);
552 gmaxy = graph_draw_y_ticks(g, cr, x1, y1, x2, y2, gminy, gmaxy, 10, good_data);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100553
Stephen M. Cameron9ce9cfb2012-03-07 19:37:25 +0100554 if (!good_data)
555 goto skip_data;
556
Jens Axboef3e84402012-03-07 13:14:32 +0100557 cairo_set_line_width(cr, 1.5);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100558 for (i = g->labels; i; i = i->next) {
559 first = 1;
Stephen M. Cameroncae08722012-03-07 14:47:38 +0100560 if (i->r < 0) /* invisible data */
561 continue;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100562 cairo_set_source_rgb(cr, i->r, i->g, i->b);
563 for (j = i->values; j; j = j->next) {
Jens Axboe93e2db22012-03-13 09:45:22 +0100564 struct xyvalue *xy = j->value;
565
Stephen M. Camerondef0ac22012-03-12 07:32:57 +0100566 tx = ((getx(j) - gminx) / (gmaxx - gminx)) * (x2 - x1) + x1;
567 ty = y2 - ((gety(j) - gminy) / (gmaxy - gminy)) * (y2 - y1);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100568 if (first) {
569 cairo_move_to(cr, tx, ty);
570 first = 0;
571 } else {
572 cairo_line_to(cr, tx, ty);
573 }
Jens Axboe93e2db22012-03-13 09:45:22 +0100574 xy->gx = tx;
575 xy->gy = ty;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100576 }
577 cairo_stroke(cr);
578 }
Stephen M. Cameron9ce9cfb2012-03-07 19:37:25 +0100579
580skip_data:
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100581 cairo_restore(cr);
Stephen M. Cameron9ce9cfb2012-03-07 19:37:25 +0100582
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100583}
584
585static void gfree(void *f)
586{
587 if (f)
588 free(f);
589}
590
591static void setstring(char **str, const char *value)
592{
593 gfree(*str);
594 *str = strdup(value);
595}
596
597void graph_title(struct graph *bg, const char *title)
598{
599 setstring(&bg->title, title);
600}
601
602void graph_x_title(struct graph *bg, const char *title)
603{
604 setstring(&bg->xtitle, title);
605}
606
607void graph_y_title(struct graph *bg, const char *title)
608{
609 setstring(&bg->ytitle, title);
610}
611
612static struct graph_label *graph_find_label(struct graph *bg,
613 const char *label)
614{
615 struct graph_label *i;
616
617 for (i = bg->labels; i; i = i->next)
618 if (strcmp(label, i->label) == 0)
619 return i;
620 return NULL;
621}
622
623void graph_add_label(struct graph *bg, const char *label)
624{
625 struct graph_label *i;
626
627 i = graph_find_label(bg, label);
628 if (i)
629 return; /* already present. */
630 i = calloc(1, sizeof(*i));
631 i->parent = bg;
632 setstring(&i->label, label);
633 i->next = NULL;
634 if (!bg->tail)
635 bg->labels = i;
636 else
637 bg->tail->next = i;
638 bg->tail = i;
639}
640
Jens Axboe93e2db22012-03-13 09:45:22 +0100641static void graph_label_add_value(struct graph_label *i, void *value,
642 const char *tooltip)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100643{
644 struct graph_value *x;
645
646 x = malloc(sizeof(*x));
647 x->value = value;
Jens Axboe93e2db22012-03-13 09:45:22 +0100648 if (tooltip)
649 x->tooltip = strdup(tooltip);
650 else
651 x->tooltip = NULL;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100652 x->next = NULL;
653 if (!i->tail) {
654 i->values = x;
655 } else {
656 i->tail->next = x;
657 }
658 i->tail = x;
659 i->value_count++;
Jens Axboe93e2db22012-03-13 09:45:22 +0100660 if (x->tooltip)
661 i->tooltip_count++;
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100662
663 if (i->parent->per_label_limit != -1 &&
664 i->value_count > i->parent->per_label_limit) {
Jens Axboec148dae2012-03-11 21:35:47 +0100665 int to_drop = 1;
666
667 /*
668 * If the limit was dynamically reduced, making us more
669 * than 1 entry ahead after adding this one, drop two
670 * entries. This will make us (eventually) reach the
671 * specified limit.
672 */
673 if (i->value_count - i->parent->per_label_limit >= 2)
674 to_drop = 2;
675
676 while (to_drop--) {
677 x = i->values;
678 i->values = i->values->next;
Jens Axboe93e2db22012-03-13 09:45:22 +0100679 if (x->tooltip) {
680 free(x->tooltip);
681 i->tooltip_count--;
682 }
Jens Axboec148dae2012-03-11 21:35:47 +0100683 free(x->value);
684 free(x);
685 i->value_count--;
686 }
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100687 }
688}
689
690int graph_add_data(struct graph *bg, const char *label, const double value)
691{
692 struct graph_label *i;
693 double *d;
694
695 d = malloc(sizeof(*d));
696 *d = value;
697
698 i = graph_find_label(bg, label);
699 if (!i)
700 return -1;
Jens Axboe93e2db22012-03-13 09:45:22 +0100701 graph_label_add_value(i, d, NULL);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100702 return 0;
703}
704
705int graph_add_xy_data(struct graph *bg, const char *label,
Jens Axboe93e2db22012-03-13 09:45:22 +0100706 const double x, const double y, const char *tooltip)
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100707{
708 struct graph_label *i;
709 struct xyvalue *xy;
710
711 xy = malloc(sizeof(*xy));
712 xy->x = x;
713 xy->y = y;
714
715 i = graph_find_label(bg, label);
716 if (!i)
717 return -1;
Jens Axboe93e2db22012-03-13 09:45:22 +0100718
719 graph_label_add_value(i, xy, tooltip);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100720 return 0;
721}
722
723static void graph_free_values(struct graph_value *values)
724{
725 struct graph_value *i, *next;
726
727 for (i = values; i; i = next) {
728 next = i->next;
729 gfree(i->value);
730 gfree(i);
731 }
732}
733
734static void graph_free_labels(struct graph_label *labels)
735{
736 struct graph_label *i, *next;
737
738 for (i = labels; i; i = next) {
739 next = i->next;
740 graph_free_values(i->values);
741 gfree(i);
742 }
743}
744
745void graph_set_color(struct graph *gr, const char *label,
746 double red, double green, double blue)
747{
748 struct graph_label *i;
749 double r, g, b;
750
Stephen M. Cameroncae08722012-03-07 14:47:38 +0100751 if (red < 0.0) { /* invisible color */
752 r = -1.0;
753 g = -1.0;
754 b = -1.0;
755 } else {
756 r = fabs(red);
757 g = fabs(green);
758 b = fabs(blue);
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100759
Stephen M. Cameroncae08722012-03-07 14:47:38 +0100760 if (r > 1.0)
761 r = 1.0;
762 if (g > 1.0)
763 g = 1.0;
764 if (b > 1.0)
765 b =1.0;
766 }
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +0100767
768 for (i = gr->labels; i; i = i->next)
769 if (strcmp(i->label, label) == 0) {
770 i->r = r;
771 i->g = g;
772 i->b = b;
773 break;
774 }
775}
776
777void graph_free(struct graph *bg)
778{
779 gfree(bg->title);
780 gfree(bg->xtitle);
781 gfree(bg->ytitle);
782 graph_free_labels(bg->labels);
783}
784
785/* For each line in the line graph, up to per_label_limit segments may
786 * be added. After that, adding more data to the end of the line
787 * causes data to drop off of the front of the line.
788 */
789void line_graph_set_data_count_limit(struct graph *g, int per_label_limit)
790{
791 g->per_label_limit = per_label_limit;
792}
793
Stephen M. Camerondef0ac22012-03-12 07:32:57 +0100794void graph_add_extra_space(struct graph *g, double left_percent, double right_percent,
795 double top_percent, double bottom_percent)
796{
797 g->left_extra = left_percent;
798 g->right_extra = right_percent;
799 g->top_extra = top_percent;
800 g->bottom_extra = bottom_percent;
801}
802
Jens Axboed8fbeef2012-03-14 10:25:44 +0100803/*
804 * Normally values are logged in a base unit of 0, but for other purposes
805 * it makes more sense to log in higher unit. For instance for bandwidth
806 * purposes, you may want to log in KB/sec (or MB/sec) rather than bytes/sec.
807 */
808void graph_set_base_offset(struct graph *g, unsigned int base_offset)
809{
810 g->base_offset = base_offset;
811}
812
Jens Axboe93e2db22012-03-13 09:45:22 +0100813int graph_has_tooltips(struct graph *g)
814{
815 struct graph_label *i;
Stephen M. Camerondef0ac22012-03-12 07:32:57 +0100816
Jens Axboe93e2db22012-03-13 09:45:22 +0100817 for (i = g->labels; i; i = i->next)
818 if (i->tooltip_count)
819 return 1;
820
821 return 0;
822}
823
824int graph_contains_xy(struct graph *g, int x, int y)
825{
826 int first_x = g->xoffset;
827 int last_x = g->xoffset + g->xdim;
828 int first_y = g->yoffset;
829 int last_y = g->yoffset + g->ydim;
830
831 return (x >= first_x && x <= last_x) && (y >= first_y && y <= last_y);
832}
833
834static int xy_match(struct xyvalue *xy, int x, int y)
835{
836 int xdiff = abs(xy->gx - x);
837 int ydiff = abs(xy->gy - y);
838
839 return xdiff <= 20 && ydiff <= 10;
840}
841
842const char *graph_find_tooltip(struct graph *g, int x, int y)
843{
844 struct graph_label *i;
845 struct graph_value *j;
846
847 for (i = g->labels; i; i = i->next) {
848 for (j = i->values; j; j = j->next) {
849 struct xyvalue *xy = j->value;
850
851 if (xy_match(xy, x - g->xoffset, y))
852 return j->tooltip;
853 }
854 }
855
856 return NULL;
857}