Fix 6994caa18bc233aedf8ed417fa09fa9d101d1a4c.
[monky] / src / conky.c
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Any original torsmo code is licensed under the BSD license
4  *
5  * All code written since the fork of torsmo is licensed under the GPL
6  *
7  * Please see COPYING for details
8  *
9  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
10  * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
11  *      (see AUTHORS)
12  * All rights reserved.
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  *
26  */
27
28 #include "config.h"
29 #include "text_object.h"
30 #include "conky.h"
31 #include "common.h"
32 #include <stdarg.h>
33 #include <math.h>
34 #include <ctype.h>
35 #include <time.h>
36 #include <locale.h>
37 #include <signal.h>
38 #include <errno.h>
39 #include <limits.h>
40 #if HAVE_DIRENT_H
41 #include <dirent.h>
42 #endif
43 #include <sys/time.h>
44 #include <sys/param.h>
45 #ifdef HAVE_SYS_INOTIFY_H
46 #include <sys/inotify.h>
47 #endif /* HAVE_SYS_INOTIFY_H */
48 #ifdef X11
49 #include "x11.h"
50 #include <X11/Xutil.h>
51 #ifdef HAVE_XDAMAGE
52 #include <X11/extensions/Xdamage.h>
53 #endif
54 #ifdef IMLIB2
55 #include "imlib2.h"
56 #endif /* IMLIB2 */
57 #endif /* X11 */
58 #include <sys/types.h>
59 #include <sys/stat.h>
60 #include <netinet/in.h>
61 #include <netdb.h>
62 #include <fcntl.h>
63 #include <getopt.h>
64
65 /* local headers */
66 #include "algebra.h"
67 #include "build.h"
68 #include "colours.h"
69 #include "diskio.h"
70 #ifdef X11
71 #include "fonts.h"
72 #endif
73 #include "fs.h"
74 #include "logging.h"
75 #include "mixer.h"
76 #include "mail.h"
77 #include "mboxscan.h"
78 #include "specials.h"
79 #include "temphelper.h"
80 #include "tailhead.h"
81 #include "top.h"
82
83 /* check for OS and include appropriate headers */
84 #if defined(__linux__)
85 #include "linux.h"
86 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
87 #include "freebsd.h"
88 #elif defined(__OpenBSD__)
89 #include "openbsd.h"
90 #endif
91
92 #if defined(__FreeBSD_kernel__)
93 #include <bsd/bsd.h>
94 #endif
95
96 /* FIXME: apm_getinfo is unused here. maybe it's meant for common.c */
97 #if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
98                 || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
99 int apm_getinfo(int fd, apm_info_t aip);
100 char *get_apm_adapter(void);
101 char *get_apm_battery_life(void);
102 char *get_apm_battery_time(void);
103 #endif
104
105 #ifdef HAVE_ICONV
106 #include <iconv.h>
107 #endif
108
109 #ifdef CONFIG_OUTPUT
110 #include "defconfig.h"
111 #ifdef HAVE_FOPENCOOKIE
112 #include "conf_cookie.h"
113 #endif
114 #endif
115
116 #ifndef S_ISSOCK
117 #define S_ISSOCK(x)   ((x & S_IFMT) == S_IFSOCK)
118 #endif
119
120 #define MAIL_FILE "$MAIL"
121 #define MAX_IF_BLOCK_DEPTH 5
122
123 //#define SIGNAL_BLOCKING
124 #undef SIGNAL_BLOCKING
125
126 /* debugging level, used by logging.h */
127 int global_debug_level = 0;
128
129 /* two strings for internal use */
130 static char *tmpstring1, *tmpstring2;
131
132 /* variables holding various config settings */
133 int short_units;
134 int cpu_separate;
135 enum {
136         NO_SPACER = 0,
137         LEFT_SPACER,
138         RIGHT_SPACER
139 } use_spacer;
140 int top_cpu, top_mem, top_time;
141 static unsigned int top_name_width = 15;
142 int output_methods;
143 enum x_initialiser_state x_initialised = NO;
144 static volatile int g_signal_pending;
145 /* Update interval */
146 double update_interval;
147
148
149 /* prototypes for internally used functions */
150 static void signal_handler(int);
151 static void print_version(void) __attribute__((noreturn));
152 static void reload_config(void);
153 static void clean_up(void);
154 static void generate_text_internal(char *, int, struct text_object,
155                                    struct information *);
156 static int extract_variable_text_internal(struct text_object *,
157                                           const char *, char);
158
159 static void print_version(void)
160 {
161         printf(PACKAGE_NAME" "VERSION" compiled "BUILD_DATE" for "BUILD_ARCH"\n");
162
163         printf("\nCompiled in features:\n\n"
164                    "System config file: "SYSTEM_CONFIG_FILE"\n\n"
165 #ifdef X11
166                    " X11:\n"
167 # ifdef HAVE_XDAMAGE
168                    "  * Xdamage extension\n"
169 # endif /* HAVE_XDAMAGE */
170 # ifdef HAVE_XDBE
171                    "  * XDBE (double buffer extension)\n"
172 # endif /* HAVE_XDBE */
173 # ifdef XFT
174                    "  * Xft\n"
175 # endif /* XFT */
176 #endif /* X11 */
177                    "\n Music detection:\n"
178 #ifdef AUDACIOUS
179                    "  * Audacious\n"
180 #endif /* AUDACIOUS */
181 #ifdef BMPX
182                    "  * BMPx\n"
183 #endif /* BMPX */
184 #ifdef MPD
185                    "  * MPD\n"
186 #endif /* MPD */
187 #ifdef MOC
188                    "  * MOC\n"
189 #endif /* MOC */
190 #ifdef XMMS2
191                    "  * XMMS2\n"
192 #endif /* XMMS2 */
193                    "\n General:\n"
194 #ifdef HAVE_OPENMP
195                    "  * OpenMP\n"
196 #endif /* HAVE_OPENMP */
197 #ifdef MATH
198                    "  * math\n"
199 #endif /* Math */
200 #ifdef HDDTEMP
201                    "  * hddtemp\n"
202 #endif /* HDDTEMP */
203 #ifdef TCP_PORT_MONITOR
204                    "  * portmon\n"
205 #endif /* TCP_PORT_MONITOR */
206 #ifdef RSS
207                    "  * RSS\n"
208 #endif /* RSS */
209 #ifdef HAVE_LUA
210                    "  * Lua\n"
211 #endif /* HAVE_LUA */
212 #ifdef HAVE_IWLIB
213                    "  * wireless\n"
214 #endif /* HAVE_IWLIB */
215 #ifdef IBM
216                    "  * support for IBM/Lenovo notebooks\n"
217 #endif /* IBM */
218 #ifdef NVIDIA
219                    "  * nvidia\n"
220 #endif /* NVIDIA */
221 #ifdef EVE
222                    "  * eve-online\n"
223 #endif /* EVE */
224 #ifdef CONFIG_OUTPUT
225                    "  * config-output\n"
226 #endif /* CONFIG_OUTPUT */
227 #ifdef IMLIB2
228                    "  * Imlib2\n"
229 #endif /* IMLIB2 */
230 #ifdef MIXER_IS_ALSA
231                    "  * ALSA mixer support\n"
232 #endif /* MIXER_IS_ALSA */
233 #ifdef APCUPSD
234                         "  * apcupsd\n"
235 #endif /* APCUPSD */
236         );
237
238         exit(0);
239 }
240
241 static const char *suffixes[] = { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "" };
242
243
244 #ifdef X11
245
246 static void X11_destroy_window(void);
247 static void X11_create_window(void);
248 static void X11_initialisation(void);
249
250 struct _x11_stuff_s {
251         Region region;
252 #ifdef HAVE_XDAMAGE
253         Damage damage;
254         XserverRegion region2, part;
255         int event_base, error_base;
256 #endif
257 } x11_stuff;
258
259 /* text size */
260
261 static int text_start_x, text_start_y;  /* text start position in window */
262 static int text_width, text_height;
263
264 /* alignments */
265 enum alignment {
266         TOP_LEFT = 1,
267         TOP_RIGHT,
268         TOP_MIDDLE,
269         BOTTOM_LEFT,
270         BOTTOM_RIGHT,
271         BOTTOM_MIDDLE,
272         MIDDLE_LEFT,
273         MIDDLE_RIGHT,
274         NONE
275 };
276
277 /* display to connect to */
278 static char *disp = NULL;
279
280 #endif /* X11 */
281
282 /* struct that has all info to be shared between
283  * instances of the same text object */
284 struct information info;
285
286 /* default config file */
287 static char *current_config;
288
289 /* set to 1 if you want all text to be in uppercase */
290 static unsigned int stuff_in_upper_case;
291
292 /* Run how many times? */
293 static unsigned long total_run_times;
294
295 /* fork? */
296 static int fork_to_background;
297
298 static int cpu_avg_samples, net_avg_samples, diskio_avg_samples;
299
300 /* filenames for output */
301 char *overwrite_file = NULL; FILE *overwrite_fpointer = NULL;
302 char *append_file = NULL; FILE *append_fpointer = NULL;
303
304 #ifdef X11
305
306 static int show_graph_scale;
307 static int show_graph_range;
308
309 /* Position on the screen */
310 static int text_alignment;
311 static int gap_x, gap_y;
312
313 /* border */
314 static int draw_borders;
315 static int draw_graph_borders;
316 static int stippled_borders;
317
318 static int draw_shades, draw_outline;
319
320 static int border_margin, border_width;
321
322 static long default_fg_color, default_bg_color, default_out_color;
323
324 /* create own window or draw stuff to root? */
325 static int set_transparent = 0;
326
327 #ifdef OWN_WINDOW
328 static int own_window = 0;
329 static int background_colour = 0;
330
331 /* fixed size/pos is set if wm/user changes them */
332 static int fixed_size = 0, fixed_pos = 0;
333 #endif
334
335 static int minimum_width, minimum_height;
336 static int maximum_width;
337
338 #endif /* X11 */
339
340 #ifdef __OpenBSD__
341 static int sensor_device;
342 #endif
343
344 static long color0, color1, color2, color3, color4, color5, color6, color7,
345         color8, color9;
346
347 #define MAX_TEMPLATES 10
348 static char *template[MAX_TEMPLATES];
349
350 /* maximum size of config TEXT buffer, i.e. below TEXT line. */
351 static unsigned int max_user_text = MAX_USER_TEXT_DEFAULT;
352
353 /* maximum size of individual text buffers, ie $exec buffer size */
354 unsigned int text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
355
356 #ifdef HAVE_ICONV
357 #define CODEPAGE_LENGTH 20
358 long iconv_selected;
359 long iconv_count = 0;
360 char iconv_converting;
361 static iconv_t **iconv_cd = 0;
362
363 int register_iconv(iconv_t *new_iconv)
364 {
365         iconv_cd = realloc(iconv_cd, sizeof(iconv_t *) * (iconv_count + 1));
366         if (!iconv_cd) {
367                 CRIT_ERR("Out of memory");
368         }
369         iconv_cd[iconv_count] = malloc(sizeof(iconv_t));
370         if (!iconv_cd[iconv_count]) {
371                 CRIT_ERR("Out of memory");
372         }
373         memcpy(iconv_cd[iconv_count], new_iconv, sizeof(iconv_t));
374         iconv_count++;
375         return iconv_count;
376 }
377
378 void free_iconv(void)
379 {
380         if (iconv_cd) {
381                 long i;
382
383                 for (i = 0; i < iconv_count; i++) {
384                         if (iconv_cd[i]) {
385                                 iconv_close(*iconv_cd[i]);
386                                 free(iconv_cd[i]);
387                         }
388                 }
389                 free(iconv_cd);
390         }
391         iconv_cd = 0;
392 }
393
394 #endif
395
396 /* UTF-8 */
397 int utf8_mode = 0;
398
399 /* no buffers in used memory? */
400 int no_buffers;
401
402 /* pad percentages to decimals? */
403 static int pad_percents = 0;
404
405 static char *global_text = 0;
406 long global_text_lines;
407
408 static int total_updates;
409 static int updatereset;
410
411 int check_contains(char *f, char *s)
412 {
413         int ret = 0;
414         FILE *where = open_file(f, 0);
415
416         if (where) {
417                 char buf1[256];
418
419                 while (fgets(buf1, 256, where)) {
420                         if (strstr(buf1, s)) {
421                                 ret = 1;
422                                 break;
423                         }
424                 }
425                 fclose(where);
426         } else {
427                 ERR("Could not open the file");
428         }
429         return ret;
430 }
431
432 #ifdef X11
433 static inline int calc_text_width(const char *s, int l)
434 {
435         if ((output_methods & TO_X) == 0)
436                 return 0;
437 #ifdef XFT
438         if (use_xft) {
439                 XGlyphInfo gi;
440
441                 if (utf8_mode) {
442                         XftTextExtentsUtf8(display, fonts[selected_font].xftfont,
443                                 (const FcChar8 *) s, l, &gi);
444                 } else {
445                         XftTextExtents8(display, fonts[selected_font].xftfont,
446                                 (const FcChar8 *) s, l, &gi);
447                 }
448                 return gi.xOff;
449         } else
450 #endif
451         {
452                 return XTextWidth(fonts[selected_font].font, s, l);
453         }
454 }
455 #endif /* X11 */
456
457 /* formatted text to render on screen, generated in generate_text(),
458  * drawn in draw_stuff() */
459
460 static char *text_buffer;
461
462 #ifdef X11
463 static unsigned int special_index;      /* used when drawing */
464 #endif /* X11 */
465
466 /* quite boring functions */
467
468 static inline void for_each_line(char *b, void f(char *))
469 {
470         char *ps, *pe;
471
472         for (ps = b, pe = b; *pe; pe++) {
473                 if (*pe == '\n') {
474                         *pe = '\0';
475                         f(ps);
476                         *pe = '\n';
477                         ps = pe + 1;
478                 }
479         }
480
481         if (ps < pe) {
482                 f(ps);
483         }
484 }
485
486 static void convert_escapes(char *buf)
487 {
488         char *p = buf, *s = buf;
489
490         while (*s) {
491                 if (*s == '\\') {
492                         s++;
493                         if (*s == 'n') {
494                                 *p++ = '\n';
495                         } else if (*s == '\\') {
496                                 *p++ = '\\';
497                         }
498                         s++;
499                 } else {
500                         *p++ = *s++;
501                 }
502         }
503         *p = '\0';
504 }
505
506 /* Prints anything normally printed with snprintf according to the current value
507  * of use_spacer.  Actually slightly more flexible than snprintf, as you can
508  * safely specify the destination buffer as one of your inputs.  */
509 int spaced_print(char *buf, int size, const char *format, int width, ...)
510 {
511         int len = 0;
512         va_list argp;
513         char *tempbuf;
514
515         if (size < 1) {
516                 return 0;
517         }
518         tempbuf = malloc(size * sizeof(char));
519
520         // Passes the varargs along to vsnprintf
521         va_start(argp, width);
522         vsnprintf(tempbuf, size, format, argp);
523         va_end(argp);
524
525         switch (use_spacer) {
526                 case NO_SPACER:
527                         len = snprintf(buf, size, "%s", tempbuf);
528                         break;
529                 case LEFT_SPACER:
530                         len = snprintf(buf, size, "%*s", width, tempbuf);
531                         break;
532                 case RIGHT_SPACER:
533                         len = snprintf(buf, size, "%-*s", width, tempbuf);
534                         break;
535         }
536         free(tempbuf);
537         return len;
538 }
539
540 /* print percentage values
541  *
542  * - i.e., unsigned values between 0 and 100
543  * - respect the value of pad_percents */
544 static int percent_print(char *buf, int size, unsigned value)
545 {
546         return spaced_print(buf, size, "%u", pad_percents, value);
547 }
548
549 /* converts from bytes to human readable format (K, M, G, T)
550  *
551  * The algorithm always divides by 1024, as unit-conversion of byte
552  * counts suggests. But for output length determination we need to
553  * compare with 1000 here, as we print in decimal form. */
554 static void human_readable(long long num, char *buf, int size)
555 {
556         const char **suffix = suffixes;
557         float fnum;
558         int precision;
559         int width;
560         const char *format;
561
562         if (short_units) {
563                 width = 5;
564                 format = "%.*f%.1s";
565         } else {
566                 width = 7;
567                 format = "%.*f%-3s";
568         }
569
570         if (llabs(num) < 1000LL) {
571                 spaced_print(buf, size, format, width, 0, (float)num, *suffix);
572                 return;
573         }
574
575         while (llabs(num / 1024) >= 1000LL && **(suffix + 2)) {
576                 num /= 1024;
577                 suffix++;
578         }
579
580         suffix++;
581         fnum = num / 1024.0;
582
583         /* fnum should now be < 1000, so looks like 'AAA.BBBBB'
584          *
585          * The goal is to always have a significance of 3, by
586          * adjusting the decimal part of the number. Sample output:
587          *  123MiB
588          * 23.4GiB
589          * 5.12B   
590          * so the point of alignment resides between number and unit. The
591          * upside of this is that there is minimal padding necessary, though
592          * there should be a way to make alignment take place at the decimal
593          * dot (then with fixed width decimal part). 
594          *
595          * Note the repdigits below: when given a precision value, printf()
596          * rounds the float to it, not just cuts off the remaining digits. So
597          * e.g. 99.95 with a precision of 1 gets 100.0, which again should be
598          * printed with a precision of 0. Yay. */
599
600         precision = 0;          /* print 100-999 without decimal part */
601         if (fnum < 99.95)
602                 precision = 1;  /* print 10-99 with one decimal place */
603         if (fnum < 9.995)
604                 precision = 2;  /* print 0-9 with two decimal places */
605
606         spaced_print(buf, size, format, width, precision, fnum, *suffix);
607 }
608
609 /* global object list root element */
610 static struct text_object global_root_object;
611
612 static inline void read_exec(const char *data, char *buf, const int size)
613 {
614         FILE *fp = popen(data, "r");
615         int length = fread(buf, 1, size, fp);
616
617         pclose(fp);
618         buf[length] = '\0';
619         if (length > 0 && buf[length - 1] == '\n') {
620                 buf[length - 1] = '\0';
621         }
622 }
623
624 void *threaded_exec(void *) __attribute__((noreturn));
625
626 void *threaded_exec(void *arg)
627 {
628         char *buff, *p2;
629         struct text_object *obj = (struct text_object *)arg;
630
631         while (1) {
632                 buff = malloc(text_buffer_size);
633                 read_exec(obj->data.texeci.cmd, buff,
634                         text_buffer_size);
635                 p2 = buff;
636                 while (*p2) {
637                         if (*p2 == '\001') {
638                                 *p2 = ' ';
639                         }
640                         p2++;
641                 }
642                 timed_thread_lock(obj->data.texeci.p_timed_thread);
643                 strncpy(obj->data.texeci.buffer, buff, text_buffer_size);
644                 timed_thread_unlock(obj->data.texeci.p_timed_thread);
645                 free(buff);
646                 if (timed_thread_test(obj->data.texeci.p_timed_thread, 0)) {
647                         timed_thread_exit(obj->data.texeci.p_timed_thread);
648                 }
649         }
650         /* never reached */
651 }
652
653 static struct text_object *new_text_object_internal(void)
654 {
655         struct text_object *obj = malloc(sizeof(struct text_object));
656         memset(obj, 0, sizeof(struct text_object));
657         return obj;
658 }
659
660 /*
661  * Frees the list of text objects root points to.  When internal = 1, it won't
662  * free global objects.
663  */
664 static void free_text_objects(struct text_object *root, int internal)
665 {
666         struct text_object *obj;
667
668         if (!root->prev) {
669                 return;
670         }
671
672 #define data obj->data
673         for (obj = root->prev; obj; obj = root->prev) {
674                 root->prev = obj->prev;
675                 switch (obj->type) {
676 #ifndef __OpenBSD__
677                         case OBJ_acpitemp:
678                                 close(data.i);
679                                 break;
680 #endif /* !__OpenBSD__ */
681 #ifdef __linux__
682                         case OBJ_i2c:
683                         case OBJ_platform:
684                         case OBJ_hwmon:
685                                 close(data.sysfs.fd);
686                                 break;
687 #endif /* __linux__ */
688                         case OBJ_read_tcp:
689                                 free(data.read_tcp.host);
690                                 break;
691                         case OBJ_time:
692                         case OBJ_utime:
693                                 free(data.s);
694                                 break;
695                         case OBJ_tztime:
696                                 free(data.tztime.tz);
697                                 free(data.tztime.fmt);
698                                 break;
699                         case OBJ_mboxscan:
700                                 free(data.mboxscan.args);
701                                 free(data.mboxscan.output);
702                                 break;
703                         case OBJ_mails:
704                         case OBJ_new_mails:
705                         case OBJ_seen_mails:
706                         case OBJ_unseen_mails:
707                         case OBJ_flagged_mails:
708                         case OBJ_unflagged_mails:
709                         case OBJ_forwarded_mails:
710                         case OBJ_unforwarded_mails:
711                         case OBJ_replied_mails:
712                         case OBJ_unreplied_mails:
713                         case OBJ_draft_mails:
714                         case OBJ_trashed_mails:
715                                 free(data.local_mail.box);
716                                 break;
717                         case OBJ_imap_unseen:
718                                 if (!obj->char_b) {
719                                         free(data.mail);
720                                 }
721                                 break;
722                         case OBJ_imap_messages:
723                                 if (!obj->char_b) {
724                                         free(data.mail);
725                                 }
726                                 break;
727                         case OBJ_pop3_unseen:
728                                 if (!obj->char_b) {
729                                         free(data.mail);
730                                 }
731                                 break;
732                         case OBJ_pop3_used:
733                                 if (!obj->char_b) {
734                                         free(data.mail);
735                                 }
736                                 break;
737                         case OBJ_if_empty:
738                         case OBJ_if_match:
739                                 free_text_objects(obj->sub, 1);
740                                 free(obj->sub);
741                                 /* fall through */
742                         case OBJ_if_existing:
743                         case OBJ_if_mounted:
744                         case OBJ_if_running:
745                                 free(data.ifblock.s);
746                                 free(data.ifblock.str);
747                                 break;
748                         case OBJ_tail:
749                                 free(data.tail.logfile);
750                                 free(data.tail.buffer);
751                                 break;
752                         case OBJ_text:
753                         case OBJ_font:
754                         case OBJ_image:
755                         case OBJ_eval:
756                         case OBJ_exec:
757                         case OBJ_execbar:
758 #ifdef X11
759                         case OBJ_execgauge:
760                         case OBJ_execgraph:
761 #endif
762                         case OBJ_execp:
763                                 free(data.s);
764                                 break;
765 #ifdef HAVE_ICONV
766                         case OBJ_iconv_start:
767                                 free_iconv();
768                                 break;
769 #endif
770 #ifdef __linux__
771                         case OBJ_disk_protect:
772                                 free(data.s);
773                                 break;
774                         case OBJ_if_gw:
775                                 free(data.ifblock.s);
776                                 free(data.ifblock.str);
777                         case OBJ_gw_iface:
778                         case OBJ_gw_ip:
779                                 if (info.gw_info.iface) {
780                                         free(info.gw_info.iface);
781                                         info.gw_info.iface = 0;
782                                 }
783                                 if (info.gw_info.ip) {
784                                         free(info.gw_info.ip);
785                                         info.gw_info.ip = 0;
786                                 }
787                                 break;
788                         case OBJ_ioscheduler:
789                                 if(data.s)
790                                         free(data.s);
791                                 break;
792 #endif
793 #if (defined(__FreeBSD__) || defined(__linux__))
794                         case OBJ_if_up:
795                                 free(data.ifblock.s);
796                                 free(data.ifblock.str);
797                                 break;
798 #endif
799 #ifdef XMMS2
800                         case OBJ_xmms2_artist:
801                                 if (info.xmms2.artist) {
802                                         free(info.xmms2.artist);
803                                         info.xmms2.artist = 0;
804                                 }
805                                 break;
806                         case OBJ_xmms2_album:
807                                 if (info.xmms2.album) {
808                                         free(info.xmms2.album);
809                                         info.xmms2.album = 0;
810                                 }
811                                 break;
812                         case OBJ_xmms2_title:
813                                 if (info.xmms2.title) {
814                                         free(info.xmms2.title);
815                                         info.xmms2.title = 0;
816                                 }
817                                 break;
818                         case OBJ_xmms2_genre:
819                                 if (info.xmms2.genre) {
820                                         free(info.xmms2.genre);
821                                         info.xmms2.genre = 0;
822                                 }
823                                 break;
824                         case OBJ_xmms2_comment:
825                                 if (info.xmms2.comment) {
826                                         free(info.xmms2.comment);
827                                         info.xmms2.comment = 0;
828                                 }
829                                 break;
830                         case OBJ_xmms2_url:
831                                 if (info.xmms2.url) {
832                                         free(info.xmms2.url);
833                                         info.xmms2.url = 0;
834                                 }
835                                 break;
836                         case OBJ_xmms2_date:
837                                 if (info.xmms2.date) {
838                                         free(info.xmms2.date);
839                                         info.xmms2.date = 0;
840                                 }
841                                 break;
842                         case OBJ_xmms2_status:
843                                 if (info.xmms2.status) {
844                                         free(info.xmms2.status);
845                                         info.xmms2.status = 0;
846                                 }
847                                 break;
848                         case OBJ_xmms2_playlist:
849                                 if (info.xmms2.playlist) {
850                                         free(info.xmms2.playlist);
851                                         info.xmms2.playlist = 0;
852                                 }
853                                 break;
854                         case OBJ_xmms2_smart:
855                                 if (info.xmms2.artist) {
856                                         free(info.xmms2.artist);
857                                         info.xmms2.artist = 0;
858                                 }
859                                 if (info.xmms2.title) {
860                                         free(info.xmms2.title);
861                                         info.xmms2.title = 0;
862                                 }
863                                 if (info.xmms2.url) {
864                                         free(info.xmms2.url);
865                                         info.xmms2.url = 0;
866                                 }
867                                 break;
868 #endif
869 #ifdef BMPX
870                         case OBJ_bmpx_title:
871                         case OBJ_bmpx_artist:
872                         case OBJ_bmpx_album:
873                         case OBJ_bmpx_track:
874                         case OBJ_bmpx_uri:
875                         case OBJ_bmpx_bitrate:
876                                 break;
877 #endif
878 #ifdef EVE
879                         case OBJ_eve:
880                                 break;
881 #endif
882 #ifdef RSS
883                         case OBJ_rss:
884                                 free(data.rss.uri);
885                                 free(data.rss.action);
886                                 break;
887 #endif
888 #ifdef HAVE_LUA
889                         case OBJ_lua:
890                         case OBJ_lua_parse:
891                         case OBJ_lua_read_parse:
892                         case OBJ_lua_bar:
893 #ifdef X11
894                         case OBJ_lua_graph:
895                         case OBJ_lua_gauge:
896 #endif /* X11 */
897                                 free(data.s);
898                                 break;
899 #endif /* HAVE_LUA */
900                         case OBJ_pre_exec:
901                                 break;
902 #ifndef __OpenBSD__
903                         case OBJ_battery:
904                                 free(data.s);
905                                 break;
906                         case OBJ_battery_short:
907                                 free(data.s);
908                                 break;
909                         case OBJ_battery_time:
910                                 free(data.s);
911                                 break;
912 #endif /* !__OpenBSD__ */
913                         case OBJ_execpi:
914                         case OBJ_execi:
915                         case OBJ_execibar:
916 #ifdef X11
917                         case OBJ_execigraph:
918                         case OBJ_execigauge:
919 #endif /* X11 */
920                                 free(data.execi.cmd);
921                                 free(data.execi.buffer);
922                                 break;
923                         case OBJ_texeci:
924                                 free(data.texeci.cmd);
925                                 free(data.texeci.buffer);
926                                 break;
927                         case OBJ_nameserver:
928                                 free_dns_data();
929                                 break;
930                         case OBJ_top:
931                         case OBJ_top_mem:
932                         case OBJ_top_time:
933                                 if (info.first_process && !internal) {
934                                         free_all_processes();
935                                         info.first_process = NULL;
936                                 }
937                                 if (data.top.s) free(data.top.s);
938                                 break;
939 #ifdef HDDTEMP
940                         case OBJ_hddtemp:
941                                 free(data.hddtemp.dev);
942                                 free(data.hddtemp.addr);
943                                 if (data.hddtemp.temp)
944                                         free(data.hddtemp.temp);
945                                 break;
946 #endif /* HDDTEMP */
947                         case OBJ_entropy_avail:
948                         case OBJ_entropy_perc:
949                         case OBJ_entropy_poolsize:
950                         case OBJ_entropy_bar:
951                                 break;
952                         case OBJ_user_names:
953                                 if (info.users.names) {
954                                         free(info.users.names);
955                                         info.users.names = 0;
956                                 }
957                                 break;
958                         case OBJ_user_terms:
959                                 if (info.users.terms) {
960                                         free(info.users.terms);
961                                         info.users.terms = 0;
962                                 }
963                                 break;
964                         case OBJ_user_times:
965                                 if (info.users.times) {
966                                         free(info.users.times);
967                                         info.users.times = 0;
968                                 }
969                                 break;
970 #ifdef IBM
971                         case OBJ_smapi:
972                         case OBJ_smapi_bat_perc:
973                         case OBJ_smapi_bat_temp:
974                         case OBJ_smapi_bat_power:
975                                 free(data.s);
976                                 break;
977                         case OBJ_if_smapi_bat_installed:
978                                 free(data.ifblock.s);
979                                 free(data.ifblock.str);
980                                 break;
981 #endif /* IBM */
982 #ifdef NVIDIA
983                         case OBJ_nvidia:
984                                 break;
985 #endif /* NVIDIA */
986 #ifdef MPD
987                         case OBJ_mpd_title:
988                         case OBJ_mpd_artist:
989                         case OBJ_mpd_album:
990                         case OBJ_mpd_random:
991                         case OBJ_mpd_repeat:
992                         case OBJ_mpd_vol:
993                         case OBJ_mpd_bitrate:
994                         case OBJ_mpd_status:
995                         case OBJ_mpd_bar:
996                         case OBJ_mpd_elapsed:
997                         case OBJ_mpd_length:
998                         case OBJ_mpd_track:
999                         case OBJ_mpd_name:
1000                         case OBJ_mpd_file:
1001                         case OBJ_mpd_percent:
1002                         case OBJ_mpd_smart:
1003                         case OBJ_if_mpd_playing:
1004                                 free_mpd();
1005                                 break;
1006 #endif /* MPD */
1007 #ifdef MOC
1008                         case OBJ_moc_state:
1009                         case OBJ_moc_file:
1010                         case OBJ_moc_title:
1011                         case OBJ_moc_artist:
1012                         case OBJ_moc_song:
1013                         case OBJ_moc_album:
1014                         case OBJ_moc_totaltime:
1015                         case OBJ_moc_timeleft:
1016                         case OBJ_moc_curtime:
1017                         case OBJ_moc_bitrate:
1018                         case OBJ_moc_rate:
1019                                 free_moc();
1020                                 break;
1021 #endif /* MOC */
1022                         case OBJ_scroll:
1023                                 free(data.scroll.text);
1024                                 free_text_objects(obj->sub, 1);
1025                                 free(obj->sub);
1026                                 break;
1027                         case OBJ_combine:
1028                                 free(data.combine.left);
1029                                 free(data.combine.seperation);
1030                                 free(data.combine.right);
1031                                 free_text_objects(obj->sub, 1);
1032                                 free(obj->sub);
1033                                 break;
1034 #ifdef APCUPSD
1035                         case OBJ_apcupsd:
1036                         case OBJ_apcupsd_name:
1037                         case OBJ_apcupsd_model:
1038                         case OBJ_apcupsd_upsmode:
1039                         case OBJ_apcupsd_cable:
1040                         case OBJ_apcupsd_status:
1041                         case OBJ_apcupsd_linev:
1042                         case OBJ_apcupsd_load:
1043                         case OBJ_apcupsd_loadbar:
1044 #ifdef X11
1045                         case OBJ_apcupsd_loadgraph:
1046                         case OBJ_apcupsd_loadgauge:
1047 #endif /* X11 */
1048                         case OBJ_apcupsd_charge:
1049                         case OBJ_apcupsd_timeleft:
1050                         case OBJ_apcupsd_temp:
1051                         case OBJ_apcupsd_lastxfer:
1052                                 break;
1053 #endif /* APCUPSD */
1054                 }
1055                 free(obj);
1056         }
1057 #undef data
1058 }
1059
1060 #ifdef X11
1061 void scan_mixer_bar(const char *arg, int *a, int *w, int *h)
1062 {
1063         char buf1[64];
1064         int n;
1065
1066         if (arg && sscanf(arg, "%63s %n", buf1, &n) >= 1) {
1067                 *a = mixer_init(buf1);
1068                 scan_bar(arg + n, w, h);
1069         } else {
1070                 *a = mixer_init(NULL);
1071                 scan_bar(arg, w, h);
1072         }
1073 }
1074 #endif /* X11 */
1075
1076 /* strip a leading /dev/ if any, following symlinks first
1077  *
1078  * BEWARE: this function returns a pointer to static content
1079  *         which gets overwritten in consecutive calls. I.e.:
1080  *         this function is NOT reentrant.
1081  */
1082 static const char *dev_name(const char *path)
1083 {
1084         static char buf[255];   /* should be enough for pathnames */
1085         ssize_t buflen;
1086
1087         if (!path)
1088                 return NULL;
1089
1090 #define DEV_NAME(x) \
1091   x != NULL && strlen(x) > 5 && strncmp(x, "/dev/", 5) == 0 ? x + 5 : x
1092         if ((buflen = readlink(path, buf, 254)) == -1)
1093                 return DEV_NAME(path);
1094         buf[buflen] = '\0';
1095         return DEV_NAME(buf);
1096 #undef DEV_NAME
1097 }
1098
1099 static int parse_top_args(const char *s, const char *arg, struct text_object *obj)
1100 {
1101         char buf[64];
1102         int n;
1103
1104         if (obj->data.top.was_parsed) {
1105                 return 1;
1106         }
1107         obj->data.top.was_parsed = 1;
1108
1109         if (arg && !obj->data.top.s) {
1110                 obj->data.top.s = strndup(arg, text_buffer_size);
1111         }
1112
1113         need_mask |= (1 << INFO_TOP);
1114
1115         if (s[3] == 0) {
1116                 obj->type = OBJ_top;
1117                 top_cpu = 1;
1118         } else if (strcmp(&s[3], "_mem") == EQUAL) {
1119                 obj->type = OBJ_top_mem;
1120                 top_mem = 1;
1121         } else if (strcmp(&s[3], "_time") == EQUAL) {
1122                 obj->type = OBJ_top_time;
1123                 top_time = 1;
1124         } else {
1125                 ERR("Must be top, top_mem or top_time");
1126                 return 0;
1127         }
1128
1129         if (!arg) {
1130                 ERR("top needs arguments");
1131                 return 0;
1132         }
1133
1134         if (sscanf(arg, "%63s %i", buf, &n) == 2) {
1135                 if (strcmp(buf, "name") == EQUAL) {
1136                         obj->data.top.type = TOP_NAME;
1137                 } else if (strcmp(buf, "cpu") == EQUAL) {
1138                         obj->data.top.type = TOP_CPU;
1139                 } else if (strcmp(buf, "pid") == EQUAL) {
1140                         obj->data.top.type = TOP_PID;
1141                 } else if (strcmp(buf, "mem") == EQUAL) {
1142                         obj->data.top.type = TOP_MEM;
1143                 } else if (strcmp(buf, "time") == EQUAL) {
1144                         obj->data.top.type = TOP_TIME;
1145                 } else if (strcmp(buf, "mem_res") == EQUAL) {
1146                         obj->data.top.type = TOP_MEM_RES;
1147                 } else if (strcmp(buf, "mem_vsize") == EQUAL) {
1148                         obj->data.top.type = TOP_MEM_VSIZE;
1149                 } else {
1150                         ERR("invalid type arg for top");
1151                         ERR("must be one of: name, cpu, pid, mem, time, mem_res, mem_vsize");
1152                         return 0;
1153                 }
1154                 if (n < 1 || n > 10) {
1155                         ERR("invalid num arg for top. Must be between 1 and 10.");
1156                         return 0;
1157                 } else {
1158                         obj->data.top.num = n - 1;
1159                 }
1160         } else {
1161                 ERR("invalid argument count for top");
1162                 return 0;
1163         }
1164         return 1;
1165 }
1166
1167 /* construct_text_object() creates a new text_object */
1168 static struct text_object *construct_text_object(const char *s,
1169                 const char *arg, long line, char allow_threaded, void **ifblock_opaque)
1170 {
1171         // struct text_object *obj = new_text_object();
1172         struct text_object *obj = new_text_object_internal();
1173
1174         obj->line = line;
1175
1176 #define OBJ(a, n) if (strcmp(s, #a) == 0) { \
1177         obj->type = OBJ_##a; need_mask |= (1ULL << n); {
1178 #define OBJ_IF(a, n) if (strcmp(s, #a) == 0) { \
1179         obj->type = OBJ_##a; need_mask |= (1ULL << n); \
1180         obj_be_ifblock_if(ifblock_opaque, obj); {
1181 #define OBJ_THREAD(a, n) if (strcmp(s, #a) == 0 && allow_threaded) { \
1182         obj->type = OBJ_##a; need_mask |= (1ULL << n); {
1183 #define END } } else
1184
1185 #define SIZE_DEFAULTS(arg) { \
1186         obj->a = default_##arg##_width; \
1187         obj->b = default_##arg##_height; \
1188 }
1189
1190 #ifdef X11
1191         if (s[0] == '#') {
1192                 obj->type = OBJ_color;
1193                 obj->data.l = get_x11_color(s);
1194         } else
1195 #endif /* X11 */
1196 #ifdef __OpenBSD__
1197         OBJ(freq, INFO_FREQ)
1198 #else
1199         OBJ(acpitemp, 0)
1200                 obj->data.i = open_acpi_temperature(arg);
1201         END OBJ(acpiacadapter, 0)
1202         END OBJ(freq, INFO_FREQ)
1203 #endif /* !__OpenBSD__ */
1204                 get_cpu_count();
1205                 if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
1206                                 || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
1207                         obj->data.cpu_index = 1;
1208                         /* ERR("freq: Invalid CPU number or you don't have that many CPUs! "
1209                                 "Displaying the clock for CPU 1."); */
1210                 } else {
1211                         obj->data.cpu_index = atoi(&arg[0]);
1212                 }
1213                 obj->a = 1;
1214         END OBJ(freq_g, INFO_FREQ)
1215                 get_cpu_count();
1216                 if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
1217                                 || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
1218                         obj->data.cpu_index = 1;
1219                         /* ERR("freq_g: Invalid CPU number or you don't have that many "
1220                                 "CPUs! Displaying the clock for CPU 1."); */
1221                 } else {
1222                         obj->data.cpu_index = atoi(&arg[0]);
1223                 }
1224                 obj->a = 1;
1225         END OBJ(read_tcp, 0)
1226                 if (arg) {
1227                         obj->data.read_tcp.host = malloc(text_buffer_size);
1228                         sscanf(arg, "%s", obj->data.read_tcp.host);
1229                         sscanf(arg+strlen(obj->data.read_tcp.host), "%u", &(obj->data.read_tcp.port));
1230                         if(obj->data.read_tcp.port == 0) {
1231                                 obj->data.read_tcp.port = atoi(obj->data.read_tcp.host);
1232                                 strcpy(obj->data.read_tcp.host,"localhost");
1233                         }
1234                         obj->data.read_tcp.port = htons(obj->data.read_tcp.port);
1235                         if(obj->data.read_tcp.port < 1 || obj->data.read_tcp.port > 65535) {
1236                                 CRIT_ERR("read_tcp: Needs \"(host) port\" as argument(s)");
1237                         }
1238                 }else{
1239                         CRIT_ERR("read_tcp: Needs \"(host) port\" as argument(s)");
1240                 }
1241 #if defined(__linux__)
1242         END OBJ(voltage_mv, 0)
1243                 get_cpu_count();
1244                 if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
1245                                 || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
1246                         obj->data.cpu_index = 1;
1247                         /* ERR("voltage_mv: Invalid CPU number or you don't have that many "
1248                                 "CPUs! Displaying voltage for CPU 1."); */
1249                 } else {
1250                         obj->data.cpu_index = atoi(&arg[0]);
1251                 }
1252                 obj->a = 1;
1253         END OBJ(voltage_v, 0)
1254                 get_cpu_count();
1255                 if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
1256                                 || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
1257                         obj->data.cpu_index = 1;
1258                         /* ERR("voltage_v: Invalid CPU number or you don't have that many "
1259                                 "CPUs! Displaying voltage for CPU 1."); */
1260                 } else {
1261                         obj->data.cpu_index = atoi(&arg[0]);
1262                 }
1263                 obj->a = 1;
1264
1265 #ifdef HAVE_IWLIB
1266         END OBJ(wireless_essid, INFO_NET)
1267                 if (arg) {
1268                         obj->data.net = get_net_stat(arg);
1269                 } else {
1270                         CRIT_ERR("wireless_essid: needs an argument");
1271                 }
1272         END OBJ(wireless_mode, INFO_NET)
1273                 if (arg) {
1274                         obj->data.net = get_net_stat(arg);
1275                 } else {
1276                         CRIT_ERR("wireless_mode: needs an argument");
1277                 }
1278         END OBJ(wireless_bitrate, INFO_NET)
1279                 if (arg) {
1280                         obj->data.net = get_net_stat(arg);
1281                 } else {
1282                         CRIT_ERR("wireless_bitrate: needs an argument");
1283                 }
1284         END OBJ(wireless_ap, INFO_NET)
1285                 if (arg) {
1286                         obj->data.net = get_net_stat(arg);
1287                 } else {
1288                         CRIT_ERR("wireless_ap: needs an argument");
1289                 }
1290         END OBJ(wireless_link_qual, INFO_NET)
1291                 if (arg) {
1292                         obj->data.net = get_net_stat(arg);
1293                 } else {
1294                         CRIT_ERR("wireless_link_qual: needs an argument");
1295                 }
1296         END OBJ(wireless_link_qual_max, INFO_NET)
1297                 if (arg) {
1298                         obj->data.net = get_net_stat(arg);
1299                 } else {
1300                         CRIT_ERR("wireless_link_qual_max: needs an argument");
1301                 }
1302         END OBJ(wireless_link_qual_perc, INFO_NET)
1303                 if (arg) {
1304                         obj->data.net = get_net_stat(arg);
1305                 } else {
1306                         CRIT_ERR("wireless_link_qual_perc: needs an argument");
1307                 }
1308         END OBJ(wireless_link_bar, INFO_NET)
1309                 SIZE_DEFAULTS(bar);
1310                 if (arg) {
1311                         arg = scan_bar(arg, &obj->a, &obj->b);
1312                         obj->data.net = get_net_stat(arg);
1313                 } else {
1314                         CRIT_ERR("wireless_link_bar: needs an argument");
1315                 }
1316 #endif /* HAVE_IWLIB */
1317
1318 #endif /* __linux__ */
1319
1320 #ifndef __OpenBSD__
1321         END OBJ(acpifan, 0)
1322         END OBJ(battery, 0)
1323                 char bat[64];
1324
1325                 if (arg) {
1326                         sscanf(arg, "%63s", bat);
1327                 } else {
1328                         strcpy(bat, "BAT0");
1329                 }
1330                 obj->data.s = strndup(bat, text_buffer_size);
1331         END OBJ(battery_short, 0)
1332                 char bat[64];
1333
1334                 if (arg) {
1335                         sscanf(arg, "%63s", bat);
1336                 } else {
1337                         strcpy(bat, "BAT0");
1338                 }
1339                 obj->data.s = strndup(bat, text_buffer_size);
1340         END OBJ(battery_time, 0)
1341                 char bat[64];
1342
1343                 if (arg) {
1344                         sscanf(arg, "%63s", bat);
1345                 } else {
1346                         strcpy(bat, "BAT0");
1347                 }
1348                 obj->data.s = strndup(bat, text_buffer_size);
1349         END OBJ(battery_percent, 0)
1350                 char bat[64];
1351
1352                 if (arg) {
1353                         sscanf(arg, "%63s", bat);
1354                 } else {
1355                         strcpy(bat, "BAT0");
1356                 }
1357                 obj->data.s = strndup(bat, text_buffer_size);
1358         END OBJ(battery_bar, 0)
1359                 char bat[64];
1360                 SIZE_DEFAULTS(bar);
1361                 obj->b = 6;
1362                 if (arg) {
1363                         arg = scan_bar(arg, &obj->a, &obj->b);
1364                         sscanf(arg, "%63s", bat);
1365                 } else {
1366                         strcpy(bat, "BAT0");
1367                 }
1368                 obj->data.s = strndup(bat, text_buffer_size);
1369 #endif /* !__OpenBSD__ */
1370
1371 #if defined(__linux__)
1372         END OBJ(disk_protect, 0)
1373                 if (arg)
1374                         obj->data.s = strndup(dev_name(arg), text_buffer_size);
1375                 else
1376                         CRIT_ERR("disk_protect needs an argument");
1377         END OBJ(i8k_version, INFO_I8K)
1378         END OBJ(i8k_bios, INFO_I8K)
1379         END OBJ(i8k_serial, INFO_I8K)
1380         END OBJ(i8k_cpu_temp, INFO_I8K)
1381         END OBJ(i8k_left_fan_status, INFO_I8K)
1382         END OBJ(i8k_right_fan_status, INFO_I8K)
1383         END OBJ(i8k_left_fan_rpm, INFO_I8K)
1384         END OBJ(i8k_right_fan_rpm, INFO_I8K)
1385         END OBJ(i8k_ac_status, INFO_I8K)
1386         END OBJ(i8k_buttons_status, INFO_I8K)
1387 #if defined(IBM)
1388         END OBJ(ibm_fan, 0)
1389         END OBJ(ibm_temps, 0)
1390                 if (!arg) {
1391                         CRIT_ERR("ibm_temps: needs an argument");
1392                 }
1393                 if (!isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) >= 8) {
1394                         obj->data.sensor = 0;
1395                         ERR("Invalid temperature sensor! Sensor number must be 0 to 7. "
1396                                 "Using 0 (CPU temp sensor).");
1397                 }
1398                 obj->data.sensor = atoi(&arg[0]);
1399         END OBJ(ibm_volume, 0)
1400         END OBJ(ibm_brightness, 0)
1401 #endif
1402         /* information from sony_laptop kernel module
1403          * /sys/devices/platform/sony-laptop */
1404         END OBJ(sony_fanspeed, 0)
1405         END OBJ_IF(if_gw, INFO_GW)
1406         END OBJ(ioscheduler, 0)
1407                 if (!arg) {
1408                         CRIT_ERR("get_ioscheduler needs an argument (e.g. hda)");
1409                         obj->data.s = 0;
1410                 } else
1411                         obj->data.s = strndup(dev_name(arg), text_buffer_size);
1412         END OBJ(laptop_mode, 0)
1413         END OBJ(pb_battery, 0)
1414                 if (arg && strcmp(arg, "status") == EQUAL) {
1415                         obj->data.i = PB_BATT_STATUS;
1416                 } else if (arg && strcmp(arg, "percent") == EQUAL) {
1417                         obj->data.i = PB_BATT_PERCENT;
1418                 } else if (arg && strcmp(arg, "time") == EQUAL) {
1419                         obj->data.i = PB_BATT_TIME;
1420                 } else {
1421                         ERR("pb_battery: needs one argument: status, percent or time");
1422                         free(obj);
1423                         return NULL;
1424                 }
1425
1426 #endif /* __linux__ */
1427 #if (defined(__FreeBSD__) || defined(__linux__))
1428         END OBJ_IF(if_up, 0)
1429                 if (!arg) {
1430                         ERR("if_up needs an argument");
1431                         obj->data.ifblock.s = 0;
1432                 } else {
1433                         obj->data.ifblock.s = strndup(arg, text_buffer_size);
1434                 }
1435 #endif
1436 #if defined(__OpenBSD__)
1437         END OBJ(obsd_sensors_temp, 0)
1438                 if (!arg) {
1439                         CRIT_ERR("obsd_sensors_temp: needs an argument");
1440                 }
1441                 if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
1442                                 || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
1443                         obj->data.sensor = 0;
1444                         ERR("Invalid temperature sensor number!");
1445                 }
1446                 obj->data.sensor = atoi(&arg[0]);
1447         END OBJ(obsd_sensors_fan, 0)
1448                 if (!arg) {
1449                         CRIT_ERR("obsd_sensors_fan: needs 2 arguments (device and sensor "
1450                                 "number)");
1451                 }
1452                 if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
1453                                 || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
1454                         obj->data.sensor = 0;
1455                         ERR("Invalid fan sensor number!");
1456                 }
1457                 obj->data.sensor = atoi(&arg[0]);
1458         END OBJ(obsd_sensors_volt, 0)
1459                 if (!arg) {
1460                         CRIT_ERR("obsd_sensors_volt: needs 2 arguments (device and sensor "
1461                                 "number)");
1462                 }
1463                 if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
1464                                 || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
1465                         obj->data.sensor = 0;
1466                         ERR("Invalid voltage sensor number!");
1467                 }
1468                 obj->data.sensor = atoi(&arg[0]);
1469         END OBJ(obsd_vendor, 0)
1470         END OBJ(obsd_product, 0)
1471 #endif /* __OpenBSD__ */
1472         END OBJ(buffers, INFO_BUFFERS)
1473         END OBJ(cached, INFO_BUFFERS)
1474 #define SCAN_CPU(__arg, __var) { \
1475         int __offset = 0; \
1476         if (__arg && sscanf(__arg, " cpu%u %n", &__var, &__offset) > 0) \
1477                 __arg += __offset; \
1478         else \
1479                 __var = 0; \
1480 }
1481         END OBJ(cpu, INFO_CPU)
1482                 SCAN_CPU(arg, obj->data.cpu_index);
1483                 DBGP2("Adding $cpu for CPU %d", obj->data.cpu_index);
1484 #ifdef X11
1485         END OBJ(cpugauge, INFO_CPU)
1486                 SIZE_DEFAULTS(gauge);
1487                 SCAN_CPU(arg, obj->data.cpu_index);
1488                 scan_gauge(arg, &obj->a, &obj->b);
1489                 DBGP2("Adding $cpugauge for CPU %d", obj->data.cpu_index);
1490 #endif /* X11 */
1491         END OBJ(cpubar, INFO_CPU)
1492                 SIZE_DEFAULTS(bar);
1493                 SCAN_CPU(arg, obj->data.cpu_index);
1494                 scan_bar(arg, &obj->a, &obj->b);
1495                 DBGP2("Adding $cpubar for CPU %d", obj->data.cpu_index);
1496 #ifdef X11
1497         END OBJ(cpugraph, INFO_CPU)
1498                 SIZE_DEFAULTS(graph);
1499                 SCAN_CPU(arg, obj->data.cpu_index);
1500                 scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
1501                         &obj->e, &obj->char_a, &obj->char_b);
1502                 DBGP2("Adding $cpugraph for CPU %d", obj->data.cpu_index);
1503         END OBJ(loadgraph, INFO_LOADAVG)
1504                 char *buf = 0;
1505                 SIZE_DEFAULTS(graph);
1506                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
1507                                 &obj->e, &obj->char_a, &obj->char_b);
1508                 if (buf) {
1509                         int a = 1, r = 3;
1510                         if (arg) {
1511                                 r = sscanf(arg, "%d", &a);
1512                         }
1513                         obj->data.loadavg[0] = (r >= 1) ? (unsigned char) a : 0;
1514                         free(buf);
1515                 }
1516 #endif /* X11 */
1517         END OBJ(diskio, INFO_DISKIO)
1518                 obj->data.diskio = prepare_diskio_stat(dev_name(arg));
1519         END OBJ(diskio_read, INFO_DISKIO)
1520                 obj->data.diskio = prepare_diskio_stat(dev_name(arg));
1521         END OBJ(diskio_write, INFO_DISKIO)
1522                 obj->data.diskio = prepare_diskio_stat(dev_name(arg));
1523 #ifdef X11
1524         END OBJ(diskiograph, INFO_DISKIO)
1525                 char *buf = 0;
1526                 SIZE_DEFAULTS(graph);
1527                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
1528                                 &obj->e, &obj->char_a, &obj->char_b);
1529
1530                 obj->data.diskio = prepare_diskio_stat(dev_name(buf));
1531                 if (buf)
1532                         free(buf);
1533         END OBJ(diskiograph_read, INFO_DISKIO)
1534                 char *buf = 0;
1535                 SIZE_DEFAULTS(graph);
1536                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
1537                                 &obj->e, &obj->char_a, &obj->char_b);
1538
1539                 obj->data.diskio = prepare_diskio_stat(dev_name(buf));
1540                 if (buf)
1541                         free(buf);
1542         END OBJ(diskiograph_write, INFO_DISKIO)
1543                 char *buf = 0;
1544                 SIZE_DEFAULTS(graph);
1545                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
1546                                 &obj->e, &obj->char_a, &obj->char_b);
1547
1548                 obj->data.diskio = prepare_diskio_stat(dev_name(buf));
1549                 if (buf)
1550                         free(buf);
1551 #endif /* X11 */
1552         END OBJ(color, 0)
1553 #ifdef X11
1554                 if (output_methods & TO_X) {
1555                         obj->data.l = arg ? get_x11_color(arg) : default_fg_color;
1556                 }
1557 #endif /* X11 */
1558         END OBJ(color0, 0)
1559                 obj->data.l = color0;
1560         END OBJ(color1, 0)
1561                 obj->data.l = color1;
1562         END OBJ(color2, 0)
1563                 obj->data.l = color2;
1564         END OBJ(color3, 0)
1565                 obj->data.l = color3;
1566         END OBJ(color4, 0)
1567                 obj->data.l = color4;
1568         END OBJ(color5, 0)
1569                 obj->data.l = color5;
1570         END OBJ(color6, 0)
1571                 obj->data.l = color6;
1572         END OBJ(color7, 0)
1573                 obj->data.l = color7;
1574         END OBJ(color8, 0)
1575                 obj->data.l = color8;
1576         END OBJ(color9, 0)
1577                 obj->data.l = color9;
1578 #ifdef X11
1579         END OBJ(font, 0)
1580                 obj->data.s = scan_font(arg);
1581 #endif /* X11 */
1582         END OBJ(conky_version, 0)
1583         END OBJ(conky_build_date, 0)
1584         END OBJ(conky_build_arch, 0)
1585         END OBJ(downspeed, INFO_NET)
1586                 if (arg) {
1587                         obj->data.net = get_net_stat(arg);
1588                 } else {
1589                         CRIT_ERR("downspeed needs argument");
1590                 }
1591         END OBJ(downspeedf, INFO_NET)
1592                 if (arg) {
1593                         obj->data.net = get_net_stat(arg);
1594                 } else {
1595                         CRIT_ERR("downspeedf needs argument");
1596                 }
1597 #ifdef X11
1598         END OBJ(downspeedgraph, INFO_NET)
1599                 char *buf = 0;
1600                 SIZE_DEFAULTS(graph);
1601                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
1602                                 &obj->e, &obj->char_a, &obj->char_b);
1603
1604                 // default to DEFAULTNETDEV
1605                 buf = strndup(buf ? buf : "DEFAULTNETDEV", text_buffer_size);
1606                 obj->data.net = get_net_stat(buf);
1607                 free(buf);
1608 #endif /* X11 */
1609         END OBJ(else, 0)
1610                 obj_be_ifblock_else(ifblock_opaque, obj);
1611         END OBJ(endif, 0)
1612                 obj_be_ifblock_endif(ifblock_opaque, obj);
1613         END OBJ(eval, 0)
1614                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1615         END OBJ(image, 0)
1616                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1617 #ifdef HAVE_POPEN
1618         END OBJ(exec, 0)
1619                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1620         END OBJ(execp, 0)
1621                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1622         END OBJ(execbar, 0)
1623                 SIZE_DEFAULTS(bar);
1624                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1625 #ifdef X11
1626         END OBJ(execgauge, 0)
1627                 SIZE_DEFAULTS(gauge);
1628                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1629         END OBJ(execgraph, 0)
1630                 SIZE_DEFAULTS(graph);
1631                 obj->data.s = strndup(arg ? arg : "", text_buffer_size);
1632 #endif /* X11 */
1633         END OBJ(execibar, 0)
1634                 int n;
1635                 SIZE_DEFAULTS(bar);
1636
1637                 if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
1638                         char buf[256];
1639
1640                         ERR("${execibar <interval> command}");
1641                         obj->type = OBJ_text;
1642                         snprintf(buf, 256, "${%s}", s);
1643                         obj->data.s = strndup(buf, text_buffer_size);
1644                 } else {
1645                         obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
1646                 }
1647 #ifdef X11
1648         END OBJ(execigraph, 0)
1649                 int n;
1650                 SIZE_DEFAULTS(graph);
1651
1652                 if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
1653                         char buf[256];
1654
1655                         ERR("${execigraph <interval> command}");
1656                         obj->type = OBJ_text;
1657                         snprintf(buf, 256, "${%s}", s);
1658                         obj->data.s = strndup(buf, text_buffer_size);
1659                 } else {
1660                         obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
1661                 }
1662         END OBJ(execigauge, 0)
1663                 int n;
1664                 SIZE_DEFAULTS(gauge);
1665
1666                 if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
1667                         char buf[256];
1668
1669                         ERR("${execigauge <interval> command}");
1670                         obj->type = OBJ_text;
1671                         snprintf(buf, 256, "${%s}", s);
1672                         obj->data.s = strndup(buf, text_buffer_size);
1673                 } else {
1674                         obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
1675                 }
1676 #endif /* X11 */
1677         END OBJ(execi, 0)
1678                 int n;
1679
1680                 if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
1681                         char buf[256];
1682
1683                         ERR("${execi <interval> command}");
1684                         obj->type = OBJ_text;
1685                         snprintf(buf, 256, "${%s}", s);
1686                         obj->data.s = strndup(buf, text_buffer_size);
1687                 } else {
1688                         obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
1689                         obj->data.execi.buffer = malloc(text_buffer_size);
1690                 }
1691         END OBJ(execpi, 0)
1692                 int n;
1693
1694                 if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
1695                         char buf[256];
1696
1697                         ERR("${execi <interval> command}");
1698                         obj->type = OBJ_text;
1699                         snprintf(buf, 256, "${%s}", s);
1700                         obj->data.s = strndup(buf, text_buffer_size);
1701                 } else {
1702                         obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
1703                         obj->data.execi.buffer = malloc(text_buffer_size);
1704                 }
1705         END OBJ_THREAD(texeci, 0)
1706                         int n;
1707
1708                         if (!arg || sscanf(arg, "%f %n", &obj->data.texeci.interval, &n) <= 0) {
1709                                 char buf[256];
1710
1711                                 ERR("${texeci <interval> command}");
1712                                 obj->type = OBJ_text;
1713                                 snprintf(buf, 256, "${%s}", s);
1714                                 obj->data.s = strndup(buf, text_buffer_size);
1715                         } else {
1716                                 obj->data.texeci.cmd = strndup(arg + n, text_buffer_size);
1717                                 obj->data.texeci.buffer = malloc(text_buffer_size);
1718                         }
1719                         obj->data.texeci.p_timed_thread = NULL;
1720         END     OBJ(pre_exec, 0)
1721                 obj->type = OBJ_text;
1722         if (arg) {
1723                 char buf[2048];
1724
1725                 read_exec(arg, buf, sizeof(buf));
1726                 obj->data.s = strndup(buf, text_buffer_size);
1727         } else {
1728                 obj->data.s = strndup("", text_buffer_size);
1729         }
1730 #endif
1731         END OBJ(fs_bar, INFO_FS)
1732                 SIZE_DEFAULTS(bar);
1733                 arg = scan_bar(arg, &obj->data.fsbar.w, &obj->data.fsbar.h);
1734                 if (arg) {
1735                         while (isspace(*arg)) {
1736                                 arg++;
1737                         }
1738                         if (*arg == '\0') {
1739                                 arg = "/";
1740                         }
1741                 } else {
1742                         arg = "/";
1743                 }
1744                 obj->data.fsbar.fs = prepare_fs_stat(arg);
1745         END OBJ(fs_bar_free, INFO_FS)
1746                 SIZE_DEFAULTS(bar);
1747                 arg = scan_bar(arg, &obj->data.fsbar.w, &obj->data.fsbar.h);
1748                 if (arg) {
1749                         while (isspace(*arg)) {
1750                                 arg++;
1751                         }
1752                         if (*arg == '\0') {
1753                                 arg = "/";
1754                         }
1755                 } else {
1756                         arg = "/";
1757                 }
1758
1759                 obj->data.fsbar.fs = prepare_fs_stat(arg);
1760         END OBJ(fs_free, INFO_FS)
1761                 if (!arg) {
1762                         arg = "/";
1763                 }
1764                 obj->data.fs = prepare_fs_stat(arg);
1765         END OBJ(fs_used_perc, INFO_FS)
1766                 if (!arg) {
1767                         arg = "/";
1768                 }
1769                 obj->data.fs = prepare_fs_stat(arg);
1770         END OBJ(fs_free_perc, INFO_FS)
1771                 if (!arg) {
1772                         arg = "/";
1773                 }
1774                 obj->data.fs = prepare_fs_stat(arg);
1775         END OBJ(fs_size, INFO_FS)
1776                 if (!arg) {
1777                         arg = "/";
1778                 }
1779                 obj->data.fs = prepare_fs_stat(arg);
1780         END OBJ(fs_type, INFO_FS)
1781                 if (!arg) {
1782                         arg = "/";
1783                 }
1784                 obj->data.fs = prepare_fs_stat(arg);
1785         END OBJ(fs_used, INFO_FS)
1786                 if (!arg) {
1787                         arg = "/";
1788                 }
1789                 obj->data.fs = prepare_fs_stat(arg);
1790         END OBJ(hr, 0)
1791                 obj->data.i = arg ? atoi(arg) : 1;
1792         END OBJ(nameserver, INFO_DNS)
1793                 obj->data.i = arg ? atoi(arg) : 0;
1794         END OBJ(offset, 0)
1795                 obj->data.i = arg ? atoi(arg) : 1;
1796         END OBJ(voffset, 0)
1797                 obj->data.i = arg ? atoi(arg) : 1;
1798         END OBJ(goto, 0)
1799
1800                 if (!arg) {
1801                         ERR("goto needs arguments");
1802                         obj->type = OBJ_text;
1803                         obj->data.s = strndup("${goto}", text_buffer_size);
1804                         return NULL;
1805                 }
1806
1807                 obj->data.i = atoi(arg);
1808
1809         END OBJ(tab, 0)
1810                 int a = 10, b = 0;
1811
1812                 if (arg) {
1813                         if (sscanf(arg, "%d %d", &a, &b) != 2) {
1814                                 sscanf(arg, "%d", &b);
1815                         }
1816                 }
1817                 if (a <= 0) {
1818                         a = 1;
1819                 }
1820                 obj->data.pair.a = a;
1821                 obj->data.pair.b = b;
1822
1823 #ifdef __linux__
1824         END OBJ(i2c, INFO_SYSFS)
1825                 char buf1[64], buf2[64];
1826                 float factor, offset;
1827                 int n, found = 0;
1828
1829                 if (!arg) {
1830                         ERR("i2c needs arguments");
1831                         obj->type = OBJ_text;
1832                         // obj->data.s = strndup("${i2c}", text_buffer_size);
1833                         return NULL;
1834                 }
1835
1836 #define HWMON_RESET() {\
1837                 buf1[0] = 0; \
1838                 factor = 1.0; \
1839                 offset = 0.0; }
1840
1841                 if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
1842                 if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
1843                 if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
1844                 if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
1845
1846                 if (!found) {
1847                         ERR("i2c failed to parse arguments");
1848                         obj->type = OBJ_text;
1849                         return NULL;
1850                 }
1851                 DBGP("parsed i2c args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
1852                 obj->data.sysfs.fd = open_i2c_sensor((*buf1) ? buf1 : 0, buf2, n,
1853                                 &obj->data.sysfs.arg, obj->data.sysfs.devtype);
1854                 strncpy(obj->data.sysfs.type, buf2, 63);
1855                 obj->data.sysfs.factor = factor;
1856                 obj->data.sysfs.offset = offset;
1857
1858         END OBJ(platform, INFO_SYSFS)
1859                 char buf1[64], buf2[64];
1860                 float factor, offset;
1861                 int n, found = 0;
1862
1863                 if (!arg) {
1864                         ERR("platform needs arguments");
1865                         obj->type = OBJ_text;
1866                         return NULL;
1867                 }
1868
1869                 if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
1870                 if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
1871                 if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
1872                 if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
1873
1874                 if (!found) {
1875                         ERR("platform failed to parse arguments");
1876                         obj->type = OBJ_text;
1877                         return NULL;
1878                 }
1879                 DBGP("parsed platform args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
1880                 obj->data.sysfs.fd = open_platform_sensor((*buf1) ? buf1 : 0, buf2, n,
1881                                 &obj->data.sysfs.arg, obj->data.sysfs.devtype);
1882                 strncpy(obj->data.sysfs.type, buf2, 63);
1883                 obj->data.sysfs.factor = factor;
1884                 obj->data.sysfs.offset = offset;
1885
1886         END OBJ(hwmon, INFO_SYSFS)
1887                 char buf1[64], buf2[64];
1888                 float factor, offset;
1889                 int n, found = 0;
1890
1891                 if (!arg) {
1892                         ERR("hwmon needs argumanets");
1893                         obj->type = OBJ_text;
1894                         return NULL;
1895                 }
1896
1897                 if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
1898                 if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
1899                 if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
1900                 if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
1901
1902 #undef HWMON_RESET
1903
1904                 if (!found) {
1905                         ERR("hwmon failed to parse arguments");
1906                         obj->type = OBJ_text;
1907                         return NULL;
1908                 }
1909                 DBGP("parsed hwmon args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
1910                 obj->data.sysfs.fd = open_hwmon_sensor((*buf1) ? buf1 : 0, buf2, n,
1911                                 &obj->data.sysfs.arg, obj->data.sysfs.devtype);
1912                 strncpy(obj->data.sysfs.type, buf2, 63);
1913                 obj->data.sysfs.factor = factor;
1914                 obj->data.sysfs.offset = offset;
1915
1916 #endif /* !__OpenBSD__ */
1917
1918         END
1919         /* we have three different types of top (top, top_mem and top_time). To
1920          * avoid having almost-same code three times, we have this special
1921          * handler. */
1922         if (strncmp(s, "top", 3) == EQUAL) {
1923                 if (!parse_top_args(s, arg, obj)) {
1924                         return NULL;
1925                 }
1926         } else OBJ(addr, INFO_NET)
1927                 if (arg) {
1928                         obj->data.net = get_net_stat(arg);
1929                 } else {
1930                         CRIT_ERR("addr needs argument");
1931                 }
1932 #if defined(__linux__)
1933         END OBJ(addrs, INFO_NET)
1934                 if (arg) {
1935                         obj->data.net = get_net_stat(arg);
1936                 } else {
1937                         CRIT_ERR("addrs needs argument");
1938                 }
1939 #endif /* __linux__ */
1940         END OBJ(tail, 0)
1941                 if (init_tail_object(obj, arg)) {
1942                         obj->type = OBJ_text;
1943                         obj->data.s = strndup("${tail}", text_buffer_size);
1944                 }
1945         END OBJ(head, 0)
1946                 if (init_head_object(obj, arg)) {
1947                         obj->type = OBJ_text;
1948                         obj->data.s = strndup("${head}", text_buffer_size);
1949                 }
1950         END OBJ(lines, 0)
1951                 if (arg) {
1952                         obj->data.s = strndup(arg, text_buffer_size);
1953                 }else{
1954                         CRIT_ERR("lines needs a argument");
1955                 }
1956         END OBJ(words, 0)
1957                 if (arg) {
1958                         obj->data.s = strndup(arg, text_buffer_size);
1959                 }else{
1960                         CRIT_ERR("words needs a argument");
1961                 }
1962         END OBJ(loadavg, INFO_LOADAVG)
1963                 int a = 1, b = 2, c = 3, r = 3;
1964
1965                 if (arg) {
1966                         r = sscanf(arg, "%d %d %d", &a, &b, &c);
1967                         if (r >= 3 && (c < 1 || c > 3)) {
1968                                 r--;
1969                         }
1970                         if (r >= 2 && (b < 1 || b > 3)) {
1971                                 r--, b = c;
1972                         }
1973                         if (r >= 1 && (a < 1 || a > 3)) {
1974                                 r--, a = b, b = c;
1975                         }
1976                 }
1977                 obj->data.loadavg[0] = (r >= 1) ? (unsigned char) a : 0;
1978                 obj->data.loadavg[1] = (r >= 2) ? (unsigned char) b : 0;
1979                 obj->data.loadavg[2] = (r >= 3) ? (unsigned char) c : 0;
1980         END OBJ_IF(if_empty, 0)
1981                 if (!arg) {
1982                         ERR("if_empty needs an argument");
1983                         obj->data.ifblock.s = 0;
1984                 } else {
1985                         obj->data.ifblock.s = strndup(arg, text_buffer_size);
1986                         obj->sub = malloc(sizeof(struct text_object));
1987                         extract_variable_text_internal(obj->sub,
1988                                                        obj->data.ifblock.s, 0);
1989                 }
1990         END OBJ_IF(if_match, 0)
1991                 if (!arg) {
1992                         ERR("if_match needs arguments");
1993                         obj->data.ifblock.s = 0;
1994                 } else {
1995                         obj->data.ifblock.s = strndup(arg, text_buffer_size);
1996                         obj->sub = malloc(sizeof(struct text_object));
1997                         extract_variable_text_internal(obj->sub,
1998                                                        obj->data.ifblock.s, 0);
1999                 }
2000         END OBJ_IF(if_existing, 0)
2001                 if (!arg) {
2002                         ERR("if_existing needs an argument or two");
2003                         obj->data.ifblock.s = NULL;
2004                         obj->data.ifblock.str = NULL;
2005                 } else {
2006                         char buf1[256], buf2[256];
2007                         int r = sscanf(arg, "%255s %255[^\n]", buf1, buf2);
2008
2009                         if (r == 1) {
2010                                 obj->data.ifblock.s = strndup(buf1, text_buffer_size);
2011                                 obj->data.ifblock.str = NULL;
2012                         } else {
2013                                 obj->data.ifblock.s = strndup(buf1, text_buffer_size);
2014                                 obj->data.ifblock.str = strndup(buf2, text_buffer_size);
2015                         }
2016                 }
2017                 DBGP("if_existing: '%s' '%s'", obj->data.ifblock.s, obj->data.ifblock.str);
2018         END OBJ_IF(if_mounted, 0)
2019                 if (!arg) {
2020                         ERR("if_mounted needs an argument");
2021                         obj->data.ifblock.s = 0;
2022                 } else {
2023                         obj->data.ifblock.s = strndup(arg, text_buffer_size);
2024                 }
2025         END OBJ_IF(if_running, 0)
2026                 if (arg) {
2027                         char buf[256];
2028
2029                         snprintf(buf, 256, "pidof %s >/dev/null", arg);
2030                         obj->data.ifblock.s = strndup(buf, text_buffer_size);
2031                 } else {
2032                         ERR("if_running needs an argument");
2033                         obj->data.ifblock.s = 0;
2034                 }
2035         END OBJ(kernel, 0)
2036         END OBJ(machine, 0)
2037         END OBJ(mails, 0)
2038                 float n1;
2039                 char box[256], dst[256];
2040
2041                 if (!arg) {
2042                         n1 = 9.5;
2043                         /* Kapil: Changed from MAIL_FILE to
2044                            current_mail_spool since the latter
2045                            is a copy of the former if undefined
2046                            but the latter should take precedence
2047                            if defined */
2048                         strncpy(box, current_mail_spool, sizeof(box));
2049                 } else {
2050                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2051                                 n1 = 9.5;
2052                                 strncpy(box, arg, sizeof(box));
2053                         }
2054                 }
2055
2056                 variable_substitute(box, dst, sizeof(dst));
2057                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2058                 obj->data.local_mail.interval = n1;
2059         END OBJ(new_mails, 0)
2060                 float n1;
2061                 char box[256], dst[256];
2062
2063                 if (!arg) {
2064                         n1 = 9.5;
2065                         strncpy(box, current_mail_spool, sizeof(box));
2066                 } else {
2067                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2068                                 n1 = 9.5;
2069                                 strncpy(box, arg, sizeof(box));
2070                         }
2071                 }
2072
2073                 variable_substitute(box, dst, sizeof(dst));
2074                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2075                 obj->data.local_mail.interval = n1;
2076         END OBJ(seen_mails, 0)
2077                 float n1;
2078                 char box[256], dst[256];
2079
2080                 if (!arg) {
2081                         n1 = 9.5;
2082                         strncpy(box, current_mail_spool, sizeof(box));
2083                 } else {
2084                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2085                                 n1 = 9.5;
2086                                 strncpy(box, arg, sizeof(box));
2087                         }
2088                 }
2089
2090                 variable_substitute(box, dst, sizeof(dst));
2091                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2092                 obj->data.local_mail.interval = n1;
2093         END OBJ(unseen_mails, 0)
2094                 float n1;
2095                 char box[256], dst[256];
2096
2097                 if (!arg) {
2098                         n1 = 9.5;
2099                         strncpy(box, current_mail_spool, sizeof(box));
2100                 } else {
2101                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2102                                 n1 = 9.5;
2103                                 strncpy(box, arg, sizeof(box));
2104                         }
2105                 }
2106
2107                 variable_substitute(box, dst, sizeof(dst));
2108                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2109                 obj->data.local_mail.interval = n1;
2110         END OBJ(flagged_mails, 0)
2111                 float n1;
2112                 char box[256], dst[256];
2113
2114                 if (!arg) {
2115                         n1 = 9.5;
2116                         strncpy(box, current_mail_spool, sizeof(box));
2117                 } else {
2118                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2119                                 n1 = 9.5;
2120                                 strncpy(box, arg, sizeof(box));
2121                         }
2122                 }
2123
2124                 variable_substitute(box, dst, sizeof(dst));
2125                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2126                 obj->data.local_mail.interval = n1;
2127         END OBJ(unflagged_mails, 0)
2128                 float n1;
2129                 char box[256], dst[256];
2130
2131                 if (!arg) {
2132                         n1 = 9.5;
2133                         strncpy(box, current_mail_spool, sizeof(box));
2134                 } else {
2135                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2136                                 n1 = 9.5;
2137                                 strncpy(box, arg, sizeof(box));
2138                         }
2139                 }
2140
2141                 variable_substitute(box, dst, sizeof(dst));
2142                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2143                 obj->data.local_mail.interval = n1;
2144         END OBJ(forwarded_mails, 0)
2145                 float n1;
2146                 char box[256], dst[256];
2147
2148                 if (!arg) {
2149                         n1 = 9.5;
2150                         strncpy(box, current_mail_spool, sizeof(box));
2151                 } else {
2152                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2153                                 n1 = 9.5;
2154                                 strncpy(box, arg, sizeof(box));
2155                         }
2156                 }
2157
2158                 variable_substitute(box, dst, sizeof(dst));
2159                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2160                 obj->data.local_mail.interval = n1;
2161         END OBJ(unforwarded_mails, 0)
2162                 float n1;
2163                 char box[256], dst[256];
2164
2165                 if (!arg) {
2166                         n1 = 9.5;
2167                         strncpy(box, current_mail_spool, sizeof(box));
2168                 } else {
2169                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2170                                 n1 = 9.5;
2171                                 strncpy(box, arg, sizeof(box));
2172                         }
2173                 }
2174
2175                 variable_substitute(box, dst, sizeof(dst));
2176                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2177                 obj->data.local_mail.interval = n1;
2178         END OBJ(replied_mails, 0)
2179                 float n1;
2180                 char box[256], dst[256];
2181
2182                 if (!arg) {
2183                         n1 = 9.5;
2184                         strncpy(box, current_mail_spool, sizeof(box));
2185                 } else {
2186                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2187                                 n1 = 9.5;
2188                                 strncpy(box, arg, sizeof(box));
2189                         }
2190                 }
2191
2192                 variable_substitute(box, dst, sizeof(dst));
2193                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2194                 obj->data.local_mail.interval = n1;
2195         END OBJ(unreplied_mails, 0)
2196                 float n1;
2197                 char box[256], dst[256];
2198
2199                 if (!arg) {
2200                         n1 = 9.5;
2201                         strncpy(box, current_mail_spool, sizeof(box));
2202                 } else {
2203                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2204                                 n1 = 9.5;
2205                                 strncpy(box, arg, sizeof(box));
2206                         }
2207                 }
2208
2209                 variable_substitute(box, dst, sizeof(dst));
2210                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2211                 obj->data.local_mail.interval = n1;
2212         END OBJ(draft_mails, 0)
2213                 float n1;
2214                 char box[256], dst[256];
2215
2216                 if (!arg) {
2217                         n1 = 9.5;
2218                         strncpy(box, current_mail_spool, sizeof(box));
2219                 } else {
2220                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2221                                 n1 = 9.5;
2222                                 strncpy(box, arg, sizeof(box));
2223                         }
2224                 }
2225
2226                 variable_substitute(box, dst, sizeof(dst));
2227                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2228                 obj->data.local_mail.interval = n1;
2229         END OBJ(trashed_mails, 0)
2230                 float n1;
2231                 char box[256], dst[256];
2232
2233                 if (!arg) {
2234                         n1 = 9.5;
2235                         strncpy(box, current_mail_spool, sizeof(box));
2236                 } else {
2237                         if (sscanf(arg, "%s %f", box, &n1) != 2) {
2238                                 n1 = 9.5;
2239                                 strncpy(box, arg, sizeof(box));
2240                         }
2241                 }
2242
2243                 variable_substitute(box, dst, sizeof(dst));
2244                 obj->data.local_mail.box = strndup(dst, text_buffer_size);
2245                 obj->data.local_mail.interval = n1;
2246         END OBJ(mboxscan, 0)
2247                 obj->data.mboxscan.args = (char *) malloc(text_buffer_size);
2248                 obj->data.mboxscan.output = (char *) malloc(text_buffer_size);
2249                 /* if '1' (in mboxscan.c) then there was SIGUSR1, hmm */
2250                 obj->data.mboxscan.output[0] = 1;
2251                 strncpy(obj->data.mboxscan.args, arg, text_buffer_size);
2252         END OBJ(mem, INFO_MEM)
2253         END OBJ(memeasyfree, INFO_MEM)
2254         END OBJ(memfree, INFO_MEM)
2255         END OBJ(memmax, INFO_MEM)
2256         END OBJ(memperc, INFO_MEM)
2257 #ifdef X11
2258         END OBJ(memgauge, INFO_MEM)
2259                 SIZE_DEFAULTS(gauge);
2260                 scan_gauge(arg, &obj->data.pair.a, &obj->data.pair.b);
2261 #endif /* X11*/
2262         END OBJ(membar, INFO_MEM)
2263                 SIZE_DEFAULTS(bar);
2264                 scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
2265 #ifdef X11
2266         END OBJ(memgraph, INFO_MEM)
2267                 char *buf = 0;
2268                 SIZE_DEFAULTS(graph);
2269                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
2270                                 &obj->e, &obj->char_a, &obj->char_b);
2271
2272                 if (buf) {
2273                         free(buf);
2274                 }
2275 #endif /* X11*/
2276         END OBJ(mixer, INFO_MIXER)
2277                 obj->data.l = mixer_init(arg);
2278         END OBJ(mixerl, INFO_MIXER)
2279                 obj->data.l = mixer_init(arg);
2280         END OBJ(mixerr, INFO_MIXER)
2281                 obj->data.l = mixer_init(arg);
2282 #ifdef X11
2283         END OBJ(mixerbar, INFO_MIXER)
2284                 SIZE_DEFAULTS(bar);
2285                 scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
2286                         &obj->data.mixerbar.h);
2287         END OBJ(mixerlbar, INFO_MIXER)
2288                 SIZE_DEFAULTS(bar);
2289                 scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
2290                         &obj->data.mixerbar.h);
2291         END OBJ(mixerrbar, INFO_MIXER)
2292                 SIZE_DEFAULTS(bar);
2293                 scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
2294                         &obj->data.mixerbar.h);
2295 #endif
2296         END OBJ_IF(if_mixer_mute, INFO_MIXER)
2297                 obj->data.ifblock.i = mixer_init(arg);
2298 #ifdef X11
2299         END OBJ(monitor, INFO_X11)
2300         END OBJ(monitor_number, INFO_X11)
2301 #endif
2302         END OBJ(nodename, 0)
2303         END OBJ(processes, INFO_PROCS)
2304         END OBJ(running_processes, INFO_RUN_PROCS)
2305         END OBJ(shadecolor, 0)
2306 #ifdef X11
2307                 obj->data.l = arg ? get_x11_color(arg) : default_bg_color;
2308 #endif /* X11 */
2309         END OBJ(outlinecolor, 0)
2310 #ifdef X11
2311                 obj->data.l = arg ? get_x11_color(arg) : default_out_color;
2312 #endif /* X11 */
2313         END OBJ(stippled_hr, 0)
2314 #ifdef X11
2315                 int a = stippled_borders, b = 1;
2316
2317                 if (arg) {
2318                         if (sscanf(arg, "%d %d", &a, &b) != 2) {
2319                                 sscanf(arg, "%d", &b);
2320                         }
2321                 }
2322                 if (a <= 0) {
2323                         a = 1;
2324                 }
2325                 obj->data.pair.a = a;
2326                 obj->data.pair.b = b;
2327 #endif /* X11 */
2328         END OBJ(swap, INFO_MEM)
2329         END OBJ(swapmax, INFO_MEM)
2330         END OBJ(swapperc, INFO_MEM)
2331         END OBJ(swapbar, INFO_MEM)
2332                 SIZE_DEFAULTS(bar);
2333                 scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
2334         END OBJ(sysname, 0)
2335         END OBJ(time, 0)
2336                 obj->data.s = strndup(arg ? arg : "%F %T", text_buffer_size);
2337         END OBJ(utime, 0)
2338                 obj->data.s = strndup(arg ? arg : "%F %T", text_buffer_size);
2339         END OBJ(tztime, 0)
2340                 char buf1[256], buf2[256], *fmt, *tz;
2341
2342                 fmt = tz = NULL;
2343                 if (arg) {
2344                         int nArgs = sscanf(arg, "%255s %255[^\n]", buf1, buf2);
2345
2346                         switch (nArgs) {
2347                                 case 2:
2348                                         tz = buf1;
2349                                 case 1:
2350                                         fmt = buf2;
2351                         }
2352                 }
2353
2354                 obj->data.tztime.fmt = strndup(fmt ? fmt : "%F %T", text_buffer_size);
2355                 obj->data.tztime.tz = tz ? strndup(tz, text_buffer_size) : NULL;
2356 #ifdef HAVE_ICONV
2357         END OBJ(iconv_start, 0)
2358                 if (iconv_converting) {
2359                         CRIT_ERR("You must stop your last iconv conversion before "
2360                                 "starting another");
2361                 }
2362                 if (arg) {
2363                         char iconv_from[CODEPAGE_LENGTH];
2364                         char iconv_to[CODEPAGE_LENGTH];
2365
2366                         if (sscanf(arg, "%s %s", iconv_from, iconv_to) != 2) {
2367                                 CRIT_ERR("Invalid arguments for iconv_start");
2368                         } else {
2369                                 iconv_t new_iconv;
2370
2371                                 new_iconv = iconv_open(iconv_to, iconv_from);
2372                                 if (new_iconv == (iconv_t) (-1)) {
2373                                         ERR("Can't convert from %s to %s.", iconv_from, iconv_to);
2374                                 } else {
2375                                         obj->a = register_iconv(&new_iconv);
2376                                         iconv_converting = 1;
2377                                 }
2378                         }
2379                 } else {
2380                         CRIT_ERR("Iconv requires arguments");
2381                 }
2382         END OBJ(iconv_stop, 0)
2383                 iconv_converting = 0;
2384
2385 #endif
2386         END OBJ(totaldown, INFO_NET)
2387                 if (arg) {
2388                         obj->data.net = get_net_stat(arg);
2389                 } else {
2390                         CRIT_ERR("totaldown needs argument");
2391                 }
2392         END OBJ(totalup, INFO_NET)
2393                 obj->data.net = get_net_stat(arg);
2394                 if (arg) {
2395                         obj->data.net = get_net_stat(arg);
2396                 } else {
2397                         CRIT_ERR("totalup needs argument");
2398                 }
2399         END OBJ(updates, 0)
2400         END OBJ_IF(if_updatenr, 0)
2401                 obj->data.ifblock.i = arg ? atoi(arg) : 0;
2402                 if(obj->data.ifblock.i == 0) CRIT_ERR("if_updatenr needs a number above 0 as argument");
2403                 updatereset = obj->data.ifblock.i > updatereset ? obj->data.ifblock.i : updatereset;
2404         END OBJ(alignr, 0)
2405                 obj->data.i = arg ? atoi(arg) : 0;
2406         END OBJ(alignc, 0)
2407                 obj->data.i = arg ? atoi(arg) : 0;
2408         END OBJ(upspeed, INFO_NET)
2409                 if (arg) {
2410                         obj->data.net = get_net_stat(arg);
2411                 } else {
2412                         CRIT_ERR("upspeed needs argument");
2413                 }
2414         END OBJ(upspeedf, INFO_NET)
2415                 if (arg) {
2416                         obj->data.net = get_net_stat(arg);
2417                 } else {
2418                         CRIT_ERR("upspeedf needs argument");
2419                 }
2420
2421 #ifdef X11
2422         END OBJ(upspeedgraph, INFO_NET)
2423                 char *buf = 0;
2424                 SIZE_DEFAULTS(graph);
2425                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
2426                                 &obj->e, &obj->char_a, &obj->char_b);
2427
2428                 // default to DEFAULTNETDEV
2429                 buf = strndup(buf ? buf : "DEFAULTNETDEV", text_buffer_size);
2430                 obj->data.net = get_net_stat(buf);
2431                 free(buf);
2432 #endif
2433         END OBJ(uptime_short, INFO_UPTIME)
2434         END OBJ(uptime, INFO_UPTIME)
2435         END OBJ(user_names, INFO_USERS)
2436         END OBJ(user_times, INFO_USERS)
2437         END OBJ(user_terms, INFO_USERS)
2438         END OBJ(user_number, INFO_USERS)
2439 #if defined(__linux__)
2440         END OBJ(gw_iface, INFO_GW)
2441         END OBJ(gw_ip, INFO_GW)
2442 #endif /* !__linux__ */
2443 #ifndef __OpenBSD__
2444         END OBJ(adt746xcpu, 0)
2445         END OBJ(adt746xfan, 0)
2446 #endif /* !__OpenBSD__ */
2447 #if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
2448                 || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
2449         END OBJ(apm_adapter, 0)
2450         END OBJ(apm_battery_life, 0)
2451         END OBJ(apm_battery_time, 0)
2452 #endif /* __FreeBSD__ */
2453         END OBJ_THREAD(imap_unseen, 0)
2454                 if (arg) {
2455                         // proccss
2456                         obj->data.mail = parse_mail_args(IMAP_TYPE, arg);
2457                         obj->char_b = 0;
2458                 } else {
2459                         obj->char_b = 1;
2460                 }
2461         END OBJ_THREAD(imap_messages, 0)
2462                 if (arg) {
2463                         // proccss
2464                         obj->data.mail = parse_mail_args(IMAP_TYPE, arg);
2465                         obj->char_b = 0;
2466                 } else {
2467                         obj->char_b = 1;
2468                 }
2469         END OBJ_THREAD(pop3_unseen, 0)
2470                 if (arg) {
2471                         // proccss
2472                         obj->data.mail = parse_mail_args(POP3_TYPE, arg);
2473                         obj->char_b = 0;
2474                 } else {
2475                         obj->char_b = 1;
2476                 }
2477         END OBJ_THREAD(pop3_used, 0)
2478                 if (arg) {
2479                         // proccss
2480                         obj->data.mail = parse_mail_args(POP3_TYPE, arg);
2481                         obj->char_b = 0;
2482                 } else {
2483                         obj->char_b = 1;
2484                 }
2485 #ifdef IBM
2486         END OBJ(smapi, 0)
2487                 if (arg)
2488                         obj->data.s = strndup(arg, text_buffer_size);
2489                 else
2490                         ERR("smapi needs an argument");
2491         END OBJ_IF(if_smapi_bat_installed, 0)
2492                 if (!arg) {
2493                         ERR("if_smapi_bat_installed needs an argument");
2494                         obj->data.ifblock.s = 0;
2495                 } else
2496                         obj->data.ifblock.s = strndup(arg, text_buffer_size);
2497         END OBJ(smapi_bat_perc, 0)
2498                 if (arg)
2499                         obj->data.s = strndup(arg, text_buffer_size);
2500                 else
2501                         ERR("smapi_bat_perc needs an argument");
2502         END OBJ(smapi_bat_temp, 0)
2503                 if (arg)
2504                         obj->data.s = strndup(arg, text_buffer_size);
2505                 else
2506                         ERR("smapi_bat_temp needs an argument");
2507         END OBJ(smapi_bat_power, 0)
2508                 if (arg)
2509                         obj->data.s = strndup(arg, text_buffer_size);
2510                 else
2511                         ERR("smapi_bat_power needs an argument");
2512         END OBJ(smapi_bat_bar, 0)
2513                 SIZE_DEFAULTS(bar);
2514                 if(arg) {
2515                         int cnt;
2516                         if(sscanf(arg, "%i %n", &obj->data.i, &cnt) <= 0) {
2517                                 ERR("first argument to smapi_bat_bar must be an integer value");
2518                                 obj->data.i = -1;
2519                         } else {
2520                                 obj->b = 4;
2521                                 arg = scan_bar(arg + cnt, &obj->a, &obj->b);
2522                         }
2523                 } else
2524                         ERR("smapi_bat_bar needs an argument");
2525 #endif /* IBM */
2526 #ifdef MPD
2527 #define mpd_set_maxlen(name) \
2528                 if (arg) { \
2529                         int i; \
2530                         sscanf(arg, "%d", &i); \
2531                         if (i > 0) \
2532                                 obj->data.i = i + 1; \
2533                         else \
2534                                 ERR(#name ": invalid length argument"); \
2535                 }
2536         END OBJ(mpd_artist, INFO_MPD)
2537                 mpd_set_maxlen(mpd_artist);
2538                 init_mpd();
2539         END OBJ(mpd_title, INFO_MPD)
2540                 mpd_set_maxlen(mpd_title);
2541                 init_mpd();
2542         END OBJ(mpd_random, INFO_MPD) init_mpd();
2543         END OBJ(mpd_repeat, INFO_MPD) init_mpd();
2544         END OBJ(mpd_elapsed, INFO_MPD) init_mpd();
2545         END OBJ(mpd_length, INFO_MPD) init_mpd();
2546         END OBJ(mpd_track, INFO_MPD)
2547                 mpd_set_maxlen(mpd_track);
2548                 init_mpd();
2549         END OBJ(mpd_name, INFO_MPD)
2550                 mpd_set_maxlen(mpd_name);
2551                 init_mpd();
2552         END OBJ(mpd_file, INFO_MPD)
2553                 mpd_set_maxlen(mpd_file);
2554                 init_mpd();
2555         END OBJ(mpd_percent, INFO_MPD) init_mpd();
2556         END OBJ(mpd_album, INFO_MPD)
2557                 mpd_set_maxlen(mpd_album);
2558                 init_mpd();
2559         END OBJ(mpd_vol, INFO_MPD) init_mpd();
2560         END OBJ(mpd_bitrate, INFO_MPD) init_mpd();
2561         END OBJ(mpd_status, INFO_MPD) init_mpd();
2562         END OBJ(mpd_bar, INFO_MPD)
2563                 SIZE_DEFAULTS(bar);
2564                 scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
2565                 init_mpd();
2566         END OBJ(mpd_smart, INFO_MPD)
2567                 mpd_set_maxlen(mpd_smart);
2568                 init_mpd();
2569         END OBJ_IF(if_mpd_playing, INFO_MPD)
2570                 init_mpd();
2571 #undef mpd_set_maxlen
2572 #endif /* MPD */
2573 #ifdef MOC
2574         END OBJ(moc_state, INFO_MOC)
2575         END OBJ(moc_file, INFO_MOC)
2576         END OBJ(moc_title, INFO_MOC)
2577         END OBJ(moc_artist, INFO_MOC)
2578         END OBJ(moc_song, INFO_MOC)
2579         END OBJ(moc_album, INFO_MOC)
2580         END OBJ(moc_totaltime, INFO_MOC)
2581         END OBJ(moc_timeleft, INFO_MOC)
2582         END OBJ(moc_curtime, INFO_MOC)
2583         END OBJ(moc_bitrate, INFO_MOC)
2584         END OBJ(moc_rate, INFO_MOC)
2585 #endif /* MOC */
2586 #ifdef XMMS2
2587         END OBJ(xmms2_artist, INFO_XMMS2)
2588         END OBJ(xmms2_album, INFO_XMMS2)
2589         END OBJ(xmms2_title, INFO_XMMS2)
2590         END OBJ(xmms2_genre, INFO_XMMS2)
2591         END OBJ(xmms2_comment, INFO_XMMS2)
2592         END OBJ(xmms2_url, INFO_XMMS2)
2593         END OBJ(xmms2_tracknr, INFO_XMMS2)
2594         END OBJ(xmms2_bitrate, INFO_XMMS2)
2595         END OBJ(xmms2_date, INFO_XMMS2)
2596         END OBJ(xmms2_id, INFO_XMMS2)
2597         END OBJ(xmms2_duration, INFO_XMMS2)
2598         END OBJ(xmms2_elapsed, INFO_XMMS2)
2599         END OBJ(xmms2_size, INFO_XMMS2)
2600         END OBJ(xmms2_status, INFO_XMMS2)
2601         END OBJ(xmms2_percent, INFO_XMMS2)
2602         END OBJ(xmms2_bar, INFO_XMMS2)
2603                 SIZE_DEFAULTS(bar);
2604                 scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
2605         END OBJ(xmms2_smart, INFO_XMMS2)
2606         END OBJ(xmms2_playlist, INFO_XMMS2)
2607         END OBJ(xmms2_timesplayed, INFO_XMMS2)
2608         END OBJ_IF(if_xmms2_connected, INFO_XMMS2)
2609 #endif
2610 #ifdef AUDACIOUS
2611         END OBJ(audacious_status, INFO_AUDACIOUS)
2612         END OBJ(audacious_title, INFO_AUDACIOUS)
2613                 if (arg) {
2614                         sscanf(arg, "%d", &info.audacious.max_title_len);
2615                         if (info.audacious.max_title_len > 0) {
2616                                 info.audacious.max_title_len++;
2617                         } else {
2618                                 CRIT_ERR("audacious_title: invalid length argument");
2619                         }
2620                 }
2621         END OBJ(audacious_length, INFO_AUDACIOUS)
2622         END OBJ(audacious_length_seconds, INFO_AUDACIOUS)
2623         END OBJ(audacious_position, INFO_AUDACIOUS)
2624         END OBJ(audacious_position_seconds, INFO_AUDACIOUS)
2625         END OBJ(audacious_bitrate, INFO_AUDACIOUS)
2626         END OBJ(audacious_frequency, INFO_AUDACIOUS)
2627         END OBJ(audacious_channels, INFO_AUDACIOUS)
2628         END OBJ(audacious_filename, INFO_AUDACIOUS)
2629         END OBJ(audacious_playlist_length, INFO_AUDACIOUS)
2630         END OBJ(audacious_playlist_position, INFO_AUDACIOUS)
2631         END OBJ(audacious_main_volume, INFO_AUDACIOUS)
2632         END OBJ(audacious_bar, INFO_AUDACIOUS)
2633                 SIZE_DEFAULTS(bar);
2634                 scan_bar(arg, &obj->a, &obj->b);
2635 #endif
2636 #ifdef BMPX
2637         END OBJ(bmpx_title, INFO_BMPX)
2638                 memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
2639         END OBJ(bmpx_artist, INFO_BMPX)
2640                 memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
2641         END OBJ(bmpx_album, INFO_BMPX)
2642                 memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
2643         END OBJ(bmpx_track, INFO_BMPX)
2644                 memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
2645         END OBJ(bmpx_uri, INFO_BMPX)
2646                 memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
2647         END OBJ(bmpx_bitrate, INFO_BMPX)
2648                 memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
2649 #endif
2650 #ifdef EVE
2651         END OBJ(eve, 0)
2652                 if(arg) {
2653                         int argc;
2654                         char *userid = (char *) malloc(20 * sizeof(char));
2655                         char *apikey = (char *) malloc(64 * sizeof(char));
2656                         char *charid = (char *) malloc(20 * sizeof(char));
2657
2658                         argc = sscanf(arg, "%20s %64s %20s", userid, apikey, charid);
2659                         obj->data.eve.charid = charid;
2660                         obj->data.eve.userid = userid;
2661                         obj->data.eve.apikey = apikey;
2662
2663                         init_eve();
2664                 } else {
2665                         CRIT_ERR("eve needs arguments: <userid> <apikey> <characterid>");
2666                 }
2667 #endif
2668 #ifdef RSS
2669         END OBJ(rss, 0)
2670                 if (arg) {
2671                         int argc, delay, act_par;
2672                         unsigned int nrspaces = 0;
2673                         char *uri = (char *) malloc(128 * sizeof(char));
2674                         char *action = (char *) malloc(64 * sizeof(char));
2675
2676                         argc = sscanf(arg, "%127s %d %63s %d %u", uri, &delay, action,
2677                                         &act_par, &nrspaces);
2678                         obj->data.rss.uri = uri;
2679                         obj->data.rss.delay = delay;
2680                         obj->data.rss.action = action;
2681                         obj->data.rss.act_par = act_par;
2682                         obj->data.rss.nrspaces = nrspaces;
2683
2684                         init_rss_info();
2685                 } else {
2686                         CRIT_ERR("rss needs arguments: <uri> <delay in minutes> <action> "
2687                                         "[act_par] [spaces in front]");
2688                 }
2689 #endif
2690 #ifdef HAVE_LUA
2691         END OBJ(lua, 0)
2692                 if (arg) {
2693                         obj->data.s = strndup(arg, text_buffer_size);
2694                 } else {
2695                         CRIT_ERR("lua needs arguments: <function name> [function parameters]");
2696                 }
2697         END OBJ(lua_parse, 0)
2698                 if (arg) {
2699                         obj->data.s = strndup(arg, text_buffer_size);
2700                 } else {
2701                         CRIT_ERR("lua_parse needs arguments: <function name> [function parameters]");
2702                 }
2703         END OBJ(lua_read_parse, 0)
2704                 if (arg) {
2705                         obj->data.s = strndup(arg, text_buffer_size);
2706                 } else {
2707                         CRIT_ERR("lua_read_parse needs arguments: <function name> <string to pass>");
2708                 }
2709         END OBJ(lua_bar, 0)
2710                 SIZE_DEFAULTS(bar);
2711                 if (arg) {
2712                         arg = scan_bar(arg, &obj->a, &obj->b);
2713                         if(arg) {
2714                                 obj->data.s = strndup(arg, text_buffer_size);
2715                         } else {
2716                                 CRIT_ERR("lua_bar needs arguments: <height>,<width> <function name> [function parameters]");
2717                         }
2718                 } else {
2719                         CRIT_ERR("lua_bar needs arguments: <height>,<width> <function name> [function parameters]");
2720                 }
2721 #ifdef X11
2722         END OBJ(lua_graph, 0)
2723                 SIZE_DEFAULTS(graph);
2724                 if (arg) {
2725                         arg = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
2726                                         &obj->e, &obj->char_a, &obj->char_b);
2727                         if (arg) {
2728                                 obj->data.s = strndup(arg, text_buffer_size);
2729                         } else {
2730                                 CRIT_ERR("lua_graph needs arguments: <\"normal\"|\"log\"> <height>,<width> <gradient colour 1> <gradient colour 2> <scale> <function name> [function parameters]");
2731                         }
2732                 } else {
2733                         CRIT_ERR("lua_graph needs arguments: <\"normal\"|\"log\"> <height>,<width> <gradient colour 1> <gradient colour 2> <scale> <function name> [function parameters]");
2734         }
2735         END OBJ(lua_gauge, 0)
2736                 SIZE_DEFAULTS(gauge);
2737                 if (arg) {
2738                         arg = scan_gauge(arg, &obj->a, &obj->b);
2739                         if (arg) {
2740                                 obj->data.s = strndup(arg, text_buffer_size);
2741                         } else {
2742                                 CRIT_ERR("lua_gauge needs arguments: <height>,<width> <function name> [function parameters]");
2743                         }
2744                 } else {
2745                         CRIT_ERR("lua_gauge needs arguments: <height>,<width> <function name> [function parameters]");
2746                 }
2747 #endif /* X11 */
2748 #endif /* HAVE_LUA */
2749 #ifdef HDDTEMP
2750         END OBJ(hddtemp, 0)
2751                 if (scan_hddtemp(arg, &obj->data.hddtemp.dev,
2752                                  &obj->data.hddtemp.addr, &obj->data.hddtemp.port)) {
2753                         ERR("hddtemp needs arguments");
2754                         obj->type = OBJ_text;
2755                         obj->data.s = strndup("${hddtemp}", text_buffer_size);
2756                         obj->data.hddtemp.update_time = 0;
2757                 } else
2758                         obj->data.hddtemp.temp = NULL;
2759 #endif /* HDDTEMP */
2760 #ifdef TCP_PORT_MONITOR
2761         END OBJ(tcp_portmon, INFO_TCP_PORT_MONITOR)
2762                 tcp_portmon_init(arg, &obj->data.tcp_port_monitor);
2763 #endif /* TCP_PORT_MONITOR */
2764         END OBJ(entropy_avail, INFO_ENTROPY)
2765         END OBJ(entropy_perc, INFO_ENTROPY)
2766         END OBJ(entropy_poolsize, INFO_ENTROPY)
2767         END OBJ(entropy_bar, INFO_ENTROPY)
2768                 SIZE_DEFAULTS(bar);
2769                 scan_bar(arg, &obj->a, &obj->b);
2770         END OBJ(scroll, 0)
2771                 int n1, n2;
2772
2773                 obj->data.scroll.step = 1;
2774                 if (arg && sscanf(arg, "%u %n", &obj->data.scroll.show, &n1) > 0) {
2775                         if (sscanf(arg + n1, "%u %n", &obj->data.scroll.step, &n2) > 0)
2776                                 n1 += n2;
2777                         obj->data.scroll.text = strndup(arg + n1, text_buffer_size);
2778                         obj->data.scroll.start = 0;
2779                         obj->sub = malloc(sizeof(struct text_object));
2780                         extract_variable_text_internal(obj->sub,
2781                                         obj->data.scroll.text, 0);
2782                 } else {
2783                         CRIT_ERR("scroll needs arguments: <length> [<step>] <text>");
2784                 }
2785         END OBJ(combine, 0)
2786                 if(arg) {
2787                         unsigned int i,j;
2788                         unsigned int indenting = 0;     //vars can be used as args for other vars
2789                         int startvar[2];
2790                         int endvar[2];
2791                         startvar[0] = endvar[0] = startvar[1] = endvar[1] = -1;
2792                         j=0;
2793                         for (i=0; arg[i] != 0 && j < 2; i++) {
2794                                 if(startvar[j] == -1) {
2795                                         if(arg[i] == '$') {
2796                                                 startvar[j] = i;
2797                                         }
2798                                 }else if(endvar[j] == -1) {
2799                                         if(arg[i] == '{') {
2800                                                 indenting++;
2801                                         }else if(arg[i] == '}') {
2802                                                 indenting--;
2803                                         }
2804                                         if (indenting == 0 && arg[i+1] < 48) {  //<48 has 0, $, and the most used chars not used in varnames but not { or }
2805                                                 endvar[j]=i+1;
2806                                                 j++;
2807                                         }
2808                                 }
2809                         }
2810                         if(startvar[0] >= 0 && endvar[0] >= 0 && startvar[1] >= 0 && endvar[1] >= 0) {
2811                                 obj->data.combine.left = malloc(endvar[0]-startvar[0] + 1);
2812                                 obj->data.combine.seperation = malloc(startvar[1] - endvar[0] + 1);
2813                                 obj->data.combine.right= malloc(endvar[1]-startvar[1] + 1);
2814                                 
2815                                 strncpy(obj->data.combine.left, arg + startvar[0], endvar[0] - startvar[0]);
2816                                 obj->data.combine.left[endvar[0] - startvar[0]] = 0;
2817                                 
2818                                 strncpy(obj->data.combine.seperation, arg + endvar[0], startvar[1] - endvar[0]);
2819                                 obj->data.combine.seperation[startvar[1] - endvar[0]] = 0;
2820                                 
2821                                 strncpy(obj->data.combine.right, arg + startvar[1], endvar[1] - startvar[1]);
2822                                 obj->data.combine.right[endvar[1] - startvar[1]] = 0;
2823
2824                                 obj->sub = malloc(sizeof(struct text_object));
2825                                 extract_variable_text_internal(obj->sub, obj->data.combine.left, 0);
2826                                 obj->sub->sub = malloc(sizeof(struct text_object));
2827                                 extract_variable_text_internal(obj->sub->sub, obj->data.combine.right, 0);
2828                         } else {
2829                                 CRIT_ERR("combine needs arguments: <text1> <text2>");
2830                         }
2831                 } else {
2832                         CRIT_ERR("combine needs arguments: <text1> <text2>");
2833                 }
2834 #ifdef NVIDIA
2835         END OBJ(nvidia, 0)
2836                 if (!arg) {
2837                         CRIT_ERR("nvidia needs an argument\n");
2838                 } else if (set_nvidia_type(&obj->data.nvidia, arg)) {
2839                         CRIT_ERR("nvidia: invalid argument"
2840                                  " specified: '%s'\n", arg);
2841                 }
2842 #endif /* NVIDIA */
2843 #ifdef APCUPSD
2844                 init_apcupsd();
2845                 END OBJ(apcupsd, INFO_APCUPSD)
2846                         if (arg) {
2847                                 char host[64];
2848                                 int port;
2849                                 if (sscanf(arg, "%63s %d", host, &port) != 2) {
2850                                         CRIT_ERR("apcupsd needs arguments: <host> <port>");
2851                                 } else {
2852                                         info.apcupsd.port = htons(port);
2853                                         strncpy(info.apcupsd.host, host, sizeof(info.apcupsd.host));
2854                                 }
2855                         } else {
2856                                 CRIT_ERR("apcupsd needs arguments: <host> <port>");
2857                         }
2858                         END OBJ(apcupsd_name, INFO_APCUPSD)
2859                         END OBJ(apcupsd_model, INFO_APCUPSD)
2860                         END OBJ(apcupsd_upsmode, INFO_APCUPSD)
2861                         END OBJ(apcupsd_cable, INFO_APCUPSD)
2862                         END OBJ(apcupsd_status, INFO_APCUPSD)
2863                         END OBJ(apcupsd_linev, INFO_APCUPSD)
2864                         END OBJ(apcupsd_load, INFO_APCUPSD)
2865                         END OBJ(apcupsd_loadbar, INFO_APCUPSD)
2866                                 SIZE_DEFAULTS(bar);
2867                                 scan_bar(arg, &obj->a, &obj->b);
2868 #ifdef X11
2869                         END OBJ(apcupsd_loadgraph, INFO_APCUPSD)
2870                                 char* buf = 0;
2871                                 SIZE_DEFAULTS(graph);
2872                                 buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
2873                                                 &obj->e, &obj->char_a, &obj->char_b);
2874                                 if (buf) free(buf);
2875                         END OBJ(apcupsd_loadgauge, INFO_APCUPSD)
2876                                 SIZE_DEFAULTS(gauge);
2877                                 scan_gauge(arg, &obj->a, &obj->b);
2878 #endif /* X11 */
2879                         END OBJ(apcupsd_charge, INFO_APCUPSD)
2880                         END OBJ(apcupsd_timeleft, INFO_APCUPSD)
2881                         END OBJ(apcupsd_temp, INFO_APCUPSD)
2882                         END OBJ(apcupsd_lastxfer, INFO_APCUPSD)
2883 #endif /* APCUPSD */
2884         END {
2885                 char buf[256];
2886
2887                 ERR("unknown variable %s", s);
2888                 obj->type = OBJ_text;
2889                 snprintf(buf, 256, "${%s}", s);
2890                 obj->data.s = strndup(buf, text_buffer_size);
2891         }
2892 #undef OBJ
2893
2894         return obj;
2895 }
2896
2897 static struct text_object *create_plain_text(const char *s)
2898 {
2899         struct text_object *obj;
2900
2901         if (s == NULL || *s == '\0') {
2902                 return NULL;
2903         }
2904
2905         obj = new_text_object_internal();
2906
2907         obj->type = OBJ_text;
2908         obj->data.s = strndup(s, text_buffer_size);
2909         return obj;
2910 }
2911
2912 /* backslash_escape - do the actual substitution task for template objects
2913  *
2914  * The field templates is used for substituting the \N occurences. Set it to
2915  * NULL to leave them as they are.
2916  */
2917 static char *backslash_escape(const char *src, char **templates, unsigned int template_count)
2918 {
2919         char *src_dup;
2920         const char *p;
2921         unsigned int dup_idx = 0, dup_len;
2922
2923         dup_len = strlen(src) + 1;
2924         src_dup = malloc(dup_len * sizeof(char));
2925
2926         p = src;
2927         while (*p) {
2928                 switch (*p) {
2929                 case '\\':
2930                         if (!*(p + 1))
2931                                 break;
2932                         if (*(p + 1) == '\\') {
2933                                 src_dup[dup_idx++] = '\\';
2934                                 p++;
2935                         } else if (*(p + 1) == ' ') {
2936                                 src_dup[dup_idx++] = ' ';
2937                                 p++;
2938                         } else if (*(p + 1) == 'n') {
2939                                 src_dup[dup_idx++] = '\n';
2940                                 p++;
2941                         } else if (templates) {
2942                                 unsigned int tmpl_num;
2943                                 int digits;
2944                                 if ((sscanf(p + 1, "%u%n", &tmpl_num, &digits) <= 0) ||
2945                                     (tmpl_num > template_count))
2946                                         break;
2947                                 dup_len += strlen(templates[tmpl_num - 1]);
2948                                 src_dup = realloc(src_dup, dup_len * sizeof(char));
2949                                 sprintf(src_dup + dup_idx, "%s", templates[tmpl_num - 1]);
2950                                 dup_idx += strlen(templates[tmpl_num - 1]);
2951                                 p += digits;
2952                         }
2953                         break;
2954                 default:
2955                         src_dup[dup_idx++] = *p;
2956                         break;
2957                 }
2958                 p++;
2959         }
2960         src_dup[dup_idx] = '\0';
2961         src_dup = realloc(src_dup, (strlen(src_dup) + 1) * sizeof(char));
2962         return src_dup;
2963 }
2964
2965 /* handle_template_object - core logic of the template object
2966  *
2967  * use config variables like this:
2968  * template1 = "$\1\2"
2969  * template2 = "\1: ${fs_bar 4,100 \2} ${fs_used \2} / ${fs_size \2}"
2970  *
2971  * and use them like this:
2972  * ${template1 node name}
2973  * ${template2 root /}
2974  * ${template2 cdrom /mnt/cdrom}
2975  */
2976 static char *handle_template(const char *tmpl, const char *args)
2977 {
2978         char *args_dup = NULL;
2979         char *p, *p_old;
2980         char **argsp = NULL;
2981         unsigned int argcnt = 0, template_idx, i;
2982         char *eval_text;
2983
2984         if ((sscanf(tmpl, "template%u", &template_idx) != 1) ||
2985             (template_idx >= MAX_TEMPLATES))
2986                 return NULL;
2987
2988         if(args) {
2989                 args_dup = strdup(args);
2990                 p = args_dup;
2991                 while (*p) {
2992                         while (*p && (*p == ' ' && p > args_dup && *(p - 1) != '\\'))
2993                                 p++;
2994                         if (p > args_dup && *(p - 1) == '\\')
2995                                 p--;
2996                         p_old = p;
2997                         while (*p && (*p != ' ' || p == args_dup || *(p - 1) == '\\'))
2998                                 p++;
2999                         if (*p) {
3000                                 (*p) = '\0';
3001                                 p++;
3002                         }
3003                         argsp = realloc(argsp, ++argcnt * sizeof(char *));
3004                         argsp[argcnt - 1] = p_old;
3005                 }
3006                 for (i = 0; i < argcnt; i++) {
3007                         char *tmp;
3008                         tmp = backslash_escape(argsp[i], NULL, 0);
3009                         DBGP2("%s: substituted arg '%s' to '%s'", tmpl, argsp[i], tmp);
3010                         argsp[i] = tmp;
3011                 }
3012         }
3013
3014         eval_text = backslash_escape(template[template_idx], argsp, argcnt);
3015         DBGP("substituted %s, output is '%s'", tmpl, eval_text);
3016         free(args_dup);
3017         for (i = 0; i < argcnt; i++)
3018                 free(argsp[i]);
3019         free(argsp);
3020         return eval_text;
3021 }
3022
3023 static char *find_and_replace_templates(const char *inbuf)
3024 {
3025         char *outbuf, *indup, *p, *o, *templ, *args, *tmpl_out;
3026         int stack, outlen;
3027
3028         outlen = strlen(inbuf) + 1;
3029         o = outbuf = calloc(outlen, sizeof(char));
3030         memset(outbuf, 0, outlen * sizeof(char));
3031
3032         p = indup = strdup(inbuf);
3033         while (*p) {
3034                 while (*p && *p != '$')
3035                         *(o++) = *(p++);
3036
3037                 if (!(*p))
3038                         break;
3039
3040                 if (strncmp(p, "$template", 9) && strncmp(p, "${template", 10)) {
3041                         *(o++) = *(p++);
3042                         continue;
3043                 }
3044
3045                 if (*(p + 1) == '{') {
3046                         p += 2;
3047                         templ = p;
3048                         while (*p && !isspace(*p) && *p != '{' && *p != '}')
3049                                 p++;
3050                         if (*p == '}')
3051                                 args = NULL;
3052                         else
3053                                 args = p;
3054
3055                         stack = 1;
3056                         while (*p && stack > 0) {
3057                                 if (*p == '{')
3058                                         stack++;
3059                                 else if (*p == '}')
3060                                         stack--;
3061                                 p++;
3062                         }
3063                         if (stack == 0) {
3064                                 // stack is empty. that means the previous char was }, so we zero it
3065                                 *(p - 1) = '\0';
3066                         } else {
3067                                 // we ran into the end of string without finding a closing }, bark
3068                                 CRIT_ERR("cannot find a closing '}' in template expansion");
3069                         }
3070                 } else {
3071                         templ = p + 1;
3072                         while (*p && !isspace(*p))
3073                                 p++;
3074                         args = NULL;
3075                 }
3076                 tmpl_out = handle_template(templ, args);
3077                 if (tmpl_out) {
3078                         outlen += strlen(tmpl_out);
3079                         *o = '\0';
3080                         outbuf = realloc(outbuf, outlen * sizeof(char));
3081                         strcat (outbuf, tmpl_out);
3082                         free(tmpl_out);
3083                         o = outbuf + strlen(outbuf);
3084                 } else {
3085                         ERR("failed to handle template '%s' with args '%s'", templ, args);
3086                 }
3087         }
3088         *o = '\0';
3089         outbuf = realloc(outbuf, (strlen(outbuf) + 1) * sizeof(char));
3090         free(indup);
3091         return outbuf;
3092 }
3093
3094 static int text_contains_templates(const char *text)
3095 {
3096         if (strcasestr(text, "${template") != NULL)
3097                 return 1;
3098         if (strcasestr(text, "$template") != NULL)
3099                 return 1;
3100         return 0;
3101 }
3102
3103 static void strfold(char *start, int count)
3104 {
3105         char *curplace;
3106         for (curplace = start + count; *curplace != 0; curplace++) {
3107                 *(curplace - count) = *curplace;
3108         }
3109         *(curplace - count - 1) = 0;
3110 }
3111
3112 static size_t remove_comments(char *string)
3113 {
3114         char *curplace, *curplace2;
3115         size_t folded = 0;
3116         for (curplace = string; *curplace != 0; curplace++) {
3117                 if (*curplace == '\\' && *(curplace + 1) == '#') {
3118                         // strcpy can't be used for overlapping strings
3119                         strfold(curplace, 1);
3120                         folded += 1;
3121                 } else if (*curplace == '#') {
3122                         // remove everything until we hit a '\n'
3123                         curplace2 = curplace;
3124                         while (*curplace2) {
3125                                 curplace2++;
3126                                 if (*curplace2 == '\n' &&
3127                                                 *(curplace2 + 1) != '#') break;
3128                         }
3129                         if (*curplace2) {
3130                                 strfold(curplace, curplace2 - curplace);
3131                                 folded += curplace2 - curplace;
3132                         } else {
3133                                 *curplace = 0;
3134                         }
3135                 }
3136         }
3137         return folded;
3138 }
3139
3140 static int extract_variable_text_internal(struct text_object *retval, const char *const_p, char allow_threaded)
3141 {
3142         struct text_object *obj;
3143         char *p, *s, *orig_p;
3144         long line;
3145         void *ifblock_opaque = NULL;
3146         char *tmp_p;
3147         char *arg = 0;
3148         size_t len = 0;
3149
3150         p = strndup(const_p, max_user_text - 1);
3151         while (text_contains_templates(p)) {
3152                 char *tmp;
3153                 tmp = find_and_replace_templates(p);
3154                 free(p);
3155                 p = tmp;
3156         }
3157         s = orig_p = p;
3158
3159         if (strcmp(p, const_p)) {
3160                 DBGP("replaced all templates in text: input is\n'%s'\noutput is\n'%s'", const_p, p);
3161         } else {
3162                 DBGP("no templates to replace");
3163         }
3164
3165         memset(retval, 0, sizeof(struct text_object));
3166
3167         line = global_text_lines;
3168
3169         while (*p) {
3170                 if (*p == '\n') {
3171                         line++;
3172                 }
3173                 if (*p == '$') {
3174                         *p = '\0';
3175                         obj = create_plain_text(s);
3176                         if (obj != NULL) {
3177                                 append_object(retval, obj);
3178                         }
3179                         *p = '$';
3180                         p++;
3181                         s = p;
3182
3183                         if (*p != '$') {
3184                                 char buf[256];
3185                                 const char *var;
3186
3187                                 /* variable is either $foo or ${foo} */
3188                                 if (*p == '{') {
3189                                         unsigned int brl = 1, brr = 0;
3190
3191                                         p++;
3192                                         s = p;
3193                                         while (*p && brl != brr) {
3194                                                 if (*p == '{') {
3195                                                         brl++;
3196                                                 }
3197                                                 if (*p == '}') {
3198                                                         brr++;
3199                                                 }
3200                                                 p++;
3201                                         }
3202                                         p--;
3203                                 } else {
3204                                         s = p;
3205                                         if (*p == '#') {
3206                                                 p++;
3207                                         }
3208                                         while (*p && (isalnum((int) *p) || *p == '_')) {
3209                                                 p++;
3210                                         }
3211                                 }
3212
3213                                 /* copy variable to buffer */
3214                                 len = (p - s > 255) ? 255 : (p - s);
3215                                 strncpy(buf, s, len);
3216                                 buf[len] = '\0';
3217
3218                                 if (*p == '}') {
3219                                         p++;
3220                                 }
3221                                 s = p;
3222
3223                                 /* search for variable in environment */
3224
3225                                 var = getenv(buf);
3226                                 if (var) {
3227                                         obj = create_plain_text(var);
3228                                         if (obj) {
3229                                                 append_object(retval, obj);
3230                                         }
3231                                         continue;
3232                                 }
3233
3234                                 /* if variable wasn't found in environment, use some special */
3235
3236                                 arg = 0;
3237
3238                                 /* split arg */
3239                                 if (strchr(buf, ' ')) {
3240                                         arg = strchr(buf, ' ');
3241                                         *arg = '\0';
3242                                         arg++;
3243                                         while (isspace((int) *arg)) {
3244                                                 arg++;
3245                                         }
3246                                         if (!*arg) {
3247                                                 arg = 0;
3248                                         }
3249                                 }
3250
3251                                 /* lowercase variable name */
3252                                 tmp_p = buf;
3253                                 while (*tmp_p) {
3254                                         *tmp_p = tolower(*tmp_p);
3255                                         tmp_p++;
3256                                 }
3257
3258                                 obj = construct_text_object(buf, arg,
3259                                                 line, allow_threaded,
3260                                                 &ifblock_opaque);
3261                                 if (obj != NULL) {
3262                                         append_object(retval, obj);
3263                                 }
3264                                 continue;
3265                         } else {
3266                                 obj = create_plain_text("$");
3267                                 s = p + 1;
3268                                 if (obj != NULL) {
3269                                         append_object(retval, obj);
3270                                 }
3271                         }
3272                 } else if (*p == '#') {
3273                         remove_comments(p);
3274                 }
3275                 p++;
3276         }
3277         remove_comments(s);
3278         obj = create_plain_text(s);
3279         if (obj != NULL) {
3280                 append_object(retval, obj);
3281         }
3282
3283         if (!ifblock_stack_empty(&ifblock_opaque)) {
3284                 ERR("one or more $endif's are missing");
3285         }
3286
3287         free(orig_p);
3288         return 0;
3289 }
3290
3291 static void extract_variable_text(const char *p)
3292 {
3293         free_text_objects(&global_root_object, 0);
3294         if (tmpstring1) {
3295                 free(tmpstring1);
3296                 tmpstring1 = 0;
3297         }
3298         if (tmpstring2) {
3299                 free(tmpstring2);
3300                 tmpstring2 = 0;
3301         }
3302         if (text_buffer) {
3303                 free(text_buffer);
3304                 text_buffer = 0;
3305         }
3306
3307         extract_variable_text_internal(&global_root_object, p, 1);
3308 }
3309
3310 int parse_conky_vars(struct text_object *root, char *txt, char *p, struct information *cur)
3311 {
3312         extract_variable_text_internal(root, txt, 0);
3313         generate_text_internal(p, max_user_text, *root, cur);
3314         return 0;
3315 }
3316
3317 static inline struct mail_s *ensure_mail_thread(struct text_object *obj,
3318                 void *thread(void *), const char *text)
3319 {
3320         if (obj->char_b && info.mail) {
3321                 // this means we use info
3322                 if (!info.mail->p_timed_thread) {
3323                         info.mail->p_timed_thread =
3324                                 timed_thread_create(thread,
3325                                                 (void *) info.mail, info.mail->interval * 1000000);
3326                         if (!info.mail->p_timed_thread) {
3327                                 ERR("Error creating %s timed thread", text);
3328                         }
3329                         timed_thread_register(info.mail->p_timed_thread,
3330                                         &info.mail->p_timed_thread);
3331                         if (timed_thread_run(info.mail->p_timed_thread)) {
3332                                 ERR("Error running %s timed thread", text);
3333                         }
3334                 }
3335                 return info.mail;
3336         } else if (obj->data.mail) {
3337                 // this means we use obj
3338                 if (!obj->data.mail->p_timed_thread) {
3339                         obj->data.mail->p_timed_thread =
3340                                 timed_thread_create(thread,
3341                                                 (void *) obj->data.mail,
3342                                                 obj->data.mail->interval * 1000000);
3343                         if (!obj->data.mail->p_timed_thread) {
3344                                 ERR("Error creating %s timed thread", text);
3345                         }
3346                         timed_thread_register(obj->data.mail->p_timed_thread,
3347                                         &obj->data.mail->p_timed_thread);
3348                         if (timed_thread_run(obj->data.mail->p_timed_thread)) {
3349                                 ERR("Error running %s timed thread", text);
3350                         }
3351                 }
3352                 return obj->data.mail;
3353         } else if (!obj->a) {
3354                 // something is wrong, warn once then stop
3355                 ERR("There's a problem with your mail settings.  "
3356                                 "Check that the global mail settings are properly defined"
3357                                 " (line %li).", obj->line);
3358                 obj->a++;
3359         }
3360         return NULL;
3361 }
3362
3363 char *format_time(unsigned long timeval, const int width)
3364 {
3365         char buf[10];
3366         unsigned long nt;       // narrow time, for speed on 32-bit
3367         unsigned cc;            // centiseconds
3368         unsigned nn;            // multi-purpose whatever
3369
3370         nt = timeval;
3371         cc = nt % 100;          // centiseconds past second
3372         nt /= 100;                      // total seconds
3373         nn = nt % 60;           // seconds past the minute
3374         nt /= 60;                       // total minutes
3375         if (width >= snprintf(buf, sizeof buf, "%lu:%02u.%02u",
3376                                 nt, nn, cc)) {
3377                 return strndup(buf, text_buffer_size);
3378         }
3379         if (width >= snprintf(buf, sizeof buf, "%lu:%02u", nt, nn)) {
3380                 return strndup(buf, text_buffer_size);
3381         }
3382         nn = nt % 60;           // minutes past the hour
3383         nt /= 60;                       // total hours
3384         if (width >= snprintf(buf, sizeof buf, "%lu,%02u", nt, nn)) {
3385                 return strndup(buf, text_buffer_size);
3386         }
3387         nn = nt;                        // now also hours
3388         if (width >= snprintf(buf, sizeof buf, "%uh", nn)) {
3389                 return strndup(buf, text_buffer_size);
3390         }
3391         nn /= 24;                       // now days
3392         if (width >= snprintf(buf, sizeof buf, "%ud", nn)) {
3393                 return strndup(buf, text_buffer_size);
3394         }
3395         nn /= 7;                        // now weeks
3396         if (width >= snprintf(buf, sizeof buf, "%uw", nn)) {
3397                 return strndup(buf, text_buffer_size);
3398         }
3399         // well shoot, this outta' fit...
3400         return strndup("<inf>", text_buffer_size);
3401 }
3402
3403 //remove backspaced chars, example: "dog^H^H^Hcat" becomes "cat"
3404 //string has to end with \0 and it's length should fit in a int
3405 #define BACKSPACE 8
3406 void remove_deleted_chars(char *string){
3407         int i = 0;
3408         while(string[i] != 0){
3409                 if(string[i] == BACKSPACE){
3410                         if(i != 0){
3411                                 strcpy( &(string[i-1]), &(string[i+1]) );
3412                                 i--;
3413                         }else strcpy( &(string[i]), &(string[i+1]) ); //necessary for ^H's at the start of a string
3414                 }else i++;
3415         }
3416 }
3417
3418 static inline void format_media_player_time(char *buf, const int size,
3419                 int seconds)
3420 {
3421         int days, hours, minutes;
3422
3423         days = seconds / (24 * 60 * 60);
3424         seconds %= (24 * 60 * 60);
3425         hours = seconds / (60 * 60);
3426         seconds %= (60 * 60);
3427         minutes = seconds / 60;
3428         seconds %= 60;
3429
3430         if (days > 0) {
3431                 snprintf(buf, size, "%i days %i:%02i:%02i", days,
3432                                 hours, minutes, seconds);
3433         } else if (hours > 0) {
3434                 snprintf(buf, size, "%i:%02i:%02i", hours, minutes,
3435                                 seconds);
3436         } else {
3437                 snprintf(buf, size, "%i:%02i", minutes, seconds);
3438         }
3439 }
3440
3441 static inline double get_barnum(char *buf)
3442 {
3443         char *c = buf;
3444         double barnum;
3445
3446         while (*c) {
3447                 if (*c == '\001') {
3448                         *c = ' ';
3449                 }
3450                 c++;
3451         }
3452
3453         if (sscanf(buf, "%lf", &barnum) == 0) {
3454                 ERR("reading exec value failed (perhaps it's not the "
3455                                 "correct format?)");
3456                 return -1;
3457         }
3458         if (barnum > 100.0 || barnum < 0.0) {
3459                 ERR("your exec value is not between 0 and 100, "
3460                                 "therefore it will be ignored");
3461                 return -1;
3462         }
3463         return barnum;
3464 }
3465
3466 static void generate_text_internal(char *p, int p_max_size,
3467                 struct text_object root, struct information *cur)
3468 {
3469         struct text_object *obj;
3470
3471         /* for the OBJ_top* handler */
3472         struct process **needed = 0;
3473
3474 #ifdef HAVE_ICONV
3475         char buff_in[p_max_size];
3476         buff_in[0] = 0;
3477         iconv_converting = 0;
3478 #endif
3479
3480         p[0] = 0;
3481         obj = root.next;
3482         while (obj && p_max_size > 0) {
3483                 needed = 0; // reset for top stuff
3484
3485 /* IFBLOCK jumping algorithm
3486  *
3487  * This is easier as it looks like:
3488  * - each IF checks it's condition
3489  *   - on FALSE: call DO_JUMP
3490  *   - on TRUE: don't care
3491  * - each ELSE calls DO_JUMP unconditionally
3492  * - each ENDIF is silently being ignored
3493  *
3494  * Why this works:
3495  * DO_JUMP overwrites the "obj" variable of the loop and sets it to the target
3496  * (i.e. the corresponding ELSE or ENDIF). After that, processing for the given
3497  * object can continue, free()ing stuff e.g., then the for-loop does the rest: as
3498  * regularly, "obj" is being updated to point to obj->next, so object parsing
3499  * continues right after the corresponding ELSE or ENDIF. This means that if we
3500  * find an ELSE, it's corresponding IF must not have jumped, so we need to jump
3501  * always. If we encounter an ENDIF, it's corresponding IF or ELSE has not
3502  * jumped, and there is nothing to do.
3503  */
3504 #define DO_JUMP { \
3505         DBGP2("jumping"); \
3506         obj = obj->data.ifblock.next; \
3507 }
3508
3509 #define OBJ(a) break; case OBJ_##a:
3510
3511                 switch (obj->type) {
3512                         default:
3513                                 ERR("not implemented obj type %d", obj->type);
3514                         OBJ(read_tcp) {
3515                                 int sock, received;
3516                                 struct sockaddr_in addr;
3517                                 struct hostent* he = gethostbyname(obj->data.read_tcp.host);
3518                                 if(he != NULL) {
3519                                         sock = socket(he->h_addrtype, SOCK_STREAM, 0);
3520                                         if(sock != -1) {
3521                                                 memset(&addr, 0, sizeof(addr));
3522                                                 addr.sin_family = AF_INET;
3523                                                 addr.sin_port = obj->data.read_tcp.port;
3524                                                 memcpy(&addr.sin_addr, he->h_addr, he->h_length);
3525                                                 if (connect(sock, (struct sockaddr*)&addr, sizeof(struct sockaddr)) == 0) {
3526                                                         fd_set readfds;
3527                                                         struct timeval tv;
3528                                                         FD_ZERO(&readfds);
3529                                                         FD_SET(sock, &readfds);
3530                                                         tv.tv_sec = 1;
3531                                                         tv.tv_usec = 0;
3532                                                         if(select(sock + 1, &readfds, NULL, NULL, &tv) > 0){
3533                                                                 received = recv(sock, p, p_max_size, 0);
3534                                                                 p[received] = 0;
3535                                                         }
3536                                                         close(sock);
3537                                                 } else {
3538                                                         ERR("read_tcp: Couldn't create a connection");
3539                                                 }
3540                                         }else{
3541                                                 ERR("read_tcp: Couldn't create a socket");
3542                                         }
3543                                 }else{
3544                                         ERR("read_tcp: Problem with resolving the hostname");
3545                                 }
3546                         }
3547 #ifndef __OpenBSD__
3548                         OBJ(acpitemp) {
3549                                 temp_print(p, p_max_size, get_acpi_temperature(obj->data.i), TEMP_CELSIUS);
3550                         }
3551 #endif /* !__OpenBSD__ */
3552                         OBJ(freq) {
3553                                 if (obj->a) {
3554                                         obj->a = get_freq(p, p_max_size, "%.0f", 1,
3555                                                         obj->data.cpu_index);
3556                                 }
3557                         }
3558                         OBJ(freq_g) {
3559                                 if (obj->a) {
3560 #ifndef __OpenBSD__
3561                                         obj->a = get_freq(p, p_max_size, "%'.2f", 1000,
3562                                                         obj->data.cpu_index);
3563 #else
3564                                         /* OpenBSD has no such flag (SUSv2) */
3565                                         obj->a = get_freq(p, p_max_size, "%.2f", 1000,
3566                                                         obj->data.cpu_index);
3567 #endif
3568                                 }
3569                         }
3570 #if defined(__linux__)
3571                         OBJ(voltage_mv) {
3572                                 if (obj->a) {
3573                                         obj->a = get_voltage(p, p_max_size, "%.0f", 1,
3574                                                         obj->data.cpu_index);
3575                                 }
3576                         }
3577                         OBJ(voltage_v) {
3578                                 if (obj->a) {
3579                                         obj->a = get_voltage(p, p_max_size, "%'.3f", 1000,
3580                                                         obj->data.cpu_index);
3581                                 }
3582                         }
3583
3584 #ifdef HAVE_IWLIB
3585                         OBJ(wireless_essid) {
3586                                 snprintf(p, p_max_size, "%s", obj->data.net->essid);
3587                         }
3588                         OBJ(wireless_mode) {
3589                                 snprintf(p, p_max_size, "%s", obj->data.net->mode);
3590                         }
3591                         OBJ(wireless_bitrate) {
3592                                 snprintf(p, p_max_size, "%s", obj->data.net->bitrate);
3593                         }
3594                         OBJ(wireless_ap) {
3595                                 snprintf(p, p_max_size, "%s", obj->data.net->ap);
3596                         }
3597                         OBJ(wireless_link_qual) {
3598                                 spaced_print(p, p_max_size, "%d", 4,
3599                                                 obj->data.net->link_qual);
3600                         }
3601                         OBJ(wireless_link_qual_max) {
3602                                 spaced_print(p, p_max_size, "%d", 4,
3603                                                 obj->data.net->link_qual_max);
3604                         }
3605                         OBJ(wireless_link_qual_perc) {
3606                                 if (obj->data.net->link_qual_max > 0) {
3607                                         spaced_print(p, p_max_size, "%.0f", 5,
3608                                                         (double) obj->data.net->link_qual /
3609                                                         obj->data.net->link_qual_max * 100);
3610                                 } else {
3611                                         spaced_print(p, p_max_size, "unk", 5);
3612                                 }
3613                         }
3614                         OBJ(wireless_link_bar) {
3615                                 new_bar(p, obj->a, obj->b, ((double) obj->data.net->link_qual /
3616                                                         obj->data.net->link_qual_max) * 255.0);
3617                         }
3618 #endif /* HAVE_IWLIB */
3619
3620 #endif /* __linux__ */
3621
3622 #ifndef __OpenBSD__
3623                         OBJ(adt746xcpu) {
3624                                 get_adt746x_cpu(p, p_max_size);
3625                         }
3626                         OBJ(adt746xfan) {
3627                                 get_adt746x_fan(p, p_max_size);
3628                         }
3629                         OBJ(acpifan) {
3630                                 get_acpi_fan(p, p_max_size);
3631                         }
3632                         OBJ(acpiacadapter) {
3633                                 get_acpi_ac_adapter(p, p_max_size);
3634                         }
3635                         OBJ(battery) {
3636                                 get_battery_stuff(p, p_max_size, obj->data.s, BATTERY_STATUS);
3637                         }
3638                         OBJ(battery_time) {
3639                                 get_battery_stuff(p, p_max_size, obj->data.s, BATTERY_TIME);
3640                         }
3641                         OBJ(battery_percent) {
3642                                 percent_print(p, p_max_size, get_battery_perct(obj->data.s));
3643                         }
3644                         OBJ(battery_bar) {
3645 #ifdef X11
3646                                 if(output_methods & TO_X) {
3647                                         new_bar(p, obj->a, obj->b, get_battery_perct_bar(obj->data.s));
3648                                 }else{
3649 #endif /* X11 */
3650                                         if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
3651                                         new_bar_in_shell(p, p_max_size, get_battery_perct_bar(obj->data.s) / 2.55, obj->a);
3652 #ifdef X11
3653                                 }
3654 #endif /* X11 */
3655                         }
3656                         OBJ(battery_short) {
3657                                 get_battery_short_status(p, p_max_size, obj->data.s);
3658                         }
3659 #endif /* __OpenBSD__ */
3660
3661                         OBJ(buffers) {
3662                                 human_readable(cur->buffers * 1024, p, 255);
3663                         }
3664                         OBJ(cached) {
3665                                 human_readable(cur->cached * 1024, p, 255);
3666                         }
3667                         OBJ(cpu) {
3668                                 if (obj->data.cpu_index > info.cpu_count) {
3669                                         ERR("obj->data.cpu_index %i info.cpu_count %i",
3670                                                         obj->data.cpu_index, info.cpu_count);
3671                                         CRIT_ERR("attempting to use more CPUs than you have!");
3672                                 }
3673                                 percent_print(p, p_max_size,
3674                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100.0));
3675                         }
3676 #ifdef X11
3677                         OBJ(cpugauge)
3678                                 new_gauge(p, obj->a, obj->b,
3679                                                 round_to_int(cur->cpu_usage[obj->data.cpu_index] * 255.0));
3680 #endif /* X11 */
3681                         OBJ(cpubar) {
3682 #ifdef X11
3683                                 if(output_methods & TO_X) {
3684                                         new_bar(p, obj->a, obj->b,
3685                                                 round_to_int(cur->cpu_usage[obj->data.cpu_index] * 255.0));
3686                                 }else{
3687 #endif /* X11 */
3688                                         if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
3689                                         new_bar_in_shell(p, p_max_size, round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100), obj->a);
3690 #ifdef X11
3691                                 }
3692 #endif /* X11 */
3693                         }
3694 #ifdef X11
3695                         OBJ(cpugraph) {
3696                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
3697                                                 round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100),
3698                                                 100, 1, obj->char_a, obj->char_b);
3699                         }
3700                         OBJ(loadgraph) {
3701                                 new_graph(p, obj->a, obj->b, obj->c, obj->d, cur->loadavg[0],
3702                                                 obj->e, 1, obj->char_a, obj->char_b);
3703                         }
3704                         OBJ(color) {
3705                                 new_fg(p, obj->data.l);
3706                         }
3707                         OBJ(color0) {
3708                                 new_fg(p, color0);
3709                         }
3710                         OBJ(color1) {
3711                                 new_fg(p, color1);
3712                         }
3713                         OBJ(color2) {
3714                                 new_fg(p, color2);
3715                         }
3716                         OBJ(color3) {
3717                                 new_fg(p, color3);
3718                         }
3719                         OBJ(color4) {
3720                                 new_fg(p, color4);
3721                         }
3722                         OBJ(color5) {
3723                                 new_fg(p, color5);
3724                         }
3725                         OBJ(color6) {
3726                                 new_fg(p, color6);
3727                         }
3728                         OBJ(color7) {
3729                                 new_fg(p, color7);
3730                         }
3731                         OBJ(color8) {
3732                                 new_fg(p, color8);
3733                         }
3734                         OBJ(color9) {
3735                                 new_fg(p, color9);
3736                         }
3737 #endif /* X11 */
3738                         OBJ(conky_version) {
3739                                 snprintf(p, p_max_size, "%s", VERSION);
3740                         }
3741                         OBJ(conky_build_date) {
3742                                 snprintf(p, p_max_size, "%s", BUILD_DATE);
3743                         }
3744                         OBJ(conky_build_arch) {
3745                                 snprintf(p, p_max_size, "%s", BUILD_ARCH);
3746                         }
3747 #if defined(__linux__)
3748                         OBJ(disk_protect) {
3749                                 snprintf(p, p_max_size, "%s",
3750                                                 get_disk_protect_queue(obj->data.s));
3751                         }
3752                         OBJ(i8k_version) {
3753                                 snprintf(p, p_max_size, "%s", i8k.version);
3754                         }
3755                         OBJ(i8k_bios) {
3756                                 snprintf(p, p_max_size, "%s", i8k.bios);
3757                         }
3758                         OBJ(i8k_serial) {
3759                                 snprintf(p, p_max_size, "%s", i8k.serial);
3760                         }
3761                         OBJ(i8k_cpu_temp) {
3762                                 int cpu_temp;
3763
3764                                 sscanf(i8k.cpu_temp, "%d", &cpu_temp);
3765                                 temp_print(p, p_max_size, (double)cpu_temp, TEMP_CELSIUS);
3766                         }
3767                         OBJ(i8k_left_fan_status) {
3768                                 int left_fan_status;
3769
3770                                 sscanf(i8k.left_fan_status, "%d", &left_fan_status);
3771                                 if (left_fan_status == 0) {
3772                                         snprintf(p, p_max_size, "off");
3773                                 }
3774                                 if (left_fan_status == 1) {
3775                                         snprintf(p, p_max_size, "low");
3776                                 }
3777                                 if (left_fan_status == 2) {
3778                                         snprintf(p, p_max_size, "high");
3779                                 }
3780                         }
3781                         OBJ(i8k_right_fan_status) {
3782                                 int right_fan_status;
3783
3784                                 sscanf(i8k.right_fan_status, "%d", &right_fan_status);
3785                                 if (right_fan_status == 0) {
3786                                         snprintf(p, p_max_size, "off");
3787                                 }
3788                                 if (right_fan_status == 1) {
3789                                         snprintf(p, p_max_size, "low");
3790                                 }
3791                                 if (right_fan_status == 2) {
3792                                         snprintf(p, p_max_size, "high");
3793                                 }
3794                         }
3795                         OBJ(i8k_left_fan_rpm) {
3796                                 snprintf(p, p_max_size, "%s", i8k.left_fan_rpm);
3797                         }
3798                         OBJ(i8k_right_fan_rpm) {
3799                                 snprintf(p, p_max_size, "%s", i8k.right_fan_rpm);
3800                         }
3801                         OBJ(i8k_ac_status) {
3802                                 int ac_status;
3803
3804                                 sscanf(i8k.ac_status, "%d", &ac_status);
3805                                 if (ac_status == -1) {
3806                                         snprintf(p, p_max_size, "disabled (read i8k docs)");
3807                                 }
3808                                 if (ac_status == 0) {
3809                                         snprintf(p, p_max_size, "off");
3810                                 }
3811                                 if (ac_status == 1) {
3812                                         snprintf(p, p_max_size, "on");
3813                                 }
3814                         }
3815                         OBJ(i8k_buttons_status) {
3816                                 snprintf(p, p_max_size, "%s", i8k.buttons_status);
3817                         }
3818 #if defined(IBM)
3819                         OBJ(ibm_fan) {
3820                                 get_ibm_acpi_fan(p, p_max_size);
3821                         }
3822                         OBJ(ibm_temps) {
3823                                 get_ibm_acpi_temps();
3824                                 temp_print(p, p_max_size,
3825                                            ibm_acpi.temps[obj->data.sensor], TEMP_CELSIUS);
3826                         }
3827                         OBJ(ibm_volume) {
3828                                 get_ibm_acpi_volume(p, p_max_size);
3829                         }
3830                         OBJ(ibm_brightness) {
3831                                 get_ibm_acpi_brightness(p, p_max_size);
3832                         }
3833 #endif /* IBM */
3834                         /* information from sony_laptop kernel module
3835                          * /sys/devices/platform/sony-laptop */
3836                         OBJ(sony_fanspeed) {
3837                                 get_sony_fanspeed(p, p_max_size);
3838                         }
3839                         OBJ(if_gw) {
3840                                 if (!cur->gw_info.count) {
3841                                         DO_JUMP;
3842                                 }
3843                         }
3844                         OBJ(gw_iface) {
3845                                 snprintf(p, p_max_size, "%s", cur->gw_info.iface);
3846                         }
3847                         OBJ(gw_ip) {
3848                                 snprintf(p, p_max_size, "%s", cur->gw_info.ip);
3849                         }
3850                         OBJ(laptop_mode) {
3851                                 snprintf(p, p_max_size, "%d", get_laptop_mode());
3852                         }
3853                         OBJ(pb_battery) {
3854                                 get_powerbook_batt_info(p, p_max_size, obj->data.i);
3855                         }
3856 #endif /* __linux__ */
3857 #if (defined(__FreeBSD__) || defined(__linux__))
3858                         OBJ(if_up) {
3859                                 if ((obj->data.ifblock.s)
3860                                                 && (!interface_up(obj->data.ifblock.s))) {
3861                                         DO_JUMP;
3862                                 }
3863                         }
3864 #endif
3865 #ifdef __OpenBSD__
3866                         OBJ(obsd_sensors_temp) {
3867                                 obsd_sensors.device = sensor_device;
3868                                 update_obsd_sensors();
3869                                 temp_print(p, p_max_size,
3870                                            obsd_sensors.temp[obsd_sensors.device][obj->data.sensor],
3871                                            TEMP_CELSIUS);
3872                         }
3873                         OBJ(obsd_sensors_fan) {
3874                                 obsd_sensors.device = sensor_device;
3875                                 update_obsd_sensors();
3876                                 snprintf(p, p_max_size, "%d",
3877                                                 obsd_sensors.fan[obsd_sensors.device][obj->data.sensor]);
3878                         }
3879                         OBJ(obsd_sensors_volt) {
3880                                 obsd_sensors.device = sensor_device;
3881                                 update_obsd_sensors();
3882                                 snprintf(p, p_max_size, "%.2f",
3883                                                 obsd_sensors.volt[obsd_sensors.device][obj->data.sensor]);
3884                         }
3885                         OBJ(obsd_vendor) {
3886                                 get_obsd_vendor(p, p_max_size);
3887                         }
3888                         OBJ(obsd_product) {
3889                                 get_obsd_product(p, p_max_size);
3890                         }
3891 #endif /* __OpenBSD__ */
3892 #ifdef X11
3893                         OBJ(font) {
3894                                 new_font(p, obj->data.s);
3895                         }
3896 #endif /* X11 */
3897                         /* TODO: move this correction from kB to kB/s elsewhere
3898                          * (or get rid of it??) */
3899                         OBJ(diskio) {
3900                                 human_readable((obj->data.diskio->current / update_interval) * 1024LL,
3901                                                 p, p_max_size);
3902                         }
3903                         OBJ(diskio_write) {
3904                                 human_readable((obj->data.diskio->current_write / update_interval) * 1024LL,
3905                                                 p, p_max_size);
3906                         }
3907                         OBJ(diskio_read) {
3908                                 human_readable((obj->data.diskio->current_read / update_interval) * 1024LL,
3909                                                 p, p_max_size);
3910                         }
3911 #ifdef X11
3912                         OBJ(diskiograph) {
3913                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
3914                                           obj->data.diskio->current, obj->e, 1, obj->char_a, obj->char_b);
3915                         }
3916                         OBJ(diskiograph_read) {
3917                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
3918                                           obj->data.diskio->current_read, obj->e, 1, obj->char_a, obj->char_b);
3919                         }
3920                         OBJ(diskiograph_write) {
3921                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
3922                                           obj->data.diskio->current_write, obj->e, 1, obj->char_a, obj->char_b);
3923                         }
3924 #endif /* X11 */
3925                         OBJ(downspeed) {
3926                                 human_readable(obj->data.net->recv_speed, p, 255);
3927                         }
3928                         OBJ(downspeedf) {
3929                                 spaced_print(p, p_max_size, "%.1f", 8,
3930                                                 obj->data.net->recv_speed / 1024.0);
3931                         }
3932 #ifdef X11
3933                         OBJ(downspeedgraph) {
3934                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
3935                                         obj->data.net->recv_speed / 1024.0, obj->e, 1, obj->char_a, obj->char_b);
3936                         }
3937 #endif /* X11 */
3938                         OBJ(else) {
3939                                 /* Since we see you, you're if has not jumped.
3940                                  * Do Ninja jump here: without leaving traces.
3941                                  * This is to prevent us from stale jumped flags.
3942                                  */
3943                                 obj = obj->data.ifblock.next;
3944                                 continue;
3945                         }
3946                         OBJ(endif) {
3947                                 /* harmless object, just ignore */
3948                         }
3949 #ifdef HAVE_POPEN
3950                         OBJ(addr) {
3951                                 if ((obj->data.net->addr.sa_data[2] & 255) == 0
3952                                                 && (obj->data.net->addr.sa_data[3] & 255) == 0
3953                                                 && (obj->data.net->addr.sa_data[4] & 255) == 0
3954                                                 && (obj->data.net->addr.sa_data[5] & 255) == 0) {
3955                                         snprintf(p, p_max_size, "No Address");
3956                                 } else {
3957                                         snprintf(p, p_max_size, "%u.%u.%u.%u",
3958                                                 obj->data.net->addr.sa_data[2] & 255,
3959                                                 obj->data.net->addr.sa_data[3] & 255,
3960                                                 obj->data.net->addr.sa_data[4] & 255,
3961                                                 obj->data.net->addr.sa_data[5] & 255);
3962                                 }
3963                         }
3964 #if defined(__linux__)
3965                         OBJ(addrs) {
3966                                 if(NULL != obj->data.net->addrs && strlen(obj->data.net->addrs) > 2)
3967                                 {
3968                                         obj->data.net->addrs[strlen(obj->data.net->addrs) - 2] = 0; /* remove ", " from end of string */
3969                                         strcpy(p, obj->data.net->addrs);
3970                                 }
3971                                 else
3972                                         strcpy(p, "0.0.0.0");
3973            }
3974 #endif /* __linux__ */
3975 #if defined(IMLIB2) && defined(X11)
3976                         OBJ(image) {
3977                                 /* doesn't actually draw anything, just queues it omp.  the
3978                                  * image will get drawn after the X event loop */
3979                                 cimlib_add_image(obj->data.s);
3980                         }
3981 #endif /* IMLIB2 */
3982                         OBJ(eval) {
3983                                 struct information *tmp_info;
3984                                 struct text_object subroot, subroot2;
3985
3986                                 tmp_info = malloc(sizeof(struct information));
3987                                 memcpy(tmp_info, cur, sizeof(struct information));
3988                                 parse_conky_vars(&subroot, obj->data.s, p, tmp_info);
3989                                 DBGP("evaluated '%s' to '%s'", obj->data.s, p);
3990                                 parse_conky_vars(&subroot2, p, p, tmp_info);
3991
3992                                 free_text_objects(&subroot, 1);
3993                                 free_text_objects(&subroot2, 1);
3994                                 free(tmp_info);
3995                         }
3996                         OBJ(exec) {
3997                                 read_exec(obj->data.s, p, text_buffer_size);
3998                                 remove_deleted_chars(p);
3999                         }
4000                         OBJ(execp) {
4001                                 struct information *tmp_info;
4002                                 struct text_object subroot;
4003
4004                                 read_exec(obj->data.s, p, text_buffer_size);
4005
4006                                 tmp_info = malloc(sizeof(struct information));
4007                                 memcpy(tmp_info, cur, sizeof(struct information));
4008                                 parse_conky_vars(&subroot, p, p, tmp_info);
4009
4010                                 free_text_objects(&subroot, 1);
4011                                 free(tmp_info);
4012                         }
4013 #ifdef X11
4014                         OBJ(execgauge) {
4015                                 double barnum;
4016
4017                                 read_exec(obj->data.s, p, text_buffer_size);
4018                                 barnum = get_barnum(p); /*using the same function*/
4019
4020                                 if (barnum >= 0.0) {
4021                                         barnum /= 100;
4022                                         new_gauge(p, obj->a, obj->b, round_to_int(barnum * 255.0));
4023                                 }
4024                         }
4025 #endif /* X11 */
4026                         OBJ(execbar) {
4027                                 double barnum;
4028
4029                                 read_exec(obj->data.s, p, text_buffer_size);
4030                                 barnum = get_barnum(p);
4031
4032                                 if (barnum >= 0.0) {
4033 #ifdef X11
4034                                         if(output_methods & TO_X) {
4035                                                 barnum /= 100;
4036                                                 new_bar(p, obj->a, obj->b, round_to_int(barnum * 255.0));
4037                                         }else{
4038 #endif /* X11 */
4039                                                 if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
4040                                                 new_bar_in_shell(p, p_max_size, barnum, obj->a);
4041 #ifdef X11
4042                                         }
4043 #endif /* X11 */
4044                                 }
4045                         }
4046 #ifdef X11
4047                         OBJ(execgraph) {
4048                                 char showaslog = FALSE;
4049                                 char tempgrad = FALSE;
4050                                 double barnum;
4051                                 char *cmd = obj->data.s;
4052
4053                                 if (strncasecmp(obj->data.execi.cmd, LOGGRAPH" ", strlen(LOGGRAPH" ")) == EQUAL) {
4054                                         showaslog = TRUE;
4055                                         cmd = cmd + strlen(LOGGRAPH" ") * sizeof(char);
4056                                 } else if(strncasecmp(obj->data.s, NORMGRAPH" ", strlen(NORMGRAPH" ")) == EQUAL) {
4057                                         cmd = cmd + strlen(NORMGRAPH" ") * sizeof(char);
4058                                 }
4059                                 if (strstr(cmd, " "TEMPGRAD) && strlen(cmd) > strlen(" "TEMPGRAD)) {
4060                                         tempgrad = TRUE;
4061                                         cmd += strlen(" "TEMPGRAD);
4062                                 }
4063                                 read_exec(cmd, p, text_buffer_size);
4064                                 barnum = get_barnum(p);
4065
4066                                 if (barnum >= 0.0) {
4067                                         new_graph(p, obj->a, obj->b, obj->c, obj->d, round_to_int(barnum),
4068                                                         100, 1, showaslog, tempgrad);
4069                                 }
4070                         }
4071 #endif /* X11 */
4072                         OBJ(execibar) {
4073                                 if (current_update_time - obj->data.execi.last_update
4074                                                 >= obj->data.execi.interval) {
4075                                         double barnum;
4076
4077                                         read_exec(obj->data.execi.cmd, p, text_buffer_size);
4078                                         barnum = get_barnum(p);
4079
4080                                         if (barnum >= 0.0) {
4081                                                 obj->f = barnum;
4082                                         }
4083                                         obj->data.execi.last_update = current_update_time;
4084                                 }
4085 #ifdef X11
4086                                 if(output_methods & TO_X) {
4087                                         new_bar(p, obj->a, obj->b, round_to_int(obj->f * 2.55));
4088                                 } else {
4089 #endif /* X11 */
4090                                         if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
4091                                         new_bar_in_shell(p, p_max_size, round_to_int(obj->f), obj->a);
4092 #ifdef X11
4093                                 }
4094 #endif /* X11 */
4095                         }
4096 #ifdef X11
4097                         OBJ(execigraph) {
4098                                 if (current_update_time - obj->data.execi.last_update
4099                                                 >= obj->data.execi.interval) {
4100                                         double barnum;
4101                                         char showaslog = FALSE;
4102                                         char tempgrad = FALSE;
4103                                         char *cmd = obj->data.execi.cmd;
4104
4105                                         if (strncasecmp(obj->data.execi.cmd, LOGGRAPH" ", strlen(LOGGRAPH" ")) == EQUAL) {
4106                                                 showaslog = TRUE;
4107                                                 cmd = cmd + strlen(LOGGRAPH" ") * sizeof(char);
4108                                         } else if(strncasecmp(obj->data.s, NORMGRAPH" ", strlen(NORMGRAPH" ")) == EQUAL) {
4109                                                 cmd = cmd + strlen(NORMGRAPH" ") * sizeof(char);
4110                                         }
4111                                         if (strstr(cmd, " "TEMPGRAD) && strlen(cmd) > strlen(" "TEMPGRAD)) {
4112                                                 tempgrad = TRUE;
4113                                                 cmd += strlen(" "TEMPGRAD);
4114                                         }
4115                                         obj->char_a = showaslog;
4116                                         obj->char_b = tempgrad;
4117                                         read_exec(cmd, p, text_buffer_size);
4118                                         barnum = get_barnum(p);
4119
4120                                         if (barnum >= 0.0) {
4121                                                 obj->f = barnum;
4122                                         }
4123                                         obj->data.execi.last_update = current_update_time;
4124                                 }
4125                                 new_graph(p, obj->a, obj->b, obj->c, obj->d, (int) (obj->f), 100, 1, obj->char_a, obj->char_b);
4126                         }
4127                         OBJ(execigauge) {
4128                                 if (current_update_time - obj->data.execi.last_update
4129                                                 >= obj->data.execi.interval) {
4130                                         double barnum;
4131
4132                                         read_exec(obj->data.execi.cmd, p, text_buffer_size);
4133                                         barnum = get_barnum(p);
4134
4135                                         if (barnum >= 0.0) {
4136                                                 obj->f = 255 * barnum / 100.0;
4137                                         }
4138                                         obj->data.execi.last_update = current_update_time;
4139                                 }
4140                                 new_gauge(p, obj->a, obj->b, round_to_int(obj->f));
4141                         }
4142 #endif /* X11 */
4143                         OBJ(execi) {
4144                                 if (current_update_time - obj->data.execi.last_update
4145                                                 >= obj->data.execi.interval
4146                                                 && obj->data.execi.interval != 0) {
4147                                         read_exec(obj->data.execi.cmd, obj->data.execi.buffer,
4148                                                 text_buffer_size);
4149                                         obj->data.execi.last_update = current_update_time;
4150                                 }
4151                                 snprintf(p, text_buffer_size, "%s", obj->data.execi.buffer);
4152                         }
4153                         OBJ(execpi) {
4154                                 struct text_object subroot;
4155                                 struct information *tmp_info =
4156                                         malloc(sizeof(struct information));
4157                                 memcpy(tmp_info, cur, sizeof(struct information));
4158
4159                                 if (current_update_time - obj->data.execi.last_update
4160                                                 < obj->data.execi.interval
4161                                                 || obj->data.execi.interval == 0) {
4162                                         parse_conky_vars(&subroot, obj->data.execi.buffer, p, tmp_info);
4163                                 } else {
4164                                         char *output = obj->data.execi.buffer;
4165                                         FILE *fp = popen(obj->data.execi.cmd, "r");
4166                                         int length = fread(output, 1, text_buffer_size, fp);
4167
4168                                         pclose(fp);
4169
4170                                         output[length] = '\0';
4171                                         if (length > 0 && output[length - 1] == '\n') {
4172                                                 output[length - 1] = '\0';
4173                                         }
4174
4175                                         parse_conky_vars(&subroot, obj->data.execi.buffer, p, tmp_info);
4176                                         obj->data.execi.last_update = current_update_time;
4177                                 }
4178                                 free_text_objects(&subroot, 1);
4179                                 free(tmp_info);
4180                         }
4181                         OBJ(texeci) {
4182                                 if (!obj->data.texeci.p_timed_thread) {
4183                                         obj->data.texeci.p_timed_thread =
4184                                                 timed_thread_create(&threaded_exec,
4185                                                 (void *) obj, obj->data.texeci.interval * 1000000);
4186                                         if (!obj->data.texeci.p_timed_thread) {
4187                                                 ERR("Error creating texeci timed thread");
4188                                         }
4189                                         timed_thread_register(obj->data.texeci.p_timed_thread,
4190                                                 &obj->data.texeci.p_timed_thread);
4191                                         if (timed_thread_run(obj->data.texeci.p_timed_thread)) {
4192                                                 ERR("Error running texeci timed thread");
4193                                         }
4194                                 } else {
4195                                         timed_thread_lock(obj->data.texeci.p_timed_thread);
4196                                         snprintf(p, text_buffer_size, "%s", obj->data.texeci.buffer);
4197                                         timed_thread_unlock(obj->data.texeci.p_timed_thread);
4198                                 }
4199                         }
4200 #endif /* HAVE_POPEN */
4201                         OBJ(imap_unseen) {
4202                                 struct mail_s *mail = ensure_mail_thread(obj, imap_thread, "imap");
4203
4204                                 if (mail && mail->p_timed_thread) {
4205                                         timed_thread_lock(mail->p_timed_thread);
4206                                         snprintf(p, p_max_size, "%lu", mail->unseen);
4207                                         timed_thread_unlock(mail->p_timed_thread);
4208                                 }
4209                         }
4210                         OBJ(imap_messages) {
4211                                 struct mail_s *mail = ensure_mail_thread(obj, imap_thread, "imap");
4212
4213                                 if (mail && mail->p_timed_thread) {
4214                                         timed_thread_lock(mail->p_timed_thread);
4215                                         snprintf(p, p_max_size, "%lu", mail->messages);
4216                                         timed_thread_unlock(mail->p_timed_thread);
4217                                 }
4218                         }
4219                         OBJ(pop3_unseen) {
4220                                 struct mail_s *mail = ensure_mail_thread(obj, pop3_thread, "pop3");
4221
4222                                 if (mail && mail->p_timed_thread) {
4223                                         timed_thread_lock(mail->p_timed_thread);
4224                                         snprintf(p, p_max_size, "%lu", mail->unseen);
4225                                         timed_thread_unlock(mail->p_timed_thread);
4226                                 }
4227                         }
4228                         OBJ(pop3_used) {
4229                                 struct mail_s *mail = ensure_mail_thread(obj, pop3_thread, "pop3");
4230
4231                                 if (mail && mail->p_timed_thread) {
4232                                         timed_thread_lock(mail->p_timed_thread);
4233                                         snprintf(p, p_max_size, "%.1f",
4234                                                 mail->used / 1024.0 / 1024.0);
4235                                         timed_thread_unlock(mail->p_timed_thread);
4236                                 }
4237                         }
4238                         OBJ(fs_bar) {
4239                                 if (obj->data.fs != NULL) {
4240                                         if (obj->data.fs->size == 0) {
4241 #ifdef X11
4242                                                 if(output_methods & TO_X) {
4243                                                         new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h, 255);
4244                                                 }else{
4245 #endif /* X11 */
4246                                                         if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
4247                                                         new_bar_in_shell(p, p_max_size, 100, obj->data.fsbar.w);
4248 #ifdef X11
4249                                                 }
4250 #endif /* X11 */
4251                                         } else {
4252 #ifdef X11
4253                                                 if(output_methods & TO_X) {
4254                                                         new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h,
4255                                                                 (int) (255 - obj->data.fsbar.fs->avail * 255 /
4256                                                                 obj->data.fs->size));
4257                                                 }else{
4258 #endif /* X11 */
4259                                                         if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
4260                                                         new_bar_in_shell(p, p_max_size,
4261                                                                 (int) (100 - obj->data.fsbar.fs->avail * 100 / obj->data.fs->size), obj->data.fsbar.w);
4262 #ifdef X11
4263                                                 }
4264 #endif /* X11 */
4265                                         }
4266                                 }
4267                         }
4268                         OBJ(fs_free) {
4269                                 if (obj->data.fs != NULL) {
4270                                         human_readable( (obj->data.fs->free ? obj->data.fs->free :
4271                                                                 obj->data.fs->avail), p, 255);
4272                                 }
4273                         }
4274                         OBJ(fs_free_perc) {
4275                                 if (obj->data.fs != NULL) {
4276                                         int val = 0;
4277
4278                                         if (obj->data.fs->size) {
4279                                                 val = (obj->data.fs->free ? obj->data.fs->free :
4280                                                                 obj->data.fs->avail) * 100 /
4281                                                         obj->data.fs->size;
4282                                         }
4283
4284                                         percent_print(p, p_max_size, val);
4285                                 }
4286                         }
4287                         OBJ(fs_size) {
4288                                 if (obj->data.fs != NULL) {
4289                                         human_readable(obj->data.fs->size, p, 255);
4290                                 }
4291                         }
4292                         OBJ(fs_type) {
4293                                 if (obj->data.fs != NULL)
4294                                         snprintf(p, p_max_size, "%s", obj->data.fs->type);
4295                         }
4296                         OBJ(fs_used) {
4297                                 if (obj->data.fs != NULL) {
4298                                         human_readable(obj->data.fs->size - (obj->data.fs->free
4299                                                 ? obj->data.fs->free : obj->data.fs->avail), p, 255);
4300                                 }
4301                         }
4302                         OBJ(fs_bar_free) {
4303                                 if (obj->data.fs != NULL) {
4304                                         if (obj->data.fs->size == 0) {
4305 #ifdef X11
4306                                                 if(output_methods & TO_X) {
4307                                                         new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h, 255);
4308                                                 }else{
4309 #endif /* X11 */
4310                                                         if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
4311                                                         new_bar_in_shell(p, p_max_size, 100, obj->data.fsbar.w);
4312 #ifdef X11
4313                                                 }
4314 #endif /* X11 */
4315                                         } else {
4316 #ifdef X11
4317                                                 if(output_methods & TO_X) {
4318                                                         new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h,
4319                                                                 (int) (obj->data.fsbar.fs->avail * 255 /
4320                                                                 obj->data.fs->size));
4321                                                 }else{
4322 #endif /* X11 */
4323                                                         if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
4324                                                         new_bar_in_shell(p, p_max_size,
4325                                                                 (int) (obj->data.fsbar.fs->avail * 100 / obj->data.fs->size), obj->data.fsbar.w);
4326 #ifdef X11
4327                                                 }
4328 #endif /* X11 */
4329                                         }
4330                                 }
4331                         }
4332                         OBJ(fs_used_perc) {
4333                                 if (obj->data.fs != NULL) {
4334                                         int val = 0;
4335
4336                                         if (obj->data.fs->size) {
4337                                                 val = (obj->data.fs->free ? obj->data.fs->free :
4338                                                                 obj->data.fs->avail) * 100 /
4339                                                         obj->data.fs->size;
4340                                         }
4341
4342                                         percent_print(p, p_max_size, 100 - val);
4343                                 }
4344                         }
4345                         OBJ(loadavg) {
4346                                 float *v = info.loadavg;
4347
4348                                 if (obj->data.loadavg[2]) {
4349                                         snprintf(p, p_max_size, "%.2f %.2f %.2f",
4350                                                 v[obj->data.loadavg[0] - 1],
4351                                                 v[obj->data.loadavg[1] - 1],
4352                                                 v[obj->data.loadavg[2] - 1]);
4353                                 } else if (obj->data.loadavg[1]) {
4354                                         snprintf(p, p_max_size, "%.2f %.2f",
4355                                                 v[obj->data.loadavg[0] - 1],
4356                                                 v[obj->data.loadavg[1] - 1]);
4357                                 } else if (obj->data.loadavg[0]) {
4358                                         snprintf(p, p_max_size, "%.2f",
4359                                                 v[obj->data.loadavg[0] - 1]);
4360                                 }
4361                         }
4362                         OBJ(goto) {
4363                                 new_goto(p, obj->data.i);
4364                         }
4365                         OBJ(tab) {
4366                                 new_tab(p, obj->data.pair.a, obj->data.pair.b);
4367                         }
4368 #ifdef X11
4369                         OBJ(hr) {
4370                                 new_hr(p, obj->data.i);
4371                         }
4372 #endif
4373                         OBJ(nameserver) {
4374                                 if (cur->nameserver_info.nscount > obj->data.i)
4375                                         snprintf(p, p_max_size, "%s",
4376                                                         cur->nameserver_info.ns_list[obj->data.i]);
4377                         }
4378 #ifdef EVE
4379                         OBJ(eve) {
4380                                 char *skill = eve(obj->data.eve.userid, obj->data.eve.apikey, obj->data.eve.charid);
4381                                 snprintf(p, p_max_size, "%s", skill);
4382                         }
4383 #endif
4384 #ifdef RSS
4385                         OBJ(rss) {
4386                                 PRSS *data = get_rss_info(obj->data.rss.uri,
4387                                         obj->data.rss.delay);
4388                                 char *str;
4389
4390                                 if (data == NULL) {
4391                                         snprintf(p, p_max_size, "prss: Error reading RSS data\n");
4392                                 } else {
4393                                         if (strcmp(obj->data.rss.action, "feed_title") == EQUAL) {
4394                                                 str = data->title;
4395                                                 // remove trailing new line if one exists
4396                                                 if (str[strlen(str) - 1] == '\n') {
4397                                                         str[strlen(str) - 1] = 0;
4398                                                 }
4399                                                 snprintf(p, p_max_size, "%s", str);
4400                                         } else if (strcmp(obj->data.rss.action, "item_title") == EQUAL) {
4401                                                 if (obj->data.rss.act_par < data->item_count) {
4402                                                         str = data->items[obj->data.rss.act_par].title;
4403                                                         // remove trailing new line if one exists
4404                                                         if (str[strlen(str) - 1] == '\n') {
4405                                                                 str[strlen(str) - 1] = 0;
4406                                                         }
4407                                                         snprintf(p, p_max_size, "%s", str);
4408                                                 }
4409                                         } else if (strcmp(obj->data.rss.action, "item_desc") == EQUAL) {
4410                                                 if (obj->data.rss.act_par < data->item_count) {
4411                                                         str =
4412                                                                 data->items[obj->data.rss.act_par].description;
4413                                                         // remove trailing new line if one exists
4414                                                         if (str[strlen(str) - 1] == '\n') {
4415                                                                 str[strlen(str) - 1] = 0;
4416                                                         }
4417                                                         snprintf(p, p_max_size, "%s", str);
4418                                                 }
4419                                         } else if (strcmp(obj->data.rss.action, "item_titles") == EQUAL) {
4420                                                 if (data->item_count > 0) {
4421                                                         int itmp;
4422                                                         int show;
4423                                                         //'tmpspaces' is a string with spaces too be placed in front of each title
4424                                                         char *tmpspaces = malloc(obj->data.rss.nrspaces + 1);
4425                                                         memset(tmpspaces, ' ', obj->data.rss.nrspaces);
4426                                                         tmpspaces[obj->data.rss.nrspaces]=0;
4427
4428                                                         p[0] = 0;
4429
4430                                                         if (obj->data.rss.act_par > data->item_count) {
4431                                                                 show = data->item_count;
4432                                                         } else {
4433                                                                 show = obj->data.rss.act_par;
4434                                                         }
4435                                                         for (itmp = 0; itmp < show; itmp++) {
4436                                                                 PRSS_Item *item = &data->items[itmp];
4437
4438                                                                 str = item->title;
4439                                                                 if (str) {
4440                                                                         // don't add new line before first item
4441                                                                         if (itmp > 0) {
4442                                                                                 strncat(p, "\n", p_max_size);
4443                                                                         }
4444                                                                         /* remove trailing new line if one exists,
4445                                                                          * we have our own */
4446                                                                         if (str[strlen(str) - 1] == '\n') {
4447                                                                                 str[strlen(str) - 1] = 0;
4448                                                                         }
4449                                                                         strncat(p, tmpspaces, p_max_size);
4450                                                                         strncat(p, str, p_max_size);
4451                                                                 }
4452                                                         }
4453                                                         free(tmpspaces);
4454                                                 }
4455                                         }
4456                                 }
4457                         }
4458 #endif
4459 #ifdef HAVE_LUA
4460                         OBJ(lua) {
4461                                 char *str = llua_getstring(obj->data.s);
4462                                 if (str) {
4463                                         snprintf(p, p_max_size, "%s", str);
4464                                         free(str);
4465                                 }
4466                         }
4467                         OBJ(lua_parse) {
4468                                 char *str = llua_getstring(obj->data.s);
4469                                 if (str) {
4470                                         struct information *tmp_info;
4471                                         struct text_object subroot;
4472
4473                                         tmp_info = malloc(sizeof(struct information));
4474                                         memcpy(tmp_info, cur, sizeof(struct information));
4475                                         parse_conky_vars(&subroot, str, p, tmp_info);
4476
4477                                         free_text_objects(&subroot, 1);
4478                                         free(tmp_info);
4479                                         free(str);
4480                                 }
4481                         }
4482                         OBJ(lua_read_parse) {
4483                                 struct information *tmp_info;
4484                                 struct text_object subroot, subroot2;
4485                                 char func[64];
4486                                 char *text, *str;
4487                                 sscanf(obj->data.s, "%64s", func);
4488                                 text = obj->data.s + strlen(func) + 1;
4489
4490                                 tmp_info = malloc(sizeof(struct information));
4491                                 memcpy(tmp_info, cur, sizeof(struct information));
4492                                 parse_conky_vars(&subroot, text, p, tmp_info);
4493                                 DBGP("evaluated '%s' to '%s'", text, p);
4494
4495                                 str = llua_getstring_read(func, p);
4496                                 if (str) {
4497                                         parse_conky_vars(&subroot2, str, p, tmp_info);
4498                                         DBGP("evaluated '%s' to '%s'", str, p);
4499
4500                                         free(str);
4501                                         free_text_objects(&subroot2, 1);
4502                                 }
4503                                 free_text_objects(&subroot, 1);
4504                                 free(tmp_info);
4505                         }
4506                         OBJ(lua_bar) {
4507                                 int per;
4508                                 if (llua_getinteger(obj->data.s, &per)) {
4509 #ifdef X11
4510                                         if(output_methods & TO_X) {
4511                                                 new_bar(p, obj->a, obj->b, (per/100.0 * 255));
4512                                         } else {
4513 #endif /* X11 */
4514                                                 if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
4515                                                 new_bar_in_shell(p, p_max_size, per, obj->a);
4516 #ifdef X11
4517                                         }
4518 #endif /* X11 */
4519                                 }
4520                         }
4521 #ifdef X11
4522                         OBJ(lua_graph) {
4523                                 int per;
4524                                 if (llua_getinteger(obj->data.s, &per)) {
4525                                         new_graph(p, obj->a, obj->b, obj->c, obj->d,
4526                                                         (per/100.0 * 255), 100, 1, obj->char_a, obj->char_b);
4527                                 }
4528                         }
4529                         OBJ(lua_gauge) {
4530                                 int per;
4531                                 if (llua_getinteger(obj->data.s, &per)) {
4532                                         new_gauge(p, obj->a, obj->b, (per/100.0 * 255));
4533                                 }
4534                         }
4535 #endif /* X11 */
4536 #endif /* HAVE_LUA */
4537 #ifdef HDDTEMP
4538                         OBJ(hddtemp) {
4539                                 char *endptr, unit;
4540                                 long val;
4541                                 if (obj->data.hddtemp.update_time < current_update_time - 30) {
4542                                         if (obj->data.hddtemp.temp)
4543                                                 free(obj->data.hddtemp.temp);
4544                                         obj->data.hddtemp.temp = get_hddtemp_info(obj->data.hddtemp.dev,
4545                                                         obj->data.hddtemp.addr, obj->data.hddtemp.port);
4546                                         obj->data.hddtemp.update_time = current_update_time;
4547                                 }
4548                                 if (!obj->data.hddtemp.temp) {
4549                                         snprintf(p, p_max_size, "N/A");
4550                                 } else {
4551                                         val = strtol(obj->data.hddtemp.temp + 1, &endptr, 10);
4552                                         unit = obj->data.hddtemp.temp[0];
4553
4554                                         if (*endptr != '\0')
4555                                                 snprintf(p, p_max_size, "N/A");
4556                                         else if (unit == 'C')
4557                                                 temp_print(p, p_max_size, (double)val, TEMP_CELSIUS);
4558                                         else if (unit == 'F')
4559                                                 temp_print(p, p_max_size, (double)val, TEMP_FAHRENHEIT);
4560                                         else
4561                                                 snprintf(p, p_max_size, "N/A");
4562                                 }
4563                         }
4564 #endif
4565                         OBJ(offset) {
4566                                 new_offset(p, obj->data.i);
4567                         }
4568                         OBJ(voffset) {
4569                                 new_voffset(p, obj->data.i);
4570                         }
4571 #ifdef __linux__
4572                         OBJ(i2c) {
4573                                 double r;
4574
4575                                 r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
4576                                         obj->data.sysfs.devtype, obj->data.sysfs.type);
4577
4578                                 r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
4579
4580                                 if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
4581                                         temp_print(p, p_max_size, r, TEMP_CELSIUS);
4582                                 } else if (r >= 100.0 || r == 0) {
4583                                         snprintf(p, p_max_size, "%d", (int) r);
4584                                 } else {
4585                                         snprintf(p, p_max_size, "%.1f", r);
4586                                 }
4587                         }
4588                         OBJ(platform) {
4589                                 double r;
4590
4591                                 r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
4592                                         obj->data.sysfs.devtype, obj->data.sysfs.type);
4593
4594                                 r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
4595
4596                                 if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
4597                                         temp_print(p, p_max_size, r, TEMP_CELSIUS);
4598                                 } else if (r >= 100.0 || r == 0) {
4599                                         snprintf(p, p_max_size, "%d", (int) r);
4600                                 } else {
4601                                         snprintf(p, p_max_size, "%.1f", r);
4602                                 }
4603                         }
4604                         OBJ(hwmon) {
4605                                 double r;
4606
4607                                 r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
4608                                         obj->data.sysfs.devtype, obj->data.sysfs.type);
4609
4610                                 r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
4611
4612                                 if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
4613                                         temp_print(p, p_max_size, r, TEMP_CELSIUS);
4614                                 } else if (r >= 100.0 || r == 0) {
4615                                         snprintf(p, p_max_size, "%d", (int) r);
4616                                 } else {
4617                                         snprintf(p, p_max_size, "%.1f", r);
4618                                 }
4619                         }
4620 #endif /* __linux__ */
4621                         OBJ(alignr) {
4622                                 new_alignr(p, obj->data.i);
4623                         }
4624                         OBJ(alignc) {
4625                                 new_alignc(p, obj->data.i);
4626                         }
4627                         OBJ(if_empty) {
4628                                 char buf[max_user_text];
4629                                 struct information *tmp_info =
4630                                         malloc(sizeof(struct information));
4631                                 memcpy(tmp_info, cur, sizeof(struct information));
4632                                 generate_text_internal(buf, max_user_text,
4633                                                        *obj->sub, tmp_info);
4634
4635                                 if (strlen(buf) != 0) {
4636                                         DO_JUMP;
4637                                 }
4638                                 free(tmp_info);
4639                         }
4640                         OBJ(if_match) {
4641                                 char expression[max_user_text];
4642                                 int val;
4643                                 struct information *tmp_info;
4644
4645                                 tmp_info = malloc(sizeof(struct information));
4646                                 memcpy(tmp_info, cur, sizeof(struct information));
4647                                 generate_text_internal(expression, max_user_text,
4648                                                        *obj->sub, tmp_info);
4649                                 DBGP("parsed arg into '%s'", expression);
4650
4651                                 val = compare(expression);
4652                                 if (val == -2) {
4653                                         ERR("compare failed for expression '%s'",
4654                                                         expression);
4655                                 } else if (!val) {
4656                                         DO_JUMP;
4657                                 }
4658                                 free(tmp_info);
4659                         }
4660                         OBJ(if_existing) {
4661                                 if (obj->data.ifblock.str
4662                                     && !check_contains(obj->data.ifblock.s,
4663                                                        obj->data.ifblock.str)) {
4664                                         DO_JUMP;
4665                                 } else if (obj->data.ifblock.s
4666                                            && access(obj->data.ifblock.s, F_OK)) {
4667                                         DO_JUMP;
4668                                 }
4669                         }
4670                         OBJ(if_mounted) {
4671                                 if ((obj->data.ifblock.s)
4672                                                 && (!check_mount(obj->data.ifblock.s))) {
4673                                         DO_JUMP;
4674                                 }
4675                         }
4676                         OBJ(if_running) {
4677                                 if ((obj->data.ifblock.s) && system(obj->data.ifblock.s)) {
4678                                         DO_JUMP;
4679                                 }
4680                         }
4681 #if defined(__linux__)
4682                         OBJ(ioscheduler) {
4683                                 snprintf(p, p_max_size, "%s", get_ioscheduler(obj->data.s));
4684                         }
4685 #endif
4686                         OBJ(kernel) {
4687                                 snprintf(p, p_max_size, "%s", cur->uname_s.release);
4688                         }
4689                         OBJ(machine) {
4690                                 snprintf(p, p_max_size, "%s", cur->uname_s.machine);
4691                         }
4692
4693                         /* memory stuff */
4694                         OBJ(mem) {
4695                                 human_readable(cur->mem * 1024, p, 255);
4696                         }
4697                         OBJ(memeasyfree) {
4698                                 human_readable(cur->memeasyfree * 1024, p, 255);
4699                         }
4700                         OBJ(memfree) {
4701                                 human_readable(cur->memfree * 1024, p, 255);
4702                         }
4703                         OBJ(memmax) {
4704                                 human_readable(cur->memmax * 1024, p, 255);
4705                         }
4706                         OBJ(memperc) {
4707                                 if (cur->memmax)
4708                                         percent_print(p, p_max_size, cur->mem * 100 / cur->memmax);
4709                         }
4710 #ifdef X11
4711                         OBJ(memgauge){
4712                                 new_gauge(p, obj->data.pair.a, obj->data.pair.b,
4713                                         cur->memmax ? (cur->mem * 255) / (cur->memmax) : 0);
4714                         }
4715 #endif /* X11 */
4716                         OBJ(membar) {
4717 #ifdef X11
4718                                 if(output_methods & TO_X) {
4719                                         new_bar(p, obj->data.pair.a, obj->data.pair.b,
4720                                                 cur->memmax ? (cur->mem * 255) / (cur->memmax) : 0);
4721                                 }else{
4722 #endif /* X11 */
4723                                         if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
4724                                         new_bar_in_shell(p, p_max_size, cur->memmax ? (cur->mem * 100) / (cur->memmax) : 0, obj->data.pair.a);
4725 #ifdef X11
4726                                 }
4727 #endif /* X11 */
4728                         }
4729 #ifdef X11
4730                         OBJ(memgraph) {
4731                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
4732                                         cur->memmax ? (cur->mem * 100.0) / (cur->memmax) : 0.0,
4733                                         100, 1, obj->char_a, obj->char_b);
4734                         }
4735 #endif /* X11 */
4736                         /* mixer stuff */
4737                         OBJ(mixer) {
4738                                 percent_print(p, p_max_size, mixer_get_avg(obj->data.l));
4739                         }
4740                         OBJ(mixerl) {
4741                                 percent_print(p, p_max_size, mixer_get_left(obj->data.l));
4742                         }
4743                         OBJ(mixerr) {
4744                                 percent_print(p, p_max_size, mixer_get_right(obj->data.l));
4745                         }
4746 #ifdef X11
4747                         OBJ(mixerbar) {
4748                                 new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
4749                                         mixer_to_255(obj->data.mixerbar.l,mixer_get_avg(obj->data.mixerbar.l)));
4750                         }
4751                         OBJ(mixerlbar) {
4752                                 new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
4753                                         mixer_to_255(obj->data.mixerbar.l,mixer_get_left(obj->data.mixerbar.l)));
4754                         }
4755                         OBJ(mixerrbar) {
4756                                 new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
4757                                         mixer_to_255(obj->data.mixerbar.l,mixer_get_right(obj->data.mixerbar.l)));
4758                         }
4759 #endif /* X11 */
4760                         OBJ(if_mixer_mute) {
4761                                 if (!mixer_is_mute(obj->data.ifblock.i)) {
4762                                         DO_JUMP;
4763                                 }
4764                         }
4765 #ifdef X11
4766                         OBJ(monitor) {
4767                                 snprintf(p, p_max_size, "%d", cur->x11.monitor.current);
4768                         }
4769                         OBJ(monitor_number) {
4770                                 snprintf(p, p_max_size, "%d", cur->x11.monitor.number);
4771                         }
4772 #endif /* X11 */
4773
4774                         /* mail stuff */
4775                         OBJ(mails) {
4776                                 update_mail_count(&obj->data.local_mail);
4777                                 snprintf(p, p_max_size, "%d", obj->data.local_mail.mail_count);
4778                         }
4779                         OBJ(new_mails) {
4780                                 update_mail_count(&obj->data.local_mail);
4781                                 snprintf(p, p_max_size, "%d",
4782                                         obj->data.local_mail.new_mail_count);
4783                         }
4784                         OBJ(seen_mails) {
4785                                 update_mail_count(&obj->data.local_mail);
4786                                 snprintf(p, p_max_size, "%d",
4787                                         obj->data.local_mail.seen_mail_count);
4788                         }
4789                         OBJ(unseen_mails) {
4790                                 update_mail_count(&obj->data.local_mail);
4791                                 snprintf(p, p_max_size, "%d",
4792                                         obj->data.local_mail.unseen_mail_count);
4793                         }
4794                         OBJ(flagged_mails) {
4795                                 update_mail_count(&obj->data.local_mail);
4796                                 snprintf(p, p_max_size, "%d",
4797                                         obj->data.local_mail.flagged_mail_count);
4798                         }
4799                         OBJ(unflagged_mails) {
4800                                 update_mail_count(&obj->data.local_mail);
4801                                 snprintf(p, p_max_size, "%d",
4802                                         obj->data.local_mail.unflagged_mail_count);
4803                         }
4804                         OBJ(forwarded_mails) {
4805                                 update_mail_count(&obj->data.local_mail);
4806                                 snprintf(p, p_max_size, "%d",
4807                                         obj->data.local_mail.forwarded_mail_count);
4808                         }
4809                         OBJ(unforwarded_mails) {
4810                                 update_mail_count(&obj->data.local_mail);
4811                                 snprintf(p, p_max_size, "%d",
4812                                         obj->data.local_mail.unforwarded_mail_count);
4813                         }
4814                         OBJ(replied_mails) {
4815                                 update_mail_count(&obj->data.local_mail);
4816                                 snprintf(p, p_max_size, "%d",
4817                                         obj->data.local_mail.replied_mail_count);
4818                         }
4819                         OBJ(unreplied_mails) {
4820                                 update_mail_count(&obj->data.local_mail);
4821                                 snprintf(p, p_max_size, "%d",
4822                                         obj->data.local_mail.unreplied_mail_count);
4823                         }
4824                         OBJ(draft_mails) {
4825                                 update_mail_count(&obj->data.local_mail);
4826                                 snprintf(p, p_max_size, "%d",
4827                                         obj->data.local_mail.draft_mail_count);
4828                         }
4829                         OBJ(trashed_mails) {
4830                                 update_mail_count(&obj->data.local_mail);
4831                                 snprintf(p, p_max_size, "%d",
4832                                         obj->data.local_mail.trashed_mail_count);
4833                         }
4834                         OBJ(mboxscan) {
4835                                 mbox_scan(obj->data.mboxscan.args, obj->data.mboxscan.output,
4836                                         text_buffer_size);
4837                                 snprintf(p, p_max_size, "%s", obj->data.mboxscan.output);
4838                         }
4839                         OBJ(nodename) {
4840                                 snprintf(p, p_max_size, "%s", cur->uname_s.nodename);
4841                         }
4842                         OBJ(outlinecolor) {
4843                                 new_outline(p, obj->data.l);
4844                         }
4845                         OBJ(processes) {
4846                                 spaced_print(p, p_max_size, "%hu", 4, cur->procs);
4847                         }
4848                         OBJ(running_processes) {
4849                                 spaced_print(p, p_max_size, "%hu", 4, cur->run_procs);
4850                         }
4851                         OBJ(text) {
4852                                 snprintf(p, p_max_size, "%s", obj->data.s);
4853                         }
4854 #ifdef X11
4855                         OBJ(shadecolor) {
4856                                 new_bg(p, obj->data.l);
4857                         }
4858                         OBJ(stippled_hr) {
4859                                 new_stippled_hr(p, obj->data.pair.a, obj->data.pair.b);
4860                         }
4861 #endif /* X11 */
4862                         OBJ(swap) {
4863                                 human_readable(cur->swap * 1024, p, 255);
4864                         }
4865                         OBJ(swapmax) {
4866                                 human_readable(cur->swapmax * 1024, p, 255);
4867                         }
4868                         OBJ(swapperc) {
4869                                 if (cur->swapmax == 0) {
4870                                         strncpy(p, "No swap", p_max_size);
4871                                 } else {
4872                                         percent_print(p, p_max_size, cur->swap * 100 / cur->swapmax);
4873                                 }
4874                         }
4875                         OBJ(swapbar) {
4876 #ifdef X11
4877                                 if(output_methods & TO_X) {
4878                                         new_bar(p, obj->data.pair.a, obj->data.pair.b,
4879                                                 cur->swapmax ? (cur->swap * 255) / (cur->swapmax) : 0);
4880                                 }else{
4881 #endif /* X11 */
4882                                         if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
4883                                         new_bar_in_shell(p, p_max_size, cur->swapmax ? (cur->swap * 100) / (cur->swapmax) : 0, obj->data.pair.a);
4884 #ifdef X11
4885                                 }
4886 #endif /* X11 */
4887                         }
4888                         OBJ(sysname) {
4889                                 snprintf(p, p_max_size, "%s", cur->uname_s.sysname);
4890                         }
4891                         OBJ(time) {
4892                                 time_t t = time(NULL);
4893                                 struct tm *tm = localtime(&t);
4894
4895                                 setlocale(LC_TIME, "");
4896                                 strftime(p, p_max_size, obj->data.s, tm);
4897                         }
4898                         OBJ(utime) {
4899                                 time_t t = time(NULL);
4900                                 struct tm *tm = gmtime(&t);
4901
4902                                 strftime(p, p_max_size, obj->data.s, tm);
4903                         }
4904                         OBJ(tztime) {
4905                                 char *oldTZ = NULL;
4906                                 time_t t;
4907                                 struct tm *tm;
4908
4909                                 if (obj->data.tztime.tz) {
4910                                         oldTZ = getenv("TZ");
4911                                         setenv("TZ", obj->data.tztime.tz, 1);
4912                                         tzset();
4913                                 }
4914                                 t = time(NULL);
4915                                 tm = localtime(&t);
4916
4917                                 setlocale(LC_TIME, "");
4918                                 strftime(p, p_max_size, obj->data.tztime.fmt, tm);
4919                                 if (oldTZ) {
4920                                         setenv("TZ", oldTZ, 1);
4921                                         tzset();
4922                                 } else {
4923                                         unsetenv("TZ");
4924                                 }
4925                                 // Needless to free oldTZ since getenv gives ptr to static data
4926                         }
4927                         OBJ(totaldown) {
4928                                 human_readable(obj->data.net->recv, p, 255);
4929                         }
4930                         OBJ(totalup) {
4931                                 human_readable(obj->data.net->trans, p, 255);
4932                         }
4933                         OBJ(updates) {
4934                                 snprintf(p, p_max_size, "%d", total_updates);
4935                         }
4936                         OBJ(if_updatenr) {
4937                                 if(total_updates % updatereset != obj->data.ifblock.i - 1) {
4938                                         DO_JUMP;
4939                                 }
4940                         }
4941                         OBJ(upspeed) {
4942                                 human_readable(obj->data.net->trans_speed, p, 255);
4943                         }
4944                         OBJ(upspeedf) {
4945                                 spaced_print(p, p_max_size, "%.1f", 8,
4946                                         obj->data.net->trans_speed / 1024.0);
4947                         }
4948 #ifdef X11
4949                         OBJ(upspeedgraph) {
4950                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
4951                                         obj->data.net->trans_speed / 1024.0, obj->e, 1, obj->char_a, obj->char_b);
4952                         }
4953 #endif /* X11 */
4954                         OBJ(uptime_short) {
4955                                 format_seconds_short(p, p_max_size, (int) cur->uptime);
4956                         }
4957                         OBJ(uptime) {
4958                                 format_seconds(p, p_max_size, (int) cur->uptime);
4959                         }
4960                         OBJ(user_names) {
4961                                 snprintf(p, p_max_size, "%s", cur->users.names);
4962                         }
4963                         OBJ(user_terms) {
4964                                 snprintf(p, p_max_size, "%s", cur->users.terms);
4965                         }
4966                         OBJ(user_times) {
4967                                 snprintf(p, p_max_size, "%s", cur->users.times);
4968                         }
4969                         OBJ(user_number) {
4970                                 snprintf(p, p_max_size, "%d", cur->users.number);
4971                         }
4972 #if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
4973                 || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
4974                         OBJ(apm_adapter) {
4975                                 char *msg;
4976
4977                                 msg = get_apm_adapter();
4978                                 snprintf(p, p_max_size, "%s", msg);
4979                                 free(msg);
4980                         }
4981                         OBJ(apm_battery_life) {
4982                                 char *msg;
4983
4984                                 msg = get_apm_battery_life();
4985                                 snprintf(p, p_max_size, "%s", msg);
4986                                 free(msg);
4987                         }
4988                         OBJ(apm_battery_time) {
4989                                 char *msg;
4990
4991                                 msg = get_apm_battery_time();
4992                                 snprintf(p, p_max_size, "%s", msg);
4993                                 free(msg);
4994                         }
4995 #endif /* __FreeBSD__ __OpenBSD__ */
4996
4997 #ifdef MPD
4998 #define mpd_printf(fmt, val) \
4999         snprintf(p, p_max_size, fmt, mpd_get_info()->val)
5000 #define mpd_sprintf(val) { \
5001         if (!obj->data.i || obj->data.i > p_max_size) \
5002                 mpd_printf("%s", val); \
5003         else \
5004                 snprintf(p, obj->data.i, "%s", mpd_get_info()->val); \
5005 }
5006                         OBJ(mpd_title)
5007                                 mpd_sprintf(title);
5008                         OBJ(mpd_artist)
5009                                 mpd_sprintf(artist);
5010                         OBJ(mpd_album)
5011                                 mpd_sprintf(album);
5012                         OBJ(mpd_random)
5013                                 mpd_printf("%s", random);
5014                         OBJ(mpd_repeat)
5015                                 mpd_printf("%s", repeat);
5016                         OBJ(mpd_track)
5017                                 mpd_sprintf(track);
5018                         OBJ(mpd_name)
5019                                 mpd_sprintf(name);
5020                         OBJ(mpd_file)
5021                                 mpd_sprintf(file);
5022                         OBJ(mpd_vol)
5023                                 mpd_printf("%d", volume);
5024                         OBJ(mpd_bitrate)
5025                                 mpd_printf("%d", bitrate);
5026                         OBJ(mpd_status)
5027                                 mpd_printf("%s", status);
5028                         OBJ(mpd_elapsed) {
5029                                 format_media_player_time(p, p_max_size, mpd_get_info()->elapsed);
5030                         }
5031                         OBJ(mpd_length) {
5032                                 format_media_player_time(p, p_max_size, mpd_get_info()->length);
5033                         }
5034                         OBJ(mpd_percent) {
5035                                 percent_print(p, p_max_size, (int)(mpd_get_info()->progress * 100));
5036                         }
5037                         OBJ(mpd_bar) {
5038 #ifdef X11
5039                                 if(output_methods & TO_X) {
5040                                         new_bar(p, obj->data.pair.a, obj->data.pair.b,
5041                                                 (int) (mpd_get_info()->progress * 255.0f));
5042                                 } else {
5043 #endif /* X11 */
5044                                         if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
5045                                         new_bar_in_shell(p, p_max_size, (int) (mpd_get_info()->progress * 100.0f), obj->data.pair.a);
5046 #ifdef X11
5047                                 }
5048 #endif /* X11 */
5049                         }
5050                         OBJ(mpd_smart) {
5051                                 struct mpd_s *mpd = mpd_get_info();
5052                                 int len = obj->data.i;
5053                                 if (len == 0 || len > p_max_size)
5054                                         len = p_max_size;
5055
5056                                 memset(p, 0, p_max_size);
5057                                 if (mpd->artist && *mpd->artist &&
5058                                     mpd->title && *mpd->title) {
5059                                         snprintf(p, len, "%s - %s", mpd->artist,
5060                                                 mpd->title);
5061                                 } else if (mpd->title && *mpd->title) {
5062                                         snprintf(p, len, "%s", mpd->title);
5063                                 } else if (mpd->artist && *mpd->artist) {
5064                                         snprintf(p, len, "%s", mpd->artist);
5065                                 } else if (mpd->file && *mpd->file) {
5066                                         snprintf(p, len, "%s", mpd->file);
5067                                 } else {
5068                                         *p = 0;
5069                                 }
5070                         }
5071                         OBJ(if_mpd_playing) {
5072                                 if (!mpd_get_info()->is_playing) {
5073                                         DO_JUMP;
5074                                 }
5075                         }
5076 #undef mpd_sprintf
5077 #undef mpd_printf
5078 #endif
5079
5080 #ifdef XMMS2
5081     free_xmms2();
5082 #endif
5083
5084 #ifdef MOC
5085 #define MOC_PRINT(t, a) \
5086         snprintf(p, p_max_size, "%s", (moc.t ? moc.t : a))
5087                         OBJ(moc_state) {
5088                                 MOC_PRINT(state, "??");
5089                         }
5090                         OBJ(moc_file) {
5091                                 MOC_PRINT(file, "no file");
5092                         }
5093                         OBJ(moc_title) {
5094                                 MOC_PRINT(title, "no title");
5095                         }
5096                         OBJ(moc_artist) {
5097                                 MOC_PRINT(artist, "no artist");
5098                         }
5099                         OBJ(moc_song) {
5100                                 MOC_PRINT(song, "no song");
5101                         }
5102                         OBJ(moc_album) {
5103                                 MOC_PRINT(album, "no album");
5104                         }
5105                         OBJ(moc_totaltime) {
5106                                 MOC_PRINT(totaltime, "0:00");
5107                         }
5108                         OBJ(moc_timeleft) {
5109                                 MOC_PRINT(timeleft, "0:00");
5110                         }
5111                         OBJ(moc_curtime) {
5112                                 MOC_PRINT(curtime, "0:00");
5113                         }
5114                         OBJ(moc_bitrate) {
5115                                 MOC_PRINT(bitrate, "0Kbps");
5116                         }
5117                         OBJ(moc_rate) {
5118                                 MOC_PRINT(rate, "0KHz");
5119                         }
5120 #undef MOC_PRINT
5121 #endif /* MOC */
5122 #ifdef XMMS2
5123                         OBJ(xmms2_artist) {
5124                                 snprintf(p, p_max_size, "%s", cur->xmms2.artist);
5125                         }
5126                         OBJ(xmms2_album) {
5127                                 snprintf(p, p_max_size, "%s", cur->xmms2.album);
5128                         }
5129                         OBJ(xmms2_title) {
5130                                 snprintf(p, p_max_size, "%s", cur->xmms2.title);
5131                         }
5132                         OBJ(xmms2_genre) {
5133                                 snprintf(p, p_max_size, "%s", cur->xmms2.genre);
5134                         }
5135                         OBJ(xmms2_comment) {
5136                                 snprintf(p, p_max_size, "%s", cur->xmms2.comment);
5137                         }
5138                         OBJ(xmms2_url) {
5139                                 snprintf(p, p_max_size, "%s", cur->xmms2.url);
5140                         }
5141                         OBJ(xmms2_status) {
5142                                 snprintf(p, p_max_size, "%s", cur->xmms2.status);
5143                         }
5144                         OBJ(xmms2_date) {
5145                                 snprintf(p, p_max_size, "%s", cur->xmms2.date);
5146                         }
5147                         OBJ(xmms2_tracknr) {
5148                                 if (cur->xmms2.tracknr != -1) {
5149                                         snprintf(p, p_max_size, "%i", cur->xmms2.tracknr);
5150                                 }
5151                         }
5152                         OBJ(xmms2_bitrate) {
5153                                 snprintf(p, p_max_size, "%i", cur->xmms2.bitrate);
5154                         }
5155                         OBJ(xmms2_id) {
5156                                 snprintf(p, p_max_size, "%u", cur->xmms2.id);
5157                         }
5158                         OBJ(xmms2_size) {
5159                                 snprintf(p, p_max_size, "%2.1f", cur->xmms2.size);
5160                         }
5161                         OBJ(xmms2_elapsed) {
5162                                 snprintf(p, p_max_size, "%02d:%02d", cur->xmms2.elapsed / 60000,
5163                                         (cur->xmms2.elapsed / 1000) % 60);
5164                         }
5165                         OBJ(xmms2_duration) {
5166                                 snprintf(p, p_max_size, "%02d:%02d",
5167                                         cur->xmms2.duration / 60000,
5168                                         (cur->xmms2.duration / 1000) % 60);
5169                         }
5170                         OBJ(xmms2_percent) {
5171                                 snprintf(p, p_max_size, "%2.0f", cur->xmms2.progress * 100);
5172                         }
5173                         OBJ(xmms2_bar) {
5174                                 new_bar(p, obj->data.pair.a, obj->data.pair.b,
5175                                         (int) (cur->xmms2.progress * 255.0f));
5176                         }
5177                         OBJ(xmms2_playlist) {
5178                                 snprintf(p, p_max_size, "%s", cur->xmms2.playlist);
5179                         }
5180                         OBJ(xmms2_timesplayed) {
5181                                 snprintf(p, p_max_size, "%i", cur->xmms2.timesplayed);
5182                         }
5183                         OBJ(xmms2_smart) {
5184                                 if (strlen(cur->xmms2.title) < 2
5185                                                 && strlen(cur->xmms2.title) < 2) {
5186                                         snprintf(p, p_max_size, "%s", cur->xmms2.url);
5187                                 } else {
5188                                         snprintf(p, p_max_size, "%s - %s", cur->xmms2.artist,
5189                                                 cur->xmms2.title);
5190                                 }
5191                         }
5192                         OBJ(if_xmms2_connected) {
5193                                 if (cur->xmms2.conn_state != 1) {
5194                                         DO_JUMP;
5195                                 }
5196                         }
5197 #endif /* XMMS */
5198 #ifdef AUDACIOUS
5199                         OBJ(audacious_status) {
5200                                 snprintf(p, p_max_size, "%s",
5201                                         cur->audacious.items[AUDACIOUS_STATUS]);
5202                         }
5203                         OBJ(audacious_title) {
5204                                 snprintf(p, cur->audacious.max_title_len > 0
5205                                         ? cur->audacious.max_title_len : p_max_size, "%s",
5206                                         cur->audacious.items[AUDACIOUS_TITLE]);
5207                         }
5208                         OBJ(audacious_length) {
5209                                 snprintf(p, p_max_size, "%s",
5210                                         cur->audacious.items[AUDACIOUS_LENGTH]);
5211                         }
5212                         OBJ(audacious_length_seconds) {
5213                                 snprintf(p, p_max_size, "%s",
5214                                         cur->audacious.items[AUDACIOUS_LENGTH_SECONDS]);
5215                         }
5216                         OBJ(audacious_position) {
5217                                 snprintf(p, p_max_size, "%s",
5218                                         cur->audacious.items[AUDACIOUS_POSITION]);
5219                         }
5220                         OBJ(audacious_position_seconds) {
5221                                 snprintf(p, p_max_size, "%s",
5222                                         cur->audacious.items[AUDACIOUS_POSITION_SECONDS]);
5223                         }
5224                         OBJ(audacious_bitrate) {
5225                                 snprintf(p, p_max_size, "%s",
5226                                         cur->audacious.items[AUDACIOUS_BITRATE]);
5227                         }
5228                         OBJ(audacious_frequency) {
5229                                 snprintf(p, p_max_size, "%s",
5230                                         cur->audacious.items[AUDACIOUS_FREQUENCY]);
5231                         }
5232                         OBJ(audacious_channels) {
5233                                 snprintf(p, p_max_size, "%s",
5234                                         cur->audacious.items[AUDACIOUS_CHANNELS]);
5235                         }
5236                         OBJ(audacious_filename) {
5237                                 snprintf(p, p_max_size, "%s",
5238                                         cur->audacious.items[AUDACIOUS_FILENAME]);
5239                         }
5240                         OBJ(audacious_playlist_length) {
5241                                 snprintf(p, p_max_size, "%s",
5242                                         cur->audacious.items[AUDACIOUS_PLAYLIST_LENGTH]);
5243                         }
5244                         OBJ(audacious_playlist_position) {
5245                                 snprintf(p, p_max_size, "%s",
5246                                         cur->audacious.items[AUDACIOUS_PLAYLIST_POSITION]);
5247                         }
5248                         OBJ(audacious_main_volume) {
5249                                 snprintf(p, p_max_size, "%s",
5250                                         cur->audacious.items[AUDACIOUS_MAIN_VOLUME]);
5251                         }
5252                         OBJ(audacious_bar) {
5253                                 double progress;
5254
5255                                 progress =
5256                                         atof(cur->audacious.items[AUDACIOUS_POSITION_SECONDS]) /
5257                                         atof(cur->audacious.items[AUDACIOUS_LENGTH_SECONDS]);
5258                                 new_bar(p, obj->a, obj->b, (int) (progress * 255.0f));
5259                         }
5260 #endif /* AUDACIOUS */
5261
5262 #ifdef BMPX
5263                         OBJ(bmpx_title) {
5264                                 snprintf(p, p_max_size, "%s", cur->bmpx.title);
5265                         }
5266                         OBJ(bmpx_artist) {
5267                                 snprintf(p, p_max_size, "%s", cur->bmpx.artist);
5268                         }
5269                         OBJ(bmpx_album) {
5270                                 snprintf(p, p_max_size, "%s", cur->bmpx.album);
5271                         }
5272                         OBJ(bmpx_uri) {
5273                                 snprintf(p, p_max_size, "%s", cur->bmpx.uri);
5274                         }
5275                         OBJ(bmpx_track) {
5276                                 snprintf(p, p_max_size, "%i", cur->bmpx.track);
5277                         }
5278                         OBJ(bmpx_bitrate) {
5279                                 snprintf(p, p_max_size, "%i", cur->bmpx.bitrate);
5280                         }
5281 #endif /* BMPX */
5282                         /* we have three different types of top (top, top_mem
5283                          * and top_time). To avoid having almost-same code three
5284                          * times, we have this special handler. */
5285                         break;
5286                         case OBJ_top:
5287                                 parse_top_args("top", obj->data.top.s, obj);
5288                                 if (!needed) needed = cur->cpu;
5289                         case OBJ_top_mem:
5290                                 parse_top_args("top_mem", obj->data.top.s, obj);
5291                                 if (!needed) needed = cur->memu;
5292                         case OBJ_top_time:
5293                                 parse_top_args("top_time", obj->data.top.s, obj);
5294                                 if (!needed) needed = cur->time;
5295
5296                                 if (needed[obj->data.top.num]) {
5297                                         char *timeval;
5298
5299                                         switch (obj->data.top.type) {
5300                                                 case TOP_NAME:
5301                                                         snprintf(p, top_name_width + 1, "%-*s", top_name_width,
5302                                                                         needed[obj->data.top.num]->name);
5303                                                         break;
5304                                                 case TOP_CPU:
5305                                                         snprintf(p, 7, "%6.2f",
5306                                                                         needed[obj->data.top.num]->amount);
5307                                                         break;
5308                                                 case TOP_PID:
5309                                                         snprintf(p, 6, "%5i",
5310                                                                         needed[obj->data.top.num]->pid);
5311                                                         break;
5312                                                 case TOP_MEM:
5313                                                         snprintf(p, 7, "%6.2f",
5314                                                                         needed[obj->data.top.num]->totalmem);
5315                                                         break;
5316                                                 case TOP_TIME:
5317                                                         timeval = format_time(
5318                                                                         needed[obj->data.top.num]->total_cpu_time, 9);
5319                                                         snprintf(p, 10, "%9s", timeval);
5320                                                         free(timeval);
5321                                                         break;
5322                                                 case TOP_MEM_RES:
5323                                                         human_readable(needed[obj->data.top.num]->rss,
5324                                                                         p, 255);
5325                                                         break;
5326                                                 case TOP_MEM_VSIZE:
5327                                                         human_readable(needed[obj->data.top.num]->vsize,
5328                                                                         p, 255);
5329                                                         break;
5330                                         }
5331                                 }
5332                         OBJ(tail)
5333                                 print_tail_object(obj, p, p_max_size);
5334                         OBJ(head)
5335                                 print_head_object(obj, p, p_max_size);
5336                         OBJ(lines) {
5337                                 FILE *fp = open_file(obj->data.s, &obj->a);
5338
5339                                 if(fp != NULL) {
5340 /* FIXME: use something more general (see also tail.c, head.c */
5341 #define BUFSZ 0x1000
5342                                         char buf[BUFSZ];
5343                                         int j, lines;
5344
5345                                         lines = 0;
5346                                         while(fgets(buf, BUFSZ, fp) != NULL){
5347                                                 for(j = 0; buf[j] != 0; j++) {
5348                                                         if(buf[j] == '\n') {
5349                                                                 lines++;
5350                                                         }
5351                                                 }
5352                                         }
5353                                         sprintf(p, "%d", lines);
5354                                         fclose(fp);
5355                                 } else {
5356                                         sprintf(p, "File Unreadable");
5357                                 }
5358                         }
5359
5360                         OBJ(words) {
5361                                 FILE *fp = open_file(obj->data.s, &obj->a);
5362
5363                                 if(fp != NULL) {
5364                                         char buf[BUFSZ];
5365                                         int j, words;
5366                                         char inword = FALSE;
5367
5368                                         words = 0;
5369                                         while(fgets(buf, BUFSZ, fp) != NULL){
5370                                                 for(j = 0; buf[j] != 0; j++) {
5371                                                         if(!isspace(buf[j])) {
5372                                                                 if(inword == FALSE) {
5373                                                                         words++;
5374                                                                         inword = TRUE;
5375                                                                 }
5376                                                         } else {
5377                                                                 inword = FALSE;
5378                                                         }
5379                                                 }
5380                                         }
5381                                         sprintf(p, "%d", words);
5382                                         fclose(fp);
5383                                 } else {
5384                                         sprintf(p, "File Unreadable");
5385                                 }
5386                         }
5387 #ifdef TCP_PORT_MONITOR
5388                         OBJ(tcp_portmon) {
5389                                 tcp_portmon_action(p, p_max_size,
5390                                                    &obj->data.tcp_port_monitor);
5391                         }
5392 #endif /* TCP_PORT_MONITOR */
5393
5394 #ifdef HAVE_ICONV
5395                         OBJ(iconv_start) {
5396                                 iconv_converting = 1;
5397                                 iconv_selected = obj->a;
5398                         }
5399                         OBJ(iconv_stop) {
5400                                 iconv_converting = 0;
5401                                 iconv_selected = 0;
5402                         }
5403 #endif /* HAVE_ICONV */
5404
5405                         OBJ(entropy_avail) {
5406                                 snprintf(p, p_max_size, "%d", cur->entropy.entropy_avail);
5407                         }
5408                         OBJ(entropy_perc) {
5409                                 percent_print(p, p_max_size,
5410                                               cur->entropy.entropy_avail *
5411                                               100 / cur->entropy.poolsize);
5412                         }
5413                         OBJ(entropy_poolsize) {
5414                                 snprintf(p, p_max_size, "%d", cur->entropy.poolsize);
5415                         }
5416                         OBJ(entropy_bar) {
5417                                 double entropy_perc;
5418
5419                                 entropy_perc = (double) cur->entropy.entropy_avail /
5420                                         (double) cur->entropy.poolsize;
5421 #ifdef X11
5422                                 if(output_methods & TO_X) {
5423                                         new_bar(p, obj->a, obj->b, (int) (entropy_perc * 255.0f));
5424                                 } else {
5425 #endif /* X11 */
5426                                         if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
5427                                         new_bar_in_shell(p, p_max_size, (int) (entropy_perc * 100.0f), obj->a);
5428 #ifdef X11
5429                                 }
5430 #endif /* X11 */
5431                         }
5432 #ifdef IBM
5433                         OBJ(smapi) {
5434                                 char *s;
5435                                 if(obj->data.s) {
5436                                         s = smapi_get_val(obj->data.s);
5437                                         snprintf(p, p_max_size, "%s", s);
5438                                         free(s);
5439                                 }
5440                         }
5441                         OBJ(if_smapi_bat_installed) {
5442                                 int idx;
5443                                 if(obj->data.ifblock.s && sscanf(obj->data.ifblock.s, "%i", &idx) == 1) {
5444                                         if(!smapi_bat_installed(idx)) {
5445                                                 DO_JUMP;
5446                                         }
5447                                 } else
5448                                         ERR("argument to if_smapi_bat_installed must be an integer");
5449                         }
5450                         OBJ(smapi_bat_perc) {
5451                                 int idx, val;
5452                                 if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
5453                                         val = smapi_bat_installed(idx) ?
5454                                                 smapi_get_bat_int(idx, "remaining_percent") : 0;
5455                                         percent_print(p, p_max_size, val);
5456                                 } else
5457                                         ERR("argument to smapi_bat_perc must be an integer");
5458                         }
5459                         OBJ(smapi_bat_temp) {
5460                                 int idx, val;
5461                                 if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
5462                                         val = smapi_bat_installed(idx) ?
5463                                                 smapi_get_bat_int(idx, "temperature") : 0;
5464                                         /* temperature is in milli degree celsius */
5465                                         temp_print(p, p_max_size, val / 1000, TEMP_CELSIUS);
5466                                 } else
5467                                         ERR("argument to smapi_bat_temp must be an integer");
5468                         }
5469                         OBJ(smapi_bat_power) {
5470                                 int idx, val;
5471                                 if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
5472                                         val = smapi_bat_installed(idx) ?
5473                                                 smapi_get_bat_int(idx, "power_now") : 0;
5474                                         /* power_now is in mW, set to W with one digit precision */
5475                                         snprintf(p, p_max_size, "%.1f", ((double)val / 1000));
5476                                 } else
5477                                         ERR("argument to smapi_bat_power must be an integer");
5478                         }
5479                         OBJ(smapi_bat_bar) {
5480                                 if(obj->data.i >= 0 && smapi_bat_installed(obj->data.i))
5481                                         new_bar(p, obj->a, obj->b, (int)
5482                                                         (255 * smapi_get_bat_int(obj->data.i, "remaining_percent") / 100));
5483                                 else
5484                                         new_bar(p, obj->a, obj->b, 0);
5485                         }
5486 #endif /* IBM */
5487                         OBJ(scroll) {
5488                                 unsigned int j;
5489                                 char *tmp, buf[max_user_text];
5490                                 generate_text_internal(buf, max_user_text,
5491                                                        *obj->sub, cur);
5492
5493                                 if (strlen(buf) <= obj->data.scroll.show) {
5494                                         snprintf(p, p_max_size, "%s", buf);
5495                                         break;
5496                                 }
5497 #define LINESEPARATOR '|'
5498                                 //place all the lines behind each other with LINESEPARATOR between them
5499                                 for(j = 0; buf[j] != 0; j++) {
5500                                         if(buf[j]=='\n') {
5501                                                 buf[j]=LINESEPARATOR;
5502                                         }
5503                                 }
5504                                 //scroll the output obj->data.scroll.start places by copying that many chars from
5505                                 //the front of the string to tmp, scrolling the rest to the front and placing tmp
5506                                 //at the back of the string
5507                                 tmp = calloc(obj->data.scroll.start + 1, sizeof(char));
5508                                 strncpy(tmp, buf, obj->data.scroll.start); tmp[obj->data.scroll.start] = 0;
5509                                 for(j = obj->data.scroll.start; buf[j] != 0; j++){
5510                                         buf[j - obj->data.scroll.start] = buf[j];
5511                                 }
5512                                 strcpy(&buf[j - obj->data.scroll.start], tmp);
5513                                 free(tmp);
5514                                 //only show the requested number of chars
5515                                 if(obj->data.scroll.show < j) {
5516                                         buf[obj->data.scroll.show] = 0;
5517                                 }
5518                                 //next time, scroll a place more or reset scrolling if we are at the end
5519                                 obj->data.scroll.start += obj->data.scroll.step;
5520                                 if(obj->data.scroll.start >= j){
5521                                          obj->data.scroll.start = 0;
5522                                 }
5523                                 snprintf(p, p_max_size, "%s", buf);
5524                         }
5525                         OBJ(combine) {
5526                                 char buf[2][max_user_text];
5527                                 int i, j;
5528                                 long longest=0;
5529                                 int nextstart;
5530                                 int nr_rows[2];
5531                                 struct llrows {
5532                                         char* row;
5533                                         struct llrows* next;
5534                                 };
5535                                 struct llrows *ll_rows[2], *current[2];
5536                                 struct text_object * objsub = obj->sub;
5537
5538                                 p[0]=0;
5539                                 for(i=0; i<2; i++) {
5540                                         nr_rows[i] = 1;
5541                                         nextstart = 0;
5542                                         ll_rows[i] = malloc(sizeof(struct llrows));
5543                                         current[i] = ll_rows[i];
5544                                         for(j=0; j<i; j++) objsub = objsub->sub;
5545                                         generate_text_internal(buf[i], max_user_text, *objsub, cur);
5546                                         for(j=0; buf[i][j] != 0; j++) {
5547                                                 if(buf[i][j] == '\t') buf[i][j] = ' ';
5548                                                 if(buf[i][j] == '\n') {
5549                                                         buf[i][j] = 0;
5550                                                         current[i]->row = strdup(buf[i]+nextstart);
5551                                                         if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
5552                                                         current[i]->next = malloc(sizeof(struct llrows));
5553                                                         current[i] = current[i]->next;
5554                                                         nextstart = j + 1;
5555                                                         nr_rows[i]++;
5556                                                 }
5557                                         }
5558                                         current[i]->row = strdup(buf[i]+nextstart);
5559                                         if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
5560                                         current[i]->next = NULL;
5561                                         current[i] = ll_rows[i];
5562                                 }
5563                                 for(j=0; j < (nr_rows[0] > nr_rows[1] ? nr_rows[0] : nr_rows[1] ); j++) {
5564                                         if(current[0]) {
5565                                                 strcat(p, current[0]->row);
5566                                                 i=strlen(current[0]->row);
5567                                         }else i = 0;
5568                                         while(i < longest) {
5569                                                 strcat(p, " ");
5570                                                 i++;
5571                                         }
5572                                         if(current[1]) {
5573                                                 strcat(p, obj->data.combine.seperation);
5574                                                 strcat(p, current[1]->row);
5575                                         }
5576                                         strcat(p, "\n");
5577                                         #ifdef HAVE_OPENMP
5578                                         #pragma omp parallel for
5579                                         #endif /* HAVE_OPENMP */
5580                                         for(i=0; i<2; i++) if(current[i]) current[i]=current[i]->next;
5581                                 }
5582                                 #ifdef HAVE_OPENMP
5583                                 #pragma omp parallel for
5584                                 #endif /* HAVE_OPENMP */
5585                                 for(i=0; i<2; i++) {
5586                                         while(ll_rows[i] != NULL) {
5587                                                 current[i]=ll_rows[i];
5588                                                 free(current[i]->row);
5589                                                 ll_rows[i]=current[i]->next;
5590                                                 free(current[i]);
5591                                         }
5592                                 }
5593                         }
5594 #ifdef NVIDIA
5595                         OBJ(nvidia) {
5596                                 int value = get_nvidia_value(obj->data.nvidia.type, display);
5597                                 if(value == -1)
5598                                         snprintf(p, p_max_size, "N/A");
5599                                 else if (obj->data.nvidia.type == NV_TEMP)
5600                                         temp_print(p, p_max_size, (double)value, TEMP_CELSIUS);
5601                                 else if (obj->data.nvidia.print_as_float &&
5602                                                 value > 0 && value < 100)
5603                                         snprintf(p, p_max_size, "%.1f", (float)value);
5604                                 else
5605                                         snprintf(p, p_max_size, "%d", value);
5606                         }
5607 #endif /* NVIDIA */
5608 #ifdef APCUPSD
5609                         OBJ(apcupsd) {
5610                                 /* This is just a meta-object to set host:port */
5611                         }
5612                         OBJ(apcupsd_name) {
5613                                 snprintf(p, p_max_size, "%s",
5614                                                  cur->apcupsd.items[APCUPSD_NAME]);
5615                         }
5616                         OBJ(apcupsd_model) {
5617                                 snprintf(p, p_max_size, "%s",
5618                                                  cur->apcupsd.items[APCUPSD_MODEL]);
5619                         }
5620                         OBJ(apcupsd_upsmode) {
5621                                 snprintf(p, p_max_size, "%s",
5622                                                  cur->apcupsd.items[APCUPSD_UPSMODE]);
5623                         }
5624                         OBJ(apcupsd_cable) {
5625                                 snprintf(p, p_max_size, "%s",
5626                                                  cur->apcupsd.items[APCUPSD_CABLE]);
5627                         }
5628                         OBJ(apcupsd_status) {
5629                                 snprintf(p, p_max_size, "%s",
5630                                                  cur->apcupsd.items[APCUPSD_STATUS]);
5631                         }
5632                         OBJ(apcupsd_linev) {
5633                                 snprintf(p, p_max_size, "%s",
5634                                                  cur->apcupsd.items[APCUPSD_LINEV]);
5635                         }
5636                         OBJ(apcupsd_load) {
5637                                 snprintf(p, p_max_size, "%s",
5638                                                  cur->apcupsd.items[APCUPSD_LOAD]);
5639                         }
5640                         OBJ(apcupsd_loadbar) {
5641                                 double progress;
5642 #ifdef X11
5643                                 if(output_methods & TO_X) {
5644                                         progress = atof(cur->apcupsd.items[APCUPSD_LOAD]) / 100.0 * 255.0;
5645                                         new_bar(p, obj->a, obj->b, (int) progress);
5646                                 } else {
5647 #endif /* X11 */
5648                                         progress = atof(cur->apcupsd.items[APCUPSD_LOAD]);
5649                                         if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
5650                                         new_bar_in_shell(p, p_max_size, (int) progress, obj->a);
5651 #ifdef X11
5652                                 }
5653 #endif /* X11 */
5654                         }
5655 #ifdef X11
5656                         OBJ(apcupsd_loadgraph) {
5657                                 double progress;
5658                                 progress =      atof(cur->apcupsd.items[APCUPSD_LOAD]);
5659                                 new_graph(p, obj->a, obj->b, obj->c, obj->d,
5660                                                   (int)progress, 100, 1, obj->char_a, obj->char_b);
5661                         }
5662                         OBJ(apcupsd_loadgauge) {
5663                                 double progress;
5664                                 progress =      atof(cur->apcupsd.items[APCUPSD_LOAD]) / 100.0 * 255.0;
5665                                 new_gauge(p, obj->a, obj->b,
5666                                                   (int)progress);
5667                         }
5668 #endif /* X11 */
5669                         OBJ(apcupsd_charge) {
5670                                 snprintf(p, p_max_size, "%s",
5671                                                  cur->apcupsd.items[APCUPSD_CHARGE]);
5672                         }
5673                         OBJ(apcupsd_timeleft) {
5674                                 snprintf(p, p_max_size, "%s",
5675                                                  cur->apcupsd.items[APCUPSD_TIMELEFT]);
5676                         }
5677                         OBJ(apcupsd_temp) {
5678                                 snprintf(p, p_max_size, "%s",
5679                                                  cur->apcupsd.items[APCUPSD_TEMP]);
5680                         }
5681                         OBJ(apcupsd_lastxfer) {
5682                                 snprintf(p, p_max_size, "%s",
5683                                                  cur->apcupsd.items[APCUPSD_LASTXFER]);
5684                         }
5685 #endif /* APCUPSD */
5686                         break;
5687                 }
5688 #undef DO_JUMP
5689
5690
5691                 {
5692                         unsigned int a = strlen(p);
5693
5694 #ifdef HAVE_ICONV
5695                         if (a > 0 && iconv_converting && iconv_selected > 0
5696                                         && (iconv_cd[iconv_selected - 1] != (iconv_t) (-1))) {
5697                                 int bytes;
5698                                 size_t dummy1, dummy2;
5699                                 char *ptr = buff_in;
5700                                 char *outptr = p;
5701
5702                                 dummy1 = dummy2 = a;
5703
5704                                 strncpy(buff_in, p, p_max_size);
5705
5706                                 iconv(*iconv_cd[iconv_selected - 1], NULL, NULL, NULL, NULL);
5707                                 while (dummy1 > 0) {
5708                                         bytes = iconv(*iconv_cd[iconv_selected - 1], &ptr, &dummy1,
5709                                                         &outptr, &dummy2);
5710                                         if (bytes == -1) {
5711                                                 ERR("Iconv codeset conversion failed");
5712                                                 break;
5713                                         }
5714                                 }
5715
5716                                 /* It is nessecary when we are converting from multibyte to
5717                                  * singlebyte codepage */
5718                                 a = outptr - p;
5719                         }
5720 #endif /* HAVE_ICONV */
5721                         p += a;
5722                         p_max_size -= a;
5723                 }
5724                 obj = obj->next;
5725         }
5726 }
5727
5728 double current_update_time, next_update_time, last_update_time;
5729
5730 static void generate_text(void)
5731 {
5732         struct information *cur = &info;
5733         char *p;
5734
5735         special_count = 0;
5736
5737         /* update info */
5738
5739         current_update_time = get_time();
5740
5741         update_stuff();
5742
5743         /* add things to the buffer */
5744
5745         /* generate text */
5746
5747         p = text_buffer;
5748
5749         generate_text_internal(p, max_user_text, global_root_object, cur);
5750
5751         if (stuff_in_upper_case) {
5752                 char *tmp_p;
5753
5754                 tmp_p = text_buffer;
5755                 while (*tmp_p) {
5756                         *tmp_p = toupper(*tmp_p);
5757                         tmp_p++;
5758                 }
5759         }
5760
5761         next_update_time += update_interval;
5762         if (next_update_time < get_time()) {
5763                 next_update_time = get_time() + update_interval;
5764         } else if (next_update_time > get_time() + update_interval) {
5765                 next_update_time = get_time() + update_interval;
5766         }
5767         last_update_time = current_update_time;
5768         total_updates++;
5769         // free(p);
5770 }
5771
5772 static inline int get_string_width(const char *s)
5773 {
5774 #ifdef X11
5775         if (output_methods & TO_X) {
5776                 return *s ? calc_text_width(s, strlen(s)) : 0;
5777         }
5778 #endif /* X11 */
5779         return strlen(s);
5780 }
5781
5782 static inline int get_string_width_special(char *s)
5783 {
5784 #ifdef X11
5785         char *p, *final;
5786         int idx = 1;
5787         int width = 0;
5788         long i;
5789
5790         if ((output_methods & TO_X) == 0) {
5791 #endif
5792                 return (s) ? strlen(s) : 0;
5793 #ifdef X11
5794         }
5795
5796         if (!s) {
5797                 return 0;
5798         }
5799
5800         p = strndup(s, text_buffer_size);
5801         final = p;
5802
5803         while (*p) {
5804                 if (*p == SPECIAL_CHAR) {
5805                         /* shift everything over by 1 so that the special char
5806                          * doesn't mess up the size calculation */
5807                         for (i = 0; i < (long)strlen(p); i++) {
5808                                 *(p + i) = *(p + i + 1);
5809                         }
5810                         if (specials[special_index + idx].type == GRAPH
5811                                         || specials[special_index + idx].type == GAUGE
5812                                         || specials[special_index + idx].type == BAR) {
5813                                 width += specials[special_index + idx].width;
5814                         }
5815                         idx++;
5816                 } else {
5817                         p++;
5818                 }
5819         }
5820         if (strlen(final) > 1) {
5821                 width += calc_text_width(final, strlen(final));
5822         }
5823         free(final);
5824         return width;
5825 #endif /* X11 */
5826 }
5827
5828 #ifdef X11
5829 static void text_size_updater(char *s);
5830
5831 int last_font_height;
5832 static void update_text_area(void)
5833 {
5834         int x = 0, y = 0;
5835
5836         if ((output_methods & TO_X) == 0)
5837                 return;
5838         /* update text size if it isn't fixed */
5839 #ifdef OWN_WINDOW
5840         if (!fixed_size)
5841 #endif
5842         {
5843                 text_width = minimum_width;
5844                 text_height = 0;
5845                 special_index = 0;
5846                 last_font_height = font_height();
5847                 for_each_line(text_buffer, text_size_updater);
5848                 text_width += 1;
5849                 if (text_height < minimum_height) {
5850                         text_height = minimum_height;
5851                 }
5852                 if (text_width > maximum_width && maximum_width > 0) {
5853                         text_width = maximum_width;
5854                 }
5855         }
5856
5857         /* get text position on workarea */
5858         switch (text_alignment) {
5859                 case TOP_LEFT:
5860                         x = gap_x;
5861                         y = gap_y;
5862                         break;
5863
5864                 case TOP_RIGHT:
5865                         x = workarea[2] - text_width - gap_x;
5866                         y = gap_y;
5867                         break;
5868
5869                 case TOP_MIDDLE:
5870                         x = workarea[2] / 2 - text_width / 2 - gap_x;
5871                         y = gap_y;
5872                         break;
5873
5874                 default:
5875                 case BOTTOM_LEFT:
5876                         x = gap_x;
5877                         y = workarea[3] - text_height - gap_y;
5878                         break;
5879
5880                 case BOTTOM_RIGHT:
5881                         x = workarea[2] - text_width - gap_x;
5882                         y = workarea[3] - text_height - gap_y;
5883                         break;
5884
5885                 case BOTTOM_MIDDLE:
5886                         x = workarea[2] / 2 - text_width / 2 - gap_x;
5887                         y = workarea[3] - text_height - gap_y;
5888                         break;
5889
5890                 case MIDDLE_LEFT:
5891                         x = gap_x;
5892                         y = workarea[3] / 2 - text_height / 2 - gap_y;
5893                         break;
5894
5895                 case MIDDLE_RIGHT:
5896                         x = workarea[2] - text_width - gap_x;
5897                         y = workarea[3] / 2 - text_height / 2 - gap_y;
5898                         break;
5899
5900 #ifdef OWN_WINDOW
5901                 case NONE:      // Let the WM manage the window
5902                         x = window.x;
5903                         y = window.y;
5904
5905                         fixed_pos = 1;
5906                         fixed_size = 1;
5907                         break;
5908 #endif
5909         }
5910 #ifdef OWN_WINDOW
5911
5912         if (own_window && !fixed_pos) {
5913                 x += workarea[0];
5914                 y += workarea[1];
5915                 text_start_x = border_margin + 1;
5916                 text_start_y = border_margin + 1;
5917                 window.x = x - border_margin - 1;
5918                 window.y = y - border_margin - 1;
5919         } else
5920 #endif
5921         {
5922                 /* If window size doesn't match to workarea's size,
5923                  * then window probably includes panels (gnome).
5924                  * Blah, doesn't work on KDE. */
5925                 if (workarea[2] != window.width || workarea[3] != window.height) {
5926                         y += workarea[1];
5927                         x += workarea[0];
5928                 }
5929
5930                 text_start_x = x;
5931                 text_start_y = y;
5932         }
5933 }
5934
5935 /* drawing stuff */
5936
5937 static int cur_x, cur_y;        /* current x and y for drawing */
5938 #endif
5939 //draw_mode also without X11 because we only need to print to stdout with FG
5940 static int draw_mode;           /* FG, BG or OUTLINE */
5941 #ifdef X11
5942 static long current_color;
5943
5944 static void text_size_updater(char *s)
5945 {
5946         int w = 0;
5947         char *p;
5948
5949         if ((output_methods & TO_X) == 0)
5950                 return;
5951         /* get string widths and skip specials */
5952         p = s;
5953         while (*p) {
5954                 if (*p == SPECIAL_CHAR) {
5955                         *p = '\0';
5956                         w += get_string_width(s);
5957                         *p = SPECIAL_CHAR;
5958
5959                         if (specials[special_index].type == BAR
5960                                         || specials[special_index].type == GAUGE
5961                                         || specials[special_index].type == GRAPH) {
5962                                 w += specials[special_index].width;
5963                                 if (specials[special_index].height > last_font_height) {
5964                                         last_font_height = specials[special_index].height;
5965                                         last_font_height += font_height();
5966                                 }
5967                         } else if (specials[special_index].type == OFFSET) {
5968                                 if (specials[special_index].arg > 0) {
5969                                         w += specials[special_index].arg;
5970                                 }
5971                         } else if (specials[special_index].type == VOFFSET) {
5972                                 last_font_height += specials[special_index].arg;
5973                         } else if (specials[special_index].type == GOTO) {
5974                                 if (specials[special_index].arg > cur_x) {
5975                                         w = (int) specials[special_index].arg;
5976                                 }
5977                         } else if (specials[special_index].type == TAB) {
5978                                 int start = specials[special_index].arg;
5979                                 int step = specials[special_index].width;
5980
5981                                 if (!step || step < 0) {
5982                                         step = 10;
5983                                 }
5984                                 w += step - (cur_x - text_start_x - start) % step;
5985                         } else if (specials[special_index].type == FONT) {
5986                                 selected_font = specials[special_index].font_added;
5987                                 if (font_height() > last_font_height) {
5988                                         last_font_height = font_height();
5989                                 }
5990                         }
5991
5992                         special_index++;
5993                         s = p + 1;
5994                 }
5995                 p++;
5996         }
5997         w += get_string_width(s);
5998         if (w > text_width) {
5999                 text_width = w;
6000         }
6001         if (text_width > maximum_width && maximum_width) {
6002                 text_width = maximum_width;
6003         }
6004
6005         text_height += last_font_height;
6006         last_font_height = font_height();
6007 }
6008
6009 static inline void set_foreground_color(long c)
6010 {
6011         if ((output_methods & TO_X) == 0)
6012                 return;
6013         current_color = c;
6014         XSetForeground(display, window.gc, c);
6015 }
6016 #endif /* X11 */
6017
6018 static void draw_string(const char *s)
6019 {
6020         int i, i2, pos, width_of_s;
6021         int max = 0;
6022         int added;
6023
6024         if (s[0] == '\0') {
6025                 return;
6026         }
6027
6028         width_of_s = get_string_width(s);
6029         if ((output_methods & TO_STDOUT) && draw_mode == FG) {
6030                 printf("%s\n", s);
6031                 fflush(stdout); /* output immediately, don't buffer */
6032         }
6033         if ((output_methods & TO_STDERR) && draw_mode == FG) {
6034                 fprintf(stderr, "%s\n", s);
6035                 fflush(stderr); /* output immediately, don't buffer */
6036         }
6037         if ((output_methods & OVERWRITE_FILE) && draw_mode == FG && overwrite_fpointer) {
6038                 fprintf(overwrite_fpointer, "%s\n", s);
6039         }
6040         if ((output_methods & APPEND_FILE) && draw_mode == FG && append_fpointer) {
6041                 fprintf(append_fpointer, "%s\n", s);
6042         }
6043         memset(tmpstring1, 0, text_buffer_size);
6044         memset(tmpstring2, 0, text_buffer_size);
6045         strncpy(tmpstring1, s, text_buffer_size - 1);
6046         pos = 0;
6047         added = 0;
6048
6049 #ifdef X11
6050         if (output_methods & TO_X) {
6051                 max = ((text_width - width_of_s) / get_string_width(" "));
6052         }
6053 #endif /* X11 */
6054         /* This code looks for tabs in the text and coverts them to spaces.
6055          * The trick is getting the correct number of spaces, and not going
6056          * over the window's size without forcing the window larger. */
6057         for (i = 0; i < (int) text_buffer_size; i++) {
6058                 if (tmpstring1[i] == '\t') {
6059                         i2 = 0;
6060                         for (i2 = 0; i2 < (8 - (1 + pos) % 8) && added <= max; i2++) {
6061                                 /* guard against overrun */
6062                                 tmpstring2[MIN(pos + i2, (int)text_buffer_size - 1)] = ' ';
6063                                 added++;
6064                         }
6065                         pos += i2;
6066                 } else {
6067                         /* guard against overrun */
6068                         tmpstring2[MIN(pos, (int) text_buffer_size - 1)] = tmpstring1[i];
6069                         pos++;
6070                 }
6071         }
6072 #ifdef X11
6073         if (output_methods & TO_X) {
6074                 if (text_width == maximum_width) {
6075                         /* this means the text is probably pushing the limit,
6076                          * so we'll chop it */
6077                         while (cur_x + get_string_width(tmpstring2) - text_start_x
6078                                         > maximum_width && strlen(tmpstring2) > 0) {
6079                                 tmpstring2[strlen(tmpstring2) - 1] = '\0';
6080                         }
6081                 }
6082         }
6083 #endif /* X11 */
6084         s = tmpstring2;
6085 #ifdef X11
6086         if (output_methods & TO_X) {
6087 #ifdef XFT
6088                 if (use_xft) {
6089                         XColor c;
6090                         XftColor c2;
6091
6092                         c.pixel = current_color;
6093                         XQueryColor(display, DefaultColormap(display, screen), &c);
6094
6095                         c2.pixel = c.pixel;
6096                         c2.color.red = c.red;
6097                         c2.color.green = c.green;
6098                         c2.color.blue = c.blue;
6099                         c2.color.alpha = fonts[selected_font].font_alpha;
6100                         if (utf8_mode) {
6101                                 XftDrawStringUtf8(window.xftdraw, &c2, fonts[selected_font].xftfont,
6102                                         cur_x, cur_y, (const XftChar8 *) s, strlen(s));
6103                         } else {
6104                                 XftDrawString8(window.xftdraw, &c2, fonts[selected_font].xftfont,
6105                                         cur_x, cur_y, (const XftChar8 *) s, strlen(s));
6106                         }
6107                 } else
6108 #endif
6109                 {
6110                         XDrawString(display, window.drawable, window.gc, cur_x, cur_y, s,
6111                                 strlen(s));
6112                 }
6113                 cur_x += width_of_s;
6114         }
6115 #endif /* X11 */
6116         memcpy(tmpstring1, s, text_buffer_size);
6117 }
6118
6119 static void draw_line(char *s)
6120 {
6121 #ifdef X11
6122         char *p;
6123         int cur_y_add = 0;
6124         int font_h;
6125         char *tmp_str;
6126
6127         if ((output_methods & TO_X) == 0) {
6128 #endif /* X11 */
6129                 draw_string(s);
6130                 return;
6131 #ifdef X11
6132         }
6133         cur_x = text_start_x;
6134         cur_y += font_ascent();
6135         font_h = font_height();
6136
6137         /* find specials and draw stuff */
6138         p = s;
6139         while (*p) {
6140                 if (*p == SPECIAL_CHAR) {
6141                         int w = 0;
6142
6143                         /* draw string before special */
6144                         *p = '\0';
6145                         draw_string(s);
6146                         *p = SPECIAL_CHAR;
6147                         s = p + 1;
6148
6149                         /* draw special */
6150                         switch (specials[special_index].type) {
6151                                 case HORIZONTAL_LINE:
6152                                 {
6153                                         int h = specials[special_index].height;
6154                                         int mid = font_ascent() / 2;
6155
6156                                         w = text_start_x + text_width - cur_x;
6157
6158                                         XSetLineAttributes(display, window.gc, h, LineSolid,
6159                                                 CapButt, JoinMiter);
6160                                         XDrawLine(display, window.drawable, window.gc, cur_x,
6161                                                 cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
6162                                         break;
6163                                 }
6164
6165                                 case STIPPLED_HR:
6166                                 {
6167                                         int h = specials[special_index].height;
6168                                         int tmp_s = specials[special_index].arg;
6169                                         int mid = font_ascent() / 2;
6170                                         char ss[2] = { tmp_s, tmp_s };
6171
6172                                         w = text_start_x + text_width - cur_x - 1;
6173                                         XSetLineAttributes(display, window.gc, h, LineOnOffDash,
6174                                                 CapButt, JoinMiter);
6175                                         XSetDashes(display, window.gc, 0, ss, 2);
6176                                         XDrawLine(display, window.drawable, window.gc, cur_x,
6177                                                 cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
6178                                         break;
6179                                 }
6180
6181                                 case BAR:
6182                                 {
6183                                         int h, bar_usage, by;
6184                                         if (cur_x - text_start_x > maximum_width
6185                                                         && maximum_width > 0) {
6186                                                 break;
6187                                         }
6188                                         h = specials[special_index].height;
6189                                         bar_usage = specials[special_index].arg;
6190                                         by = cur_y - (font_ascent() / 2) - 1;
6191
6192                                         if (h < font_h) {
6193                                                 by -= h / 2 - 1;
6194                                         }
6195                                         w = specials[special_index].width;
6196                                         if (w == 0) {
6197                                                 w = text_start_x + text_width - cur_x - 1;
6198                                         }
6199                                         if (w < 0) {
6200                                                 w = 0;
6201                                         }
6202
6203                                         XSetLineAttributes(display, window.gc, 1, LineSolid,
6204                                                 CapButt, JoinMiter);
6205
6206                                         XDrawRectangle(display, window.drawable, window.gc, cur_x,
6207                                                 by, w, h);
6208                                         XFillRectangle(display, window.drawable, window.gc, cur_x,
6209                                                 by, w * bar_usage / 255, h);
6210                                         if (h > cur_y_add
6211                                                         && h > font_h) {
6212                                                 cur_y_add = h;
6213                                         }
6214                                         break;
6215                                 }
6216
6217                                 case GAUGE: /* new GAUGE  */
6218                                 {
6219                                         int h, by = 0;
6220                                         unsigned long last_colour = current_color;
6221                                         float angle, px, py;
6222                                         int usage;
6223
6224                                         if (cur_x - text_start_x > maximum_width
6225                                                         && maximum_width > 0) {
6226                                                 break;
6227                                         }
6228
6229                                         h = specials[special_index].height;
6230                                         by = cur_y - (font_ascent() / 2) - 1;
6231
6232                                         if (h < font_h) {
6233                                                 by -= h / 2 - 1;
6234                                         }
6235                                         w = specials[special_index].width;
6236                                         if (w == 0) {
6237                                                 w = text_start_x + text_width - cur_x - 1;
6238                                         }
6239                                         if (w < 0) {
6240                                                 w = 0;
6241                                         }
6242
6243                                         XSetLineAttributes(display, window.gc, 1, LineSolid,
6244                                                         CapButt, JoinMiter);
6245
6246                                         XDrawArc(display, window.drawable, window.gc,
6247                                                         cur_x, by, w, h * 2, 0, 180*64);
6248
6249 #ifdef MATH
6250                                         usage = specials[special_index].arg;
6251                                         angle = (M_PI)*(float)(usage)/255.;
6252                                         px = (float)(cur_x+(w/2.))-(float)(w/2.)*cos(angle);
6253                                         py = (float)(by+(h))-(float)(h)*sin(angle);
6254
6255                                         XDrawLine(display, window.drawable, window.gc,
6256                                                         cur_x + (w/2.), by+(h), (int)(px), (int)(py));
6257 #endif /* MATH */
6258
6259                                         if (h > cur_y_add
6260                                                         && h > font_h) {
6261                                                 cur_y_add = h;
6262                                         }
6263
6264                                         set_foreground_color(last_colour);
6265
6266                                         break;
6267
6268                                 }
6269
6270                                 case GRAPH:
6271                                 {
6272                                         int h, by, i = 0, j = 0;
6273                                         int colour_idx = 0;
6274                                         unsigned long last_colour = current_color;
6275                                         unsigned long *tmpcolour = 0;
6276                                         if (cur_x - text_start_x > maximum_width
6277                                                         && maximum_width > 0) {
6278                                                 break;
6279                                         }
6280                                         h = specials[special_index].height;
6281                                         by = cur_y - (font_ascent() / 2) - 1;
6282
6283                                         if (h < font_h) {
6284                                                 by -= h / 2 - 1;
6285                                         }
6286                                         w = specials[special_index].width;
6287                                         if (w == 0) {
6288                                                 w = text_start_x + text_width - cur_x - 1;
6289                                         }
6290                                         if (w < 0) {
6291                                                 w = 0;
6292                                         }
6293                                         if (draw_graph_borders) {
6294                                                 XSetLineAttributes(display, window.gc, 1, LineSolid,
6295                                                         CapButt, JoinMiter);
6296                                                 XDrawRectangle(display, window.drawable, window.gc,
6297                                                         cur_x, by, w, h);
6298                                         }
6299                                         XSetLineAttributes(display, window.gc, 1, LineSolid,
6300                                                 CapButt, JoinMiter);
6301
6302                                         if (specials[special_index].last_colour != 0
6303                                                         || specials[special_index].first_colour != 0) {
6304                                                 tmpcolour = do_gradient(w - 1, specials[special_index].last_colour, specials[special_index].first_colour);
6305                                         }
6306                                         colour_idx = 0;
6307                                         for (i = w - 2; i > -1; i--) {
6308                                                 if (specials[special_index].last_colour != 0
6309                                                                 || specials[special_index].first_colour != 0) {
6310                                                         if (specials[special_index].tempgrad) {
6311 #ifdef DEBUG_lol
6312                                                                 assert(
6313                                                                                 (int)((float)(w - 2) - specials[special_index].graph[j] *
6314                                                                                         (w - 2) / (float)specials[special_index].graph_scale)
6315                                                                                 < w - 1
6316                                                                           );
6317                                                                 assert(
6318                                                                                 (int)((float)(w - 2) - specials[special_index].graph[j] *
6319                                                                                         (w - 2) / (float)specials[special_index].graph_scale)
6320                                                                                 > -1
6321                                                                           );
6322                                                                 if (specials[special_index].graph[j] == specials[special_index].graph_scale) {
6323                                                                         assert(
6324                                                                                         (int)((float)(w - 2) - specials[special_index].graph[j] *
6325                                                                                                 (w - 2) / (float)specials[special_index].graph_scale)
6326                                                                                         == 0
6327                                                                                   );
6328                                                                 }
6329 #endif /* DEBUG_lol */
6330                                                                 XSetForeground(display, window.gc, tmpcolour[
6331                                                                                 (int)((float)(w - 2) - specials[special_index].graph[j] *
6332                                                                                         (w - 2) / (float)specials[special_index].graph_scale)
6333                                                                                 ]);
6334                                                         } else {
6335                                                                 XSetForeground(display, window.gc, tmpcolour[colour_idx++]);
6336                                                         }
6337                                                 }
6338                                                 /* this is mugfugly, but it works */
6339                                                 XDrawLine(display, window.drawable, window.gc,
6340                                                                 cur_x + i + 1, by + h, cur_x + i + 1,
6341                                                                 round_to_int((double)by + h - specials[special_index].graph[j] *
6342                                                                         (h - 1) / specials[special_index].graph_scale));
6343                                                 if ((w - i) / ((float) (w - 2) /
6344                                                                         (specials[special_index].graph_width)) > j
6345                                                                 && j < MAX_GRAPH_DEPTH - 3) {
6346                                                         j++;
6347                                                 }
6348                                         }
6349                                         if (tmpcolour) free(tmpcolour);
6350                                         if (h > cur_y_add
6351                                                         && h > font_h) {
6352                                                 cur_y_add = h;
6353                                         }
6354                                         /* if (draw_mode == BG) {
6355                                                 set_foreground_color(default_bg_color);
6356                                         } else if (draw_mode == OUTLINE) {
6357                                                 set_foreground_color(default_out_color);
6358                                         } else {
6359                                                 set_foreground_color(default_fg_color);
6360                                         } */
6361                                         if (show_graph_range) {
6362                                                 int tmp_x = cur_x;
6363                                                 int tmp_y = cur_y;
6364                                                 unsigned short int seconds = update_interval * w;
6365                                                 char *tmp_day_str;
6366                                                 char *tmp_hour_str;
6367                                                 char *tmp_min_str;
6368                                                 char *tmp_sec_str;
6369                                                 unsigned short int timeunits;
6370                                                 if (seconds != 0) {
6371                                                         timeunits = seconds / 86400; seconds %= 86400;
6372                                                         if (timeunits > 0) {
6373                                                                 asprintf(&tmp_day_str, "%dd", timeunits);
6374                                                         } else {
6375                                                                 tmp_day_str = strdup("");
6376                                                         }
6377                                                         timeunits = seconds / 3600; seconds %= 3600;
6378                                                         if (timeunits > 0) {
6379                                                                 asprintf(&tmp_hour_str, "%dh", timeunits);
6380                                                         } else {
6381                                                                 tmp_hour_str = strdup("");
6382                                                         }
6383                                                         timeunits = seconds / 60; seconds %= 60;
6384                                                         if (timeunits > 0) {
6385                                                                 asprintf(&tmp_min_str, "%dm", timeunits);
6386                                                         } else {
6387                                                                 tmp_min_str = strdup("");
6388                                                         }
6389                                                         if (seconds > 0) {
6390                                                                 asprintf(&tmp_sec_str, "%ds", seconds);
6391                                                         } else {
6392                                                                 tmp_sec_str = strdup("");
6393                                                         }
6394                                                         asprintf(&tmp_str, "%s%s%s%s", tmp_day_str, tmp_hour_str, tmp_min_str, tmp_sec_str);
6395                                                         free(tmp_day_str); free(tmp_hour_str); free(tmp_min_str); free(tmp_sec_str);
6396                                                 } else {
6397                                                         asprintf(&tmp_str, "Range not possible"); // should never happen, but better safe then sorry
6398                                                 }
6399                                                 cur_x += (w / 2) - (font_ascent() * (strlen(tmp_str) / 2));
6400                                                 cur_y += font_h / 2;
6401                                                 draw_string(tmp_str);
6402                                                 free(tmp_str);
6403                                                 cur_x = tmp_x;
6404                                                 cur_y = tmp_y;
6405                                         }
6406 #ifdef MATH
6407                                         if (show_graph_scale && (specials[special_index].show_scale == 1)) {
6408                                                 int tmp_x = cur_x;
6409                                                 int tmp_y = cur_y;
6410                                                 cur_x += font_ascent() / 2;
6411                                                 cur_y += font_h / 2;
6412                                                 tmp_str = (char *)
6413                                                         calloc(log10(floor(specials[special_index].graph_scale)) + 4,
6414                                                                         sizeof(char));
6415                                                 sprintf(tmp_str, "%.1f", specials[special_index].graph_scale);
6416                                                 draw_string(tmp_str);
6417                                                 free(tmp_str);
6418                                                 cur_x = tmp_x;
6419                                                 cur_y = tmp_y;
6420                                         }
6421 #endif
6422                                         set_foreground_color(last_colour);
6423                                         break;
6424                                 }
6425
6426                                 case FONT:
6427                                 {
6428                                         int old = font_ascent();
6429
6430                                         cur_y -= font_ascent();
6431                                         selected_font = specials[special_index].font_added;
6432                                         if (cur_y + font_ascent() < cur_y + old) {
6433                                                 cur_y += old;
6434                                         } else {
6435                                                 cur_y += font_ascent();
6436                                         }
6437                                         set_font();
6438                                         font_h = font_height();
6439                                         break;
6440                                 }
6441                                 case FG:
6442                                         if (draw_mode == FG) {
6443                                                 set_foreground_color(specials[special_index].arg);
6444                                         }
6445                                         break;
6446
6447                                 case BG:
6448                                         if (draw_mode == BG) {
6449                                                 set_foreground_color(specials[special_index].arg);
6450                                         }
6451                                         break;
6452
6453                                 case OUTLINE:
6454                                         if (draw_mode == OUTLINE) {
6455                                                 set_foreground_color(specials[special_index].arg);
6456                                         }
6457                                         break;
6458
6459                                 case OFFSET:
6460                                         w += specials[special_index].arg;
6461                                         break;
6462
6463                                 case VOFFSET:
6464                                         cur_y += specials[special_index].arg;
6465                                         break;
6466
6467                                 case GOTO:
6468                                         if (specials[special_index].arg >= 0) {
6469                                                 cur_x = (int) specials[special_index].arg;
6470                                         }
6471                                         break;
6472
6473                                 case TAB:
6474                                 {
6475                                         int start = specials[special_index].arg;
6476                                         int step = specials[special_index].width;
6477
6478                                         if (!step || step < 0) {
6479                                                 step = 10;
6480                                         }
6481                                         w = step - (cur_x - text_start_x - start) % step;
6482                                         break;
6483                                 }
6484
6485                                 case ALIGNR:
6486                                 {
6487                                         /* TODO: add back in "+ border_margin" to the end of
6488                                          * this line? */
6489                                         int pos_x = text_start_x + text_width -
6490                                                 get_string_width_special(s);
6491
6492                                         /* printf("pos_x %i text_start_x %i text_width %i cur_x %i "
6493                                                 "get_string_width(p) %i gap_x %i "
6494                                                 "specials[special_index].arg %i border_margin %i "
6495                                                 "border_width %i\n", pos_x, text_start_x, text_width,
6496                                                 cur_x, get_string_width_special(s), gap_x,
6497                                                 specials[special_index].arg, border_margin,
6498                                                 border_width); */
6499                                         if (pos_x > specials[special_index].arg && pos_x > cur_x) {
6500                                                 cur_x = pos_x - specials[special_index].arg;
6501                                         }
6502                                         break;
6503                                 }
6504
6505                                 case ALIGNC:
6506                                 {
6507                                         int pos_x = (text_width) / 2 - get_string_width_special(s) /
6508                                                 2 - (cur_x - text_start_x);
6509                                         /* int pos_x = text_start_x + text_width / 2 -
6510                                                 get_string_width_special(s) / 2; */
6511
6512                                         /* printf("pos_x %i text_start_x %i text_width %i cur_x %i "
6513                                                 "get_string_width(p) %i gap_x %i "
6514                                                 "specials[special_index].arg %i\n", pos_x, text_start_x,
6515                                                 text_width, cur_x, get_string_width(s), gap_x,
6516                                                 specials[special_index].arg); */
6517                                         if (pos_x > specials[special_index].arg) {
6518                                                 w = pos_x - specials[special_index].arg;
6519                                         }
6520                                         break;
6521                                 }
6522                         }
6523
6524                         cur_x += w;
6525
6526                         special_index++;
6527                 }
6528
6529                 p++;
6530         }
6531
6532         if (cur_y_add > 0) {
6533                 cur_y += cur_y_add;
6534         }
6535         draw_string(s);
6536         cur_y += font_descent();
6537
6538 #endif /* X11 */
6539 }
6540
6541 static void draw_text(void)
6542 {
6543 #ifdef X11
6544         if (output_methods & TO_X) {
6545                 cur_y = text_start_y;
6546
6547                 /* draw borders */
6548                 if (draw_borders && border_width > 0) {
6549                         unsigned int b = (border_width + 1) / 2;
6550
6551                         if (stippled_borders) {
6552                                 char ss[2] = { stippled_borders, stippled_borders };
6553                                 XSetLineAttributes(display, window.gc, border_width, LineOnOffDash,
6554                                         CapButt, JoinMiter);
6555                                 XSetDashes(display, window.gc, 0, ss, 2);
6556                         } else {
6557                                 XSetLineAttributes(display, window.gc, border_width, LineSolid,
6558                                         CapButt, JoinMiter);
6559                         }
6560
6561                         XDrawRectangle(display, window.drawable, window.gc,
6562                                 text_start_x - border_margin + b, text_start_y - border_margin + b,
6563                                 text_width + border_margin * 2 - 1 - b * 2,
6564                                 text_height + border_margin * 2 - 1 - b * 2);
6565                 }
6566
6567                 /* draw text */
6568                 special_index = 0;
6569         }
6570 #endif /* X11 */
6571         for_each_line(text_buffer, draw_line);
6572 }
6573
6574 static void draw_stuff(void)
6575 {
6576         if (overwrite_file) {
6577                 overwrite_fpointer = fopen(overwrite_file, "w");
6578                 if(!overwrite_fpointer)
6579                         ERR("Can't overwrite '%s' anymore", overwrite_file);
6580         }
6581         if (append_file) {
6582                 append_fpointer = fopen(append_file, "a");
6583                 if(!append_fpointer)
6584                         ERR("Can't append '%s' anymore", append_file);
6585         }
6586 #ifdef X11
6587         if (output_methods & TO_X) {
6588                 selected_font = 0;
6589                 if (draw_shades && !draw_outline) {
6590                         text_start_x++;
6591                         text_start_y++;
6592                         set_foreground_color(default_bg_color);
6593                         draw_mode = BG;
6594                         draw_text();
6595                         text_start_x--;
6596                         text_start_y--;
6597                 }
6598
6599                 if (draw_outline) {
6600                         int i, j;
6601                         selected_font = 0;
6602
6603                         for (i = -1; i < 2; i++) {
6604                                 for (j = -1; j < 2; j++) {
6605                                         if (i == 0 && j == 0) {
6606                                                 continue;
6607                                         }
6608                                         text_start_x += i;
6609                                         text_start_y += j;
6610                                         set_foreground_color(default_out_color);
6611                                         draw_mode = OUTLINE;
6612                                         draw_text();
6613                                         text_start_x -= i;
6614                                         text_start_y -= j;
6615                                 }
6616                         }
6617                 }
6618
6619                 set_foreground_color(default_fg_color);
6620         }
6621 #endif /* X11 */
6622         draw_mode = FG;
6623         draw_text();
6624 #ifdef X11
6625         if (output_methods & TO_X) {
6626 #ifdef HAVE_XDBE
6627                 if (use_xdbe) {
6628                         XdbeSwapInfo swap;
6629
6630                         swap.swap_window = window.window;
6631                         swap.swap_action = XdbeBackground;
6632                         XdbeSwapBuffers(display, &swap, 1);
6633                 }
6634 #endif
6635         }
6636 #endif /* X11 */
6637         if(overwrite_fpointer) {
6638                 fclose(overwrite_fpointer);
6639                 overwrite_fpointer = 0;
6640         }
6641         if(append_fpointer) {
6642                 fclose(append_fpointer);
6643                 append_fpointer = 0;
6644         }
6645 }
6646
6647 #ifdef X11
6648 static void clear_text(int exposures)
6649 {
6650 #ifdef HAVE_XDBE
6651         if (use_xdbe) {
6652                 /* The swap action is XdbeBackground, which clears */
6653                 return;
6654         } else
6655 #endif
6656         if (display && window.window) { // make sure these are !null
6657                 /* there is some extra space for borders and outlines */
6658                 XClearArea(display, window.window, text_start_x - border_margin - 1,
6659                         text_start_y - border_margin - 1,
6660                         text_width + border_margin * 2 + 2,
6661                         text_height + border_margin * 2 + 2, exposures ? True : 0);
6662         }
6663 }
6664 #endif /* X11 */
6665
6666 static int need_to_update;
6667
6668 /* update_text() generates new text and clears old text area */
6669 static void update_text(void)
6670 {
6671 #ifdef IMLIB2
6672         cimlib_cleanup();
6673 #endif /* IMLIB2 */
6674         generate_text();
6675 #ifdef X11
6676         if (output_methods & TO_X)
6677                 clear_text(1);
6678 #endif /* X11 */
6679         need_to_update = 1;
6680 }
6681
6682 #ifdef HAVE_SYS_INOTIFY_H
6683 int inotify_fd;
6684 #endif
6685
6686 static void main_loop(void)
6687 {
6688         int terminate = 0;
6689 #ifdef SIGNAL_BLOCKING
6690         sigset_t newmask, oldmask;
6691 #endif
6692         double t;
6693 #ifdef HAVE_SYS_INOTIFY_H
6694         int inotify_config_wd = 0;
6695 #define INOTIFY_EVENT_SIZE  (sizeof(struct inotify_event))
6696 #define INOTIFY_BUF_LEN     (20 * (INOTIFY_EVENT_SIZE + 16))
6697         char inotify_buff[INOTIFY_BUF_LEN];
6698 #endif /* HAVE_SYS_INOTIFY_H */
6699
6700
6701 #ifdef SIGNAL_BLOCKING
6702         sigemptyset(&newmask);
6703         sigaddset(&newmask, SIGINT);
6704         sigaddset(&newmask, SIGTERM);
6705         sigaddset(&newmask, SIGUSR1);
6706 #endif
6707
6708         next_update_time = last_update_time = get_time();
6709         info.looped = 0;
6710         while (terminate == 0 && (total_run_times == 0 || info.looped < total_run_times)) {
6711                 info.looped++;
6712
6713 #ifdef SIGNAL_BLOCKING
6714                 /* block signals.  we will inspect for pending signals later */
6715                 if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) < 0) {
6716                         CRIT_ERR("unable to sigprocmask()");
6717                 }
6718 #endif
6719
6720 #ifdef X11
6721                 if (output_methods & TO_X) {
6722                         XFlush(display);
6723
6724                         /* wait for X event or timeout */
6725
6726                         if (!XPending(display)) {
6727                                 fd_set fdsr;
6728                                 struct timeval tv;
6729                                 int s;
6730                                 t = next_update_time - get_time();
6731
6732                                 if (t < 0) {
6733                                         t = 0;
6734                                 } else if (t > update_interval) {
6735                                         t = update_interval;
6736                                 }
6737
6738                                 tv.tv_sec = (long) t;
6739                                 tv.tv_usec = (long) (t * 1000000) % 1000000;
6740                                 FD_ZERO(&fdsr);
6741                                 FD_SET(ConnectionNumber(display), &fdsr);
6742
6743                                 s = select(ConnectionNumber(display) + 1, &fdsr, 0, 0, &tv);
6744                                 if (s == -1) {
6745                                         if (errno != EINTR) {
6746                                                 ERR("can't select(): %s", strerror(errno));
6747                                         }
6748                                 } else {
6749                                         /* timeout */
6750                                         if (s == 0) {
6751                                                 update_text();
6752                                         }
6753                                 }
6754                         }
6755
6756                         if (need_to_update) {
6757 #ifdef OWN_WINDOW
6758                                 int wx = window.x, wy = window.y;
6759 #endif
6760
6761                                 need_to_update = 0;
6762                                 selected_font = 0;
6763                                 update_text_area();
6764 #ifdef OWN_WINDOW
6765                                 if (own_window) {
6766                                         /* resize window if it isn't right size */
6767                                         if (!fixed_size
6768                                                 && (text_width + border_margin * 2 + 1 != window.width
6769                                                 || text_height + border_margin * 2 + 1 != window.height)) {
6770                                                         window.width = text_width + border_margin * 2 + 1;
6771                                                         window.height = text_height + border_margin * 2 + 1;
6772                                                         XResizeWindow(display, window.window, window.width,
6773                                                                 window.height);
6774                                                         if (own_window) {
6775                                                                 set_transparent_background(window.window);
6776                                                         }
6777                                         }
6778
6779                                         /* move window if it isn't in right position */
6780                                         if (!fixed_pos && (window.x != wx || window.y != wy)) {
6781                                                 XMoveWindow(display, window.window, window.x, window.y);
6782                                         }
6783                                 }
6784 #endif
6785
6786                                 clear_text(1);
6787
6788 #ifdef HAVE_XDBE
6789                                 if (use_xdbe) {
6790                                         XRectangle r;
6791
6792                                         r.x = text_start_x - border_margin;
6793                                         r.y = text_start_y - border_margin;
6794                                         r.width = text_width + border_margin * 2;
6795                                         r.height = text_height + border_margin * 2;
6796                                         XUnionRectWithRegion(&r, x11_stuff.region, x11_stuff.region);
6797                                 }
6798 #endif
6799                         }
6800
6801                         /* handle X events */
6802                         while (XPending(display)) {
6803                                 XEvent ev;
6804
6805                                 XNextEvent(display, &ev);
6806                                 switch (ev.type) {
6807                                         case Expose:
6808                                         {
6809                                                 XRectangle r;
6810                                                 r.x = ev.xexpose.x;
6811                                                 r.y = ev.xexpose.y;
6812                                                 r.width = ev.xexpose.width;
6813                                                 r.height = ev.xexpose.height;
6814                                                 XUnionRectWithRegion(&r, x11_stuff.region, x11_stuff.region);
6815                                                 break;
6816                                         }
6817
6818 #ifdef OWN_WINDOW
6819                                         case ReparentNotify:
6820                                                 /* set background to ParentRelative for all parents */
6821                                                 if (own_window) {
6822                                                         set_transparent_background(window.window);
6823                                                 }
6824                                                 break;
6825
6826                                         case ConfigureNotify:
6827                                                 if (own_window) {
6828                                                         /* if window size isn't what expected, set fixed size */
6829                                                         if (ev.xconfigure.width != window.width
6830                                                                         || ev.xconfigure.height != window.height) {
6831                                                                 if (window.width != 0 && window.height != 0) {
6832                                                                         fixed_size = 1;
6833                                                                 }
6834
6835                                                                 /* clear old stuff before screwing up
6836                                                                  * size and pos */
6837                                                                 clear_text(1);
6838
6839                                                                 {
6840                                                                         XWindowAttributes attrs;
6841                                                                         if (XGetWindowAttributes(display,
6842                                                                                         window.window, &attrs)) {
6843                                                                                 window.width = attrs.width;
6844                                                                                 window.height = attrs.height;
6845                                                                         }
6846                                                                 }
6847
6848                                                                 text_width = window.width - border_margin * 2 - 1;
6849                                                                 text_height = window.height - border_margin * 2 - 1;
6850                                                                 if (text_width > maximum_width
6851                                                                                 && maximum_width > 0) {
6852                                                                         text_width = maximum_width;
6853                                                                 }
6854                                                         }
6855
6856                                                         /* if position isn't what expected, set fixed pos
6857                                                          * total_updates avoids setting fixed_pos when window
6858                                                          * is set to weird locations when started */
6859                                                         /* // this is broken
6860                                                         if (total_updates >= 2 && !fixed_pos
6861                                                                         && (window.x != ev.xconfigure.x
6862                                                                         || window.y != ev.xconfigure.y)
6863                                                                         && (ev.xconfigure.x != 0
6864                                                                         || ev.xconfigure.y != 0)) {
6865                                                                 fixed_pos = 1;
6866                                                         } */
6867                                                         set_font();
6868                                                 }
6869                                                 break;
6870
6871                                         case ButtonPress:
6872                                                 if (own_window) {
6873                                                         /* if an ordinary window with decorations */
6874                                                         if ((window.type == TYPE_NORMAL)
6875                                                                 && (!TEST_HINT(window.hints,
6876                                                                 HINT_UNDECORATED))) {
6877                                                                 /* allow conky to hold input focus. */
6878                                                                 break;
6879                                                         } else {
6880                                                                 /* forward the click to the desktop window */
6881                                                                 XUngrabPointer(display, ev.xbutton.time);
6882                                                                 ev.xbutton.window = window.desktop;
6883                                                                 ev.xbutton.x = ev.xbutton.x_root;
6884                                                                 ev.xbutton.y = ev.xbutton.y_root;
6885                                                                 XSendEvent(display, ev.xbutton.window, False,
6886                                                                         ButtonPressMask, &ev);
6887                                                                 XSetInputFocus(display, ev.xbutton.window,
6888                                                                         RevertToParent, ev.xbutton.time);
6889                                                         }
6890                                                 }
6891                                                 break;
6892
6893                                         case ButtonRelease:
6894                                                 if (own_window) {
6895                                                         /* if an ordinary window with decorations */
6896                                                         if ((window.type == TYPE_NORMAL)
6897                                                                         && (!TEST_HINT(window.hints,
6898                                                                         HINT_UNDECORATED))) {
6899                                                                 /* allow conky to hold input focus. */
6900                                                                 break;
6901                                                         } else {
6902                                                                 /* forward the release to the desktop window */
6903                                                                 ev.xbutton.window = window.desktop;
6904                                                                 ev.xbutton.x = ev.xbutton.x_root;
6905                                                                 ev.xbutton.y = ev.xbutton.y_root;
6906                                                                 XSendEvent(display, ev.xbutton.window, False,
6907                                                                         ButtonReleaseMask, &ev);
6908                                                         }
6909                                                 }
6910                                                 break;
6911
6912 #endif
6913
6914                                         default:
6915 #ifdef HAVE_XDAMAGE
6916                                                 if (ev.type == x11_stuff.event_base + XDamageNotify) {
6917                                                         XDamageNotifyEvent *dev = (XDamageNotifyEvent *) &ev;
6918
6919                                                         XFixesSetRegion(display, x11_stuff.part, &dev->area, 1);
6920                                                         XFixesUnionRegion(display, x11_stuff.region2, x11_stuff.region2, x11_stuff.part);
6921                                                 }
6922 #endif /* HAVE_XDAMAGE */
6923                                                 break;
6924                                 }
6925                         }
6926
6927 #ifdef HAVE_XDAMAGE
6928                         XDamageSubtract(display, x11_stuff.damage, x11_stuff.region2, None);
6929                         XFixesSetRegion(display, x11_stuff.region2, 0, 0);
6930 #endif /* HAVE_XDAMAGE */
6931
6932                         /* XDBE doesn't seem to provide a way to clear the back buffer without
6933                          * interfering with the front buffer, other than passing XdbeBackground
6934                          * to XdbeSwapBuffers. That means that if we're using XDBE, we need to
6935                          * redraw the text even if it wasn't part of the exposed area. OTOH,
6936                          * if we're not going to call draw_stuff at all, then no swap happens
6937                          * and we can safely do nothing. */
6938
6939                         if (!XEmptyRegion(x11_stuff.region)) {
6940 #ifdef HAVE_XDBE
6941                                 if (use_xdbe) {
6942                                         XRectangle r;
6943
6944                                         r.x = text_start_x - border_margin;
6945                                         r.y = text_start_y - border_margin;
6946                                         r.width = text_width + border_margin * 2;
6947                                         r.height = text_height + border_margin * 2;
6948                                         XUnionRectWithRegion(&r, x11_stuff.region, x11_stuff.region);
6949                                 }
6950 #endif
6951                                 XSetRegion(display, window.gc, x11_stuff.region);
6952 #ifdef XFT
6953                                 if (use_xft) {
6954                                         XftDrawSetClip(window.xftdraw, x11_stuff.region);
6955                                 }
6956 #endif
6957 #ifdef IMLIB2
6958                                 cimlib_render(text_start_x, text_start_y, window.width, window.height);
6959 #endif /* IMLIB2 */
6960                                 draw_stuff();
6961                                 XDestroyRegion(x11_stuff.region);
6962                                 x11_stuff.region = XCreateRegion();
6963                         }
6964                 } else {
6965 #endif /* X11 */
6966                         t = (next_update_time - get_time()) * 1000000;
6967                         if(t > 0) usleep((useconds_t)t);
6968                         update_text();
6969                         draw_stuff();
6970 #ifdef X11
6971                 }
6972 #endif /* X11 */
6973
6974 #ifdef SIGNAL_BLOCKING
6975                 /* unblock signals of interest and let handler fly */
6976                 if (sigprocmask(SIG_SETMASK, &oldmask, NULL) < 0) {
6977                         CRIT_ERR("unable to sigprocmask()");
6978                 }
6979 #endif
6980
6981                 switch (g_signal_pending) {
6982                         case SIGHUP:
6983                         case SIGUSR1:
6984                                 ERR("received SIGHUP or SIGUSR1. reloading the config file.");
6985                                 reload_config();
6986                                 break;
6987                         case SIGINT:
6988                         case SIGTERM:
6989                                 ERR("received SIGINT or SIGTERM to terminate. bye!");
6990                                 terminate = 1;
6991                                 clean_up();
6992 #ifdef X11
6993                                 if (output_methods & TO_X) {
6994                                         XDestroyRegion(x11_stuff.region);
6995                                         x11_stuff.region = NULL;
6996 #ifdef HAVE_XDAMAGE
6997                                         XDamageDestroy(display, x11_stuff.damage);
6998                                         XFixesDestroyRegion(display, x11_stuff.region2);
6999                                         XFixesDestroyRegion(display, x11_stuff.part);
7000 #endif /* HAVE_XDAMAGE */
7001                                         if (disp) {
7002                                                 free(disp);
7003                                         }
7004                                 }
7005 #endif /* X11 */
7006                                 if(overwrite_file) {
7007                                         free(overwrite_file);
7008                                         overwrite_file = 0;
7009                                 }
7010                                 if(append_file) {
7011                                         free(append_file);
7012                                         append_file = 0;
7013                                 }
7014                                 break;
7015                         default:
7016                                 /* Reaching here means someone set a signal
7017                                  * (SIGXXXX, signal_handler), but didn't write any code
7018                                  * to deal with it.
7019                                  * If you don't want to handle a signal, don't set a handler on
7020                                  * it in the first place. */
7021                                 if (g_signal_pending) {
7022                                         ERR("ignoring signal (%d)", g_signal_pending);
7023                                 }
7024                                 break;
7025                 }
7026 #ifdef HAVE_SYS_INOTIFY_H
7027                 if (inotify_fd && !inotify_config_wd) {
7028                         inotify_config_wd = inotify_add_watch(inotify_fd,
7029                                         current_config,
7030                                         IN_MODIFY);
7031                 }
7032                 if (inotify_fd && inotify_config_wd) {
7033                         int len = 0, idx = 0;
7034                         fd_set descriptors;
7035                         struct timeval time_to_wait;
7036
7037                         FD_ZERO (&descriptors);
7038                         FD_SET(inotify_fd, &descriptors);
7039
7040                         time_to_wait.tv_sec = time_to_wait.tv_usec = 0;
7041
7042                         select(inotify_fd + 1, &descriptors, NULL, NULL, &time_to_wait);
7043                         if (FD_ISSET(inotify_fd, &descriptors)) {
7044                                 /* process inotify events */
7045                                 len = read(inotify_fd, inotify_buff, INOTIFY_BUF_LEN);
7046                                 while (len > 0 && idx < len) {
7047                                         struct inotify_event *ev = (struct inotify_event *) &inotify_buff[idx];
7048                                         if (ev->wd == inotify_config_wd && (ev->mask & IN_MODIFY || ev->mask & IN_IGNORED)) {
7049                                                 /* current_config should be reloaded */
7050                                                 ERR("'%s' modified, reloading...", current_config);
7051                                                 reload_config();
7052                                                 if (ev->mask & IN_IGNORED) {
7053                                                         /* for some reason we get IN_IGNORED here
7054                                                          * sometimes, so we need to re-add the watch */
7055                                                         inotify_config_wd = inotify_add_watch(inotify_fd,
7056                                                                         current_config,
7057                                                                         IN_MODIFY);
7058                                                 }
7059                                         }
7060 #ifdef HAVE_LUA
7061                                         else {
7062                                                 llua_inotify_query(ev->wd, ev->mask);
7063                                         }
7064 #endif /* HAVE_LUA */
7065                                         idx += INOTIFY_EVENT_SIZE + ev->len;
7066                                 }
7067                         }
7068                 }
7069 #endif /* HAVE_SYS_INOTIFY_H */
7070
7071                 g_signal_pending = 0;
7072         }
7073
7074 #ifdef HAVE_SYS_INOTIFY_H
7075         if (inotify_fd) {
7076                 inotify_rm_watch(inotify_fd, inotify_config_wd);
7077                 close(inotify_fd);
7078                 inotify_fd = inotify_config_wd = 0;
7079         }
7080 #endif /* HAVE_SYS_INOTIFY_H */
7081
7082 #ifdef X11
7083         X11_destroy_window();
7084 #endif /* X11 */
7085 }
7086
7087 static void load_config_file(const char *);
7088 static void load_config_file_x11(const char *);
7089
7090         /* reload the config file */
7091 static void reload_config(void)
7092 {
7093         timed_thread_destroy_registered_threads();
7094
7095         if (info.cpu_usage) {
7096                 free(info.cpu_usage);
7097                 info.cpu_usage = NULL;
7098         }
7099
7100         if (info.mail) {
7101                 free(info.mail);
7102         }
7103
7104 #ifdef X11
7105         free_fonts();
7106 #endif /* X11 */
7107
7108 #ifdef TCP_PORT_MONITOR
7109         tcp_portmon_clear();
7110 #endif
7111
7112 #ifdef HAVE_LUA
7113         llua_close();
7114 #endif /* HAVE_LUA */
7115
7116 #ifdef X11
7117         X11_destroy_window();
7118 #endif /* X11 */
7119
7120         if (current_config) {
7121                 clear_fs_stats();
7122                 load_config_file(current_config);
7123                 load_config_file_x11(current_config);
7124
7125                 /* re-init specials array */
7126                 if ((specials = realloc((void *) specials,
7127                                 sizeof(struct special_t) * max_specials)) == 0) {
7128                         ERR("failed to realloc specials array");
7129                 }
7130
7131 #ifdef X11
7132                 x_initialised = NO;
7133                 if (output_methods & TO_X) {
7134                         X11_initialisation();
7135                 }
7136 #endif /* X11 */
7137                 extract_variable_text(global_text);
7138                 free(global_text);
7139                 global_text = NULL;
7140                 if (tmpstring1) {
7141                         free(tmpstring1);
7142                 }
7143                 tmpstring1 = malloc(text_buffer_size);
7144                 memset(tmpstring1, 0, text_buffer_size);
7145                 if (tmpstring2) {
7146                         free(tmpstring2);
7147                 }
7148                 tmpstring2 = malloc(text_buffer_size);
7149                 memset(tmpstring2, 0, text_buffer_size);
7150                 if (text_buffer) {
7151                         free(text_buffer);
7152                 }
7153                 text_buffer = malloc(max_user_text);
7154                 memset(text_buffer, 0, max_user_text);
7155                 update_text();
7156 #ifdef X11
7157                 X11_create_window();
7158 #endif /* X11 */
7159         }
7160 }
7161
7162 static void clean_up(void)
7163 {
7164         int i;
7165         timed_thread_destroy_registered_threads();
7166
7167         if (info.cpu_usage) {
7168                 free(info.cpu_usage);
7169                 info.cpu_usage = NULL;
7170         }
7171 #ifdef X11
7172         if (output_methods & TO_X) {
7173 #ifdef HAVE_XDBE
7174                 if (use_xdbe) {
7175                         XdbeDeallocateBackBufferName(display, window.back_buffer);
7176                 }
7177 #endif
7178 #ifdef OWN_WINDOW
7179                 if (own_window) {
7180                         XDestroyWindow(display, window.window);
7181                         XClearWindow(display, RootWindow(display, screen));
7182                         XFlush(display);
7183                 } else
7184 #endif
7185                 {
7186                         XClearWindow(display, RootWindow(display, screen));
7187                         clear_text(1);
7188                         XFlush(display);
7189                 }
7190
7191                 XFreeGC(display, window.gc);
7192                 free_fonts();
7193         }
7194
7195 #endif /* X11 */
7196
7197         for (i = 0; i < MAX_TEMPLATES; i++) {
7198                 if (template[i]) {
7199                         free(template[i]);
7200                         template[i] = NULL;
7201                 }
7202         }
7203
7204         free_text_objects(&global_root_object, 0);
7205         if (tmpstring1) {
7206                 free(tmpstring1);
7207                 tmpstring1 = 0;
7208         }
7209         if (tmpstring2) {
7210                 free(tmpstring2);
7211                 tmpstring2 = 0;
7212         }
7213         if (text_buffer) {
7214                 free(text_buffer);
7215                 text_buffer = 0;
7216         }
7217
7218         if (global_text) {
7219                 free(global_text);
7220                 global_text = 0;
7221         }
7222
7223         free(current_config);
7224
7225 #ifdef TCP_PORT_MONITOR
7226         tcp_portmon_clear();
7227 #endif
7228 #ifdef RSS
7229         free_rss_info();
7230 #endif
7231 #ifdef HAVE_LUA
7232         llua_close();
7233 #endif /* HAVE_LUA */
7234
7235         if (specials) {
7236                 for (i = 0; i < special_count; i++) {
7237                         if (specials[i].type == GRAPH) {
7238                                 free(specials[i].graph);
7239                         }
7240                 }
7241                 free(specials);
7242                 specials = NULL;
7243         }
7244
7245         clear_diskio_stats();
7246 }
7247
7248 static int string_to_bool(const char *s)
7249 {
7250         if (!s) {
7251                 // Assumes an option without a true/false means true
7252                 return 1;
7253         } else if (strcasecmp(s, "yes") == EQUAL) {
7254                 return 1;
7255         } else if (strcasecmp(s, "true") == EQUAL) {
7256                 return 1;
7257         } else if (strcasecmp(s, "1") == EQUAL) {
7258                 return 1;
7259         }
7260         return 0;
7261 }
7262
7263 #ifdef X11
7264 static enum alignment string_to_alignment(const char *s)
7265 {
7266         if (strcasecmp(s, "top_left") == EQUAL) {
7267                 return TOP_LEFT;
7268         } else if (strcasecmp(s, "top_right") == EQUAL) {
7269                 return TOP_RIGHT;
7270         } else if (strcasecmp(s, "top_middle") == EQUAL) {
7271                 return TOP_MIDDLE;
7272         } else if (strcasecmp(s, "bottom_left") == EQUAL) {
7273                 return BOTTOM_LEFT;
7274         } else if (strcasecmp(s, "bottom_right") == EQUAL) {
7275                 return BOTTOM_RIGHT;
7276         } else if (strcasecmp(s, "bottom_middle") == EQUAL) {
7277                 return BOTTOM_MIDDLE;
7278         } else if (strcasecmp(s, "middle_left") == EQUAL) {
7279                 return MIDDLE_LEFT;
7280         } else if (strcasecmp(s, "middle_right") == EQUAL) {
7281                 return MIDDLE_RIGHT;
7282         } else if (strcasecmp(s, "tl") == EQUAL) {
7283                 return TOP_LEFT;
7284         } else if (strcasecmp(s, "tr") == EQUAL) {
7285                 return TOP_RIGHT;
7286         } else if (strcasecmp(s, "tm") == EQUAL) {
7287                 return TOP_MIDDLE;
7288         } else if (strcasecmp(s, "bl") == EQUAL) {
7289                 return BOTTOM_LEFT;
7290         } else if (strcasecmp(s, "br") == EQUAL) {
7291                 return BOTTOM_RIGHT;
7292         } else if (strcasecmp(s, "bm") == EQUAL) {
7293                 return BOTTOM_MIDDLE;
7294         } else if (strcasecmp(s, "ml") == EQUAL) {
7295                 return MIDDLE_LEFT;
7296         } else if (strcasecmp(s, "mr") == EQUAL) {
7297                 return MIDDLE_RIGHT;
7298         } else if (strcasecmp(s, "none") == EQUAL) {
7299                 return NONE;
7300         }
7301         return TOP_LEFT;
7302 }
7303 #endif /* X11 */
7304
7305 #ifdef X11
7306 static void set_default_configurations_for_x(void)
7307 {
7308         default_fg_color = WhitePixel(display, screen);
7309         default_bg_color = BlackPixel(display, screen);
7310         default_out_color = BlackPixel(display, screen);
7311         color0 = default_fg_color;
7312         color1 = default_fg_color;
7313         color2 = default_fg_color;
7314         color3 = default_fg_color;
7315         color4 = default_fg_color;
7316         color5 = default_fg_color;
7317         color6 = default_fg_color;
7318         color7 = default_fg_color;
7319         color8 = default_fg_color;
7320         color9 = default_fg_color;
7321 }
7322 #endif /* X11 */
7323
7324 static void set_default_configurations(void)
7325 {
7326         int i;
7327         update_uname();
7328         fork_to_background = 0;
7329         total_run_times = 0;
7330         info.cpu_avg_samples = 2;
7331         info.net_avg_samples = 2;
7332         info.diskio_avg_samples = 2;
7333         info.memmax = 0;
7334         top_cpu = 0;
7335         cpu_separate = 0;
7336         short_units = 0;
7337         top_mem = 0;
7338         top_time = 0;
7339 #ifdef MPD
7340         mpd_set_host("localhost");
7341         mpd_set_port("6600");
7342 #endif
7343 #ifdef XMMS2
7344         info.xmms2.artist = NULL;
7345         info.xmms2.album = NULL;
7346         info.xmms2.title = NULL;
7347         info.xmms2.genre = NULL;
7348         info.xmms2.comment = NULL;
7349         info.xmms2.url = NULL;
7350         info.xmms2.status = NULL;
7351         info.xmms2.playlist = NULL;
7352 #endif
7353         use_spacer = NO_SPACER;
7354 #ifdef X11
7355         output_methods = TO_X;
7356 #else
7357         output_methods = TO_STDOUT;
7358 #endif
7359 #ifdef X11
7360         show_graph_scale = 0;
7361         show_graph_range = 0;
7362         draw_shades = 1;
7363         draw_borders = 0;
7364         draw_graph_borders = 1;
7365         draw_outline = 0;
7366         set_first_font("6x10");
7367         gap_x = 5;
7368         gap_y = 60;
7369         minimum_width = 5;
7370         minimum_height = 5;
7371         maximum_width = 0;
7372 #ifdef OWN_WINDOW
7373         own_window = 0;
7374         window.type = TYPE_NORMAL;
7375         window.hints = 0;
7376         strcpy(window.class_name, PACKAGE_NAME);
7377         sprintf(window.title, PACKAGE_NAME" (%s)", info.uname_s.nodename);
7378 #endif
7379         stippled_borders = 0;
7380         border_margin = 3;
7381         border_width = 1;
7382         text_alignment = BOTTOM_LEFT;
7383         info.x11.monitor.number = 1;
7384         info.x11.monitor.current = 0;
7385 #endif /* X11 */
7386
7387         for (i = 0; i < MAX_TEMPLATES; i++) {
7388                 template[i] = strdup("");
7389         }
7390
7391         free(current_mail_spool);
7392         {
7393                 char buf[256];
7394
7395                 variable_substitute(MAIL_FILE, buf, 256);
7396                 if (buf[0] != '\0') {
7397                         current_mail_spool = strndup(buf, text_buffer_size);
7398                 }
7399         }
7400
7401         no_buffers = 1;
7402         update_interval = 3.0;
7403         info.music_player_interval = 1.0;
7404         stuff_in_upper_case = 0;
7405         info.users.number = 1;
7406
7407 #ifdef TCP_PORT_MONITOR
7408         /* set default connection limit */
7409         tcp_portmon_set_max_connections(0);
7410 #endif
7411 }
7412
7413 /* returns 1 if you can overwrite or create the file at 'path' */
7414 static _Bool overwrite_works(const char *path)
7415 {
7416         FILE *filepointer;
7417
7418         if (!(filepointer = fopen(path, "w")))
7419                 return 0;
7420         fclose(filepointer);
7421         return 1;
7422 }
7423
7424 /* returns 1 if you can append or create the file at 'path' */
7425 static _Bool append_works(const char *path)
7426 {
7427         FILE *filepointer;
7428
7429         if (!(filepointer = fopen(path, "a")))
7430                 return 0;
7431         fclose(filepointer);
7432         return 1;
7433 }
7434
7435 #ifdef X11
7436 static void X11_initialisation(void)
7437 {
7438         if (x_initialised == YES) return;
7439         output_methods |= TO_X;
7440         init_X11(disp);
7441         set_default_configurations_for_x();
7442         x_initialised = YES;
7443 }
7444
7445 static void X11_destroy_window(void)
7446 {
7447         /* this function only exists for the sake of consistency */
7448         if (output_methods & TO_X) {
7449 #ifdef HAVE_XDAMAGE
7450                 XDamageDestroy(display, x11_stuff.damage);
7451                 XFixesDestroyRegion(display, x11_stuff.region2);
7452                 XFixesDestroyRegion(display, x11_stuff.part);
7453                 if (x11_stuff.region) {
7454                         XDestroyRegion(x11_stuff.region);
7455                 }
7456                 x11_stuff.region = NULL;
7457 #endif /* HAVE_XDAMAGE */
7458                 destroy_window();
7459         }
7460 }
7461
7462 static char **xargv = 0;
7463 static int xargc = 0;
7464
7465 static void X11_create_window(void)
7466 {
7467         if (output_methods & TO_X) {
7468 #ifdef OWN_WINDOW
7469                 init_window(own_window, text_width + border_margin * 2 + 1,
7470                                 text_height + border_margin * 2 + 1, set_transparent, background_colour,
7471                                 xargv, xargc);
7472 #else /* OWN_WINDOW */
7473                 init_window(0, text_width + border_margin * 2 + 1,
7474                                 text_height + border_margin * 2 + 1, set_transparent, 0,
7475                                 xargv, xargc);
7476 #endif /* OWN_WINDOW */
7477
7478                 selected_font = 0;
7479                 load_fonts();
7480                 update_text_area();     /* to position text/window on screen */
7481
7482 #ifdef OWN_WINDOW
7483                 if (own_window && !fixed_pos) {
7484                         XMoveWindow(display, window.window, window.x, window.y);
7485                 }
7486                 if (own_window) {
7487                         set_transparent_background(window.window);
7488                 }
7489 #endif
7490
7491                 create_gc();
7492
7493                 set_font();
7494                 draw_stuff();
7495
7496                 x11_stuff.region = XCreateRegion();
7497 #ifdef HAVE_XDAMAGE
7498                 if (!XDamageQueryExtension(display, &x11_stuff.event_base, &x11_stuff.error_base)) {
7499                         ERR("Xdamage extension unavailable");
7500                 }
7501                 x11_stuff.damage = XDamageCreate(display, window.window, XDamageReportNonEmpty);
7502                 x11_stuff.region2 = XFixesCreateRegionFromWindow(display, window.window, 0);
7503                 x11_stuff.part = XFixesCreateRegionFromWindow(display, window.window, 0);
7504 #endif /* HAVE_XDAMAGE */
7505
7506                 selected_font = 0;
7507                 update_text_area();     /* to get initial size of the window */
7508         }
7509 }
7510 #endif /* X11 */
7511
7512 #define CONF_ERR ERR("%s: %d: config file error", f, line)
7513 #define CONF_ERR2(a) ERR("%s: %d: config file error: %s", f, line, a)
7514 #define CONF2(a) if (strcasecmp(name, a) == 0)
7515 #define CONF(a) else CONF2(a)
7516 #define CONF3(a, b) else if (strcasecmp(name, a) == 0 \
7517                 || strcasecmp(name, b) == 0)
7518 #define CONF_CONTINUE 1
7519 #define CONF_BREAK 2
7520 #define CONF_BUFF_SIZE 512
7521
7522 static FILE *open_config_file(const char *f)
7523 {
7524 #ifdef CONFIG_OUTPUT
7525         if (!strcmp(f, "==builtin==")) {
7526 #ifdef HAVE_FOPENCOOKIE
7527                 return fopencookie(NULL, "r", conf_cookie);
7528 #endif /* HAVE_FOPENCOOKIE */
7529         } else
7530 #endif /* CONFIG_OUTPUT */
7531                 return fopen(f, "r");
7532 }
7533
7534 static int do_config_step(int *line, FILE *fp, char *buf, char **name, char **value)
7535 {
7536         char *p, *p2;
7537         (*line)++;
7538         if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
7539                 return CONF_BREAK;
7540         }
7541         remove_comments(buf);
7542
7543         p = buf;
7544
7545         /* skip spaces */
7546         while (*p && isspace((int) *p)) {
7547                 p++;
7548         }
7549         if (*p == '\0') {
7550                 return CONF_CONTINUE;   /* empty line */
7551         }
7552
7553         *name = p;
7554
7555         /* skip name */
7556         p2 = p;
7557         while (*p2 && !isspace((int) *p2)) {
7558                 p2++;
7559         }
7560         if (*p2 != '\0') {
7561                 *p2 = '\0';     /* break at name's end */
7562                 p2++;
7563         }
7564
7565         /* get value */
7566         if (*p2) {
7567                 p = p2;
7568                 while (*p && isspace((int) *p)) {
7569                         p++;
7570                 }
7571
7572                 *value = p;
7573
7574                 p2 = *value + strlen(*value);
7575                 while (isspace((int) *(p2 - 1))) {
7576                         *--p2 = '\0';
7577                 }
7578         } else {
7579                 *value = 0;
7580         }
7581         return 0;
7582 }
7583
7584 static void load_config_file(const char *f)
7585 {
7586         int line = 0;
7587         FILE *fp;
7588
7589         set_default_configurations();
7590         fp = open_config_file(f);
7591         if (!fp) {
7592                 return;
7593         }
7594         DBGP("reading contents from config file '%s'", f);
7595
7596         while (!feof(fp)) {
7597                 char buff[CONF_BUFF_SIZE], *name, *value;
7598                 int ret = do_config_step(&line, fp, buff, &name, &value);
7599                 if (ret == CONF_BREAK) {
7600                         break;
7601                 } else if (ret == CONF_CONTINUE) {
7602                         continue;
7603                 }
7604
7605 #ifdef X11
7606                 CONF2("out_to_x") {
7607                         /* don't listen if X is already initialised or
7608                          * if we already know we don't want it */
7609                         if(x_initialised == NO) {
7610                                 if (string_to_bool(value)) {
7611                                         output_methods &= TO_X;
7612                                 } else {
7613                                         output_methods &= ~TO_X;
7614                                         x_initialised = NEVER;
7615                                 }
7616                         }
7617                 }
7618                 CONF("display") {
7619                         if (!value || x_initialised == YES) {
7620                                 CONF_ERR;
7621                         } else {
7622                                 if (disp)
7623                                         free(disp);
7624                                 disp = strdup(value);
7625                         }
7626                 }
7627                 CONF("alignment") {
7628                         if (window.type == TYPE_DOCK)
7629                                 ;
7630                         else if (value) {
7631                                 int a = string_to_alignment(value);
7632
7633                                 if (a <= 0) {
7634                                         CONF_ERR;
7635                                 } else {
7636                                         text_alignment = a;
7637                                 }
7638                         } else {
7639                                 CONF_ERR;
7640                         }
7641                 }
7642                 CONF("background") {
7643                         fork_to_background = string_to_bool(value);
7644                 }
7645 #else
7646                 CONF2("background") {
7647                         fork_to_background = string_to_bool(value);
7648                 }
7649 #endif /* X11 */
7650 #ifdef X11
7651                 CONF("show_graph_scale") {
7652                         show_graph_scale = string_to_bool(value);
7653                 }
7654                 CONF("show_graph_range") {
7655                         show_graph_range = string_to_bool(value);
7656                 }
7657                 CONF("border_margin") {
7658                         if (value) {
7659                                 border_margin = strtol(value, 0, 0);
7660                         } else {
7661                                 CONF_ERR;
7662                         }
7663                 }
7664                 CONF("border_width") {
7665                         if (value) {
7666                                 border_width = strtol(value, 0, 0);
7667                         } else {
7668                                 CONF_ERR;
7669                         }
7670                 }
7671 #endif /* X11 */
7672 #define TEMPLATE_CONF(n) \
7673                 CONF("template"#n) { \
7674                         if (value) { \
7675                                 free(template[n]); \
7676                                 template[n] = strdup(value); \
7677                         } else { \
7678                                 CONF_ERR; \
7679                         } \
7680                 }
7681                 TEMPLATE_CONF(0)
7682                 TEMPLATE_CONF(1)
7683                 TEMPLATE_CONF(2)
7684                 TEMPLATE_CONF(3)
7685                 TEMPLATE_CONF(4)
7686                 TEMPLATE_CONF(5)
7687                 TEMPLATE_CONF(6)
7688                 TEMPLATE_CONF(7)
7689                 TEMPLATE_CONF(8)
7690                 TEMPLATE_CONF(9)
7691                 CONF("imap") {
7692                         if (value) {
7693                                 info.mail = parse_mail_args(IMAP_TYPE, value);
7694                         } else {
7695                                 CONF_ERR;
7696                         }
7697                 }
7698                 CONF("pop3") {
7699                         if (value) {
7700                                 info.mail = parse_mail_args(POP3_TYPE, value);
7701                         } else {
7702                                 CONF_ERR;
7703                         }
7704                 }
7705                 CONF("default_bar_size") {
7706                         char err = 0;
7707                         if (value) {
7708                                 if (sscanf(value, "%d %d", &default_bar_width, &default_bar_height) != 2) {
7709                                         err = 1;
7710                                 }
7711                         } else {
7712                                 err = 1;
7713                         }
7714                         if (err) {
7715                                 CONF_ERR2("default_bar_size takes 2 integer arguments (ie. 'default_bar_size 0 6')")
7716                         }
7717                 }
7718 #ifdef X11
7719                 CONF("default_graph_size") {
7720                         char err = 0;
7721                         if (value) {
7722                                 if (sscanf(value, "%d %d", &default_graph_width, &default_graph_height) != 2) {
7723                                         err = 1;
7724                                 }
7725                         } else {
7726                                 err = 1;
7727                         }
7728                         if (err) {
7729                                 CONF_ERR2("default_graph_size takes 2 integer arguments (ie. 'default_graph_size 0 6')")
7730                         }
7731                 }
7732                 CONF("default_gauge_size") {
7733                         char err = 0;
7734                         if (value) {
7735                                 if (sscanf(value, "%d %d", &default_gauge_width, &default_gauge_height) != 2) {
7736                                         err = 1;
7737                                 }
7738                         } else {
7739                                 err = 1;
7740                         }
7741                         if (err) {
7742                                 CONF_ERR2("default_gauge_size takes 2 integer arguments (ie. 'default_gauge_size 0 6')")
7743                         }
7744                 }
7745 #endif
7746 #ifdef MPD
7747                 CONF("mpd_host") {
7748                         if (value) {
7749                                 mpd_set_host(value);
7750                         } else {
7751                                 CONF_ERR;
7752                         }
7753                 }
7754                 CONF("mpd_port") {
7755                         if (value && mpd_set_port(value)) {
7756                                 CONF_ERR;
7757                         }
7758                 }
7759                 CONF("mpd_password") {
7760                         if (value) {
7761                                 mpd_set_password(value);
7762                         } else {
7763                                 CONF_ERR;
7764                         }
7765                 }
7766 #endif
7767                 CONF("music_player_interval") {
7768                         if (value) {
7769                                 info.music_player_interval = strtod(value, 0);
7770                         } else {
7771                                 CONF_ERR;
7772                         }
7773                 }
7774 #ifdef __OpenBSD__
7775                 CONF("sensor_device") {
7776                         if (value) {
7777                                 sensor_device = strtol(value, 0, 0);
7778                         } else {
7779                                 CONF_ERR;
7780                         }
7781                 }
7782 #endif
7783                 CONF("cpu_avg_samples") {
7784                         if (value) {
7785                                 cpu_avg_samples = strtol(value, 0, 0);
7786                                 if (cpu_avg_samples < 1 || cpu_avg_samples > 14) {
7787                                         CONF_ERR;
7788                                 } else {
7789                                         info.cpu_avg_samples = cpu_avg_samples;
7790                                 }
7791                         } else {
7792                                 CONF_ERR;
7793                         }
7794                 }
7795                 CONF("net_avg_samples") {
7796                         if (value) {
7797                                 net_avg_samples = strtol(value, 0, 0);
7798                                 if (net_avg_samples < 1 || net_avg_samples > 14) {
7799                                         CONF_ERR;
7800                                 } else {
7801                                         info.net_avg_samples = net_avg_samples;
7802                                 }
7803                         } else {
7804                                 CONF_ERR;
7805                         }
7806                 }
7807                 CONF("diskio_avg_samples") {
7808                         if (value) {
7809                                 diskio_avg_samples = strtol(value, 0, 0);
7810                                 if (diskio_avg_samples < 1 || diskio_avg_samples > 14) {
7811                                         CONF_ERR;
7812                                 } else {
7813                                         info.diskio_avg_samples = diskio_avg_samples;
7814                                 }
7815                         } else {
7816                                 CONF_ERR;
7817                         }
7818                 }
7819
7820 #ifdef HAVE_XDBE
7821                 CONF("double_buffer") {
7822                         use_xdbe = string_to_bool(value);
7823                 }
7824 #endif
7825 #ifdef X11
7826                 CONF("override_utf8_locale") {
7827                         utf8_mode = string_to_bool(value);
7828                 }
7829                 CONF("draw_borders") {
7830                         draw_borders = string_to_bool(value);
7831                 }
7832                 CONF("draw_graph_borders") {
7833                         draw_graph_borders = string_to_bool(value);
7834                 }
7835                 CONF("draw_shades") {
7836                         draw_shades = string_to_bool(value);
7837                 }
7838                 CONF("draw_outline") {
7839                         draw_outline = string_to_bool(value);
7840                 }
7841 #endif /* X11 */
7842                 CONF("out_to_console") {
7843                         if(string_to_bool(value))
7844                                 output_methods |= TO_STDOUT;
7845                 }
7846                 CONF("out_to_stderr") {
7847                         if(string_to_bool(value))
7848                                 output_methods |= TO_STDERR;
7849                 }
7850                 CONF("overwrite_file") {
7851                         if(overwrite_file) {
7852                                 free(overwrite_file);
7853                                 overwrite_file = 0;
7854                         }
7855                         if(overwrite_works(value)) {
7856                                 overwrite_file = strdup(value);
7857                                 output_methods |= OVERWRITE_FILE;
7858                         } else
7859                                 ERR("overwrite_file won't be able to create/overwrite '%s'", value);
7860                 }
7861                 CONF("append_file") {
7862                         if(append_file) {
7863                                 free(append_file);
7864                                 append_file = 0;
7865                         }
7866                         if(append_works(value)) {
7867                                 append_file = strdup(value);
7868                                 output_methods |= APPEND_FILE;
7869                         } else
7870                                 ERR("append_file won't be able to create/append '%s'", value);
7871                 }
7872                 CONF("use_spacer") {
7873                         if (value) {
7874                                 if (strcasecmp(value, "left") == EQUAL) {
7875                                         use_spacer = LEFT_SPACER;
7876                                 } else if (strcasecmp(value, "right") == EQUAL) {
7877                                         use_spacer = RIGHT_SPACER;
7878                                 } else if (strcasecmp(value, "none") == EQUAL) {
7879                                         use_spacer = NO_SPACER;
7880                                 } else {
7881                                         use_spacer = string_to_bool(value);
7882                                         ERR("use_spacer should have an argument of left, right, or"
7883                                                 " none.  '%s' seems to be some form of '%s', so"
7884                                                 " defaulting to %s.", value,
7885                                                 use_spacer ? "true" : "false",
7886                                                 use_spacer ? "right" : "none");
7887                                         if (use_spacer) {
7888                                                 use_spacer = RIGHT_SPACER;
7889                                         } else {
7890                                                 use_spacer = NO_SPACER;
7891                                         }
7892                                 }
7893                         } else {
7894                                 ERR("use_spacer should have an argument. Defaulting to right.");
7895                                 use_spacer = RIGHT_SPACER;
7896                         }
7897                 }
7898 #ifdef X11
7899 #ifdef XFT
7900                 CONF("use_xft") {
7901                         use_xft = string_to_bool(value);
7902                 }
7903                 CONF("font") {
7904                         if (value) {
7905                                 set_first_font(value);
7906                         }
7907                 }
7908                 CONF("xftalpha") {
7909                         if (value && font_count >= 0) {
7910                                 fonts[0].font_alpha = atof(value) * 65535.0;
7911                         }
7912                 }
7913                 CONF("xftfont") {
7914                         if (use_xft) {
7915 #else
7916                 CONF("use_xft") {
7917                         if (string_to_bool(value)) {
7918                                 ERR("Xft not enabled");
7919                         }
7920                 }
7921                 CONF("xftfont") {
7922                         /* xftfont silently ignored when no Xft */
7923                 }
7924                 CONF("xftalpha") {
7925                         /* xftalpha is silently ignored when no Xft */
7926                 }
7927                 CONF("font") {
7928 #endif
7929                         if (value) {
7930                                 set_first_font(value);
7931                         }
7932 #ifdef XFT
7933                         }
7934 #endif
7935                 }
7936                 CONF("gap_x") {
7937                         if (value) {
7938                                 gap_x = atoi(value);
7939                         } else {
7940                                 CONF_ERR;
7941                         }
7942                 }
7943                 CONF("gap_y") {
7944                         if (value) {
7945                                 gap_y = atoi(value);
7946                         } else {
7947                                 CONF_ERR;
7948                         }
7949                 }
7950 #endif /* X11 */
7951                 CONF("mail_spool") {
7952                         if (value) {
7953                                 char buffer[256];
7954
7955                                 variable_substitute(value, buffer, 256);
7956
7957                                 if (buffer[0] != '\0') {
7958                                         if (current_mail_spool) {
7959                                                 free(current_mail_spool);
7960                                         }
7961                                         current_mail_spool = strndup(buffer, text_buffer_size);
7962                                 }
7963                         } else {
7964                                 CONF_ERR;
7965                         }
7966                 }
7967 #ifdef X11
7968                 CONF("minimum_size") {
7969                         if (value) {
7970                                 if (sscanf(value, "%d %d", &minimum_width, &minimum_height)
7971                                                 != 2) {
7972                                         if (sscanf(value, "%d", &minimum_width) != 1) {
7973                                                 CONF_ERR;
7974                                         }
7975                                 }
7976                         } else {
7977                                 CONF_ERR;
7978                         }
7979                 }
7980                 CONF("maximum_width") {
7981                         if (value) {
7982                                 if (sscanf(value, "%d", &maximum_width) != 1) {
7983                                         CONF_ERR;
7984                                 }
7985                         } else {
7986                                 CONF_ERR;
7987                         }
7988                 }
7989 #endif /* X11 */
7990                 CONF("no_buffers") {
7991                         no_buffers = string_to_bool(value);
7992                 }
7993                 CONF("top_name_width") {
7994                         if (value) {
7995                                 if (sscanf(value, "%u", &top_name_width) != 1) {
7996                                         CONF_ERR;
7997                                 }
7998                         } else {
7999                                 CONF_ERR;
8000                         }
8001                         if (top_name_width >= max_user_text) {
8002                                 top_name_width = max_user_text - 1;
8003                         }
8004                 }
8005                 CONF("top_cpu_separate") {
8006                         cpu_separate = string_to_bool(value);
8007                 }
8008                 CONF("short_units") {
8009                         short_units = string_to_bool(value);
8010                 }
8011                 CONF("pad_percents") {
8012                         pad_percents = atoi(value);
8013                 }
8014 #ifdef X11
8015 #ifdef OWN_WINDOW
8016                 CONF("own_window") {
8017                         if (value) {
8018                                 own_window = string_to_bool(value);
8019                         }
8020                 }
8021                 CONF("own_window_class") {
8022                         if (value) {
8023                                 memset(window.class_name, 0, sizeof(window.class_name));
8024                                 strncpy(window.class_name, value,
8025                                                 sizeof(window.class_name) - 1);
8026                         }
8027                 }
8028                 CONF("own_window_title") {
8029                         if (value) {
8030                                 memset(window.title, 0, sizeof(window.title));
8031                                 strncpy(window.title, value, sizeof(window.title) - 1);
8032                         }
8033                 }
8034                 CONF("own_window_transparent") {
8035                         if (value) {
8036                                 set_transparent = string_to_bool(value);
8037                         }
8038                 }
8039                 CONF("own_window_hints") {
8040                         if (value) {
8041                                 char *p_hint, *p_save;
8042                                 char delim[] = ", ";
8043
8044                                 /* tokenize the value into individual hints */
8045                                 if ((p_hint = strtok_r(value, delim, &p_save)) != NULL) {
8046                                         do {
8047                                                 /* fprintf(stderr, "hint [%s] parsed\n", p_hint); */
8048                                                 if (strncmp(p_hint, "undecorate", 10) == EQUAL) {
8049                                                         SET_HINT(window.hints, HINT_UNDECORATED);
8050                                                 } else if (strncmp(p_hint, "below", 5) == EQUAL) {
8051                                                         SET_HINT(window.hints, HINT_BELOW);
8052                                                 } else if (strncmp(p_hint, "above", 5) == EQUAL) {
8053                                                         SET_HINT(window.hints, HINT_ABOVE);
8054                                                 } else if (strncmp(p_hint, "sticky", 6) == EQUAL) {
8055                                                         SET_HINT(window.hints, HINT_STICKY);
8056                                                 } else if (strncmp(p_hint, "skip_taskbar", 12) == EQUAL) {
8057                                                         SET_HINT(window.hints, HINT_SKIP_TASKBAR);
8058                                                 } else if (strncmp(p_hint, "skip_pager", 10) == EQUAL) {
8059                                                         SET_HINT(window.hints, HINT_SKIP_PAGER);
8060                                                 } else {
8061                                                         CONF_ERR;
8062                                                 }
8063
8064                                                 p_hint = strtok_r(NULL, delim, &p_save);
8065                                         } while (p_hint != NULL);
8066                                 }
8067                         } else {
8068                                 CONF_ERR;
8069                         }
8070                 }
8071                 CONF("own_window_type") {
8072                         if (value) {
8073                                 if (strncmp(value, "normal", 6) == EQUAL) {
8074                                         window.type = TYPE_NORMAL;
8075                                 } else if (strncmp(value, "desktop", 7) == EQUAL) {
8076                                         window.type = TYPE_DESKTOP;
8077                                 } else if (strncmp(value, "dock", 7) == EQUAL) {
8078                                         window.type = TYPE_DOCK;
8079                                         text_alignment = TOP_LEFT;
8080                                 } else if (strncmp(value, "override", 8) == EQUAL) {
8081                                         window.type = TYPE_OVERRIDE;
8082                                 } else {
8083                                         CONF_ERR;
8084                                 }
8085                         } else {
8086                                 CONF_ERR;
8087                         }
8088                 }
8089 #endif
8090                 CONF("stippled_borders") {
8091                         if (value) {
8092                                 stippled_borders = strtol(value, 0, 0);
8093                         } else {
8094                                 stippled_borders = 4;
8095                         }
8096                 }
8097 #ifdef IMLIB2
8098                 CONF("imlib_cache_size") {
8099                         if (value) {
8100                                 cimlib_set_cache_size(atoi(value));
8101                         }
8102                 }
8103                 CONF("imlib_cache_flush_interval") {
8104                         if (value) {
8105                                 cimlib_set_cache_flush_interval(atoi(value));
8106                         }
8107                 }
8108 #endif /* IMLIB2 */
8109 #endif /* X11 */
8110                 CONF("update_interval") {
8111                         if (value) {
8112                                 update_interval = strtod(value, 0);
8113                         } else {
8114                                 CONF_ERR;
8115                         }
8116                         if (info.music_player_interval == 0) {
8117                                 // default to update_interval
8118                                 info.music_player_interval = update_interval;
8119                         }
8120                 }
8121                 CONF("total_run_times") {
8122                         if (value) {
8123                                 total_run_times = strtod(value, 0);
8124                         } else {
8125                                 CONF_ERR;
8126                         }
8127                 }
8128                 CONF("uppercase") {
8129                         stuff_in_upper_case = string_to_bool(value);
8130                 }
8131                 CONF("max_specials") {
8132                         if (value) {
8133                                 max_specials = atoi(value);
8134                         } else {
8135                                 CONF_ERR;
8136                         }
8137                 }
8138                 CONF("max_user_text") {
8139                         if (value) {
8140                                 max_user_text = atoi(value);
8141                         } else {
8142                                 CONF_ERR;
8143                         }
8144                 }
8145                 CONF("text_buffer_size") {
8146                         if (value) {
8147                                 text_buffer_size = atoi(value);
8148                                 if (text_buffer_size < DEFAULT_TEXT_BUFFER_SIZE) {
8149                                         ERR("text_buffer_size must be >=%i bytes", DEFAULT_TEXT_BUFFER_SIZE);
8150                                         text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
8151                                 }
8152                         } else {
8153                                 CONF_ERR;
8154                         }
8155                 }
8156                 CONF("text") {
8157 #ifdef X11
8158                         if (output_methods & TO_X) {
8159                                 X11_initialisation();
8160                         }
8161 #endif
8162
8163                         if (global_text) {
8164                                 free(global_text);
8165                                 global_text = 0;
8166                         }
8167
8168                         global_text = (char *) malloc(1);
8169                         global_text[0] = '\0';
8170
8171                         while (!feof(fp)) {
8172                                 unsigned int l = strlen(global_text);
8173                                 unsigned int bl;
8174                                 char buf[CONF_BUFF_SIZE];
8175
8176                                 if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
8177                                         break;
8178                                 }
8179
8180                                 /* Remove \\-\n. */
8181                                 bl = strlen(buf);
8182                                 if (bl >= 2 && buf[bl-2] == '\\' && buf[bl-1] == '\n') {
8183                                         buf[bl-2] = '\0';
8184                                         bl -= 2;
8185                                         if (bl == 0) {
8186                                                 continue;
8187                                         }
8188                                 }
8189
8190                                 /* Check for continuation of \\-\n. */
8191                                 if (l > 0 && buf[0] == '\n' && global_text[l-1] == '\\') {
8192                                         global_text[l-1] = '\0';
8193                                         continue;
8194                                 }
8195
8196                                 global_text = (char *) realloc(global_text, l + bl + 1);
8197                                 strcat(global_text, buf);
8198
8199                                 if (strlen(global_text) > max_user_text) {
8200                                         break;
8201                                 }
8202                         }
8203                         fclose(fp);
8204                         if (strlen(global_text) < 1) {
8205                                 CRIT_ERR("no text supplied in configuration; exiting");
8206                         }
8207                         global_text_lines = line + 1;
8208                         return;
8209                 }
8210 #ifdef TCP_PORT_MONITOR
8211                 CONF("max_port_monitor_connections") {
8212                         int max;
8213                         if (!value || (sscanf(value, "%d", &max) != 1)) {
8214                                 /* an error. use default, warn and continue. */
8215                                 tcp_portmon_set_max_connections(0);
8216                                 CONF_ERR;
8217                         } else if (tcp_portmon_set_max_connections(max)) {
8218                                 /* max is < 0, default has been set*/
8219                                 CONF_ERR;
8220                         }
8221                 }
8222 #endif
8223                 CONF("if_up_strictness") {
8224                         if (!value) {
8225                                 ERR("incorrect if_up_strictness value, defaulting to 'up'");
8226                                 ifup_strictness = IFUP_UP;
8227                         } else if (strcasecmp(value, "up") == EQUAL) {
8228                                 ifup_strictness = IFUP_UP;
8229                         } else if (strcasecmp(value, "link") == EQUAL) {
8230                                 ifup_strictness = IFUP_LINK;
8231                         } else if (strcasecmp(value, "address") == EQUAL) {
8232                                 ifup_strictness = IFUP_ADDR;
8233                         } else {
8234                                 ERR("incorrect if_up_strictness value, defaulting to 'up'");
8235                                 ifup_strictness = IFUP_UP;
8236                         }
8237                 }
8238
8239                 CONF("temperature_unit") {
8240                         if (!value) {
8241                                 ERR("config option 'temperature_unit' needs an argument, either 'celsius' or 'fahrenheit'");
8242                         } else if (set_temp_output_unit(value)) {
8243                                 ERR("temperature_unit: incorrect argument");
8244                         }
8245                 }
8246
8247                 CONF("alias") {
8248                         if (value) {
8249                                 size_t maxlength = strlen(value);       //+1 for terminating 0 not needed, 'cause of the space in the middle of value
8250                                 char *skey = malloc(maxlength);
8251                                 char *svalue = malloc(maxlength);
8252                                 char *oldvalue;
8253                                 if (sscanf(value, "%[0-9a-zA-Z_] %[^\n]", skey, svalue) == 2) {
8254                                         oldvalue = getenv(skey);
8255                                         if (oldvalue == NULL) {
8256                                                 setenv(skey, svalue, 0);
8257                                         }
8258                                         //PS: Don't free oldvalue, it's the real envvar, not a copy
8259                                 } else {
8260                                         CONF_ERR;
8261                                 }
8262                                 free(skey);
8263                                 free(svalue);
8264                         } else {
8265                                 CONF_ERR;
8266                         }
8267                 }
8268 #ifdef HAVE_LUA
8269                 CONF("lua_load") {
8270                         llua_init();
8271                         if(value) {
8272                                 char *ptr = strtok(value, " ");
8273                                 while(ptr) {
8274                                         llua_load(ptr);
8275                                         ptr = strtok(NULL, " ");
8276                                 }
8277                         } else {
8278                                 CONF_ERR;
8279                         }
8280                 }
8281 #endif /* HAVE_LUA */
8282
8283                 CONF("color0"){}
8284                 CONF("color1"){}
8285                 CONF("color2"){}
8286                 CONF("color3"){}
8287                 CONF("color4"){}
8288                 CONF("color5"){}
8289                 CONF("color6"){}
8290                 CONF("color7"){}
8291                 CONF("color8"){}
8292                 CONF("color9"){}
8293                 CONF("default_color"){}
8294                 CONF3("default_shade_color", "default_shadecolor"){}
8295                 CONF3("default_outline_color", "default_outlinecolor") {}
8296                 CONF("own_window_colour") {}
8297
8298                 else {
8299                         ERR("%s: %d: no such configuration: '%s'", f, line, name);
8300                 }
8301         }
8302
8303         fclose(fp);
8304
8305         if (info.music_player_interval == 0) {
8306                 // default to update_interval
8307                 info.music_player_interval = update_interval;
8308         }
8309         if (!global_text) { // didn't supply any text
8310                 CRIT_ERR("missing text block in configuration; exiting");
8311         }
8312 }
8313
8314 static void load_config_file_x11(const char *f)
8315 {
8316         int line = 0;
8317         FILE *fp;
8318
8319         fp = open_config_file(f);
8320         if (!fp) {
8321                 return;
8322         }
8323         DBGP("reading contents from config file '%s'", f);
8324
8325         while (!feof(fp)) {
8326                 char buff[CONF_BUFF_SIZE], *name, *value;
8327                 int ret = do_config_step(&line, fp, buff, &name, &value);
8328                 if (ret == CONF_BREAK) {
8329                         break;
8330                 } else if (ret == CONF_CONTINUE) {
8331                         continue;
8332                 }
8333
8334 #ifdef X11
8335                 CONF2("color0") {
8336                         X11_initialisation();
8337                         if (x_initialised == YES) {
8338                                 if (value) {
8339                                         color0 = get_x11_color(value);
8340                                 } else {
8341                                         CONF_ERR;
8342                                 }
8343                         }
8344                 }
8345                 CONF("color1") {
8346                         X11_initialisation();
8347                         if (x_initialised == YES) {
8348                                 if (value) {
8349                                         color1 = get_x11_color(value);
8350                                 } else {
8351                                         CONF_ERR;
8352                                 }
8353                         }
8354                 }
8355                 CONF("color2") {
8356                         X11_initialisation();
8357                         if (x_initialised == YES) {
8358                                 if (value) {
8359                                         color2 = get_x11_color(value);
8360                                 } else {
8361                                         CONF_ERR;
8362                                 }
8363                         }
8364                 }
8365                 CONF("color3") {
8366                         X11_initialisation();
8367                         if (x_initialised == YES) {
8368                                 if (value) {
8369                                         color3 = get_x11_color(value);
8370                                 } else {
8371                                         CONF_ERR;
8372                                 }
8373                         }
8374                 }
8375                 CONF("color4") {
8376                         X11_initialisation();
8377                         if (x_initialised == YES) {
8378                                 if (value) {
8379                                         color4 = get_x11_color(value);
8380                                 } else {
8381                                         CONF_ERR;
8382                                 }
8383                         }
8384                 }
8385                 CONF("color5") {
8386                         X11_initialisation();
8387                         if (x_initialised == YES) {
8388                                 if (value) {
8389                                         color5 = get_x11_color(value);
8390                                 } else {
8391                                         CONF_ERR;
8392                                 }
8393                         }
8394                 }
8395                 CONF("color6") {
8396                         X11_initialisation();
8397                         if (x_initialised == YES) {
8398                                 if (value) {
8399                                         color6 = get_x11_color(value);
8400                                 } else {
8401                                         CONF_ERR;
8402                                 }
8403                         }
8404                 }
8405                 CONF("color7") {
8406                         X11_initialisation();
8407                         if (x_initialised == YES) {
8408                                 if (value) {
8409                                         color7 = get_x11_color(value);
8410                                 } else {
8411                                         CONF_ERR;
8412                                 }
8413                         }
8414                 }
8415                 CONF("color8") {
8416                         X11_initialisation();
8417                         if (x_initialised == YES) {
8418                                 if (value) {
8419                                         color8 = get_x11_color(value);
8420                                 } else {
8421                                         CONF_ERR;
8422                                 }
8423                         }
8424                 }
8425                 CONF("color9") {
8426                         X11_initialisation();
8427                         if (x_initialised == YES) {
8428                                 if (value) {
8429                                         color9 = get_x11_color(value);
8430                                 } else {
8431                                         CONF_ERR;
8432                                 }
8433                         }
8434                 }
8435                 CONF("default_color") {
8436                         X11_initialisation();
8437                         if (x_initialised == YES) {
8438                                 if (value) {
8439                                         default_fg_color = get_x11_color(value);
8440                                 } else {
8441                                         CONF_ERR;
8442                                 }
8443                         }
8444                 }
8445                 CONF3("default_shade_color", "default_shadecolor") {
8446                         X11_initialisation();
8447                         if (x_initialised == YES) {
8448                                 if (value) {
8449                                         default_bg_color = get_x11_color(value);
8450                                 } else {
8451                                         CONF_ERR;
8452                                 }
8453                         }
8454                 }
8455                 CONF3("default_outline_color", "default_outlinecolor") {
8456                         X11_initialisation();
8457                         if (x_initialised == YES) {
8458                                 if (value) {
8459                                         default_out_color = get_x11_color(value);
8460                                 } else {
8461                                         CONF_ERR;
8462                                 }
8463                         }
8464                 }
8465 #ifdef OWN_WINDOW
8466                 CONF("own_window_colour") {
8467                         X11_initialisation();
8468                         if (x_initialised == YES) {
8469                                 if (value) {
8470                                         background_colour = get_x11_color(value);
8471                                 } else {
8472                                         ERR("Invalid colour for own_window_colour (try omitting the "
8473                                                 "'#' for hex colours");
8474                                 }
8475                         }
8476                 }
8477 #endif
8478                 CONF("text") {
8479                         //initialize X11 if nothing X11-related is mentioned before TEXT (and if X11 is the default outputmethod)
8480                         if(output_methods & TO_X) {
8481                                 X11_initialisation();
8482                         }
8483                 }
8484 #endif /* X11 */
8485 #undef CONF
8486 #undef CONF2
8487 #undef CONF3
8488 #undef CONF_ERR
8489 #undef CONF_ERR2
8490 #undef CONF_BREAK
8491 #undef CONF_CONTINUE
8492 #undef CONF_BUFF_SIZE
8493         }
8494
8495         fclose(fp);
8496
8497 }
8498
8499 static void print_help(const char *prog_name) {
8500         printf("Usage: %s [OPTION]...\n"
8501                         PACKAGE_NAME" is a system monitor that renders text on desktop or to own transparent\n"
8502                         "window. Command line options will override configurations defined in config\n"
8503                         "file.\n"
8504                         "   -v, --version             version\n"
8505                         "   -q, --quiet               quiet mode\n"
8506                         "   -D, --debug               increase debugging output\n"
8507                         "   -c, --config=FILE         config file to load\n"
8508 #ifdef CONFIG_OUTPUT
8509                         "   -C, --print-config        print the builtin default config to stdout\n"
8510                         "                             e.g. 'conky -C > ~/.conkyrc' will create a new default config\n"
8511 #endif
8512                         "   -d, --daemonize           daemonize, fork to background\n"
8513                         "   -h, --help                help\n"
8514 #ifdef X11
8515                         "   -a, --alignment=ALIGNMENT text alignment on screen, {top,bottom,middle}_{left,right,middle}\n"
8516                         "   -f, --font=FONT           font to use\n"
8517                         "   -X, --display=DISPLAY     X11 display to use\n"
8518 #ifdef OWN_WINDOW
8519                         "   -o, --own-window          create own window to draw\n"
8520 #endif
8521 #ifdef HAVE_XDBE
8522                         "   -b, --double-buffer       double buffer (prevents flickering)\n"
8523 #endif
8524                         "   -w, --window-id=WIN_ID    window id to draw\n"
8525                         "   -x X                      x position\n"
8526                         "   -y Y                      y position\n"
8527 #endif /* X11 */
8528                         "   -t, --text=TEXT           text to render, remember single quotes, like -t '$uptime'\n"
8529                         "   -u, --interval=SECS       update interval\n"
8530                         "   -i COUNT                  number of times to update "PACKAGE_NAME" (and quit)\n",
8531                         prog_name
8532         );
8533 }
8534
8535 /* : means that character before that takes an argument */
8536 static const char *getopt_string = "vVqdDt:u:i:hc:"
8537 #ifdef X11
8538         "x:y:w:a:f:X:"
8539 #ifdef OWN_WINDOW
8540         "o"
8541 #endif
8542 #ifdef HAVE_XDBE
8543         "b"
8544 #endif
8545 #endif /* X11 */
8546 #ifdef CONFIG_OUTPUT
8547         "C"
8548 #endif
8549         ;
8550
8551 static const struct option longopts[] = {
8552         { "help", 0, NULL, 'h' },
8553         { "version", 0, NULL, 'V' },
8554         { "debug", 0, NULL, 'D' },
8555         { "config", 1, NULL, 'c' },
8556 #ifdef CONFIG_OUTPUT
8557         { "print-config", 0, NULL, 'C' },
8558 #endif
8559         { "daemonize", 0, NULL, 'd' },
8560 #ifdef X11
8561         { "alignment", 1, NULL, 'a' },
8562         { "font", 1, NULL, 'f' },
8563         { "display", 1, NULL, 'X' },
8564 #ifdef OWN_WINDOW
8565         { "own-window", 0, NULL, 'o' },
8566 #endif
8567 #ifdef HAVE_XDBE
8568         { "double-buffer", 0, NULL, 'b' },
8569 #endif
8570         { "window-id", 1, NULL, 'w' },
8571 #endif /* X11 */
8572         { "text", 1, NULL, 't' },
8573         { "interval", 0, NULL, 'u' },
8574         { 0, 0, 0, 0 }
8575 };
8576
8577 int main(int argc, char **argv)
8578 {
8579 #ifdef X11
8580         char *s, *temp;
8581         unsigned int x;
8582 #endif
8583         struct sigaction act, oact;
8584
8585         g_signal_pending = 0;
8586         memset(&info, 0, sizeof(info));
8587         clear_net_stats();
8588
8589 #ifdef TCP_PORT_MONITOR
8590         /* set default connection limit */
8591         tcp_portmon_set_max_connections(0);
8592 #endif
8593
8594         /* handle command line parameters that don't change configs */
8595 #ifdef X11
8596         if (((s = getenv("LC_ALL")) && *s) || ((s = getenv("LC_CTYPE")) && *s)
8597                         || ((s = getenv("LANG")) && *s)) {
8598                 temp = (char *) malloc((strlen(s) + 1) * sizeof(char));
8599                 if (temp == NULL) {
8600                         ERR("malloc failed");
8601                 }
8602                 for (x = 0; x < strlen(s); x++) {
8603                         temp[x] = tolower(s[x]);
8604                 }
8605                 temp[x] = 0;
8606                 if (strstr(temp, "utf-8") || strstr(temp, "utf8")) {
8607                         utf8_mode = 1;
8608                 }
8609
8610                 free(temp);
8611         }
8612         if (!setlocale(LC_CTYPE, "")) {
8613                 ERR("Can't set the specified locale!\nCheck LANG, LC_CTYPE, LC_ALL.");
8614         }
8615 #endif /* X11 */
8616         while (1) {
8617                 int c = getopt_long(argc, argv, getopt_string, longopts, NULL);
8618
8619                 if (c == -1) {
8620                         break;
8621                 }
8622
8623                 switch (c) {
8624                         case 'v':
8625                         case 'V':
8626                                 print_version();
8627                         case 'c':
8628                                 if (current_config) {
8629                                         free(current_config);
8630                                 }
8631                                 current_config = strndup(optarg, max_user_text);
8632                                 break;
8633                         case 'q':
8634                                 freopen("/dev/null", "w", stderr);
8635                                 break;
8636                         case 'h':
8637                                 print_help(argv[0]);
8638                                 return 0;
8639 #ifdef CONFIG_OUTPUT
8640                         case 'C':
8641                                 print_defconfig();
8642                                 return 0;
8643 #endif
8644 #ifdef X11
8645                         case 'w':
8646                                 window.window = strtol(optarg, 0, 0);
8647                                 break;
8648 #endif /* X11 */
8649
8650                         case '?':
8651                                 exit(EXIT_FAILURE);
8652                 }
8653         }
8654
8655         /* check if specified config file is valid */
8656         if (current_config) {
8657                 struct stat sb;
8658                 if (stat(current_config, &sb) ||
8659                                 (!S_ISREG(sb.st_mode) && !S_ISLNK(sb.st_mode))) {
8660                         ERR("invalid configuration file '%s'\n", current_config);
8661                         free(current_config);
8662                         current_config = 0;
8663                 }
8664         }
8665
8666         /* load current_config, CONFIG_FILE or SYSTEM_CONFIG_FILE */
8667
8668         if (!current_config) {
8669                 /* load default config file */
8670                 char buf[DEFAULT_TEXT_BUFFER_SIZE];
8671                 FILE *fp;
8672
8673                 /* Try to use personal config file first */
8674                 to_real_path(buf, CONFIG_FILE);
8675                 if (buf[0] && (fp = fopen(buf, "r"))) {
8676                         current_config = strndup(buf, max_user_text);
8677                         fclose(fp);
8678                 }
8679
8680                 /* Try to use system config file if personal config not readable */
8681                 if (!current_config && (fp = fopen(SYSTEM_CONFIG_FILE, "r"))) {
8682                         current_config = strndup(SYSTEM_CONFIG_FILE, max_user_text);
8683                         fclose(fp);
8684                 }
8685
8686                 /* No readable config found */
8687                 if (!current_config) {
8688 #ifdef CONFIG_OUTPUT
8689                         current_config = strdup("==builtin==");
8690                         ERR("no readable personal or system-wide config file found,"
8691                                         " using builtin default");
8692 #else
8693                         CRIT_ERR("no readable personal or system-wide config file found");
8694 #endif /* ! CONF_OUTPUT */
8695                 }
8696         }
8697 #ifdef HAVE_SYS_INOTIFY_H
8698         inotify_fd = inotify_init();
8699 #endif /* HAVE_SYS_INOTIFY_H */
8700
8701         load_config_file(current_config);
8702
8703         /* init specials array */
8704         if ((specials = calloc(sizeof(struct special_t), max_specials)) == 0) {
8705                 ERR("failed to create specials array");
8706         }
8707
8708 #ifdef MAIL_FILE
8709         if (current_mail_spool == NULL) {
8710                 char buf[256];
8711
8712                 variable_substitute(MAIL_FILE, buf, 256);
8713
8714                 if (buf[0] != '\0') {
8715                         current_mail_spool = strndup(buf, text_buffer_size);
8716                 }
8717         }
8718 #endif
8719
8720         /* handle other command line arguments */
8721
8722 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) \
8723                 || defined(__NetBSD__)
8724         optind = optreset = 1;
8725 #else
8726         optind = 0;
8727 #endif
8728
8729 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
8730         if ((kd = kvm_open("/dev/null", "/dev/null", "/dev/null", O_RDONLY,
8731                         "kvm_open")) == NULL) {
8732                 CRIT_ERR("cannot read kvm");
8733         }
8734 #endif
8735
8736         while (1) {
8737                 int c = getopt_long(argc, argv, getopt_string, longopts, NULL);
8738
8739                 if (c == -1) {
8740                         break;
8741                 }
8742
8743                 switch (c) {
8744                         case 'd':
8745                                 fork_to_background = 1;
8746                                 break;
8747                         case 'D':
8748                                 global_debug_level++;
8749                                 break;
8750 #ifdef X11
8751                         case 'f':
8752                                 set_first_font(optarg);
8753                                 break;
8754                         case 'a':
8755                                 text_alignment = string_to_alignment(optarg);
8756                                 break;
8757                         case 'X':
8758                                 if (disp)
8759                                         free(disp);
8760                                 disp = strdup(optarg);
8761                                 break;
8762
8763 #ifdef OWN_WINDOW
8764                         case 'o':
8765                                 own_window = 1;
8766                                 break;
8767 #endif
8768 #ifdef HAVE_XDBE
8769                         case 'b':
8770                                 use_xdbe = 1;
8771                                 break;
8772 #endif
8773 #endif /* X11 */
8774                         case 't':
8775                                 if (global_text) {
8776                                         free(global_text);
8777                                         global_text = 0;
8778                                 }
8779                                 global_text = strndup(optarg, max_user_text);
8780                                 convert_escapes(global_text);
8781                                 break;
8782
8783                         case 'u':
8784                                 update_interval = strtod(optarg, 0);
8785                                 if (info.music_player_interval == 0) {
8786                                         // default to update_interval
8787                                         info.music_player_interval = update_interval;
8788                                 }
8789                                 break;
8790
8791                         case 'i':
8792                                 total_run_times = strtod(optarg, 0);
8793                                 break;
8794 #ifdef X11
8795                         case 'x':
8796                                 gap_x = atoi(optarg);
8797                                 break;
8798
8799                         case 'y':
8800                                 gap_y = atoi(optarg);
8801                                 break;
8802 #endif /* X11 */
8803
8804                         case '?':
8805                                 exit(EXIT_FAILURE);
8806                 }
8807         }
8808
8809 #ifdef X11
8810         /* load font */
8811         if (output_methods & TO_X) {
8812                 load_config_file_x11(current_config);
8813         }
8814 #endif /* X11 */
8815
8816         /* generate text and get initial size */
8817         extract_variable_text(global_text);
8818         if (global_text) {
8819                 free(global_text);
8820                 global_text = 0;
8821         }
8822         global_text = NULL;
8823         /* fork */
8824         if (fork_to_background) {
8825                 int pid = fork();
8826
8827                 switch (pid) {
8828                         case -1:
8829                                 ERR(PACKAGE_NAME": couldn't fork() to background: %s",
8830                                         strerror(errno));
8831                                 break;
8832
8833                         case 0:
8834                                 /* child process */
8835                                 usleep(25000);
8836                                 fprintf(stderr, "\n");
8837                                 fflush(stderr);
8838                                 break;
8839
8840                         default:
8841                                 /* parent process */
8842                                 fprintf(stderr, PACKAGE_NAME": forked to background, pid is %d\n",
8843                                         pid);
8844                                 fflush(stderr);
8845                                 return 0;
8846                 }
8847         }
8848
8849         text_buffer = malloc(max_user_text);
8850         memset(text_buffer, 0, max_user_text);
8851         tmpstring1 = malloc(text_buffer_size);
8852         memset(tmpstring1, 0, text_buffer_size);
8853         tmpstring2 = malloc(text_buffer_size);
8854         memset(tmpstring2, 0, text_buffer_size);
8855
8856 #ifdef X11
8857         xargc = argc;
8858         xargv = argv;
8859         X11_create_window();
8860 #endif /* X11 */
8861
8862         /* Set signal handlers */
8863         act.sa_handler = signal_handler;
8864         sigemptyset(&act.sa_mask);
8865         act.sa_flags = 0;
8866 #ifdef SA_RESTART
8867         act.sa_flags |= SA_RESTART;
8868 #endif
8869
8870         if (            sigaction(SIGINT,  &act, &oact) < 0
8871                         ||      sigaction(SIGUSR1, &act, &oact) < 0
8872                         ||      sigaction(SIGHUP,  &act, &oact) < 0
8873                         ||      sigaction(SIGTERM, &act, &oact) < 0) {
8874                 ERR("error setting signal handler: %s", strerror(errno));
8875         }
8876
8877         main_loop();
8878
8879 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
8880         kvm_close(kd);
8881 #endif
8882
8883         return 0;
8884 }
8885
8886 static void signal_handler(int sig)
8887 {
8888         /* signal handler is light as a feather, as it should be.
8889          * we will poll g_signal_pending with each loop of conky
8890          * and do any signal processing there, NOT here. */
8891         g_signal_pending = sig;
8892 }