Fixed CPU overuse. (LP: 1582930)
[psensor.git] / src / graph.c
index b68c346..60392cc 100644 (file)
@@ -52,35 +52,60 @@ struct graph_info {
        int height;
        /* Width of the drawing canvas */
        int width;
-
-       /* Background color of the current desktop theme */
-       GdkRGBA theme_bg_color;
-       /* Foreground color of the current desktop theme */
-       GdkRGBA theme_fg_color;
 };
 
+static GtkStyleContext *style;
+/* Foreground color of the current desktop theme */
+static GdkRGBA theme_fg_color;
+/* Background color of the current desktop theme */
+static GdkRGBA theme_bg_color;
+
+static void update_theme(GtkWidget *w)
+{
+       style = gtk_widget_get_style_context(w);
+
+       gtk_style_context_get_background_color(style,
+                                              GTK_STATE_FLAG_NORMAL,
+                                              &theme_bg_color);
+       gtk_style_context_get_color(style,
+                                   GTK_STATE_FLAG_NORMAL,
+                                   &theme_fg_color);
+}
 
 /* Return the end time of the graph i.e. the more recent measure.  If
  * no measure are available, return 0.
+ * If Bezier curves are used return the measure n-3 to avoid to
+ * display a part of the curve outside the graph area.
  */
 static time_t get_graph_end_time_s(struct psensor **sensors)
 {
        time_t ret, t;
        struct psensor *s;
        struct measure *measures;
-       int i;
+       int i, n;
 
        ret = 0;
        while (*sensors) {
                s = *sensors;
                measures = s->measures;
 
+               if (is_smooth_curves_enabled)
+                       n = 2;
+               else
+                       n = 0;
+
                for (i = s->values_max_length - 1; i >= 0; i--) {
                        if (measures[i].value != UNKNOWN_DBL_VALUE) {
-                               t = measures[i].time.tv_sec;
+                               if (!n) {
+                                       t = measures[i].time.tv_sec;
 
-                               if (t > ret)
-                                       ret = t;
+                                       if (t > ret) {
+                                               ret = t;
+                                               break;
+                                       }
+                               } else {
+                                       n--;
+                               }
                        }
                        i--;
                }
@@ -125,14 +150,30 @@ static char *time_to_str(time_t s)
 static void draw_left_region(cairo_t *cr, struct graph_info *info)
 {
        cairo_set_source_rgb(cr,
-                            info->theme_bg_color.red,
-                            info->theme_bg_color.green,
-                            info->theme_bg_color.blue);
+                            theme_bg_color.red,
+                            theme_bg_color.green,
+                            theme_bg_color.blue);
 
        cairo_rectangle(cr, 0, 0, info->g_xoff, info->height);
        cairo_fill(cr);
 }
 
+static void draw_right_region(cairo_t *cr, struct graph_info *info)
+{
+       cairo_set_source_rgb(cr,
+                            theme_bg_color.red,
+                            theme_bg_color.green,
+                            theme_bg_color.blue);
+
+
+       cairo_rectangle(cr,
+                       info->g_xoff + info->g_width,
+                       0,
+                       info->g_xoff + info->g_width + GRAPH_H_PADDING,
+                       info->height);
+       cairo_fill(cr);
+}
+
 static void
 draw_graph_background(cairo_t *cr,
                      struct config *config,
@@ -144,15 +185,15 @@ draw_graph_background(cairo_t *cr,
 
        if (config->alpha_channel_enabled)
                cairo_set_source_rgba(cr,
-                                     info->theme_bg_color.red,
-                                     info->theme_bg_color.green,
-                                     info->theme_bg_color.blue,
+                                     theme_bg_color.red,
+                                     theme_bg_color.green,
+                                     theme_bg_color.blue,
                                      config->graph_bg_alpha);
        else
                cairo_set_source_rgb(cr,
-                                    info->theme_bg_color.red,
-                                    info->theme_bg_color.green,
-                                    info->theme_bg_color.blue);
+                                    theme_bg_color.red,
+                                    theme_bg_color.green,
+                                    theme_bg_color.blue);
 
        cairo_rectangle(cr, info->g_xoff, 0, info->g_width, info->height);
        cairo_fill(cr);
@@ -420,6 +461,9 @@ graph_update(struct psensor **sensors,
        if (!gtk_widget_is_drawable(w_graph))
                return;
 
+       if (!style)
+               update_theme(window);
+
        enabled_sensors = psensor_list_filter_graph_enabled(sensors);
 
        min_rpm = get_min_rpm(enabled_sensors);
@@ -480,14 +524,6 @@ graph_update(struct psensor **sensors,
 
        info.g_xoff = g_xoff;
 
-       style_ctx = gtk_widget_get_style_context(window);
-       gtk_style_context_get_background_color(style_ctx,
-                                              GTK_STATE_FLAG_NORMAL,
-                                              &info.theme_bg_color);
-       gtk_style_context_get_color(style_ctx,
-                                   GTK_STATE_FLAG_NORMAL,
-                                   &info.theme_fg_color);
-
        g_width = width - g_xoff - GRAPH_H_PADDING;
        info.g_width = g_width;
 
@@ -495,9 +531,9 @@ graph_update(struct psensor **sensors,
 
        /* Set the color for text drawing */
        cairo_set_source_rgb(cr,
-                            info.theme_fg_color.red,
-                            info.theme_fg_color.green,
-                            info.theme_fg_color.blue);
+                            theme_fg_color.red,
+                            theme_fg_color.green,
+                            theme_fg_color.blue);
 
        /* draw graph begin time */
        cairo_move_to(cr, g_xoff, height - GRAPH_V_PADDING);
@@ -557,12 +593,13 @@ graph_update(struct psensor **sensors,
        }
 
        draw_left_region(cr, &info);
+       draw_right_region(cr, &info);
 
        /* draw min and max temp */
        cairo_set_source_rgb(cr,
-                            info.theme_fg_color.red,
-                            info.theme_fg_color.green,
-                            info.theme_fg_color.blue);
+                            theme_fg_color.red,
+                            theme_fg_color.green,
+                            theme_fg_color.blue);
 
        cairo_move_to(cr, GRAPH_H_PADDING, te_max.height + GRAPH_V_PADDING);
        cairo_show_text(cr, strmax);