1 /****************************************************************************
2 * RRDtool 1.4.0 Copyright by Tobi Oetiker, 1997-2009
3 ****************************************************************************
4 * rrd_gfx.c graphics wrapper for rrdtool
5 **************************************************************************/
7 /* #define DEBUG */
9 /* stupid MSVC doesnt support variadic macros = no debug for now! */
10 #ifdef _MSC_VER
11 # define RRDPRINTF()
12 #else
13 # ifdef DEBUG
14 # define RRDPRINTF(...) fprintf(stderr, __VA_ARGS__);
15 # else
16 # define RRDPRINTF(...)
17 # endif /* DEBUG */
18 #endif /* _MSC_VER */
20 #include "rrd_tool.h"
21 #include "rrd_graph.h"
24 /* create a new line */
25 void gfx_line(
26 image_desc_t *im,
27 double X0,
28 double Y0,
29 double X1,
30 double Y1,
31 double width,
32 gfx_color_t color)
33 {
34 gfx_dashed_line(im, X0, Y0, X1, Y1, width, color, 0, 0);
35 }
37 void gfx_dashed_line(
38 image_desc_t *im,
39 double X0,
40 double Y0,
41 double X1,
42 double Y1,
43 double width,
44 gfx_color_t color,
45 double dash_on,
46 double dash_off)
47 {
48 cairo_t *cr = im->cr;
49 double dashes[2];
50 double x = 0;
51 double y = 0;
53 dashes[0] = dash_on;
54 dashes[1] = dash_off;
56 cairo_save(cr);
57 cairo_new_path(cr);
58 cairo_set_line_width(cr, width);
59 gfx_line_fit(im, &x, &y);
60 gfx_line_fit(im, &X0, &Y0);
61 cairo_move_to(cr, X0, Y0);
62 gfx_line_fit(im, &X1, &Y1);
63 cairo_line_to(cr, X1, Y1);
64 if (dash_on > 0 || dash_off > 0)
65 cairo_set_dash(cr, dashes, 2, x);
66 cairo_set_source_rgba(cr, color.red, color.green, color.blue,
67 color.alpha);
68 cairo_stroke(cr);
69 cairo_restore(cr);
70 }
72 /* create a new area */
73 void gfx_new_area(
74 image_desc_t *im,
75 double X0,
76 double Y0,
77 double X1,
78 double Y1,
79 double X2,
80 double Y2,
81 gfx_color_t color)
82 {
83 cairo_t *cr = im->cr;
85 cairo_new_path(cr);
86 gfx_area_fit(im, &X0, &Y0);
87 cairo_move_to(cr, X0, Y0);
88 gfx_area_fit(im, &X1, &Y1);
89 cairo_line_to(cr, X1, Y1);
90 gfx_area_fit(im, &X2, &Y2);
91 cairo_line_to(cr, X2, Y2);
92 cairo_set_source_rgba(cr, color.red, color.green, color.blue,
93 color.alpha);
94 }
96 /* add a point to a line or to an area */
97 void gfx_add_point(
98 image_desc_t *im,
99 double x,
100 double y)
101 {
102 cairo_t *cr = im->cr;
104 gfx_area_fit(im, &x, &y);
105 cairo_line_to(cr, x, y);
106 }
108 void gfx_close_path(
109 image_desc_t *im)
110 {
111 cairo_t *cr = im->cr;
113 cairo_close_path(cr);
114 cairo_fill(cr);
115 }
117 /* create a text node */
118 static PangoLayout *gfx_prep_text(
119 image_desc_t *im,
120 double x,
121 gfx_color_t color,
122 PangoFontDescription *font_desc,
123 double tabwidth,
124 const char *text)
125 {
126 PangoLayout *layout = im->layout;
127 const PangoFontDescription *pfd;
128 cairo_t *cr = im->cr;
130 static double last_tabwidth = -1;
134 /* for performance reasons we might
135 want todo that only once ... tabs will always
136 be the same */
137 long i;
138 long tab_count = strlen(text);
139 long tab_shift = fmod(x, tabwidth);
140 int border = im->text_prop[TEXT_PROP_LEGEND].size * 2.0;
142 gchar *utf8_text;
144 if (last_tabwidth < 0 || last_tabwidth != tabwidth){
145 PangoTabArray *tab_array;
146 // fprintf(stderr,"t");
147 last_tabwidth = tabwidth;
148 tab_array = pango_tab_array_new(tab_count, (gboolean) (1));
149 for (i = 1; i <= tab_count; i++) {
150 pango_tab_array_set_tab(tab_array,
151 i, PANGO_TAB_LEFT,
152 tabwidth * i - tab_shift + border);
153 }
154 pango_layout_set_tabs(layout, tab_array);
155 pango_tab_array_free(tab_array);
156 }
157 pfd = pango_layout_get_font_description(layout);
159 if (!pfd || !pango_font_description_equal (pfd,font_desc)){
160 pango_layout_set_font_description(layout, font_desc);
161 }
162 // fprintf(stderr,"%s\n",pango_font_description_to_string(pango_layout_get_font_description(layout)));
164 cairo_new_path(cr);
165 cairo_set_source_rgba(cr, color.red, color.green, color.blue,
166 color.alpha);
167 /* layout = pango_cairo_create_layout(cr); */
169 // pango_cairo_context_set_font_options(pango_context, im->font_options);
170 // pango_cairo_context_set_resolution(pango_context, 100);
172 /* pango_cairo_update_context(cr, pango_context); */
175 /* pango expects the string to be utf-8 encoded */
176 utf8_text = g_locale_to_utf8((const gchar *) text, -1, NULL, NULL, NULL);
178 /* In case of an error, i.e. utf8_text == NULL (locale settings messed
179 * up?), we fall back to a possible "invalid UTF-8 string" warning instead
180 * of provoking a failed assertion in libpango. */
181 if (im->with_markup)
182 pango_layout_set_markup(layout, utf8_text ? utf8_text : text, -1);
183 else
184 pango_layout_set_text(layout, utf8_text ? utf8_text : text, -1);
186 g_free(utf8_text);
187 return layout;
188 }
190 /* Size Text Node */
191 double gfx_get_text_width(
192 image_desc_t *im,
193 double start,
194 PangoFontDescription *font_desc,
195 double tabwidth,
196 char *text)
197 {
198 PangoLayout *layout;
199 PangoRectangle log_rect;
200 gfx_color_t color = { 0, 0, 0, 0 };
201 layout = gfx_prep_text(im, start, color, font_desc, tabwidth, text);
202 pango_layout_get_pixel_extents(layout, NULL, &log_rect);
203 /* g_object_unref(layout); */
204 return log_rect.width;
205 }
207 void gfx_text(
208 image_desc_t *im,
209 double x,
210 double y,
211 gfx_color_t color,
212 PangoFontDescription *font_desc,
213 double tabwidth,
214 double angle,
215 enum gfx_h_align_en h_align,
216 enum gfx_v_align_en v_align,
217 const char *text)
218 {
219 PangoLayout *layout;
220 PangoRectangle log_rect;
221 cairo_t *cr = im->cr;
222 double sx = 0;
223 double sy = 0;
225 cairo_save(cr);
226 cairo_translate(cr, x, y);
227 /* gfx_line(cr,-2,0,2,0,1,color);
228 gfx_line(cr,0,-2,0,2,1,color); */
229 layout = gfx_prep_text(im, x, color, font_desc, tabwidth, text);
230 pango_layout_get_pixel_extents(layout, NULL, &log_rect);
231 cairo_rotate(cr, -angle * G_PI / 180.0);
232 sx = log_rect.x;
233 switch (h_align) {
234 case GFX_H_RIGHT:
235 sx -= log_rect.width;
236 break;
237 case GFX_H_CENTER:
238 sx -= log_rect.width / 2;
239 break;
240 case GFX_H_LEFT:
241 break;
242 case GFX_H_NULL:
243 break;
244 }
245 sy = log_rect.y;
246 switch (v_align) {
247 case GFX_V_TOP:
248 break;
249 case GFX_V_CENTER:
250 sy -= log_rect.height / 2;
251 break;
252 case GFX_V_BOTTOM:
253 sy -= log_rect.height;
254 break;
255 case GFX_V_NULL:
256 break;
257 }
258 pango_cairo_update_layout(cr, layout);
259 cairo_move_to(cr, sx, sy);
260 pango_cairo_show_layout(cr, layout);
261 /* g_object_unref(layout); */
262 cairo_restore(cr);
264 }
266 /* convert color */
267 struct gfx_color_t gfx_hex_to_col(
268 long unsigned int color)
269 {
270 struct gfx_color_t gfx_color;
272 gfx_color.red = 1.0 / 255.0 * ((color & 0xff000000) >> (3 * 8));
273 gfx_color.green = 1.0 / 255.0 * ((color & 0x00ff0000) >> (2 * 8));
274 gfx_color.blue = 1.0 / 255.0 * ((color & 0x0000ff00) >> (1 * 8));
275 gfx_color.alpha = 1.0 / 255.0 * (color & 0x000000ff);
276 return gfx_color;
277 }
279 /* gridfit_lines */
281 void gfx_line_fit(
282 image_desc_t *im,
283 double *x,
284 double *y)
285 {
286 cairo_t *cr = im->cr;
287 double line_width;
288 double line_height;
290 if (!im->gridfit)
291 return;
292 cairo_user_to_device(cr, x, y);
293 line_width = cairo_get_line_width(cr);
294 line_height = line_width;
295 cairo_user_to_device_distance(cr, &line_width, &line_height);
296 line_width = line_width / 2.0 - (long) (line_width / 2.0);
297 line_height = line_height / 2.0 - (long) (line_height / 2.0);
298 *x = (double) ((long) (*x + 0.5)) - line_width;
299 *y = (double) ((long) (*y + 0.5)) + line_height;
300 cairo_device_to_user(cr, x, y);
301 }
303 /* gridfit_areas */
305 void gfx_area_fit(
306 image_desc_t *im,
307 double *x,
308 double *y)
309 {
310 cairo_t *cr = im->cr;
312 if (!im->gridfit)
313 return;
314 cairo_user_to_device(cr, x, y);
315 *x = (double) ((long) (*x + 0.5));
316 *y = (double) ((long) (*y + 0.5));
317 cairo_device_to_user(cr, x, y);
318 }