graph: fix bar graph min/max displays
[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>
93e2db2b 27#include <stdlib.h>
af58ef32
SC
28
29#include <cairo.h>
30#include <gtk/gtk.h>
31
32#include "tickmarks.h"
09ad20ff 33#include "graph.h"
af58ef32
SC
34
35struct xyvalue {
36 double x, y;
93e2db2b 37 int gx, gy;
af58ef32
SC
38};
39
40struct graph_value {
41 struct graph_value *next;
93e2db2b 42 char *tooltip;
af58ef32
SC
43 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;
93e2db2b 53 unsigned int tooltip_count;
af58ef32
SC
54 struct graph *parent;
55};
56
57struct graph {
58 char *title;
59 char *xtitle;
60 char *ytitle;
87d5f276 61 unsigned int xdim, ydim;
57f9d28e 62 double xoffset, yoffset;
af58ef32
SC
63 struct graph_label *labels;
64 struct graph_label *tail;
65 int per_label_limit;
f3e8440f 66 const char *font;
7175d91d
SC
67 graph_axis_unit_change_callback x_axis_unit_change_callback;
68 graph_axis_unit_change_callback y_axis_unit_change_callback;
d8fbeefb 69 unsigned int base_offset;
def0ac29
SC
70 double left_extra;
71 double right_extra;
72 double top_extra;
73 double bottom_extra;
af58ef32
SC
74};
75
3ea48b88
SC
76void graph_set_size(struct graph *g, unsigned int xdim, unsigned int ydim)
77{
78 g->xdim = xdim;
79 g->ydim = ydim;
80}
81
57f9d28e
SC
82void graph_set_position(struct graph *g, double xoffset, double yoffset)
83{
84 g->xoffset = xoffset;
85 g->yoffset = yoffset;
86}
87
f3e8440f 88struct graph *graph_new(unsigned int xdim, unsigned int ydim, const char *font)
af58ef32
SC
89{
90 struct graph *g;
91
92 g = calloc(1, sizeof(*g));
3ea48b88 93 graph_set_size(g, xdim, ydim);
af58ef32 94 g->per_label_limit = -1;
f3e8440f
JA
95 g->font = font;
96 if (!g->font)
97 g->font = "Sans";
af58ef32
SC
98 return g;
99}
100
7175d91d
SC
101void 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
af58ef32
SC
111static 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
10e54cdc
SC
223static void draw_aligned_text(struct graph *g, cairo_t *cr, double x, double y,
224 double fontsize, const char *text, int alignment)
af58ef32 225{
10e54cdc
SC
226#define CENTERED 0
227#define LEFT_JUSTIFIED 1
228#define RIGHT_JUSTIFIED 2
229
230 double factor, direction;
af58ef32
SC
231 cairo_text_extents_t extents;
232
10e54cdc
SC
233 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 }
f3e8440f 248 cairo_select_font_face (cr, g->font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
af58ef32
SC
249
250 cairo_set_font_size(cr, fontsize);
251 cairo_text_extents(cr, text, &extents);
10e54cdc 252 x = x + direction * (factor * extents.width + extents.x_bearing);
af58ef32
SC
253 y = y - (extents.height / 2 + extents.y_bearing);
254
255 cairo_move_to(cr, x, y);
256 cairo_show_text(cr, text);
257}
258
10e54cdc
SC
259static 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
f3e8440f
JA
279static void draw_vertical_centered_text(struct graph *g, cairo_t *cr, double x,
280 double y, double fontsize,
281 const char *text)
af58ef32
SC
282{
283 double sx, sy;
284 cairo_text_extents_t extents;
285
f3e8440f 286 cairo_select_font_face(cr, g->font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
af58ef32
SC
287
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);
f3e8440f 308 cairo_set_line_width (cr, 0.8);
af58ef32 309
9ede9c9c 310 *x1 = 0.10 * g->xdim;
6bf86008
SC
311 *x2 = 0.95 * g->xdim;
312 *y1 = 0.10 * g->ydim;
313 *y2 = 0.90 * g->ydim;
af58ef32
SC
314
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
f3e8440f
JA
322 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);
af58ef32
SC
325 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,
d8fbeefb 330 double minx, double maxx, int nticks, int add_tm_text)
af58ef32
SC
331{
332 struct tickmark *tm;
333 double tx;
7175d91d 334 int i, power_of_ten;
af58ef32
SC
335 static double dash[] = { 1.0, 2.0 };
336
7175d91d 337 nticks = calc_tickmarks(minx, maxx, nticks, &tm, &power_of_ten,
d8fbeefb 338 g->x_axis_unit_change_callback == NULL, g->base_offset);
7175d91d
SC
339 if (g->x_axis_unit_change_callback)
340 g->x_axis_unit_change_callback(g, power_of_ten);
af58ef32
SC
341
342 for (i = 0; i < nticks; i++) {
343 tx = (((tm[i].value) - minx) / (maxx - minx)) * (x2 - x1) + x1;
d8fbeefb
JA
344
345 /* really tx < yx || tx > x2, but protect against rounding */
346 if (x1 - tx > 0.01 || tx - x2 > 0.01)
af58ef32
SC
347 continue;
348
349 /* Draw tick mark */
f3e8440f 350 cairo_set_line_width(cr, 0.8);
af58ef32
SC
351 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
d8fbeefb
JA
364 if (!add_tm_text)
365 continue;
366
af58ef32 367 /* draw tickmark label */
f3e8440f 368 draw_centered_text(g, cr, tx, y2 * 1.04, 12.0, tm[i].string);
af58ef32
SC
369 cairo_stroke(cr);
370
371 }
372}
373
d8fbeefb 374static double graph_draw_y_ticks(struct graph *g, cairo_t *cr,
af58ef32 375 double x1, double y1, double x2, double y2,
d8fbeefb 376 double miny, double maxy, int nticks, int add_tm_text)
af58ef32
SC
377{
378 struct tickmark *tm;
379 double ty;
7175d91d 380 int i, power_of_ten;
af58ef32
SC
381 static double dash[] = { 2.0, 2.0 };
382
7175d91d 383 nticks = calc_tickmarks(miny, maxy, nticks, &tm, &power_of_ten,
d8fbeefb 384 g->y_axis_unit_change_callback == NULL, g->base_offset);
7175d91d
SC
385 if (g->y_axis_unit_change_callback)
386 g->y_axis_unit_change_callback(g, power_of_ten);
af58ef32 387
d8fbeefb
JA
388 /*
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
af58ef32
SC
395 for (i = 0; i < nticks; i++) {
396 ty = y2 - (((tm[i].value) - miny) / (maxy - miny)) * (y2 - y1);
d8fbeefb
JA
397
398 /* really ty < y1 || ty > y2, but protect against rounding */
399 if (y1 - ty > 0.01 || ty - y2 > 0.01)
af58ef32 400 continue;
d8fbeefb 401
af58ef32
SC
402 /* 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
d8fbeefb
JA
416 if (!add_tm_text)
417 continue;
418
af58ef32 419 /* draw tickmark label */
10e54cdc 420 draw_right_justified_text(g, cr, x1 - (x2 - x1) * 0.025, ty, 12.0, tm[i].string);
af58ef32
SC
421 cairo_stroke(cr);
422 }
d8fbeefb
JA
423
424 /*
425 * Return new max to use
426 */
427 return maxy;
af58ef32
SC
428}
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);
57f9d28e 439 cairo_translate(cr, bg->xoffset, bg->yoffset);
af58ef32
SC
440 graph_draw_common(bg, cr, &x1, &y1, &x2, &y2);
441
442 nlabels = count_labels(bg->labels);
d8fbeefb 443 space_per_label = (x2 - x1) / (double) nlabels;
af58ef32 444
bb39379f
JA
445 /*
446 * Start bars at 0 unless we have negative values, otherwise we
447 * present a skewed picture comparing label X and X+1.
448 */
af58ef32 449 mindata = find_min_data(bg->labels);
bb39379f
JA
450 if (mindata > 0)
451 mindata = 0;
452
af58ef32
SC
453 maxdata = find_max_data(bg->labels);
454
455 if (fabs(maxdata - mindata) < 1e-20) {
f3e8440f 456 draw_centered_text(bg, cr,
af58ef32
SC
457 x1 + (x2 - x1) / 2.0,
458 y1 + (y2 - y1) / 2.0, 20.0, "No good data");
459 return;
460 }
461
bb39379f 462 maxdata = graph_draw_y_ticks(bg, cr, x1, y1, x2, y2, mindata, maxdata, 10, 1);
af58ef32
SC
463 i = 0;
464 for (lb = bg->labels; lb; lb = lb->next) {
465 int nvalues;
466 nvalues = count_values(lb->values);
467 bar_width = (space_per_label - space_per_label * 0.2) / (double) nvalues;
468 label_offset = bg->xdim * 0.1 + space_per_label * (double) i + space_per_label * 0.1;
469 draw_bars(bg, cr, lb, label_offset, bar_width, mindata, maxdata);
470 // draw_centered_text(cr, label_offset + (bar_width / 2.0 + bar_width * 0.1), bg->ydim * 0.93,
f3e8440f 471 draw_centered_text(bg, cr, x1 + space_per_label * (i + 0.5), bg->ydim * 0.93,
af58ef32
SC
472 12.0, lb->label);
473 i++;
474 }
475 cairo_stroke(cr);
476 cairo_restore(cr);
477}
478
479typedef double (*xy_value_extractor)(struct graph_value *v);
480
481static double getx(struct graph_value *v)
482{
483 struct xyvalue *xy = v->value;
484 return xy->x;
485}
486
487static double gety(struct graph_value *v)
488{
489 struct xyvalue *xy = v->value;
490 return xy->y;
491}
492
493static double find_xy_value(struct graph *g, xy_value_extractor getvalue, double_comparator cmp)
494{
10e54cdc 495 double tmp, answer = 0.0;
af58ef32
SC
496 struct graph_label *i;
497 struct graph_value *j;
d582bf70 498 int first = 1;
af58ef32
SC
499
500 for (i = g->labels; i; i = i->next)
501 for (j = i->values; j; j = j->next) {
502 tmp = getvalue(j);
d582bf70
SC
503 if (first) {
504 first = 0;
505 answer = tmp;
506 }
af58ef32
SC
507 answer = cmp(tmp, answer);
508 }
509 return answer;
510}
511
512void line_graph_draw(struct graph *g, cairo_t *cr)
513{
514 double x1, y1, x2, y2;
def0ac29
SC
515 double minx, miny, maxx, maxy, gminx, gminy, gmaxx, gmaxy;
516 double tx, ty, top_extra, bottom_extra, left_extra, right_extra;
af58ef32
SC
517 struct graph_label *i;
518 struct graph_value *j;
9ce9cfbd 519 int good_data = 1, first = 1;
af58ef32
SC
520
521 cairo_save(cr);
57f9d28e 522 cairo_translate(cr, g->xoffset, g->yoffset);
af58ef32
SC
523 graph_draw_common(g, cr, &x1, &y1, &x2, &y2);
524
525 minx = find_xy_value(g, getx, mindouble);
526 maxx = find_xy_value(g, getx, maxdouble);
527 miny = find_xy_value(g, gety, mindouble);
528 maxy = find_xy_value(g, gety, maxdouble);
529
530 if (fabs(maxx - minx) < 1e-20 || fabs(maxy - miny) < 1e-20) {
9ce9cfbd
SC
531 good_data = 0;
532 minx = 0.0;
533 miny = 0.0;
534 maxx = 10.0;
535 maxy = 100.0;
af58ef32
SC
536 }
537
def0ac29
SC
538 top_extra = 0.0;
539 bottom_extra = 0.0;
540 left_extra = 0.0;
541 right_extra = 0.0;
542
543 if (g->top_extra > 0.001)
544 top_extra = fabs(maxy - miny) * g->top_extra;
545 if (g->bottom_extra > 0.001)
546 bottom_extra = fabs(maxy - miny) * g->bottom_extra;
547 if (g->left_extra > 0.001)
548 left_extra = fabs(maxx - minx) * g->left_extra;
549 if (g->right_extra > 0.001)
550 right_extra = fabs(maxx - minx) * g->right_extra;
551
552 gminx = minx - left_extra;
553 gmaxx = maxx + right_extra;
554 gminy = miny - bottom_extra;
555 gmaxy = maxy + top_extra;
556
d8fbeefb
JA
557 graph_draw_x_ticks(g, cr, x1, y1, x2, y2, gminx, gmaxx, 10, good_data);
558 gmaxy = graph_draw_y_ticks(g, cr, x1, y1, x2, y2, gminy, gmaxy, 10, good_data);
af58ef32 559
9ce9cfbd
SC
560 if (!good_data)
561 goto skip_data;
562
f3e8440f 563 cairo_set_line_width(cr, 1.5);
af58ef32
SC
564 for (i = g->labels; i; i = i->next) {
565 first = 1;
cae08727
SC
566 if (i->r < 0) /* invisible data */
567 continue;
af58ef32
SC
568 cairo_set_source_rgb(cr, i->r, i->g, i->b);
569 for (j = i->values; j; j = j->next) {
93e2db2b
JA
570 struct xyvalue *xy = j->value;
571
def0ac29
SC
572 tx = ((getx(j) - gminx) / (gmaxx - gminx)) * (x2 - x1) + x1;
573 ty = y2 - ((gety(j) - gminy) / (gmaxy - gminy)) * (y2 - y1);
af58ef32
SC
574 if (first) {
575 cairo_move_to(cr, tx, ty);
576 first = 0;
577 } else {
578 cairo_line_to(cr, tx, ty);
579 }
93e2db2b
JA
580 xy->gx = tx;
581 xy->gy = ty;
af58ef32
SC
582 }
583 cairo_stroke(cr);
584 }
9ce9cfbd
SC
585
586skip_data:
af58ef32 587 cairo_restore(cr);
9ce9cfbd 588
af58ef32
SC
589}
590
591static void gfree(void *f)
592{
593 if (f)
594 free(f);
595}
596
597static void setstring(char **str, const char *value)
598{
599 gfree(*str);
600 *str = strdup(value);
601}
602
603void graph_title(struct graph *bg, const char *title)
604{
605 setstring(&bg->title, title);
606}
607
608void graph_x_title(struct graph *bg, const char *title)
609{
610 setstring(&bg->xtitle, title);
611}
612
613void graph_y_title(struct graph *bg, const char *title)
614{
615 setstring(&bg->ytitle, title);
616}
617
618static struct graph_label *graph_find_label(struct graph *bg,
619 const char *label)
620{
621 struct graph_label *i;
622
623 for (i = bg->labels; i; i = i->next)
624 if (strcmp(label, i->label) == 0)
625 return i;
626 return NULL;
627}
628
629void graph_add_label(struct graph *bg, const char *label)
630{
631 struct graph_label *i;
632
633 i = graph_find_label(bg, label);
634 if (i)
635 return; /* already present. */
636 i = calloc(1, sizeof(*i));
637 i->parent = bg;
638 setstring(&i->label, label);
639 i->next = NULL;
640 if (!bg->tail)
641 bg->labels = i;
642 else
643 bg->tail->next = i;
644 bg->tail = i;
645}
646
93e2db2b
JA
647static void graph_label_add_value(struct graph_label *i, void *value,
648 const char *tooltip)
af58ef32
SC
649{
650 struct graph_value *x;
651
652 x = malloc(sizeof(*x));
653 x->value = value;
93e2db2b
JA
654 if (tooltip)
655 x->tooltip = strdup(tooltip);
656 else
657 x->tooltip = NULL;
af58ef32
SC
658 x->next = NULL;
659 if (!i->tail) {
660 i->values = x;
661 } else {
662 i->tail->next = x;
663 }
664 i->tail = x;
665 i->value_count++;
93e2db2b
JA
666 if (x->tooltip)
667 i->tooltip_count++;
af58ef32
SC
668
669 if (i->parent->per_label_limit != -1 &&
670 i->value_count > i->parent->per_label_limit) {
c148daed
JA
671 int to_drop = 1;
672
673 /*
674 * If the limit was dynamically reduced, making us more
675 * than 1 entry ahead after adding this one, drop two
676 * entries. This will make us (eventually) reach the
677 * specified limit.
678 */
679 if (i->value_count - i->parent->per_label_limit >= 2)
680 to_drop = 2;
681
682 while (to_drop--) {
683 x = i->values;
684 i->values = i->values->next;
93e2db2b
JA
685 if (x->tooltip) {
686 free(x->tooltip);
687 i->tooltip_count--;
688 }
c148daed
JA
689 free(x->value);
690 free(x);
691 i->value_count--;
692 }
af58ef32
SC
693 }
694}
695
696int graph_add_data(struct graph *bg, const char *label, const double value)
697{
698 struct graph_label *i;
699 double *d;
700
701 d = malloc(sizeof(*d));
702 *d = value;
703
704 i = graph_find_label(bg, label);
705 if (!i)
706 return -1;
93e2db2b 707 graph_label_add_value(i, d, NULL);
af58ef32
SC
708 return 0;
709}
710
711int graph_add_xy_data(struct graph *bg, const char *label,
93e2db2b 712 const double x, const double y, const char *tooltip)
af58ef32
SC
713{
714 struct graph_label *i;
715 struct xyvalue *xy;
716
717 xy = malloc(sizeof(*xy));
718 xy->x = x;
719 xy->y = y;
720
721 i = graph_find_label(bg, label);
722 if (!i)
723 return -1;
93e2db2b
JA
724
725 graph_label_add_value(i, xy, tooltip);
af58ef32
SC
726 return 0;
727}
728
729static void graph_free_values(struct graph_value *values)
730{
731 struct graph_value *i, *next;
732
733 for (i = values; i; i = next) {
734 next = i->next;
735 gfree(i->value);
736 gfree(i);
737 }
738}
739
740static void graph_free_labels(struct graph_label *labels)
741{
742 struct graph_label *i, *next;
743
744 for (i = labels; i; i = next) {
745 next = i->next;
746 graph_free_values(i->values);
747 gfree(i);
748 }
749}
750
751void graph_set_color(struct graph *gr, const char *label,
752 double red, double green, double blue)
753{
754 struct graph_label *i;
755 double r, g, b;
756
cae08727
SC
757 if (red < 0.0) { /* invisible color */
758 r = -1.0;
759 g = -1.0;
760 b = -1.0;
761 } else {
762 r = fabs(red);
763 g = fabs(green);
764 b = fabs(blue);
765
766 if (r > 1.0)
767 r = 1.0;
768 if (g > 1.0)
769 g = 1.0;
770 if (b > 1.0)
771 b =1.0;
772 }
af58ef32
SC
773
774 for (i = gr->labels; i; i = i->next)
775 if (strcmp(i->label, label) == 0) {
776 i->r = r;
777 i->g = g;
778 i->b = b;
779 break;
780 }
781}
782
783void graph_free(struct graph *bg)
784{
785 gfree(bg->title);
786 gfree(bg->xtitle);
787 gfree(bg->ytitle);
788 graph_free_labels(bg->labels);
789}
790
791/* For each line in the line graph, up to per_label_limit segments may
792 * be added. After that, adding more data to the end of the line
793 * causes data to drop off of the front of the line.
794 */
795void line_graph_set_data_count_limit(struct graph *g, int per_label_limit)
796{
797 g->per_label_limit = per_label_limit;
798}
799
def0ac29
SC
800void graph_add_extra_space(struct graph *g, double left_percent, double right_percent,
801 double top_percent, double bottom_percent)
802{
803 g->left_extra = left_percent;
804 g->right_extra = right_percent;
805 g->top_extra = top_percent;
806 g->bottom_extra = bottom_percent;
807}
808
d8fbeefb
JA
809/*
810 * Normally values are logged in a base unit of 0, but for other purposes
811 * it makes more sense to log in higher unit. For instance for bandwidth
812 * purposes, you may want to log in KB/sec (or MB/sec) rather than bytes/sec.
813 */
814void graph_set_base_offset(struct graph *g, unsigned int base_offset)
815{
816 g->base_offset = base_offset;
817}
818
93e2db2b
JA
819int graph_has_tooltips(struct graph *g)
820{
821 struct graph_label *i;
822
823 for (i = g->labels; i; i = i->next)
824 if (i->tooltip_count)
825 return 1;
826
827 return 0;
828}
829
830int graph_contains_xy(struct graph *g, int x, int y)
831{
832 int first_x = g->xoffset;
833 int last_x = g->xoffset + g->xdim;
834 int first_y = g->yoffset;
835 int last_y = g->yoffset + g->ydim;
836
837 return (x >= first_x && x <= last_x) && (y >= first_y && y <= last_y);
838}
def0ac29 839
93e2db2b
JA
840static int xy_match(struct xyvalue *xy, int x, int y)
841{
842 int xdiff = abs(xy->gx - x);
843 int ydiff = abs(xy->gy - y);
844
845 return xdiff <= 20 && ydiff <= 10;
846}
847
848const char *graph_find_tooltip(struct graph *g, int x, int y)
849{
850 struct graph_label *i;
851 struct graph_value *j;
852
853 for (i = g->labels; i; i = i->next) {
854 for (j = i->values; j; j = j->next) {
855 struct xyvalue *xy = j->value;
856
857 if (xy_match(xy, x - g->xoffset, y))
858 return j->tooltip;
859 }
860 }
861
862 return NULL;
863}