6 #define index cairo_index
10 #include <cairo-svg.h>
12 #include <pango/pangocairo.h>
15 #include "rrd_rpncalc.h"
17 #define MAX_VNAME_LEN 255
18 #define DEF_NAM_FMT "%255[-_A-Za-z0-9]"
20 #define ALTYGRID 0x01 /* use alternative y grid algorithm */
21 #define ALTAUTOSCALE 0x02 /* use alternative algorithm to find lower and upper bounds */
22 #define ALTAUTOSCALE_MIN 0x04 /* use alternative algorithm to find lower bounds */
23 #define ALTAUTOSCALE_MAX 0x08 /* use alternative algorithm to find upper bounds */
24 #define NOLEGEND 0x10 /* use no legend */
25 #define NOMINOR 0x20 /* Turn off minor gridlines */
26 #define ONLY_GRAPH 0x40 /* use only graph */
27 #define FORCE_RULES_LEGEND 0x80 /* force printing of HRULE and VRULE legend */
29 #define FORCE_UNITS 0x100 /* mask for all FORCE_UNITS_* flags */
30 #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) */
32 #define FULL_SIZE_MODE 0x200 /* -width and -height indicate the total size of the image */
34 enum tmt_en { TMT_SECOND = 0, TMT_MINUTE, TMT_HOUR, TMT_DAY,
35 TMT_WEEK, TMT_MONTH, TMT_YEAR
38 enum grc_en { GRC_CANVAS = 0, GRC_BACK, GRC_SHADEA, GRC_SHADEB,
39 GRC_GRID, GRC_MGRID, GRC_FONT, GRC_ARROW, GRC_AXIS, GRC_FRAME, __GRC_END__
42 #define MGRIDWIDTH 0.6
45 enum gf_en { GF_PRINT = 0, GF_GPRINT, GF_COMMENT, GF_HRULE, GF_VRULE, GF_LINE,
46 GF_AREA, GF_STACK, GF_TICK, GF_TEXTALIGN,
47 GF_DEF, GF_CDEF, GF_VDEF, GF_SHIFT,
51 enum txa_en { TXA_LEFT = 0, TXA_RIGHT, TXA_CENTER, TXA_JUSTIFIED };
54 VDEF_MAXIMUM = 0 /* like the MAX in (G)PRINT */
55 , VDEF_MINIMUM /* like the MIN in (G)PRINT */
56 , VDEF_AVERAGE /* like the AVERAGE in (G)PRINT */
57 , VDEF_PERCENT /* Nth percentile */
58 , VDEF_TOTAL /* average multiplied by time */
59 , VDEF_FIRST /* first non-unknown value and time */
60 , VDEF_LAST /* last non-unknown value and time */
61 , VDEF_LSLSLOPE /* least squares line slope */
62 , VDEF_LSLINT /* least squares line y_intercept */
63 , VDEF_LSLCORREL /* least squares line correlation coefficient */
65 enum text_prop_en { TEXT_PROP_DEFAULT = 0, /* default settings */
66 TEXT_PROP_TITLE, /* properties for the title */
67 TEXT_PROP_AXIS, /* for the numbers next to the axis */
68 TEXT_PROP_UNIT, /* for the vertical unit description */
69 TEXT_PROP_LEGEND, /* fot the legend below the graph */
74 enum gfx_if_en { IF_PNG = 0, IF_SVG, IF_EPS, IF_PDF };
75 enum gfx_en { GFX_LINE = 0, GFX_AREA, GFX_TEXT };
76 enum gfx_h_align_en { GFX_H_NULL = 0, GFX_H_LEFT, GFX_H_RIGHT, GFX_H_CENTER };
77 enum gfx_v_align_en { GFX_V_NULL = 0, GFX_V_TOP, GFX_V_BOTTOM, GFX_V_CENTER };
79 /* cairo color components */
80 typedef struct gfx_color_t {
88 typedef struct text_prop_t {
94 typedef struct vdef_t {
96 double param; /* parameter for function, if applicable */
97 double val; /* resulting value */
98 time_t when; /* timestamp, if applicable */
101 typedef struct xlab_t {
102 long minsec; /* minimum sec per pix */
103 long length; /* number of secs on the image */
104 enum tmt_en gridtm; /* grid interval in what ? */
105 long gridst; /* how many whats per grid */
106 enum tmt_en mgridtm; /* label interval in what ? */
107 long mgridst; /* how many whats per label */
108 enum tmt_en labtm; /* label interval in what ? */
109 long labst; /* how many whats per label */
110 long precis; /* label precision -> label placement */
111 char *stst; /* strftime string */
114 typedef struct ygrid_scale_t { /* y axis grid scaling info */
120 /* sensible y label intervals ...*/
122 typedef struct ylab_t {
123 double grid; /* grid spacing */
124 int lfac[4]; /* associated label spacing */
127 /* this structure describes the elements which can make up a graph.
128 because they are quite diverse, not all elements will use all the
129 possible parts of the structure. */
131 #define FMT_LEG_LEN 200
133 #define FMT_LEG_LEN 2000
136 typedef struct graph_desc_t {
137 enum gf_en gf; /* graphing function */
138 int stack; /* boolean */
139 int debug; /* boolean */
140 char vname[MAX_VNAME_LEN + 1]; /* name of the variable */
141 long vidx; /* gdes reference */
142 char rrd[1024]; /* name of the rrd_file containing data */
143 char ds_nam[DS_NAM_SIZE]; /* data source name */
144 long ds; /* data source number */
145 enum cf_en cf; /* consolidation function */
146 enum cf_en cf_reduce; /* consolidation function for reduce_data() */
147 struct gfx_color_t col; /* graph color */
148 char format[FMT_LEG_LEN + 5]; /* format for PRINT AND GPRINT */
149 char legend[FMT_LEG_LEN + 5]; /* legend */
150 int strftm; /* should the VDEF legend be formated with strftime */
151 double leg_x, leg_y; /* location of legend */
152 double yrule; /* value for y rule line and for VDEF */
153 time_t xrule; /* time for x rule line and for VDEF */
154 vdef_t vf; /* instruction for VDEF function */
155 rpnp_t *rpnp; /* instructions for CDEF function */
157 /* SHIFT implementation */
158 int shidx; /* gdes reference for offset (-1 --> constant) */
159 time_t shval; /* offset if shidx is -1 */
160 time_t shift; /* current shift applied */
162 /* description of data fetched for the graph element */
163 time_t start, end; /* timestaps for first and last data element */
164 time_t start_orig, end_orig; /* timestaps for first and last data element */
165 unsigned long step; /* time between samples */
166 unsigned long step_orig; /* time between samples */
167 unsigned long ds_cnt; /* how many data sources are there in the fetch */
168 long data_first; /* first pointer to this data */
169 char **ds_namv; /* name of datasources in the fetch. */
170 rrd_value_t *data; /* the raw data drawn from the rrd */
171 rrd_value_t *p_data; /* processed data, xsize elments */
172 double linewidth; /* linewideth */
173 enum txa_en txtalign; /* change default alignment strategy for text */
176 typedef struct image_desc_t {
178 /* configuration of graph */
180 char graphfile[MAXPATH]; /* filename for graphic */
181 FILE *graphhandle; /* FILE to use if filename is "-" */
182 long xsize, ysize; /* graph area size in pixels */
183 struct gfx_color_t graph_col[__GRC_END__]; /* real colors for the graph */
184 text_prop_t text_prop[TEXT_PROP_LAST]; /* text properties */
185 char ylegend[210]; /* legend along the yaxis */
186 char title[210]; /* title for graph */
187 char watermark[110]; /* watermark for graph */
188 int draw_x_grid; /* no x-grid at all */
189 int draw_y_grid; /* no x-grid at all */
190 double grid_dash_on, grid_dash_off;
191 xlab_t xlab_user; /* user defined labeling for xaxis */
192 char xlab_form[210]; /* format for the label on the xaxis */
194 double ygridstep; /* user defined step for y grid */
195 int ylabfact; /* every how many y grid shall a label be written ? */
196 double tabwidth; /* tabwdith */
197 time_t start, end; /* what time does the graph cover */
198 unsigned long step; /* any preference for the default step ? */
199 rrd_value_t minval, maxval; /* extreme values in the data */
200 int rigid; /* do not expand range even with
202 ygrid_scale_t ygrid_scale; /* calculated y axis grid info */
203 int gridfit; /* adjust y-axis range etc so all
204 grindlines falls in integer pixel values */
205 char *imginfo; /* construct an <IMG ... tag and return
207 enum gfx_if_en imgformat; /* image format */
208 int lazy; /* only update the image if there is
209 reasonable probablility that the
210 existing one is out of date */
211 int slopemode; /* connect the dots of the curve directly, not using a stair */
212 int logarithmic; /* scale the yaxis logarithmic */
214 /* status information */
216 long xorigin, yorigin; /* where is (0,0) of the graph */
217 long ximg, yimg; /* total size of the image */
218 size_t rendered_image_size;
220 double magfact; /* numerical magnitude */
221 long base; /* 1000 or 1024 depending on what we graph */
222 char symbol; /* magnitude symbol for y-axis */
223 float viewfactor; /* how should the numbers on the y-axis be scaled for viewing ? */
224 int unitsexponent; /* 10*exponent for units on y-asis */
225 int unitslength; /* width of the yaxis labels */
226 int forceleftspace; /* do not kill the space to the left of the y-axis if there is no grid */
228 int extra_flags; /* flags for boolean options */
231 unsigned char *rendered_image;
232 long prt_c; /* number of print elements */
233 long gdes_c; /* number of graphics elements */
234 graph_desc_t *gdes; /* points to an array of graph elements */
235 cairo_surface_t *surface; /* graphics library */
236 cairo_t *cr; /* drawin context */
237 cairo_font_options_t *font_options; /* cairo font options */
238 cairo_antialias_t graph_antialias; /* antialiasing for the graph */
250 enum gfx_if_en if_conv(
252 enum tmt_en tmt_conv(
254 enum grc_en grc_conv(
256 enum text_prop_en text_prop_conv(
284 long find_var_wrapper(
293 time_t find_first_time(
297 time_t find_next_time(
307 int calc_horizontal_grid(
309 int draw_horizontal_grid(
311 int horizontal_log_grid(
342 void rrd_graph_options(
346 void rrd_graph_script(
359 struct graph_desc_t *,
364 int vdef_percent_compar(
367 int graph_size_location(
373 /* create a new line */
383 void gfx_dashed_line(
394 /* create a new area */
405 /* add a point to a line or to an area */
411 /* close current path so it ends at the same point as it started */
416 /* create a text node */
426 enum gfx_h_align_en h_align,
427 enum gfx_v_align_en v_align,
430 /* measure width of a text string */
431 double gfx_get_text_width(
441 gfx_color_t gfx_hex_to_col(