Fixup some imlib2 flush interval stuff.
[monky] / src / imlib2.c
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Please see COPYING for details
4  *
5  * Copyright (c) 2005-2009 Brenden Matthews, et. al.
6  * All rights reserved.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
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  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 #include "imlib2.h"
23 #include "config.h"
24 #include "logging.h"
25 #include "common.h"
26
27 #include <Imlib2.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <limits.h>
32 #include <time.h>
33
34 struct image_list_s {
35         char name[DEFAULT_TEXT_BUFFER_SIZE];
36         Imlib_Image image;
37         int x, y, w, h;
38         int wh_set;
39         char no_cache;
40         int flush_interval;
41         struct image_list_s *next;
42 };
43
44 struct image_list_s *image_list_start, *image_list_end;
45
46 /* areas to update */
47 Imlib_Updates updates, current_update;
48 /* our virtual framebuffer image we draw into */
49 Imlib_Image buffer, image;
50
51 static int cache_size_set = 0;
52
53 /* flush the image cache ever X seconds */
54 static int cimlib_cache_flush_interval = 0;
55 static int cimlib_cache_flush_last = 0;
56
57 #define DEFAULT_CACHE_SIZE 4096 * 1024 /* default cache size for loaded images */
58
59 void cimlib_set_cache_size(long size)
60 {
61         imlib_set_cache_size(size);
62         cache_size_set = 1;
63 }
64
65 void cimlib_set_cache_flush_interval(long interval)
66 {
67         if (interval >= 0) {
68                 cimlib_cache_flush_interval = interval;
69         } else {
70                 ERR("Imlib2: flush interval should be >= 0");
71         }
72 }
73
74 void cimlib_cleanup(void)
75 {
76         struct image_list_s *cur = image_list_start, *last = NULL;
77         while (cur) {
78                 last = cur;
79                 cur = last->next;
80                 free(last);
81         }
82         image_list_start = image_list_end = NULL;
83 }
84
85 void cimlib_init(Display *display, Window drawable, Visual *visual, Colormap colourmap)
86 {
87         image_list_start = image_list_end = NULL;
88         if (!cache_size_set) cimlib_set_cache_size(DEFAULT_CACHE_SIZE);
89         /* set the maximum number of colors to allocate for 8bpp and less to 256 */
90         imlib_set_color_usage(256);
91         /* dither for depths < 24bpp */
92         imlib_context_set_dither(1);
93         /* set the display , visual, colormap and drawable we are using */
94         imlib_context_set_display(display);
95         imlib_context_set_visual(visual);
96         imlib_context_set_colormap(colourmap);
97         imlib_context_set_drawable(drawable);
98 }
99
100 void cimlib_add_image(const char *args)
101 {
102         struct image_list_s *cur = NULL;
103         char *tmp;
104
105         cur = malloc(sizeof(struct image_list_s));
106         memset(cur, 0, sizeof(struct image_list_s));
107
108         if (!sscanf(args, "%1024s", cur->name)) {
109                 ERR("Invalid args for $image.  Format is: '<path to image> (-p x,y) (-s WxH) (-n) (-f interval)' (got '%s')", args);
110         }
111         to_real_path(cur->name, cur->name);
112         // now we check for optional args
113         tmp = strstr(args, "-p ");
114         if (tmp) {
115                 tmp += 3;
116                 sscanf(tmp, "%i,%i", &cur->x, &cur->y);
117         }
118         tmp = strstr(args, "-s ");
119         if (tmp) {
120                 tmp += 3;
121                 if (sscanf(tmp, "%ix%i", &cur->w, &cur->h)) {
122                         cur->wh_set = 1;
123                 }
124         }
125
126         tmp = strstr(args, "-n");
127         if (tmp) {
128                 cur->no_cache = 1;
129         }
130
131         tmp = strstr(args, "-f ");
132         if (tmp) {
133                 tmp += 3;
134                 if (sscanf(tmp, "%d", &cur->flush_interval)) {
135                         cur->no_cache = 0;
136                 }
137         }
138         if (cur->flush_interval < 0) {
139                 ERR("Imlib2: flush interval should be >= 0");
140                 cur->flush_interval = 0;
141         }
142
143         if (image_list_end) {
144                 image_list_end->next = cur;
145                 image_list_end = cur;
146         } else {
147                 image_list_start = image_list_end = cur;
148         }
149 }
150
151 static void cimlib_draw_image(struct image_list_s *cur, int *clip_x, int *clip_y, int *clip_x2, int *clip_y2)
152 {
153         image = imlib_load_image(cur->name);
154         if (image) {
155                 int w, h;
156                 time_t now = time(NULL);
157                 DBGP("Drawing image '%s' at (%i,%i) scaled to %ix%i, caching interval set to %i (with -n opt %i)", cur->name, cur->x, cur->y, cur->w, cur->h, cur->flush_interval, cur->no_cache);
158                 imlib_context_set_image(image);
159                 /* turn alpha channel on */
160                 imlib_image_set_has_alpha(1);
161                 w = imlib_image_get_width();
162                 h = imlib_image_get_height();
163                 if (!cur->wh_set) {
164                         cur->w = w;
165                         cur->h = h;
166                 }
167                 imlib_context_set_image(buffer);
168                 imlib_blend_image_onto_image(image, 1, 0, 0, w, h,
169                                 cur->x, cur->y, cur->w, cur->h);
170                 imlib_context_set_image(image);
171                 if (cur->no_cache || (cur->flush_interval && now % cur->flush_interval == 0)) {
172                         imlib_free_image_and_decache();
173                 } else {
174                         imlib_free_image();
175                 }
176                 if (cur->x < *clip_x) *clip_x = cur->x;
177                 if (cur->y < *clip_y) *clip_y = cur->y;
178                 if (cur->x + cur->w > *clip_x2) *clip_x2 = cur->x + cur->w;
179                 if (cur->y + cur->h > *clip_y2) *clip_y2 = cur->y + cur->h;
180         } else {
181                 ERR("Unable to load image '%s'", cur->name);
182         }
183 }
184
185 static void cimlib_draw_all(int *clip_x, int *clip_y, int *clip_x2, int *clip_y2)
186 {
187         struct image_list_s *cur = image_list_start;
188         while (cur) {
189                 cimlib_draw_image(cur, clip_x, clip_y, clip_x2, clip_y2);
190                 cur = cur->next;
191         }
192 }
193
194 void cimlib_render(int x, int y, int width, int height)
195 {
196         int clip_x = INT_MAX, clip_y = INT_MAX;
197         int clip_x2 = 0, clip_y2 = 0;
198         time_t now;
199
200         if (!image_list_start) return; /* are we actually drawing anything? */
201
202         /* cheque if it's time to flush our cache */
203         now = time(NULL);
204         if (cimlib_cache_flush_interval && now - cimlib_cache_flush_interval > cimlib_cache_flush_last) {
205                 int size = imlib_get_cache_size();
206                 imlib_set_cache_size(0);
207                 imlib_set_cache_size(size);
208                 cimlib_cache_flush_last = now;
209                 DBGP("Flushing Imlib2 cache (%li)\n", now);
210         }
211
212         /* take all the little rectangles to redraw and merge them into
213          * something sane for rendering */
214         buffer = imlib_create_image(width, height);
215         /* clear our buffer */
216         imlib_context_set_image(buffer);
217         imlib_image_clear();
218         /* we can blend stuff now */
219         imlib_context_set_blend(1);
220         /* turn alpha channel on */
221         imlib_image_set_has_alpha(1);
222
223         cimlib_draw_all(&clip_x, &clip_y, &clip_x2, &clip_y2);
224
225         /* set the buffer image as our current image */
226         imlib_context_set_image(buffer);
227
228         /* setup our clip rect */
229         if (clip_x == INT_MAX) clip_x = 0;
230         if (clip_y == INT_MAX) clip_y = 0;
231
232         /* render the image at 0, 0 */
233         imlib_render_image_part_on_drawable_at_size(clip_x, clip_y, clip_x2 - clip_x,
234                         clip_y2 - clip_y, x + clip_x, y + clip_y, clip_x2 - clip_x,
235                         clip_y2 - clip_y);
236         /* don't need that temporary buffer image anymore */
237         imlib_free_image();
238 }
239