* remove intl from build process ... someone who does actually need it should fix...
[rrdtool.git] / src / rrd_graph.h
1 #ifndef _RRD_GRAPH_H
2 #define _RRD_GRAPH_H
3
4 #define y0 cairo_y0
5 #define y1 cairo_y1
6 #define index cairo_index
7
8 /* this may configure __EXTENSIONS__ without which pango will fail to compile
9    so load this early */
10 #include "../rrd_config.h"
11
12 #include <cairo.h>
13 #include <cairo-pdf.h>
14 #include <cairo-svg.h>
15 #include <cairo-ps.h>
16
17 #include <pango/pangocairo.h>
18
19
20 #include "rrd_tool.h"
21 #include "rrd_rpncalc.h"
22
23 #ifdef WIN32
24 #  include <windows.h>
25 #  define MAXPATH MAX_PATH
26 #endif
27
28 #define ALTYGRID         0x01   /* use alternative y grid algorithm */
29 #define ALTAUTOSCALE     0x02   /* use alternative algorithm to find lower and upper bounds */
30 #define ALTAUTOSCALE_MIN 0x04   /* use alternative algorithm to find lower bounds */
31 #define ALTAUTOSCALE_MAX 0x08   /* use alternative algorithm to find upper bounds */
32 #define NOLEGEND         0x10   /* use no legend */
33 #define NOMINOR          0x20   /* Turn off minor gridlines */
34 #define ONLY_GRAPH       0x40   /* use only graph */
35 #define FORCE_RULES_LEGEND 0x80 /* force printing of HRULE and VRULE legend */
36
37 #define FORCE_UNITS 0x100   /* mask for all FORCE_UNITS_* flags */
38 #define FORCE_UNITS_SI 0x100    /* force use of SI units in Y axis (no effect in linear graph, SI instead of E in log graph) */
39
40 #define FULL_SIZE_MODE     0x200    /* -width and -height indicate the total size of the image */
41 #define NO_RRDTOOL_TAG 0x400  /* disable the rrdtool tag */
42
43 enum tmt_en { TMT_SECOND = 0, TMT_MINUTE, TMT_HOUR, TMT_DAY,
44     TMT_WEEK, TMT_MONTH, TMT_YEAR
45 };
46
47 enum grc_en { GRC_CANVAS = 0, GRC_BACK, GRC_SHADEA, GRC_SHADEB,
48     GRC_GRID, GRC_MGRID, GRC_FONT, GRC_ARROW, GRC_AXIS, GRC_FRAME, __GRC_END__
49 };
50
51 #define MGRIDWIDTH 0.6
52 #define GRIDWIDTH  0.4
53
54 enum gf_en { GF_PRINT = 0, GF_GPRINT, GF_COMMENT, GF_HRULE, GF_VRULE, GF_LINE,
55     GF_AREA, GF_STACK, GF_TICK, GF_TEXTALIGN,
56     GF_DEF, GF_CDEF, GF_VDEF, GF_SHIFT,
57     GF_XPORT
58 };
59
60 enum txa_en { TXA_LEFT = 0, TXA_RIGHT, TXA_CENTER, TXA_JUSTIFIED };
61
62 enum vdef_op_en {
63     VDEF_MAXIMUM = 0    /* like the MAX in (G)PRINT */
64         , VDEF_MINIMUM  /* like the MIN in (G)PRINT */
65         , VDEF_AVERAGE  /* like the AVERAGE in (G)PRINT */
66         , VDEF_STDEV    /* the standard deviation */
67         , VDEF_PERCENT  /* Nth percentile */
68         , VDEF_TOTAL    /* average multiplied by time */
69         , VDEF_FIRST    /* first non-unknown value and time */
70         , VDEF_LAST     /* last  non-unknown value and time */
71         , VDEF_LSLSLOPE /* least squares line slope */
72         , VDEF_LSLINT   /* least squares line y_intercept */
73         , VDEF_LSLCORREL    /* least squares line correlation coefficient */
74         , VDEF_PERCENTNAN  /* Nth percentile ignoring NAN*/
75 };
76 enum text_prop_en { 
77     TEXT_PROP_DEFAULT = 0,  /* default settings */
78     TEXT_PROP_TITLE,    /* properties for the title */
79     TEXT_PROP_AXIS,     /* for the numbers next to the axis */
80     TEXT_PROP_UNIT,     /* for the vertical unit description */
81     TEXT_PROP_LEGEND,   /* for the legend below the graph */
82     TEXT_PROP_WATERMARK, /* for the little text to the side of the graph */
83     TEXT_PROP_LAST
84 };
85
86 enum legend_pos{ NORTH = 0, WEST, SOUTH, EAST };
87 enum legend_direction { TOP_DOWN = 0, BOTTOM_UP };
88
89 enum gfx_if_en { IF_PNG = 0, IF_SVG, IF_EPS, IF_PDF };
90 enum gfx_en { GFX_LINE = 0, GFX_AREA, GFX_TEXT };
91 enum gfx_h_align_en { GFX_H_NULL = 0, GFX_H_LEFT, GFX_H_RIGHT, GFX_H_CENTER };
92 enum gfx_v_align_en { GFX_V_NULL = 0, GFX_V_TOP, GFX_V_BOTTOM, GFX_V_CENTER };
93
94 /* cairo color components */
95 typedef struct gfx_color_t {
96     double    red;
97     double    green;
98     double    blue;
99     double    alpha;
100 } gfx_color_t;
101
102
103 typedef struct text_prop_t {
104     double    size;
105     char      font[1024];
106     PangoFontDescription *font_desc;
107 } text_prop_t;
108
109
110 typedef struct vdef_t {
111     enum vdef_op_en op;
112     double    param;    /* parameter for function, if applicable */
113     double    val;      /* resulting value */
114     time_t    when;     /* timestamp, if applicable */
115 } vdef_t;
116
117 typedef struct xlab_t {
118     long      minsec;   /* minimum sec per pix */
119     long      length;   /* number of secs on the image */
120     enum tmt_en gridtm; /* grid interval in what ? */
121     long      gridst;   /* how many whats per grid */
122     enum tmt_en mgridtm;    /* label interval in what ? */
123     long      mgridst;  /* how many whats per label */
124     enum tmt_en labtm;  /* label interval in what ? */
125     long      labst;    /* how many whats per label */
126     long      precis;   /* label precision -> label placement */
127     char     *stst;     /* strftime string */
128 } xlab_t;
129
130 typedef struct ygrid_scale_t {  /* y axis grid scaling info */
131     double    gridstep;
132     int       labfact;
133     char      labfmt[64];
134 } ygrid_scale_t;
135
136 /* sensible y label intervals ...*/
137
138 typedef struct ylab_t {
139     double    grid;     /* grid spacing */
140     int       lfac[4];  /* associated label spacing */
141 } ylab_t;
142
143 /* this structure describes the elements which can make up a graph.
144    because they are quite diverse, not all elements will use all the
145    possible parts of the structure. */
146 #ifdef HAVE_SNPRINTF
147 #define FMT_LEG_LEN 200
148 #else
149 #define FMT_LEG_LEN 2000
150 #endif
151
152 typedef struct graph_desc_t {
153     enum gf_en gf;      /* graphing function */
154     int       stack;    /* boolean */
155     int       debug;    /* boolean */
156     char      vname[MAX_VNAME_LEN + 1]; /* name of the variable */
157     long      vidx;     /* gdes reference */
158     char      rrd[1024];    /* name of the rrd_file containing data */
159     char      ds_nam[DS_NAM_SIZE];  /* data source name */
160     long      ds;       /* data source number */
161     enum cf_en cf;      /* consolidation function */
162     enum cf_en cf_reduce;   /* consolidation function for reduce_data() */
163     struct gfx_color_t col; /* graph color */
164     char      format[FMT_LEG_LEN + 5];  /* format for PRINT AND GPRINT */
165     char      legend[FMT_LEG_LEN + 5];  /* legend */
166     int       strftm;   /* should the VDEF legend be formated with strftime */
167     double    leg_x, leg_y; /* location of legend */
168     double    yrule;    /* value for y rule line and for VDEF */
169     time_t    xrule;    /* time for x rule line and for VDEF */
170     vdef_t    vf;       /* instruction for VDEF function */
171     rpnp_t   *rpnp;     /* instructions for CDEF function */
172
173     /* SHIFT implementation */
174     int       shidx;    /* gdes reference for offset (-1 --> constant) */
175     time_t    shval;    /* offset if shidx is -1 */
176     time_t    shift;    /* current shift applied */
177
178     /* description of data fetched for the graph element */
179     time_t    start, end;   /* timestaps for first and last data element */
180     time_t    start_orig, end_orig; /* timestaps for first and last data element */
181     unsigned long step; /* time between samples */
182     unsigned long step_orig;    /* time between samples */
183     unsigned long ds_cnt;   /* how many data sources are there in the fetch */
184     long      data_first;   /* first pointer to this data */
185     char    **ds_namv;  /* name of datasources  in the fetch. */
186     rrd_value_t *data;  /* the raw data drawn from the rrd */
187     rrd_value_t *p_data;    /* processed data, xsize elments */
188     double    linewidth;    /* linewideth */
189
190     /* dashed line stuff */
191     int       dash;     /* boolean, draw dashed line? */
192     double   *p_dashes; /* pointer do dash array which keeps the lengths of dashes */
193     int       ndash;    /* number of dash segments */
194     double    offset;   /* dash offset along the line */
195
196     enum txa_en txtalign;   /* change default alignment strategy for text */
197 } graph_desc_t;
198
199 typedef struct image_desc_t {
200
201     /* configuration of graph */
202
203     char      graphfile[MAXPATH];   /* filename for graphic */
204     long      xsize, ysize; /* graph area size in pixels */
205     struct gfx_color_t graph_col[__GRC_END__];  /* real colors for the graph */
206     text_prop_t text_prop[TEXT_PROP_LAST];  /* text properties */
207     char      ylegend[210]; /* legend along the yaxis */
208     char      title[210];   /* title for graph */
209     char      watermark[110];   /* watermark for graph */
210     int       draw_x_grid;  /* no x-grid at all */
211     int       draw_y_grid;  /* no y-grid at all */
212     unsigned int draw_3d_border; /* size of border in pixels, 0 for off */
213     double    grid_dash_on, grid_dash_off;
214     xlab_t    xlab_user;    /* user defined labeling for xaxis */
215     char      xlab_form[210];   /* format for the label on the xaxis */
216     double    second_axis_scale; /* relative to the first axis (0 to disable) */
217     double    second_axis_shift; /* how much is it shifted vs the first axis */
218     char      second_axis_legend[210]; /* label to put on the seond axis */
219     char      second_axis_format[210]; /* format for the numbers on the scond axis */    
220
221     double    ygridstep;    /* user defined step for y grid */
222     int       ylabfact; /* every how many y grid shall a label be written ? */
223     double    tabwidth; /* tabwdith */
224     time_t    start, end;   /* what time does the graph cover */
225     unsigned long step; /* any preference for the default step ? */
226     rrd_value_t minval, maxval; /* extreme values in the data */
227     int       rigid;    /* do not expand range even with 
228                            values outside */
229     ygrid_scale_t ygrid_scale;  /* calculated y axis grid info */
230     int       gridfit;  /* adjust y-axis range etc so all
231                            grindlines falls in integer pixel values */
232     char     *imginfo;  /* construct an <IMG ... tag and return 
233                            as first retval */
234     enum gfx_if_en imgformat;   /* image format */
235     char     *daemon_addr;  /* rrdcached connection string */
236     int       lazy;     /* only update the image if there is
237                            reasonable probablility that the
238                            existing one is out of date */
239     int       slopemode;    /* connect the dots of the curve directly, not using a stair */
240     enum legend_pos legendposition; /* the position of the legend: north, west, south or east */
241     enum legend_direction legenddirection; /* The direction of the legend topdown or bottomup */
242     int       logarithmic;  /* scale the yaxis logarithmic */
243     double    force_scale_min;  /* Force a scale--min */
244     double    force_scale_max;  /* Force a scale--max */
245
246     /* status information */
247     int       with_markup;
248     long      xorigin, yorigin; /* where is (0,0) of the graph */
249     long      xOriginTitle, yOriginTitle; /* where is the origin of the title */
250     long      xOriginLegendY, yOriginLegendY; /* where is the origin of the y legend */
251     long      xOriginLegendY2, yOriginLegendY2; /* where is the origin of the second y legend */
252     long      xOriginLegend, yOriginLegend; /* where is the origin of the legend */
253     long      ximg, yimg;   /* total size of the image */
254     long      legendwidth, legendheight; /* the calculated height and width of the legend */
255     size_t    rendered_image_size;
256     double    zoom;
257     double    magfact;  /* numerical magnitude */
258     long      base;     /* 1000 or 1024 depending on what we graph */
259     char      symbol;   /* magnitude symbol for y-axis */
260     float     viewfactor;   /* how should the numbers on the y-axis be scaled for viewing ? */
261     int       unitsexponent;    /* 10*exponent for units on y-asis */
262     int       unitslength;  /* width of the yaxis labels */
263     int       forceleftspace;   /* do not kill the space to the left of the y-axis if there is no grid */
264
265     int       extra_flags;  /* flags for boolean options */
266     /* data elements */
267
268     unsigned char *rendered_image;
269     long      prt_c;    /* number of print elements */
270     long      gdes_c;   /* number of graphics elements */
271     graph_desc_t *gdes; /* points to an array of graph elements */
272     cairo_surface_t *surface;   /* graphics library */
273     cairo_t  *cr;       /* drawin context */
274     cairo_font_options_t *font_options; /* cairo font options */
275     cairo_antialias_t graph_antialias;  /* antialiasing for the graph */
276     PangoLayout *layout; /* the pango layout we use for writing fonts */
277     rrd_info_t *grinfo; /* root pointer to extra graph info */
278     rrd_info_t *grinfo_current; /* pointing to current entry */
279 } image_desc_t;
280
281 /* Prototypes */
282 int       xtr(
283     image_desc_t *,
284     time_t);
285 double    ytr(
286     image_desc_t *,
287     double);
288 enum gf_en gf_conv(
289     char *);
290 enum gfx_if_en if_conv(
291     char *);
292 enum tmt_en tmt_conv(
293     char *);
294 enum grc_en grc_conv(
295     char *);
296 enum text_prop_en text_prop_conv(
297     char *);
298 int       im_free(
299     image_desc_t *);
300 void      auto_scale(
301     image_desc_t *,
302     double *,
303     char **,
304     double *);
305 void      si_unit(
306     image_desc_t *);
307 void      expand_range(
308     image_desc_t *);
309 void      apply_gridfit(
310     image_desc_t *);
311 void      reduce_data(
312     enum cf_en,
313     unsigned long,
314     time_t *,
315     time_t *,
316     unsigned long *,
317     unsigned long *,
318     rrd_value_t **);
319 int       data_fetch(
320     image_desc_t *);
321 long      find_var(
322     image_desc_t *,
323     char *);
324 long      find_var_wrapper(
325     void *arg1,
326     char *key);
327 long      lcd(
328     long *);
329 int       data_calc(
330     image_desc_t *);
331 int       data_proc(
332     image_desc_t *);
333 time_t    find_first_time(
334     time_t,
335     enum tmt_en,
336     long);
337 time_t    find_next_time(
338     time_t,
339     enum tmt_en,
340     long);
341 int       print_calc(
342     image_desc_t *);
343 int       leg_place(
344     image_desc_t *,
345     int);
346 int       calc_horizontal_grid(
347     image_desc_t *);
348 int       draw_horizontal_grid(
349     image_desc_t *);
350 int       horizontal_log_grid(
351     image_desc_t *);
352 void      vertical_grid(
353     image_desc_t *);
354 void      axis_paint(
355     image_desc_t *);
356 void      grid_paint(
357     image_desc_t *);
358 int       lazy_check(
359     image_desc_t *);
360 int       graph_paint(
361     image_desc_t *);
362
363 int       gdes_alloc(
364     image_desc_t *);
365 int       scan_for_col(
366     const char *const,
367     int,
368     char *const);
369 void      rrd_graph_init(
370     image_desc_t *);
371
372 void      rrd_graph_options(
373     int,
374     char **,
375     image_desc_t *);
376 void      rrd_graph_script(
377     int,
378     char **,
379     image_desc_t *,
380     int);
381 int       rrd_graph_color(
382     image_desc_t *,
383     char *,
384     char *,
385     int);
386 int       bad_format(
387     char *);
388 int       vdef_parse(
389     struct graph_desc_t *,
390     const char *const);
391 int       vdef_calc(
392     image_desc_t *,
393     int);
394 int       vdef_percent_compar(
395     const void *,
396     const void *);
397 int       graph_size_location(
398     image_desc_t *,
399     int);
400
401
402 /* create a new line */
403 void      gfx_line(
404     image_desc_t *im,
405     double X0,
406     double Y0,
407     double X1,
408     double Y1,
409     double width,
410     gfx_color_t color);
411
412 void      gfx_dashed_line(
413     image_desc_t *im,
414     double X0,
415     double Y0,
416     double X1,
417     double Y1,
418     double width,
419     gfx_color_t color,
420     double dash_on,
421     double dash_off);
422
423 /* create a new area */
424 void      gfx_new_area(
425     image_desc_t *im,
426     double X0,
427     double Y0,
428     double X1,
429     double Y1,
430     double X2,
431     double Y2,
432     gfx_color_t color);
433
434 /* add a point to a line or to an area */
435 void      gfx_add_point(
436     image_desc_t *im,
437     double x,
438     double y);
439
440 /* close current path so it ends at the same point as it started */
441 void      gfx_close_path(
442     image_desc_t *im);
443
444
445 /* create a text node */
446 void      gfx_text(
447     image_desc_t *im,
448     double x,
449     double y,
450     gfx_color_t color,
451     PangoFontDescription *font_desc,
452     double tabwidth,
453     double angle,
454     enum gfx_h_align_en h_align,
455     enum gfx_v_align_en v_align,
456     const char *text);
457
458 /* measure width of a text string */
459 double    gfx_get_text_width(
460     image_desc_t *im,
461     double start,
462     PangoFontDescription *font_desc,
463     double tabwidth,
464     char *text);
465
466
467 /* convert color */
468 gfx_color_t gfx_hex_to_col(
469     long unsigned int);
470
471 void      gfx_line_fit(
472     image_desc_t *im,
473     double *x,
474     double *y);
475
476 void      gfx_area_fit(
477     image_desc_t *im,
478     double *x,
479     double *y);
480
481 #endif
482
483 void      grinfo_push(
484     image_desc_t *im,
485     char *key,
486     rrd_info_type_t type,    rrd_infoval_t value);