1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 15:09:07 +00:00
conky/src/core.c

2970 lines
70 KiB
C
Raw Normal View History

/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
*
* Conky, a system monitor, based on torsmo
*
* Any original torsmo code is licensed under the BSD license
*
* All code written since the fork of torsmo is licensed under the GPL
*
* Please see COPYING for details
*
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
* Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
* (see AUTHORS)
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* vim: ts=4 sw=4 noet ai cindent syntax=c
*
*/
2009-08-06 06:54:40 +00:00
#include "config.h"
#include "structs.h"
#include "core.h"
2009-08-06 06:54:40 +00:00
#include "text_object.h"
2009-08-07 03:56:40 +00:00
#include "obj_create.h"
#include "obj_display.h"
2009-08-06 06:54:40 +00:00
#include "obj_destroy.h"
#include "common.h"
#include "specials.h"
2009-08-06 06:54:40 +00:00
#include "logging.h"
2009-08-07 03:56:40 +00:00
#include "fonts.h"
#include "colours.h"
#include "diskio.h"
2009-08-06 06:54:40 +00:00
#include <sys/types.h>
#include <sys/wait.h>
2009-08-07 03:56:40 +00:00
#include <ctype.h>
2009-08-06 06:54:40 +00:00
#ifdef X11
2009-08-07 03:56:40 +00:00
#ifdef IMLIB2
#include "imlib2.h"
#endif /* IMLIB2 */
2009-08-06 06:54:40 +00:00
static void X11_initialisation(conky_context *ctx);
2009-08-06 06:54:40 +00:00
/* display to connect to */
static char *disp = NULL;
2009-08-06 06:54:40 +00:00
#endif /* X11 */
2009-08-06 06:54:40 +00:00
/* path to config file */
char *current_config;
2009-08-06 06:54:40 +00:00
/* set to 1 if you want all text to be in uppercase */
static unsigned int stuff_in_uppercase;
2009-08-06 06:54:40 +00:00
/* Run how many times? */
static unsigned long total_run_times;
2009-08-06 06:54:40 +00:00
/* fork? */
static int fork_to_background;
2009-08-06 06:54:40 +00:00
static int cpu_avg_samples, net_avg_samples, diskio_avg_samples;
/* filenames for output */
char *overwrite_file = NULL; FILE *overwrite_fpointer = NULL;
char *append_file = NULL; FILE *append_fpointer = NULL;
#ifdef X11
static int show_graph_scale;
static int show_graph_range;
/* Position on the screen */
static int text_alignment;
static int gap_x, gap_y;
/* border */
static int draw_borders;
static int draw_graph_borders;
static int stippled_borders;
int get_stippled_borders(void)
{
2009-08-06 06:54:40 +00:00
return stippled_borders;
}
2009-08-06 06:54:40 +00:00
static int draw_shades, draw_outline;
2009-08-06 06:54:40 +00:00
long default_fg_color, default_bg_color, default_out_color;
2009-08-06 06:54:40 +00:00
/* create own window or draw stuff to root? */
static int set_transparent = 0;
2009-08-06 06:54:40 +00:00
#ifdef OWN_WINDOW
static int own_window = 0;
static int background_colour = 0;
2009-08-06 06:54:40 +00:00
/* fixed size/pos is set if wm/user changes them */
static int fixed_size = 0, fixed_pos = 0;
#endif
2009-08-06 06:54:40 +00:00
static int minimum_width, minimum_height;
static int maximum_width;
2009-08-06 06:54:40 +00:00
#endif /* X11 */
2009-08-06 06:54:40 +00:00
#ifdef __OpenBSD__
static int sensor_device;
#endif
2009-08-06 06:54:40 +00:00
long color0, color1, color2, color3, color4, color5, color6, color7, color8,
color9;
2009-08-06 06:54:40 +00:00
static char *template[MAX_TEMPLATES];
2009-08-06 06:54:40 +00:00
char **get_templates(void)
{
2009-08-06 06:54:40 +00:00
return template;
}
2009-08-06 06:54:40 +00:00
/* maximum size of config TEXT buffer, i.e. below TEXT line. */
unsigned int max_user_text;
2009-08-06 06:54:40 +00:00
/* maximum size of individual text buffers, ie $exec buffer size */
unsigned int text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
2009-08-06 06:54:40 +00:00
/* UTF-8 */
int utf8_mode = 0;
2009-08-06 06:54:40 +00:00
/* no buffers in used memory? */
int no_buffers;
2009-08-06 06:54:40 +00:00
/* pad percentages to decimals? */
static int pad_percents = 0;
2009-08-06 06:54:40 +00:00
static char *global_text = 0;
2009-08-06 06:54:40 +00:00
char *get_global_text(void)
{
return global_text;
}
2009-08-06 06:54:40 +00:00
long global_text_lines;
2009-08-06 06:54:40 +00:00
static int total_updates;
static int updatereset;
2009-08-06 06:54:40 +00:00
void set_updatereset(int i)
{
updatereset = i;
}
2009-08-06 06:54:40 +00:00
int get_updatereset(void)
{
return updatereset;
}
2009-08-06 06:54:40 +00:00
int check_contains(char *f, char *s)
{
int ret = 0;
FILE *where = open_file(f, 0);
2009-08-06 06:54:40 +00:00
if (where) {
char buf1[256];
2009-08-06 06:54:40 +00:00
while (fgets(buf1, 256, where)) {
if (strstr(buf1, s)) {
ret = 1;
break;
}
}
2009-08-06 06:54:40 +00:00
fclose(where);
} else {
NORM_ERR("Could not open the file");
}
return ret;
}
2009-08-06 06:54:40 +00:00
#ifdef X11
2009-08-06 06:54:40 +00:00
static inline int calc_text_width(conky_context *ctx, const char *s, int l)
{
if ((ctx->output_methods & TO_X) == 0) {
return 0;
}
#ifdef XFT
if (use_xft) {
XGlyphInfo gi;
if (utf8_mode) {
XftTextExtentsUtf8(display, ctx->fonts[ctx->selected_font].xftfont,
(const FcChar8 *) s, l, &gi);
} else {
2009-08-06 06:54:40 +00:00
XftTextExtents8(display, ctx->fonts[ctx->selected_font].xftfont,
(const FcChar8 *) s, l, &gi);
}
2009-08-06 06:54:40 +00:00
return gi.xOff;
} else
#endif
2009-08-06 06:54:40 +00:00
{
return XTextWidth(ctx->fonts[ctx->selected_font].font, s, l);
}
}
#endif /* X11 */
2009-08-06 06:54:40 +00:00
/* quite boring functions */
2009-08-07 03:56:40 +00:00
static inline void for_each_line(conky_context *ctx, char *b, int f(conky_context *, char *, int))
2009-08-06 06:54:40 +00:00
{
char *ps, *pe;
int special_index = 0; /* specials index */
2009-08-06 06:54:40 +00:00
for (ps = b, pe = b; *pe; pe++) {
if (*pe == '\n') {
*pe = '\0';
2009-08-07 03:56:40 +00:00
special_index = f(ctx, ps, special_index);
2009-08-06 06:54:40 +00:00
*pe = '\n';
ps = pe + 1;
}
2009-08-06 06:54:40 +00:00
}
2009-08-06 06:54:40 +00:00
if (ps < pe) {
2009-08-07 03:56:40 +00:00
f(ctx, ps, special_index);
2009-08-06 06:54:40 +00:00
}
}
2009-08-06 06:54:40 +00:00
void convert_escapes(char *buf)
{
char *p = buf, *s = buf;
while (*s) {
if (*s == '\\') {
s++;
if (*s == 'n') {
*p++ = '\n';
} else if (*s == '\\') {
*p++ = '\\';
}
s++;
} else {
2009-08-06 06:54:40 +00:00
*p++ = *s++;
}
2009-08-06 06:54:40 +00:00
}
*p = '\0';
}
2009-08-06 06:54:40 +00:00
/* global object list root element */
static struct text_object global_root_object;
2009-08-06 06:54:40 +00:00
/* our own implementation of popen, the difference : the value of 'childpid'
* will be filled with the pid of the running 'command'. This is useful if want
* to kill it when it hangs while reading or writing to it. We have to kill it
* because pclose will wait until the process dies by itself */
FILE* pid_popen(const char *command, const char *mode, pid_t *child)
{
int ends[2];
int parentend, childend;
2009-08-06 06:54:40 +00:00
/* by running pipe after the strcmp's we make sure that we don't have to
* create a pipe and close the ends if mode is something illegal */
if(strcmp(mode, "r") == 0) {
if(pipe(ends) != 0) {
return NULL;
}
parentend = ends[0];
childend = ends[1];
} else if(strcmp(mode, "w") == 0) {
if(pipe(ends) != 0) {
return NULL;
}
parentend = ends[1];
childend = ends[0];
} else {
return NULL;
}
*child = fork();
if(*child == -1) {
close(parentend);
close(childend);
return NULL;
} else if(*child > 0) {
close(childend);
waitpid(*child, NULL, 0);
} else {
/* don't read from both stdin and pipe or write to both stdout and pipe */
if(childend == ends[0]) {
close(0);
} else {
2009-08-06 06:54:40 +00:00
close(1);
}
2009-08-06 06:54:40 +00:00
dup(childend); /* by dupping childend, the returned fd will have close-on-exec turned off */
execl("/bin/sh", "sh", "-c", command, (char *) NULL);
_exit(EXIT_FAILURE); /* child should die here, (normally execl will take care of this but it can fail) */
}
return fdopen(parentend, mode);
}
2009-08-06 06:54:40 +00:00
void read_exec(const char *data, char *buf, const int size)
{
FILE *fp;
pid_t childpid;
2009-08-06 06:54:40 +00:00
fp = pid_popen(data, "r", &childpid);
if(fp) {
int length;
2009-08-06 06:54:40 +00:00
length = fread(buf, 1, size, fp);
pclose(fp);
buf[length] = '\0';
if (length > 0 && buf[length - 1] == '\n') {
buf[length - 1] = '\0';
}
2009-08-06 06:54:40 +00:00
} else {
buf[0] = '\0';
}
}
2009-08-06 06:54:40 +00:00
void *threaded_exec(void *, void *) __attribute__((noreturn));
2009-08-06 06:54:40 +00:00
void *threaded_exec(void *arg1, void *arg2)
{
char *buff, *p2;
struct text_object *obj = (struct text_object *)arg2;
conky_context *ctx = (conky_context *)arg1;
while (1) {
buff = malloc(text_buffer_size);
read_exec(obj->data.texeci.cmd, buff,
ctx->text_buffer_size);
p2 = buff;
while (*p2) {
if (*p2 == '\001') {
*p2 = ' ';
}
2009-08-06 06:54:40 +00:00
p2++;
}
2009-08-06 06:54:40 +00:00
timed_thread_lock(obj->data.texeci.p_timed_thread);
strncpy(obj->data.texeci.buffer, buff, text_buffer_size);
timed_thread_unlock(obj->data.texeci.p_timed_thread);
free(buff);
if (timed_thread_test(obj->data.texeci.p_timed_thread, 0)) {
timed_thread_exit(obj->data.texeci.p_timed_thread);
}
2009-08-06 06:54:40 +00:00
}
/* never reached */
}
2009-08-06 06:54:40 +00:00
static long current_text_color;
2009-08-06 06:54:40 +00:00
void set_current_text_color(long colour)
{
current_text_color = colour;
}
2009-08-06 06:54:40 +00:00
long get_current_text_color(void)
{
return current_text_color;
}
2009-08-06 06:54:40 +00:00
//adds newstring to to the tree unless you can already see it when travelling back.
//if it's possible to attach it then it returns a pointer to the leaf, else it returns NULL
struct conftree* conftree_add(struct conftree* previous, const char* newstring) {
struct conftree* node;
struct conftree* node2;
2009-08-06 06:54:40 +00:00
for(node = previous; node != NULL; node = node->back) {
if(strcmp(node->string, newstring) == 0) {
return NULL;
}
2009-08-06 06:54:40 +00:00
}
node = malloc(sizeof(struct conftree));
if (previous != NULL) {
if(previous->vert_next == NULL) {
previous->vert_next = node;
} else {
for(node2 = previous->vert_next; node2->horz_next != NULL; node2 = node2->horz_next ) { }
node2->horz_next = node;
}
2009-08-06 06:54:40 +00:00
}
node->string = strdup(newstring);
node->horz_next = NULL;
node->vert_next = NULL;
node->back = previous;
return node;
}
2009-08-06 06:54:40 +00:00
void conftree_empty(struct conftree* tree) {
if(tree) {
conftree_empty(tree->horz_next);
conftree_empty(tree->vert_next);
free(tree->string);
free(tree);
}
}
2009-08-06 06:54:40 +00:00
struct conftree *currentconffile;
2009-08-06 06:54:40 +00:00
void extract_variable_text(conky_context *ctx, const char *p)
{
free_text_objects(&global_root_object, 0);
if (ctx->tmpstring1) {
free(ctx->tmpstring1);
ctx->tmpstring1 = 0;
}
if (ctx->tmpstring2) {
free(ctx->tmpstring2);
ctx->tmpstring2 = 0;
}
if (ctx->text_buffer) {
free(ctx->text_buffer);
ctx->text_buffer = 0;
}
2009-08-07 03:56:40 +00:00
extract_variable_text_internal(&global_root_object, p);
2009-08-06 06:54:40 +00:00
}
2009-08-07 03:56:40 +00:00
void parse_conky_vars(conky_context *ctx, struct text_object *root, const char *txt, char *p)
2009-08-06 06:54:40 +00:00
{
2009-08-07 03:56:40 +00:00
extract_variable_text_internal(root, txt);
2009-08-06 06:54:40 +00:00
generate_text_internal(ctx, p, max_user_text, *root);
}
2009-08-07 03:56:40 +00:00
static void generate_text(conky_context *ctx)
2009-08-06 06:54:40 +00:00
{
char *p;
2009-08-06 06:54:40 +00:00
special_count = 0;
2009-08-06 06:54:40 +00:00
/* update ctx->info */
2009-08-06 06:54:40 +00:00
ctx->current_update_time = get_time();
2009-08-07 03:56:40 +00:00
update_stuff(ctx);
2009-08-06 06:54:40 +00:00
/* add things to the buffer */
2009-08-06 06:54:40 +00:00
/* generate text */
2009-08-06 06:54:40 +00:00
p = ctx->text_buffer;
2009-08-06 06:54:40 +00:00
generate_text_internal(ctx, p, max_user_text, global_root_object);
2009-08-06 06:54:40 +00:00
if (stuff_in_uppercase) {
char *tmp_p;
2009-08-06 06:54:40 +00:00
tmp_p = ctx->text_buffer;
while (*tmp_p) {
*tmp_p = toupper(*tmp_p);
tmp_p++;
}
2009-08-06 06:54:40 +00:00
}
2009-08-06 06:54:40 +00:00
ctx->next_update_time += ctx->update_interval;
if (ctx->next_update_time < get_time()) {
ctx->next_update_time = get_time() + ctx->update_interval;
} else if (ctx->next_update_time > get_time() + ctx->update_interval) {
ctx->next_update_time = get_time() + ctx->update_interval;
}
ctx->last_update_time = ctx->current_update_time;
ctx->total_updates++;
}
2009-08-06 06:54:40 +00:00
void set_update_interval(conky_context *ctx, double interval)
{
ctx->update_interval = interval;
ctx->update_interval_old = interval;
}
2009-08-07 03:56:40 +00:00
static inline int get_string_width(conky_context *ctx, const char *s)
2009-08-06 06:54:40 +00:00
{
#ifdef X11
2009-08-06 06:54:40 +00:00
if (ctx->output_methods & TO_X) {
2009-08-07 03:56:40 +00:00
return *s ? calc_text_width(ctx, s, strlen(s)) : 0;
2009-08-06 06:54:40 +00:00
}
#endif /* X11 */
2009-08-06 06:54:40 +00:00
return strlen(s);
}
#ifdef X11
2009-08-07 03:56:40 +00:00
static int get_string_width_special(conky_context *ctx, char *s, int special_index)
2009-08-06 06:54:40 +00:00
{
char *p, *final;
int idx = 1;
int width = 0;
long i;
2009-08-06 06:54:40 +00:00
if ((ctx->output_methods & TO_X) == 0) {
return (s) ? strlen(s) : 0;
}
2009-08-06 06:54:40 +00:00
if (!s) {
return 0;
}
2009-08-06 06:54:40 +00:00
p = strndup(s, text_buffer_size);
final = p;
2009-08-06 06:54:40 +00:00
while (*p) {
if (*p == SPECIAL_CHAR) {
/* shift everything over by 1 so that the special char
* doesn't mess up the size calculation */
for (i = 0; i < (long)strlen(p); i++) {
*(p + i) = *(p + i + 1);
}
if (specials[special_index + idx].type == GRAPH
|| specials[special_index + idx].type == GAUGE
|| specials[special_index + idx].type == BAR) {
width += specials[special_index + idx].width;
}
2009-08-06 06:54:40 +00:00
idx++;
} else if (*p == SECRIT_MULTILINE_CHAR) {
*p = 0;
break;
} else {
2009-08-06 06:54:40 +00:00
p++;
}
2009-08-06 06:54:40 +00:00
}
if (strlen(final) > 1) {
2009-08-07 03:56:40 +00:00
width += calc_text_width(ctx, final, strlen(final));
2009-08-06 06:54:40 +00:00
}
free(final);
return width;
}
2009-08-07 03:56:40 +00:00
static int text_size_updater(conky_context *ctx, char *s, int special_index);
2009-08-06 06:54:40 +00:00
void update_text_area(conky_context *ctx)
{
int x = 0, y = 0;
2009-08-06 06:54:40 +00:00
if ((ctx->output_methods & TO_X) == 0)
return;
/* update text size if it isn't fixed */
#ifdef OWN_WINDOW
if (!fixed_size)
#endif
2009-08-06 06:54:40 +00:00
{
2009-08-07 03:56:40 +00:00
ctx->text_width = minimum_width;
ctx->text_height = 0;
ctx->last_font_height = font_height();
for_each_line(ctx, ctx->text_buffer, text_size_updater);
ctx->text_width += 1;
if (ctx->text_height < minimum_height) {
ctx->text_height = minimum_height;
2009-08-06 06:54:40 +00:00
}
2009-08-07 03:56:40 +00:00
if (ctx->text_width > maximum_width && maximum_width > 0) {
ctx->text_width = maximum_width;
}
}
2009-08-06 06:54:40 +00:00
/* get text position on workarea */
switch (text_alignment) {
case TOP_LEFT:
x = gap_x;
y = gap_y;
break;
2009-08-06 06:54:40 +00:00
case TOP_RIGHT:
2009-08-07 03:56:40 +00:00
x = workarea[2] - ctx->text_width - gap_x;
2009-08-06 06:54:40 +00:00
y = gap_y;
break;
2009-08-06 06:54:40 +00:00
case TOP_MIDDLE:
2009-08-07 03:56:40 +00:00
x = workarea[2] / 2 - ctx->text_width / 2 - gap_x;
2009-08-06 06:54:40 +00:00
y = gap_y;
break;
2009-08-06 06:54:40 +00:00
default:
2009-08-06 06:54:40 +00:00
case BOTTOM_LEFT:
x = gap_x;
2009-08-07 03:56:40 +00:00
y = workarea[3] - ctx->text_height - gap_y;
break;
2009-08-06 06:54:40 +00:00
case BOTTOM_RIGHT:
2009-08-07 03:56:40 +00:00
x = workarea[2] - ctx->text_width - gap_x;
y = workarea[3] - ctx->text_height - gap_y;
2009-08-06 06:54:40 +00:00
break;
2009-08-06 06:54:40 +00:00
case BOTTOM_MIDDLE:
2009-08-07 03:56:40 +00:00
x = workarea[2] / 2 - ctx->text_width / 2 - gap_x;
y = workarea[3] - ctx->text_height - gap_y;
2009-08-06 06:54:40 +00:00
break;
2009-08-06 06:54:40 +00:00
case MIDDLE_LEFT:
x = gap_x;
2009-08-07 03:56:40 +00:00
y = workarea[3] / 2 - ctx->text_height / 2 - gap_y;
2009-08-06 06:54:40 +00:00
break;
2009-08-06 06:54:40 +00:00
case MIDDLE_RIGHT:
2009-08-07 03:56:40 +00:00
x = workarea[2] - ctx->text_width - gap_x;
y = workarea[3] / 2 - ctx->text_height / 2 - gap_y;
2009-08-06 06:54:40 +00:00
break;
2009-08-06 06:54:40 +00:00
#ifdef OWN_WINDOW
case NONE: // Let the WM manage the window
2009-08-07 03:56:40 +00:00
x = ctx->window.x;
y = ctx->window.y;
2009-08-06 06:54:40 +00:00
fixed_pos = 1;
fixed_size = 1;
break;
2009-08-06 06:54:40 +00:00
#endif
}
#ifdef OWN_WINDOW
if (own_window && !fixed_pos) {
x += workarea[0];
y += workarea[1];
2009-08-07 03:56:40 +00:00
ctx->text_start_x = ctx->window.border_inner_margin + ctx->window.border_outer_margin + ctx->window.border_width;
ctx->text_start_y = ctx->window.border_inner_margin + ctx->window.border_outer_margin + ctx->window.border_width;
ctx->window.x = x - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width;
ctx->window.y = y - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width;
2009-08-06 06:54:40 +00:00
} else
#endif
{
/* If window size doesn't match to workarea's size,
* then window probably includes panels (gnome).
* Blah, doesn't work on KDE. */
2009-08-07 03:56:40 +00:00
if (workarea[2] != ctx->window.width || workarea[3] != ctx->window.height) {
2009-08-06 06:54:40 +00:00
y += workarea[1];
x += workarea[0];
}
2009-08-07 03:56:40 +00:00
ctx->text_start_x = x;
ctx->text_start_y = y;
}
2009-08-06 06:54:40 +00:00
#ifdef HAVE_LUA
/* update lua window globals */
2009-08-07 03:56:40 +00:00
llua_update_window_table(ctx->text_start_x, ctx->text_start_y, ctx->text_width, ctx->text_height);
2009-08-06 06:54:40 +00:00
#endif /* HAVE_LUA */
}
2009-08-06 06:54:40 +00:00
/* drawing stuff */
2009-08-06 06:54:40 +00:00
static int cur_x, cur_y; /* current x and y for drawing */
#endif
//draw_mode also without X11 because we only need to print to stdout with FG
static int draw_mode; /* FG, BG or OUTLINE */
#ifdef X11
static long current_color;
2009-08-07 03:56:40 +00:00
static int text_size_updater(conky_context *ctx, char *s, int special_index)
{
2009-08-06 06:54:40 +00:00
int w = 0;
char *p;
2009-08-06 06:54:40 +00:00
if ((ctx->output_methods & TO_X) == 0)
return 0;
/* get string widths and skip specials */
p = s;
while (*p) {
2009-08-06 06:54:40 +00:00
if (*p == SPECIAL_CHAR) {
*p = '\0';
2009-08-07 03:56:40 +00:00
w += get_string_width(ctx, s);
2009-08-06 06:54:40 +00:00
*p = SPECIAL_CHAR;
if (specials[special_index].type == BAR
|| specials[special_index].type == GAUGE
|| specials[special_index].type == GRAPH) {
w += specials[special_index].width;
2009-08-07 03:56:40 +00:00
if (specials[special_index].height > ctx->last_font_height) {
ctx->last_font_height = specials[special_index].height;
ctx->last_font_height += font_height();
}
2009-08-06 06:54:40 +00:00
} else if (specials[special_index].type == OFFSET) {
if (specials[special_index].arg > 0) {
w += specials[special_index].arg;
}
2009-08-06 06:54:40 +00:00
} else if (specials[special_index].type == VOFFSET) {
2009-08-07 03:56:40 +00:00
ctx->last_font_height += specials[special_index].arg;
2009-08-06 06:54:40 +00:00
} else if (specials[special_index].type == GOTO) {
if (specials[special_index].arg > cur_x) {
w = (int) specials[special_index].arg;
}
2009-08-06 06:54:40 +00:00
} else if (specials[special_index].type == TAB) {
int start = specials[special_index].arg;
int step = specials[special_index].width;
2009-08-06 06:54:40 +00:00
if (!step || step < 0) {
step = 10;
}
2009-08-07 03:56:40 +00:00
w += step - (cur_x - ctx->text_start_x - start) % step;
2009-08-06 06:54:40 +00:00
} else if (specials[special_index].type == FONT) {
ctx->selected_font = specials[special_index].font_added;
2009-08-07 03:56:40 +00:00
if (font_height() > ctx->last_font_height) {
ctx->last_font_height = font_height();
}
}
2009-08-06 06:54:40 +00:00
special_index++;
s = p + 1;
} else if (*p == SECRIT_MULTILINE_CHAR) {
int lw;
*p = '\0';
2009-08-07 03:56:40 +00:00
lw = get_string_width(ctx, s);
2009-08-06 06:54:40 +00:00
*p = SECRIT_MULTILINE_CHAR;
s = p + 1;
w = lw > w ? lw : w;
2009-08-07 03:56:40 +00:00
ctx->text_height += ctx->last_font_height;
}
p++;
}
2009-08-07 03:56:40 +00:00
w += get_string_width(ctx, s);
if (w > ctx->text_width) {
ctx->text_width = w;
}
2009-08-07 03:56:40 +00:00
if (ctx->text_width > maximum_width && maximum_width) {
ctx->text_width = maximum_width;
}
2009-08-07 03:56:40 +00:00
ctx->text_height += ctx->last_font_height;
ctx->last_font_height = font_height();
2009-08-06 06:54:40 +00:00
return special_index;
}
2009-08-06 06:54:40 +00:00
#endif /* X11 */
2009-08-07 03:56:40 +00:00
static inline void set_foreground_color(conky_context *ctx, long c)
2009-08-06 06:54:40 +00:00
{
#ifdef X11
if (ctx->output_methods & TO_X) {
current_color = c;
2009-08-07 03:56:40 +00:00
XSetForeground(display, ctx->window.gc, c);
2009-08-06 06:54:40 +00:00
}
#endif /* X11 */
#ifdef NCURSES
if (ctx->output_methods & TO_NCURSES) {
attron(COLOR_PAIR(c));
}
#endif /* NCURSES */
UNUSED(c);
return;
}
2009-08-07 03:56:40 +00:00
static void draw_string(conky_context *ctx, const char *s)
{
2009-08-06 06:54:40 +00:00
int i, i2, pos, width_of_s;
int max = 0;
int added;
char *s_with_newlines;
2009-08-06 06:54:40 +00:00
if (s[0] == '\0') {
return;
}
2009-08-07 03:56:40 +00:00
width_of_s = get_string_width(ctx, s);
2009-08-06 06:54:40 +00:00
s_with_newlines = strdup(s);
for(i = 0; i < (int) strlen(s_with_newlines); i++) {
if(s_with_newlines[i] == SECRIT_MULTILINE_CHAR) {
s_with_newlines[i] = '\n';
}
}
if ((ctx->output_methods & TO_STDOUT) && draw_mode == FG) {
printf("%s\n", s_with_newlines);
2009-08-07 03:56:40 +00:00
if (ctx->extra_newline) fputc('\n', stdout);
2009-08-06 06:54:40 +00:00
fflush(stdout); /* output immediately, don't buffer */
}
if ((ctx->output_methods & TO_STDERR) && draw_mode == FG) {
fprintf(stderr, "%s\n", s_with_newlines);
fflush(stderr); /* output immediately, don't buffer */
}
if ((ctx->output_methods & OVERWRITE_FILE) && draw_mode == FG && overwrite_fpointer) {
fprintf(overwrite_fpointer, "%s\n", s_with_newlines);
}
if ((ctx->output_methods & APPEND_FILE) && draw_mode == FG && append_fpointer) {
fprintf(append_fpointer, "%s\n", s_with_newlines);
}
#ifdef NCURSES
if ((ctx->output_methods & TO_NCURSES) && draw_mode == FG) {
printw("%s", s_with_newlines);
}
#endif
free(s_with_newlines);
memset(ctx->tmpstring1, 0, text_buffer_size);
memset(ctx->tmpstring2, 0, text_buffer_size);
strncpy(ctx->tmpstring1, s, text_buffer_size - 1);
pos = 0;
added = 0;
#ifdef X11
if (ctx->output_methods & TO_X) {
2009-08-07 03:56:40 +00:00
max = ((ctx->text_width - width_of_s) / get_string_width(ctx, " "));
2009-08-06 06:54:40 +00:00
}
#endif /* X11 */
/* This code looks for tabs in the text and coverts them to spaces.
* The trick is getting the correct number of spaces, and not going
* over the window's size without forcing the window larger. */
for (i = 0; i < (int) text_buffer_size; i++) {
if (ctx->tmpstring1[i] == '\t') {
i2 = 0;
for (i2 = 0; i2 < (8 - (1 + pos) % 8) && added <= max; i2++) {
/* guard against overrun */
ctx->tmpstring2[MIN(pos + i2, (int)text_buffer_size - 1)] = ' ';
added++;
}
pos += i2;
} else {
/* guard against overrun */
ctx->tmpstring2[MIN(pos, (int) text_buffer_size - 1)] = ctx->tmpstring1[i];
pos++;
}
}
#ifdef X11
if (ctx->output_methods & TO_X) {
2009-08-07 03:56:40 +00:00
if (ctx->text_width == maximum_width) {
2009-08-06 06:54:40 +00:00
/* this means the text is probably pushing the limit,
* so we'll chop it */
2009-08-07 03:56:40 +00:00
while (cur_x + get_string_width(ctx, ctx->tmpstring2) - ctx->text_start_x
2009-08-06 06:54:40 +00:00
> maximum_width && strlen(ctx->tmpstring2) > 0) {
ctx->tmpstring2[strlen(ctx->tmpstring2) - 1] = '\0';
}
}
}
#endif /* X11 */
s = ctx->tmpstring2;
#ifdef X11
if (ctx->output_methods & TO_X) {
#ifdef XFT
if (use_xft) {
XColor c;
XftColor c2;
c.pixel = current_color;
XQueryColor(display, DefaultColormap(display, screen), &c);
c2.pixel = c.pixel;
c2.color.red = c.red;
c2.color.green = c.green;
c2.color.blue = c.blue;
c2.color.alpha = ctx->fonts[ctx->selected_font].font_alpha;
if (utf8_mode) {
2009-08-07 03:56:40 +00:00
XftDrawStringUtf8(ctx->window.xftdraw, &c2, ctx->fonts[ctx->selected_font].xftfont,
2009-08-06 06:54:40 +00:00
cur_x, cur_y, (const XftChar8 *) s, strlen(s));
} else {
2009-08-07 03:56:40 +00:00
XftDrawString8(ctx->window.xftdraw, &c2, ctx->fonts[ctx->selected_font].xftfont,
2009-08-06 06:54:40 +00:00
cur_x, cur_y, (const XftChar8 *) s, strlen(s));
}
} else
#endif
{
2009-08-07 03:56:40 +00:00
XDrawString(display, ctx->window.drawable, ctx->window.gc, cur_x, cur_y, s,
2009-08-06 06:54:40 +00:00
strlen(s));
}
cur_x += width_of_s;
}
#endif /* X11 */
memcpy(ctx->tmpstring1, s, text_buffer_size);
}
2009-08-07 03:56:40 +00:00
static int draw_each_line_inner(conky_context *ctx, char *s, int special_index, int last_special_applied)
2009-08-06 06:54:40 +00:00
{
#ifdef X11
int font_h = font_height();
int cur_y_add = 0;
#endif /* X11 */
char *recurse = 0;
char *p = s;
int last_special_needed = -1;
int orig_special_index = special_index;
#ifdef X11
2009-08-07 03:56:40 +00:00
cur_x = ctx->text_start_x;
2009-08-06 06:54:40 +00:00
cur_y += font_ascent();
#endif /* X11 */
while (*p) {
if (*p == SECRIT_MULTILINE_CHAR) {
/* special newline marker for multiline objects */
recurse = p + 1;
*p = '\0';
break;
}
if (*p == SPECIAL_CHAR || last_special_applied > -1) {
#ifdef X11
int w = 0;
#endif /* X11 */
/* draw string before special, unless we're dealing multiline
* specials */
if (last_special_applied > -1) {
special_index = last_special_applied;
} else {
*p = '\0';
2009-08-07 03:56:40 +00:00
draw_string(ctx, s);
2009-08-06 06:54:40 +00:00
*p = SPECIAL_CHAR;
s = p + 1;
}
/* draw special */
switch (specials[special_index].type) {
#ifdef X11
case HORIZONTAL_LINE:
{
int h = specials[special_index].height;
int mid = font_ascent() / 2;
2009-08-07 03:56:40 +00:00
w = ctx->text_start_x + ctx->text_width - cur_x;
2009-08-06 06:54:40 +00:00
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, h, LineSolid,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
2009-08-07 03:56:40 +00:00
XDrawLine(display, ctx->window.drawable, ctx->window.gc, cur_x,
2009-08-06 06:54:40 +00:00
cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
break;
}
case STIPPLED_HR:
{
int h = specials[special_index].height;
int tmp_s = specials[special_index].arg;
int mid = font_ascent() / 2;
char ss[2] = { tmp_s, tmp_s };
2009-08-07 03:56:40 +00:00
w = ctx->text_start_x + ctx->text_width - cur_x - 1;
XSetLineAttributes(display, ctx->window.gc, h, LineOnOffDash,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
2009-08-07 03:56:40 +00:00
XSetDashes(display, ctx->window.gc, 0, ss, 2);
XDrawLine(display, ctx->window.drawable, ctx->window.gc, cur_x,
2009-08-06 06:54:40 +00:00
cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
break;
}
case BAR:
{
int h, bar_usage, by;
2009-08-07 03:56:40 +00:00
if (cur_x - ctx->text_start_x > maximum_width
2009-08-06 06:54:40 +00:00
&& maximum_width > 0) {
break;
}
h = specials[special_index].height;
bar_usage = specials[special_index].arg;
by = cur_y - (font_ascent() / 2) - 1;
if (h < font_h) {
by -= h / 2 - 1;
}
w = specials[special_index].width;
if (w == 0) {
2009-08-07 03:56:40 +00:00
w = ctx->text_start_x + ctx->text_width - cur_x - 1;
2009-08-06 06:54:40 +00:00
}
if (w < 0) {
w = 0;
}
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, 1, LineSolid,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
2009-08-07 03:56:40 +00:00
XDrawRectangle(display, ctx->window.drawable, ctx->window.gc, cur_x,
2009-08-06 06:54:40 +00:00
by, w, h);
2009-08-07 03:56:40 +00:00
XFillRectangle(display, ctx->window.drawable, ctx->window.gc, cur_x,
2009-08-06 06:54:40 +00:00
by, w * bar_usage / 255, h);
if (h > cur_y_add
&& h > font_h) {
cur_y_add = h;
}
break;
}
case GAUGE: /* new GAUGE */
{
int h, by = 0;
unsigned long last_colour = current_color;
#ifdef MATH
float angle, px, py;
int usage;
#endif /* MATH */
2009-08-07 03:56:40 +00:00
if (cur_x - ctx->text_start_x > maximum_width
2009-08-06 06:54:40 +00:00
&& maximum_width > 0) {
break;
}
h = specials[special_index].height;
by = cur_y - (font_ascent() / 2) - 1;
if (h < font_h) {
by -= h / 2 - 1;
}
w = specials[special_index].width;
if (w == 0) {
2009-08-07 03:56:40 +00:00
w = ctx->text_start_x + ctx->text_width - cur_x - 1;
2009-08-06 06:54:40 +00:00
}
if (w < 0) {
w = 0;
}
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, 1, LineSolid,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
2009-08-07 03:56:40 +00:00
XDrawArc(display, ctx->window.drawable, ctx->window.gc,
2009-08-06 06:54:40 +00:00
cur_x, by, w, h * 2, 0, 180*64);
#ifdef MATH
usage = specials[special_index].arg;
angle = (M_PI)*(float)(usage)/255.;
px = (float)(cur_x+(w/2.))-(float)(w/2.)*cos(angle);
py = (float)(by+(h))-(float)(h)*sin(angle);
2009-08-07 03:56:40 +00:00
XDrawLine(display, ctx->window.drawable, ctx->window.gc,
2009-08-06 06:54:40 +00:00
cur_x + (w/2.), by+(h), (int)(px), (int)(py));
#endif /* MATH */
if (h > cur_y_add
&& h > font_h) {
cur_y_add = h;
}
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, last_colour);
2009-08-06 06:54:40 +00:00
break;
}
case GRAPH:
{
int h, by, i = 0, j = 0;
int colour_idx = 0;
unsigned long last_colour = current_color;
unsigned long *tmpcolour = 0;
2009-08-07 03:56:40 +00:00
if (cur_x - ctx->text_start_x > maximum_width
2009-08-06 06:54:40 +00:00
&& maximum_width > 0) {
break;
}
h = specials[special_index].height;
by = cur_y - (font_ascent() / 2) - 1;
if (h < font_h) {
by -= h / 2 - 1;
}
w = specials[special_index].width;
if (w == 0) {
2009-08-07 03:56:40 +00:00
w = ctx->text_start_x + ctx->text_width - cur_x - 1;
2009-08-06 06:54:40 +00:00
}
if (w < 0) {
w = 0;
}
if (draw_graph_borders) {
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, 1, LineSolid,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
2009-08-07 03:56:40 +00:00
XDrawRectangle(display, ctx->window.drawable, ctx->window.gc,
2009-08-06 06:54:40 +00:00
cur_x, by, w, h);
}
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, 1, LineSolid,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
if (specials[special_index].last_colour != 0
|| specials[special_index].first_colour != 0) {
2009-08-07 03:56:40 +00:00
tmpcolour = do_gradient(ctx, w - 1, specials[special_index].last_colour, specials[special_index].first_colour);
2009-08-06 06:54:40 +00:00
}
colour_idx = 0;
for (i = w - 2; i > -1; i--) {
if (specials[special_index].last_colour != 0
|| specials[special_index].first_colour != 0) {
if (specials[special_index].tempgrad) {
#ifdef DEBUG_lol
assert(
(int)((float)(w - 2) - specials[special_index].graph[j] *
(w - 2) / (float)specials[special_index].graph_scale)
< w - 1
);
assert(
(int)((float)(w - 2) - specials[special_index].graph[j] *
(w - 2) / (float)specials[special_index].graph_scale)
> -1
);
if (specials[special_index].graph[j] == specials[special_index].graph_scale) {
assert(
(int)((float)(w - 2) - specials[special_index].graph[j] *
(w - 2) / (float)specials[special_index].graph_scale)
== 0
);
}
#endif /* DEBUG_lol */
2009-08-07 03:56:40 +00:00
XSetForeground(display, ctx->window.gc, tmpcolour[
2009-08-06 06:54:40 +00:00
(int)((float)(w - 2) - specials[special_index].graph[j] *
(w - 2) / (float)specials[special_index].graph_scale)
]);
} else {
2009-08-07 03:56:40 +00:00
XSetForeground(display, ctx->window.gc, tmpcolour[colour_idx++]);
2009-08-06 06:54:40 +00:00
}
}
/* this is mugfugly, but it works */
2009-08-07 03:56:40 +00:00
XDrawLine(display, ctx->window.drawable, ctx->window.gc,
2009-08-06 06:54:40 +00:00
cur_x + i + 1, by + h, cur_x + i + 1,
round_to_int((double)by + h - specials[special_index].graph[j] *
(h - 1) / specials[special_index].graph_scale));
if ((w - i) / ((float) (w - 2) /
(specials[special_index].graph_width)) > j
&& j < MAX_GRAPH_DEPTH - 3) {
j++;
}
}
if (tmpcolour) free(tmpcolour);
if (h > cur_y_add
&& h > font_h) {
cur_y_add = h;
}
/* if (draw_mode == BG) {
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, default_bg_color);
2009-08-06 06:54:40 +00:00
} else if (draw_mode == OUTLINE) {
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, default_out_color);
2009-08-06 06:54:40 +00:00
} else {
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, default_fg_color);
2009-08-06 06:54:40 +00:00
} */
if (show_graph_range) {
int tmp_x = cur_x;
int tmp_y = cur_y;
2009-08-07 03:56:40 +00:00
unsigned short int seconds = ctx->update_interval * w;
2009-08-06 06:54:40 +00:00
char *tmp_day_str;
char *tmp_hour_str;
char *tmp_min_str;
char *tmp_sec_str;
char *tmp_str;
unsigned short int timeunits;
if (seconds != 0) {
timeunits = seconds / 86400; seconds %= 86400;
if (timeunits > 0) {
asprintf(&tmp_day_str, "%dd", timeunits);
} else {
tmp_day_str = strdup("");
}
timeunits = seconds / 3600; seconds %= 3600;
if (timeunits > 0) {
asprintf(&tmp_hour_str, "%dh", timeunits);
} else {
tmp_hour_str = strdup("");
}
timeunits = seconds / 60; seconds %= 60;
if (timeunits > 0) {
asprintf(&tmp_min_str, "%dm", timeunits);
} else {
tmp_min_str = strdup("");
}
if (seconds > 0) {
asprintf(&tmp_sec_str, "%ds", seconds);
} else {
tmp_sec_str = strdup("");
}
asprintf(&tmp_str, "%s%s%s%s", tmp_day_str, tmp_hour_str, tmp_min_str, tmp_sec_str);
free(tmp_day_str); free(tmp_hour_str); free(tmp_min_str); free(tmp_sec_str);
} else {
asprintf(&tmp_str, "Range not possible"); // should never happen, but better safe then sorry
}
cur_x += (w / 2) - (font_ascent() * (strlen(tmp_str) / 2));
cur_y += font_h / 2;
2009-08-07 03:56:40 +00:00
draw_string(ctx, tmp_str);
2009-08-06 06:54:40 +00:00
free(tmp_str);
cur_x = tmp_x;
cur_y = tmp_y;
}
#ifdef MATH
if (show_graph_scale && (specials[special_index].show_scale == 1)) {
int tmp_x = cur_x;
int tmp_y = cur_y;
char *tmp_str;
cur_x += font_ascent() / 2;
cur_y += font_h / 2;
tmp_str = (char *)
calloc(log10(floor(specials[special_index].graph_scale)) + 4,
sizeof(char));
sprintf(tmp_str, "%.1f", specials[special_index].graph_scale);
2009-08-07 03:56:40 +00:00
draw_string(ctx, tmp_str);
2009-08-06 06:54:40 +00:00
free(tmp_str);
cur_x = tmp_x;
cur_y = tmp_y;
}
#endif
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, last_colour);
2009-08-06 06:54:40 +00:00
break;
}
case FONT:
{
int old = font_ascent();
cur_y -= font_ascent();
ctx->selected_font = specials[special_index].font_added;
set_font();
if (cur_y + font_ascent() < cur_y + old) {
cur_y += old;
} else {
cur_y += font_ascent();
}
font_h = font_height();
break;
}
#endif /* X11 */
case FG:
if (draw_mode == FG) {
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, specials[special_index].arg);
2009-08-06 06:54:40 +00:00
}
break;
#ifdef X11
case BG:
if (draw_mode == BG) {
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, specials[special_index].arg);
2009-08-06 06:54:40 +00:00
}
break;
case OUTLINE:
if (draw_mode == OUTLINE) {
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, specials[special_index].arg);
2009-08-06 06:54:40 +00:00
}
break;
case OFFSET:
w += specials[special_index].arg;
last_special_needed = special_index;
break;
case VOFFSET:
cur_y += specials[special_index].arg;
break;
case GOTO:
if (specials[special_index].arg >= 0) {
cur_x = (int) specials[special_index].arg;
}
last_special_needed = special_index;
break;
case TAB:
{
int start = specials[special_index].arg;
int step = specials[special_index].width;
if (!step || step < 0) {
step = 10;
}
2009-08-07 03:56:40 +00:00
w = step - (cur_x - ctx->text_start_x - start) % step;
2009-08-06 06:54:40 +00:00
last_special_needed = special_index;
break;
}
case ALIGNR:
{
2009-08-07 03:56:40 +00:00
/* TODO: add back in "+ ctx->window.border_inner_margin" to the end of
2009-08-06 06:54:40 +00:00
* this line? */
2009-08-07 03:56:40 +00:00
int pos_x = ctx->text_start_x + ctx->text_width -
get_string_width_special(ctx, s, special_index);
2009-08-06 06:54:40 +00:00
2009-08-07 03:56:40 +00:00
/* printf("pos_x %i ctx->text_start_x %i ctx->text_width %i cur_x %i "
2009-08-06 06:54:40 +00:00
"get_string_width(p) %i gap_x %i "
2009-08-07 03:56:40 +00:00
"specials[special_index].arg %i ctx->window.border_inner_margin %i "
"ctx->window.border_width %i\n", pos_x, ctx->text_start_x, ctx->text_width,
2009-08-06 06:54:40 +00:00
cur_x, get_string_width_special(s), gap_x,
2009-08-07 03:56:40 +00:00
specials[special_index].arg, ctx->window.border_inner_margin,
ctx->window.border_width); */
2009-08-06 06:54:40 +00:00
if (pos_x > specials[special_index].arg && pos_x > cur_x) {
cur_x = pos_x - specials[special_index].arg;
}
last_special_needed = special_index;
break;
}
case ALIGNC:
{
2009-08-07 03:56:40 +00:00
int pos_x = (ctx->text_width) / 2 -
get_string_width_special(ctx, s, special_index) / 2 -
(cur_x - ctx->text_start_x);
/* int pos_x = ctx->text_start_x + ctx->text_width / 2 -
2009-08-06 06:54:40 +00:00
get_string_width_special(s) / 2; */
2009-08-07 03:56:40 +00:00
/* printf("pos_x %i ctx->text_start_x %i ctx->text_width %i cur_x %i "
2009-08-06 06:54:40 +00:00
"get_string_width(p) %i gap_x %i "
2009-08-07 03:56:40 +00:00
"specials[special_index].arg %i\n", pos_x, ctx->text_start_x,
ctx->text_width, cur_x, get_string_width(s), gap_x,
2009-08-06 06:54:40 +00:00
specials[special_index].arg); */
if (pos_x > specials[special_index].arg) {
w = pos_x - specials[special_index].arg;
}
last_special_needed = special_index;
break;
}
#endif /* X11 */
}
#ifdef X11
cur_x += w;
#endif /* X11 */
if (special_index != last_special_applied) {
special_index++;
} else {
special_index = orig_special_index;
last_special_applied = -1;
}
}
p++;
}
#ifdef X11
cur_y += cur_y_add;
#endif /* X11 */
2009-08-07 03:56:40 +00:00
draw_string(ctx, s);
2009-08-06 06:54:40 +00:00
#ifdef NCURSES
if (ctx->output_methods & TO_NCURSES) {
printw("\n");
}
#endif /* NCURSES */
#ifdef X11
cur_y += font_descent();
#endif /* X11 */
if (recurse && *recurse) {
2009-08-07 03:56:40 +00:00
special_index = draw_each_line_inner(ctx, recurse, special_index, last_special_needed);
2009-08-06 06:54:40 +00:00
*(recurse - 1) = SECRIT_MULTILINE_CHAR;
}
return special_index;
}
2009-08-07 03:56:40 +00:00
static int draw_line(conky_context *ctx, char *s, int special_index)
2009-08-06 06:54:40 +00:00
{
#ifdef X11
if (ctx->output_methods & TO_X) {
2009-08-07 03:56:40 +00:00
return draw_each_line_inner(ctx, s, special_index, -1);
2009-08-06 06:54:40 +00:00
}
#endif /* X11 */
#ifdef NCURSES
if (ctx->output_methods & TO_NCURSES) {
2009-08-07 03:56:40 +00:00
return draw_each_line_inner(ctx, s, special_index, -1);
2009-08-06 06:54:40 +00:00
}
#endif /* NCURSES */
2009-08-07 03:56:40 +00:00
draw_string(ctx, s);
2009-08-06 06:54:40 +00:00
UNUSED(special_index);
return 0;
}
2009-08-07 03:56:40 +00:00
static void draw_text(conky_context *ctx)
2009-08-06 06:54:40 +00:00
{
#ifdef X11
#ifdef HAVE_LUA
llua_draw_pre_hook();
#endif /* HAVE_LUA */
if (ctx->output_methods & TO_X) {
2009-08-07 03:56:40 +00:00
cur_y = ctx->text_start_y;
2009-08-06 06:54:40 +00:00
/* draw borders */
2009-08-07 03:56:40 +00:00
if (draw_borders && ctx->window.border_width > 0) {
2009-08-06 06:54:40 +00:00
if (stippled_borders) {
char ss[2] = { stippled_borders, stippled_borders };
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, ctx->window.border_width, LineOnOffDash,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
2009-08-07 03:56:40 +00:00
XSetDashes(display, ctx->window.gc, 0, ss, 2);
2009-08-06 06:54:40 +00:00
} else {
2009-08-07 03:56:40 +00:00
XSetLineAttributes(display, ctx->window.gc, ctx->window.border_width, LineSolid,
2009-08-06 06:54:40 +00:00
CapButt, JoinMiter);
}
2009-08-07 03:56:40 +00:00
XDrawRectangle(display, ctx->window.drawable, ctx->window.gc,
ctx->text_start_x - ctx->window.border_inner_margin - ctx->window.border_width,
ctx->text_start_y - ctx->window.border_inner_margin - ctx->window.border_width,
ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_width * 2,
ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_width * 2);
2009-08-06 06:54:40 +00:00
}
/* draw text */
}
setup_fonts();
#endif /* X11 */
#ifdef NCURSES
init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
attron(COLOR_PAIR(COLOR_WHITE));
#endif /* NCURSES */
2009-08-07 03:56:40 +00:00
for_each_line(ctx, ctx->text_buffer, draw_line);
2009-08-06 06:54:40 +00:00
#if defined(HAVE_LUA) && defined(X11)
llua_draw_post_hook();
#endif /* HAVE_LUA */
}
void draw_stuff(conky_context *ctx)
{
#ifdef IMLIB2
2009-08-07 03:56:40 +00:00
cimlib_render(ctx->text_start_x, ctx->text_start_y, ctx->window.width, ctx->window.height);
2009-08-06 06:54:40 +00:00
#endif /* IMLIB2 */
if (overwrite_file) {
overwrite_fpointer = fopen(overwrite_file, "w");
if(!overwrite_fpointer)
NORM_ERR("Can't overwrite '%s' anymore", overwrite_file);
}
if (append_file) {
append_fpointer = fopen(append_file, "a");
if(!append_fpointer)
NORM_ERR("Can't append '%s' anymore", append_file);
}
#ifdef X11
if (ctx->output_methods & TO_X) {
ctx->selected_font = 0;
if (draw_shades && !draw_outline) {
2009-08-07 03:56:40 +00:00
ctx->text_start_x++;
ctx->text_start_y++;
set_foreground_color(ctx, default_bg_color);
2009-08-06 06:54:40 +00:00
draw_mode = BG;
2009-08-07 03:56:40 +00:00
draw_text(ctx);
ctx->text_start_x--;
ctx->text_start_y--;
2009-08-06 06:54:40 +00:00
}
if (draw_outline) {
int i, j;
ctx->selected_font = 0;
for (i = -1; i < 2; i++) {
for (j = -1; j < 2; j++) {
if (i == 0 && j == 0) {
continue;
}
2009-08-07 03:56:40 +00:00
ctx->text_start_x += i;
ctx->text_start_y += j;
set_foreground_color(ctx, default_out_color);
2009-08-06 06:54:40 +00:00
draw_mode = OUTLINE;
2009-08-07 03:56:40 +00:00
draw_text(ctx);
ctx->text_start_x -= i;
ctx->text_start_y -= j;
2009-08-06 06:54:40 +00:00
}
}
}
2009-08-07 03:56:40 +00:00
set_foreground_color(ctx, default_fg_color);
2009-08-06 06:54:40 +00:00
}
#endif /* X11 */
draw_mode = FG;
2009-08-07 03:56:40 +00:00
draw_text(ctx);
2009-08-06 06:54:40 +00:00
#ifdef X11
xdbe_swap_buffers();
if (ctx->output_methods & TO_X) {
#ifdef HAVE_XDBE
#endif
}
#endif /* X11 */
if(overwrite_fpointer) {
fclose(overwrite_fpointer);
overwrite_fpointer = 0;
}
if(append_fpointer) {
fclose(append_fpointer);
append_fpointer = 0;
}
}
#ifdef X11
void clear_text(conky_context *ctx, int exposures)
{
#ifdef HAVE_XDBE
if (use_xdbe) {
/* The swap action is XdbeBackground, which clears */
return;
} else
#endif
2009-08-07 03:56:40 +00:00
if (display && ctx->window.window) { // make sure these are !null
2009-08-06 06:54:40 +00:00
/* there is some extra space for borders and outlines */
2009-08-07 03:56:40 +00:00
XClearArea(display, ctx->window.window, ctx->text_start_x - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width,
ctx->text_start_y - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width,
ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2,
ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2, exposures ? True : 0);
2009-08-06 06:54:40 +00:00
}
}
#endif /* X11 */
/* update_text() generates new text and clears old text area */
void update_text(conky_context *ctx)
{
#ifdef IMLIB2
cimlib_cleanup();
#endif /* IMLIB2 */
2009-08-07 03:56:40 +00:00
generate_text(ctx);
2009-08-06 06:54:40 +00:00
#ifdef X11
if (ctx->output_methods & TO_X)
2009-08-07 03:56:40 +00:00
clear_text(ctx, 1);
2009-08-06 06:54:40 +00:00
#endif /* X11 */
ctx->need_to_update = 1;
#ifdef HAVE_LUA
2009-08-07 03:56:40 +00:00
llua_update_info(ctx, ctx->update_interval);
2009-08-06 06:54:40 +00:00
#endif /* HAVE_LUA */
}
void initialisation(conky_context *ctx, int argc, char** argv);
2009-08-07 03:56:40 +00:00
/* reload the config file */
void reload_config(conky_context *ctx)
2009-08-06 06:54:40 +00:00
{
char *current_config_copy = strdup(current_config);
2009-08-07 03:56:40 +00:00
clean_up(ctx, NULL, NULL);
2009-08-06 06:54:40 +00:00
current_config = current_config_copy;
initialisation(ctx, argc_copy, argv_copy);
}
2009-08-07 03:56:40 +00:00
void clean_up(conky_context *ctx, void *memtofree1, void *memtofree2)
2009-08-06 06:54:40 +00:00
{
int i;
#ifdef NCURSES
2009-08-07 03:56:40 +00:00
if (ctx->output_methods & TO_NCURSES) {
2009-08-06 06:54:40 +00:00
endwin();
}
#endif
conftree_empty(currentconffile);
currentconffile = NULL;
if (memtofree1) {
free(memtofree1);
}
if (memtofree2) {
free(memtofree2);
}
timed_thread_destroy_registered_threads();
if (ctx->info.cpu_usage) {
free(ctx->info.cpu_usage);
ctx->info.cpu_usage = NULL;
}
#ifdef X11
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
XClearArea(display, ctx->window.window, ctx->text_start_x - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width,
ctx->text_start_y - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width,
ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2,
ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2, 0);
2009-08-06 06:54:40 +00:00
destroy_window();
free_fonts();
2009-08-07 03:56:40 +00:00
if(ctx->window.region) {
XDestroyRegion(ctx->window.region);
ctx->window.region = NULL;
2009-08-06 06:54:40 +00:00
}
XCloseDisplay(display);
display = NULL;
if(ctx->info.x11.desktop.all_names) {
free(ctx->info.x11.desktop.all_names);
ctx->info.x11.desktop.all_names = NULL;
}
if (ctx->info.x11.desktop.name) {
free(ctx->info.x11.desktop.name);
ctx->info.x11.desktop.name = NULL;
}
2009-08-07 03:56:40 +00:00
ctx->x_initialised = NO;
2009-08-06 06:54:40 +00:00
} else {
free(ctx->fonts); //in set_default_configurations a font is set but not loaded
2009-08-07 03:56:40 +00:00
ctx->font_count = -1;
2009-08-06 06:54:40 +00:00
}
#endif /* X11 */
for (i = 0; i < MAX_TEMPLATES; i++) {
if (template[i]) {
free(template[i]);
template[i] = NULL;
}
}
free_text_objects(&global_root_object, 0);
if (ctx->tmpstring1) {
free(ctx->tmpstring1);
ctx->tmpstring1 = 0;
}
if (ctx->tmpstring2) {
free(ctx->tmpstring2);
ctx->tmpstring2 = 0;
}
if (ctx->text_buffer) {
free(ctx->text_buffer);
ctx->text_buffer = 0;
}
if (global_text) {
free(global_text);
global_text = 0;
}
free(current_config);
current_config = 0;
#ifdef TCP_PORT_MONITOR
tcp_portmon_clear();
#endif
#ifdef HAVE_CURL
ccurl_free_info();
#endif
#ifdef RSS
rss_free_info();
#endif
#ifdef WEATHER
weather_free_info();
#endif
#ifdef HAVE_LUA
llua_shutdown_hook();
llua_close();
#endif /* HAVE_LUA */
#ifdef IMLIB2
cimlib_deinit();
#endif /* IMLIB2 */
#ifdef XOAP
xmlCleanupParser();
#endif /* XOAP */
if (specials) {
for (i = 0; i < special_count; i++) {
if (specials[i].type == GRAPH) {
free(specials[i].graph);
}
}
free(specials);
specials = NULL;
}
clear_net_stats();
clear_diskio_stats();
clear_cpu_stats();
}
static int string_to_bool(const char *s)
{
if (!s) {
// Assumes an option without a true/false means true
return 1;
} else if (strcasecmp(s, "yes") == EQUAL) {
return 1;
} else if (strcasecmp(s, "true") == EQUAL) {
return 1;
} else if (strcasecmp(s, "1") == EQUAL) {
return 1;
}
return 0;
}
#ifdef X11
enum alignment string_to_alignment(const char *s)
{
if (strcasecmp(s, "top_left") == EQUAL) {
return TOP_LEFT;
} else if (strcasecmp(s, "top_right") == EQUAL) {
return TOP_RIGHT;
} else if (strcasecmp(s, "top_middle") == EQUAL) {
return TOP_MIDDLE;
} else if (strcasecmp(s, "bottom_left") == EQUAL) {
return BOTTOM_LEFT;
} else if (strcasecmp(s, "bottom_right") == EQUAL) {
return BOTTOM_RIGHT;
} else if (strcasecmp(s, "bottom_middle") == EQUAL) {
return BOTTOM_MIDDLE;
} else if (strcasecmp(s, "middle_left") == EQUAL) {
return MIDDLE_LEFT;
} else if (strcasecmp(s, "middle_right") == EQUAL) {
return MIDDLE_RIGHT;
} else if (strcasecmp(s, "tl") == EQUAL) {
return TOP_LEFT;
} else if (strcasecmp(s, "tr") == EQUAL) {
return TOP_RIGHT;
} else if (strcasecmp(s, "tm") == EQUAL) {
return TOP_MIDDLE;
} else if (strcasecmp(s, "bl") == EQUAL) {
return BOTTOM_LEFT;
} else if (strcasecmp(s, "br") == EQUAL) {
return BOTTOM_RIGHT;
} else if (strcasecmp(s, "bm") == EQUAL) {
return BOTTOM_MIDDLE;
} else if (strcasecmp(s, "ml") == EQUAL) {
return MIDDLE_LEFT;
} else if (strcasecmp(s, "mr") == EQUAL) {
return MIDDLE_RIGHT;
} else if (strcasecmp(s, "none") == EQUAL) {
return NONE;
}
return TOP_LEFT;
}
#endif /* X11 */
#ifdef X11
static void set_default_configurations_for_x(void)
{
default_fg_color = WhitePixel(display, screen);
default_bg_color = BlackPixel(display, screen);
default_out_color = BlackPixel(display, screen);
color0 = default_fg_color;
color1 = default_fg_color;
color2 = default_fg_color;
color3 = default_fg_color;
color4 = default_fg_color;
color5 = default_fg_color;
color6 = default_fg_color;
color7 = default_fg_color;
color8 = default_fg_color;
color9 = default_fg_color;
current_text_color = default_fg_color;
}
#endif /* X11 */
void set_default_configurations(conky_context *ctx)
{
int i;
#ifdef MPD
char *mpd_env_host;
char *mpd_env_port;
#endif
ctx->text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
2009-08-07 03:56:40 +00:00
update_uname(ctx);
2009-08-06 06:54:40 +00:00
ctx->info.cpu_avg_samples = 2;
ctx->info.net_avg_samples = 2;
ctx->info.diskio_avg_samples = 2;
2009-08-07 03:56:40 +00:00
ctx->format_human_readable = 1;
2009-08-06 06:54:40 +00:00
#ifdef MPD
mpd_env_host = getenv("MPD_HOST");
mpd_env_port = getenv("MPD_PORT");
if (!mpd_env_host || !strlen(mpd_env_host)) {
mpd_set_host("localhost");
} else {
/* MPD_HOST environment variable is set */
char *mpd_hostpart = strchr(mpd_env_host, '@');
if (!mpd_hostpart) {
mpd_set_host(mpd_env_host);
} else {
/* MPD_HOST contains a password */
char mpd_password[mpd_hostpart - mpd_env_host + 1];
snprintf(mpd_password, mpd_hostpart - mpd_env_host + 1, "%s", mpd_env_host);
if (!strlen(mpd_hostpart + 1)) {
mpd_set_host("localhost");
} else {
mpd_set_host(mpd_hostpart + 1);
}
mpd_set_password(mpd_password, 1);
}
}
if (!mpd_env_port || mpd_set_port(mpd_env_port)) {
/* failed to set port from environment variable */
mpd_set_port("6600");
}
#endif
#ifdef XMMS2
ctx->info.xmms2.artist = NULL;
ctx->info.xmms2.album = NULL;
ctx->info.xmms2.title = NULL;
ctx->info.xmms2.genre = NULL;
ctx->info.xmms2.comment = NULL;
ctx->info.xmms2.url = NULL;
ctx->info.xmms2.status = NULL;
ctx->info.xmms2.playlist = NULL;
#endif
2009-08-07 03:56:40 +00:00
ctx->use_spacer = NO_SPACER;
2009-08-06 06:54:40 +00:00
#ifdef X11
ctx->output_methods = TO_X;
#else
ctx->output_methods = TO_STDOUT;
#endif
#ifdef X11
show_graph_scale = 0;
show_graph_range = 0;
draw_shades = 1;
draw_borders = 0;
draw_graph_borders = 1;
draw_outline = 0;
set_first_font("6x10");
gap_x = 5;
gap_y = 60;
minimum_width = 5;
minimum_height = 5;
maximum_width = 0;
#ifdef OWN_WINDOW
own_window = 0;
2009-08-07 03:56:40 +00:00
ctx->window.type = TYPE_NORMAL;
ctx->window.hints = 0;
strcpy(ctx->window.class_name, PACKAGE_NAME);
sprintf(ctx->window.title, PACKAGE_NAME" (%s)", ctx->info.uname_s.nodename);
2009-08-06 06:54:40 +00:00
#endif
stippled_borders = 0;
2009-08-07 03:56:40 +00:00
ctx->window.border_inner_margin = 3;
ctx->window.border_outer_margin = 1;
ctx->window.border_width = 1;
2009-08-06 06:54:40 +00:00
text_alignment = BOTTOM_LEFT;
ctx->info.x11.monitor.number = 1;
ctx->info.x11.monitor.current = 0;
2009-08-07 03:56:40 +00:00
ctx->info.x11.desktop.current = 1;
2009-08-06 06:54:40 +00:00
ctx->info.x11.desktop.number = 1;
ctx->info.x11.desktop.nitems = 0;
2009-08-07 03:56:40 +00:00
ctx->info.x11.desktop.all_names = NULL;
ctx->info.x11.desktop.name = NULL;
2009-08-06 06:54:40 +00:00
#endif /* X11 */
for (i = 0; i < MAX_TEMPLATES; i++) {
if (template[i])
free(template[i]);
template[i] = strdup("");
}
free(current_mail_spool);
{
char buf[256];
variable_substitute(MAIL_FILE, buf, 256);
if (buf[0] != '\0') {
current_mail_spool = strndup(buf, text_buffer_size);
}
}
no_buffers = 1;
2009-08-07 03:56:40 +00:00
set_update_interval(ctx, 3);
ctx->update_interval_bat = NOBATTERY;
2009-08-06 06:54:40 +00:00
ctx->info.music_player_interval = 1.0;
stuff_in_uppercase = 0;
ctx->info.users.number = 1;
#ifdef TCP_PORT_MONITOR
/* set default connection limit */
tcp_portmon_set_max_connections(0);
#endif
}
/* returns 1 if you can overwrite or create the file at 'path' */
static _Bool overwrite_works(const char *path)
{
FILE *filepointer;
if (!(filepointer = fopen(path, "w")))
return 0;
fclose(filepointer);
return 1;
}
/* returns 1 if you can append or create the file at 'path' */
static _Bool append_works(const char *path)
{
FILE *filepointer;
if (!(filepointer = fopen(path, "a")))
return 0;
fclose(filepointer);
return 1;
}
#ifdef X11
#ifdef DEBUG
/* WARNING, this type not in Xlib spec */
int x11_error_handler(Display *d, XErrorEvent *err)
__attribute__((noreturn));
int x11_error_handler(Display *d, XErrorEvent *err)
{
NORM_ERR("X Error: type %i Display %lx XID %li serial %lu error_code %i request_code %i minor_code %i other Display: %lx\n",
err->type,
(long unsigned)err->display,
(long)err->resourceid,
err->serial,
err->error_code,
err->request_code,
err->minor_code,
(long unsigned)d
);
abort();
}
int x11_ioerror_handler(Display *d)
__attribute__((noreturn));
int x11_ioerror_handler(Display *d)
{
NORM_ERR("X Error: Display %lx\n",
(long unsigned)d
);
abort();
}
#endif /* DEBUG */
static void X11_initialisation(conky_context *ctx)
{
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) return;
2009-08-06 06:54:40 +00:00
ctx->output_methods |= TO_X;
init_X11(disp);
set_default_configurations_for_x();
2009-08-07 03:56:40 +00:00
ctx->x_initialised = YES;
2009-08-06 06:54:40 +00:00
#ifdef DEBUG
_Xdebug = 1;
/* WARNING, this type not in Xlib spec */
XSetErrorHandler(&x11_error_handler);
XSetIOErrorHandler(&x11_ioerror_handler);
#endif /* DEBUG */
}
void X11_create_window(conky_context *ctx)
{
if (ctx->output_methods & TO_X) {
#ifdef OWN_WINDOW
2009-08-07 03:56:40 +00:00
init_window(own_window, ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2,
ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2, set_transparent, background_colour,
2009-08-06 06:54:40 +00:00
ctx->xargv, ctx->xargc);
#else /* OWN_WINDOW */
2009-08-07 03:56:40 +00:00
init_window(0, ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2,
ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2, set_transparent, 0,
2009-08-06 06:54:40 +00:00
ctx->xargv, ctx->xargc);
#endif /* OWN_WINDOW */
2009-08-07 03:56:40 +00:00
setup_fonts(ctx);
load_fonts(ctx);
update_text_area(ctx); /* to position text/window on screen */
2009-08-06 06:54:40 +00:00
#ifdef OWN_WINDOW
if (own_window && !fixed_pos) {
2009-08-07 03:56:40 +00:00
XMoveWindow(display, ctx->window.window, ctx->window.x, ctx->window.y);
2009-08-06 06:54:40 +00:00
}
if (own_window) {
2009-08-07 03:56:40 +00:00
set_transparent_background(ctx->window.window);
2009-08-06 06:54:40 +00:00
}
#endif
create_gc();
draw_stuff();
2009-08-07 03:56:40 +00:00
ctx->window.region = XCreateRegion();
2009-08-06 06:54:40 +00:00
#ifdef HAVE_XDAMAGE
2009-08-07 03:56:40 +00:00
if (!XDamageQueryExtension(display, &ctx->window.event_base, &ctx->window.error_base)) {
2009-08-06 06:54:40 +00:00
NORM_ERR("Xdamage extension unavailable");
}
2009-08-07 03:56:40 +00:00
ctx->window.damage = XDamageCreate(display, ctx->window.window, XDamageReportNonEmpty);
ctx->window.region2 = XFixesCreateRegionFromWindow(display, ctx->window.window, 0);
ctx->window.part = XFixesCreateRegionFromWindow(display, ctx->window.window, 0);
2009-08-06 06:54:40 +00:00
#endif /* HAVE_XDAMAGE */
ctx->selected_font = 0;
update_text_area(); /* to get initial size of the window */
}
#ifdef HAVE_LUA
/* setup lua window globals */
2009-08-07 03:56:40 +00:00
llua_setup_window_table(ctx->text_start_x, ctx->text_start_y, ctx->text_width, ctx->text_height);
2009-08-06 06:54:40 +00:00
#endif /* HAVE_LUA */
}
#endif /* X11 */
#define CONF_ERR NORM_ERR("%s: %d: config file error", f, line)
#define CONF_ERR2(a) NORM_ERR("%s: %d: config file error: %s", f, line, a)
#define CONF2(a) if (strcasecmp(name, a) == 0)
#define CONF(a) else CONF2(a)
#define CONF3(a, b) else if (strcasecmp(name, a) == 0 \
|| strcasecmp(name, b) == 0)
#define CONF_CONTINUE 1
#define CONF_BREAK 2
#define CONF_BUFF_SIZE 512
static FILE *open_config_file(const char *f)
{
#ifdef CONFIG_OUTPUT
if (!strcmp(f, "==builtin==")) {
return conf_cookie_open();
} else
#endif /* CONFIG_OUTPUT */
return fopen(f, "r");
}
static int do_config_step(int *line, FILE *fp, char *buf, char **name, char **value)
{
char *p, *p2;
(*line)++;
if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
return CONF_BREAK;
}
remove_comments(buf);
p = buf;
/* skip spaces */
while (*p && isspace((int) *p)) {
p++;
}
if (*p == '\0') {
return CONF_CONTINUE; /* empty line */
}
*name = p;
/* skip name */
p2 = p;
while (*p2 && !isspace((int) *p2)) {
p2++;
}
if (*p2 != '\0') {
*p2 = '\0'; /* break at name's end */
p2++;
}
/* get value */
if (*p2) {
p = p2;
while (*p && isspace((int) *p)) {
p++;
}
*value = p;
p2 = *value + strlen(*value);
while (isspace((int) *(p2 - 1))) {
*--p2 = '\0';
}
} else {
*value = 0;
}
return 0;
}
char load_config_file(conky_context *ctx, const char *f)
{
int line = 0;
FILE *fp;
fp = open_config_file(f);
if (!fp) {
return FALSE;
}
DBGP("reading contents from config file '%s'", f);
while (!feof(fp)) {
char buff[CONF_BUFF_SIZE], *name, *value;
int ret = do_config_step(&line, fp, buff, &name, &value);
if (ret == CONF_BREAK) {
break;
} else if (ret == CONF_CONTINUE) {
continue;
}
#ifdef X11
CONF2("out_to_x") {
/* don't listen if X is already initialised or
* if we already know we don't want it */
2009-08-07 03:56:40 +00:00
if(ctx->x_initialised != YES) {
2009-08-06 06:54:40 +00:00
if (string_to_bool(value)) {
ctx->output_methods &= TO_X;
} else {
ctx->output_methods &= ~TO_X;
2009-08-07 03:56:40 +00:00
ctx->x_initialised = NEVER;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("display") {
2009-08-07 03:56:40 +00:00
if (!value || ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
CONF_ERR;
} else {
if (disp)
free(disp);
disp = strdup(value);
}
}
CONF("alignment") {
#ifdef OWN_WINDOW
2009-08-07 03:56:40 +00:00
if (ctx->window.type == TYPE_DOCK)
2009-08-06 06:54:40 +00:00
;
else
#endif /*OWN_WINDOW */
if (value) {
int a = string_to_alignment(value);
if (a <= 0) {
CONF_ERR;
} else {
text_alignment = a;
}
} else {
CONF_ERR;
}
}
CONF("background") {
fork_to_background = string_to_bool(value);
}
#else
CONF2("background") {
fork_to_background = string_to_bool(value);
}
#endif /* X11 */
#ifdef X11
CONF("show_graph_scale") {
show_graph_scale = string_to_bool(value);
}
CONF("show_graph_range") {
show_graph_range = string_to_bool(value);
}
CONF("border_inner_margin") {
if (value) {
2009-08-07 03:56:40 +00:00
ctx->window.border_inner_margin = strtol(value, 0, 0);
if (ctx->window.border_inner_margin < 0) ctx->window.border_inner_margin = 0;
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
CONF("border_outer_margin") {
if (value) {
2009-08-07 03:56:40 +00:00
ctx->window.border_outer_margin = strtol(value, 0, 0);
if (ctx->window.border_outer_margin < 0) ctx->window.border_outer_margin = 0;
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
CONF("border_width") {
if (value) {
2009-08-07 03:56:40 +00:00
ctx->window.border_width = strtol(value, 0, 0);
if (ctx->window.border_width < 0) ctx->window.border_width = 0;
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
#endif /* X11 */
#define TEMPLATE_CONF(n) \
CONF("template"#n) { \
if (value) { \
free(template[n]); \
template[n] = strdup(value); \
} else { \
CONF_ERR; \
} \
}
TEMPLATE_CONF(0)
TEMPLATE_CONF(1)
TEMPLATE_CONF(2)
TEMPLATE_CONF(3)
TEMPLATE_CONF(4)
TEMPLATE_CONF(5)
TEMPLATE_CONF(6)
TEMPLATE_CONF(7)
TEMPLATE_CONF(8)
TEMPLATE_CONF(9)
CONF("imap") {
if (value) {
ctx->info.mail = parse_mail_args(IMAP_TYPE, value);
} else {
CONF_ERR;
}
}
CONF("pop3") {
if (value) {
ctx->info.mail = parse_mail_args(POP3_TYPE, value);
} else {
CONF_ERR;
}
}
CONF("default_bar_size") {
char err = 0;
if (value) {
if (sscanf(value, "%d %d", &default_bar_width, &default_bar_height) != 2) {
err = 1;
}
} else {
err = 1;
}
if (err) {
CONF_ERR2("default_bar_size takes 2 integer arguments (ie. 'default_bar_size 0 6')")
}
}
#ifdef X11
CONF("default_graph_size") {
char err = 0;
if (value) {
if (sscanf(value, "%d %d", &default_graph_width, &default_graph_height) != 2) {
err = 1;
}
} else {
err = 1;
}
if (err) {
CONF_ERR2("default_graph_size takes 2 integer arguments (ie. 'default_graph_size 0 6')")
}
}
CONF("default_gauge_size") {
char err = 0;
if (value) {
if (sscanf(value, "%d %d", &default_gauge_width, &default_gauge_height) != 2) {
err = 1;
}
} else {
err = 1;
}
if (err) {
CONF_ERR2("default_gauge_size takes 2 integer arguments (ie. 'default_gauge_size 0 6')")
}
}
#endif
#ifdef MPD
CONF("mpd_host") {
if (value) {
mpd_set_host(value);
} else {
CONF_ERR;
}
}
CONF("mpd_port") {
if (value && mpd_set_port(value)) {
CONF_ERR;
}
}
CONF("mpd_password") {
if (value) {
mpd_set_password(value, 0);
} else {
CONF_ERR;
}
}
#endif
CONF("music_player_interval") {
if (value) {
ctx->info.music_player_interval = strtod(value, 0);
} else {
CONF_ERR;
}
}
#ifdef __OpenBSD__
CONF("sensor_device") {
if (value) {
sensor_device = strtol(value, 0, 0);
} else {
CONF_ERR;
}
}
#endif
CONF("cpu_avg_samples") {
if (value) {
cpu_avg_samples = strtol(value, 0, 0);
if (cpu_avg_samples < 1 || cpu_avg_samples > 14) {
CONF_ERR;
} else {
ctx->info.cpu_avg_samples = cpu_avg_samples;
}
} else {
CONF_ERR;
}
}
CONF("net_avg_samples") {
if (value) {
net_avg_samples = strtol(value, 0, 0);
if (net_avg_samples < 1 || net_avg_samples > 14) {
CONF_ERR;
} else {
ctx->info.net_avg_samples = net_avg_samples;
}
} else {
CONF_ERR;
}
}
CONF("diskio_avg_samples") {
if (value) {
diskio_avg_samples = strtol(value, 0, 0);
if (diskio_avg_samples < 1 || diskio_avg_samples > 14) {
CONF_ERR;
} else {
ctx->info.diskio_avg_samples = diskio_avg_samples;
}
} else {
CONF_ERR;
}
}
#ifdef HAVE_XDBE
CONF("double_buffer") {
use_xdbe = string_to_bool(value);
}
#endif
#ifdef X11
CONF("override_utf8_locale") {
utf8_mode = string_to_bool(value);
}
CONF("draw_borders") {
draw_borders = string_to_bool(value);
}
CONF("draw_graph_borders") {
draw_graph_borders = string_to_bool(value);
}
CONF("draw_shades") {
draw_shades = string_to_bool(value);
}
CONF("draw_outline") {
draw_outline = string_to_bool(value);
}
#endif /* X11 */
CONF("out_to_console") {
if(string_to_bool(value)) {
ctx->output_methods |= TO_STDOUT;
} else {
ctx->output_methods &= ~TO_STDOUT;
}
}
CONF("extra_newline") {
2009-08-07 03:56:40 +00:00
ctx->extra_newline = string_to_bool(value);
2009-08-06 06:54:40 +00:00
}
CONF("out_to_stderr") {
if(string_to_bool(value))
ctx->output_methods |= TO_STDERR;
}
#ifdef NCURSES
CONF("out_to_ncurses") {
if(string_to_bool(value)) {
initscr();
start_color();
ctx->output_methods |= TO_NCURSES;
}
}
#endif
CONF("overwrite_file") {
if(overwrite_file) {
free(overwrite_file);
overwrite_file = 0;
}
if(overwrite_works(value)) {
overwrite_file = strdup(value);
ctx->output_methods |= OVERWRITE_FILE;
} else
NORM_ERR("overwrite_file won't be able to create/overwrite '%s'", value);
}
CONF("append_file") {
if(append_file) {
free(append_file);
append_file = 0;
}
if(append_works(value)) {
append_file = strdup(value);
ctx->output_methods |= APPEND_FILE;
} else
NORM_ERR("append_file won't be able to create/append '%s'", value);
}
CONF("use_spacer") {
if (value) {
if (strcasecmp(value, "left") == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->use_spacer = LEFT_SPACER;
2009-08-06 06:54:40 +00:00
} else if (strcasecmp(value, "right") == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->use_spacer = RIGHT_SPACER;
2009-08-06 06:54:40 +00:00
} else if (strcasecmp(value, "none") == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->use_spacer = NO_SPACER;
2009-08-06 06:54:40 +00:00
} else {
2009-08-07 03:56:40 +00:00
ctx->use_spacer = string_to_bool(value);
2009-08-06 06:54:40 +00:00
NORM_ERR("use_spacer should have an argument of left, right, or"
" none. '%s' seems to be some form of '%s', so"
" defaulting to %s.", value,
2009-08-07 03:56:40 +00:00
ctx->use_spacer ? "true" : "false",
ctx->use_spacer ? "right" : "none");
if (ctx->use_spacer) {
ctx->use_spacer = RIGHT_SPACER;
2009-08-06 06:54:40 +00:00
} else {
2009-08-07 03:56:40 +00:00
ctx->use_spacer = NO_SPACER;
2009-08-06 06:54:40 +00:00
}
}
} else {
NORM_ERR("use_spacer should have an argument. Defaulting to right.");
2009-08-07 03:56:40 +00:00
ctx->use_spacer = RIGHT_SPACER;
2009-08-06 06:54:40 +00:00
}
}
#ifdef X11
#ifdef XFT
CONF("use_xft") {
use_xft = string_to_bool(value);
}
CONF("font") {
if (value) {
set_first_font(value);
}
}
CONF("xftalpha") {
2009-08-07 03:56:40 +00:00
if (value && ctx->font_count >= 0) {
2009-08-06 06:54:40 +00:00
ctx->fonts[0].font_alpha = atof(value) * 65535.0;
}
}
CONF("xftfont") {
if (use_xft) {
#else
CONF("use_xft") {
if (string_to_bool(value)) {
NORM_ERR("Xft not enabled at compile time");
}
}
CONF("xftfont") {
/* xftfont silently ignored when no Xft */
}
CONF("xftalpha") {
/* xftalpha is silently ignored when no Xft */
}
CONF("font") {
#endif
if (value) {
set_first_font(value);
}
#ifdef XFT
}
#endif
}
CONF("gap_x") {
if (value) {
gap_x = atoi(value);
} else {
CONF_ERR;
}
}
CONF("gap_y") {
if (value) {
gap_y = atoi(value);
} else {
CONF_ERR;
}
}
#endif /* X11 */
CONF("mail_spool") {
if (value) {
char buffer[256];
variable_substitute(value, buffer, 256);
if (buffer[0] != '\0') {
if (current_mail_spool) {
free(current_mail_spool);
}
current_mail_spool = strndup(buffer, text_buffer_size);
}
} else {
CONF_ERR;
}
}
#ifdef X11
CONF("minimum_size") {
if (value) {
if (sscanf(value, "%d %d", &minimum_width, &minimum_height)
!= 2) {
if (sscanf(value, "%d", &minimum_width) != 1) {
CONF_ERR;
}
}
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
CONF("maximum_width") {
if (value) {
if (sscanf(value, "%d", &maximum_width) != 1) {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
#endif /* X11 */
CONF("no_buffers") {
no_buffers = string_to_bool(value);
}
CONF("top_name_width") {
if (value) {
if (sscanf(value, "%u", &top_name_width) != 1) {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
if (top_name_width >= max_user_text) {
top_name_width = max_user_text - 1;
}
}
CONF("top_cpu_separate") {
cpu_separate = string_to_bool(value);
}
CONF("short_units") {
short_units = string_to_bool(value);
}
CONF("format_human_readable") {
2009-08-07 03:56:40 +00:00
ctx->format_human_readable = string_to_bool(value);
2009-08-06 06:54:40 +00:00
}
CONF("pad_percents") {
pad_percents = atoi(value);
}
#ifdef X11
2009-08-06 06:54:40 +00:00
#ifdef OWN_WINDOW
CONF("own_window") {
if (value) {
own_window = string_to_bool(value);
}
}
CONF("own_window_class") {
if (value) {
2009-08-07 03:56:40 +00:00
memset(ctx->window.class_name, 0, sizeof(ctx->window.class_name));
strncpy(ctx->window.class_name, value,
sizeof(ctx->window.class_name) - 1);
2009-08-06 06:54:40 +00:00
}
}
CONF("own_window_title") {
if (value) {
2009-08-07 03:56:40 +00:00
memset(ctx->window.title, 0, sizeof(ctx->window.title));
strncpy(ctx->window.title, value, sizeof(ctx->window.title) - 1);
2009-08-06 06:54:40 +00:00
}
}
CONF("own_window_transparent") {
if (value) {
set_transparent = string_to_bool(value);
}
}
CONF("own_window_hints") {
if (value) {
char *p_hint, *p_save;
char delim[] = ", ";
/* tokenize the value into individual hints */
if ((p_hint = strtok_r(value, delim, &p_save)) != NULL) {
do {
/* fprintf(stderr, "hint [%s] parsed\n", p_hint); */
if (strncmp(p_hint, "undecorate", 10) == EQUAL) {
2009-08-07 03:56:40 +00:00
SET_HINT(ctx->window.hints, HINT_UNDECORATED);
2009-08-06 06:54:40 +00:00
} else if (strncmp(p_hint, "below", 5) == EQUAL) {
2009-08-07 03:56:40 +00:00
SET_HINT(ctx->window.hints, HINT_BELOW);
2009-08-06 06:54:40 +00:00
} else if (strncmp(p_hint, "above", 5) == EQUAL) {
2009-08-07 03:56:40 +00:00
SET_HINT(ctx->window.hints, HINT_ABOVE);
2009-08-06 06:54:40 +00:00
} else if (strncmp(p_hint, "sticky", 6) == EQUAL) {
2009-08-07 03:56:40 +00:00
SET_HINT(ctx->window.hints, HINT_STICKY);
2009-08-06 06:54:40 +00:00
} else if (strncmp(p_hint, "skip_taskbar", 12) == EQUAL) {
2009-08-07 03:56:40 +00:00
SET_HINT(ctx->window.hints, HINT_SKIP_TASKBAR);
2009-08-06 06:54:40 +00:00
} else if (strncmp(p_hint, "skip_pager", 10) == EQUAL) {
2009-08-07 03:56:40 +00:00
SET_HINT(ctx->window.hints, HINT_SKIP_PAGER);
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
p_hint = strtok_r(NULL, delim, &p_save);
} while (p_hint != NULL);
}
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
CONF("own_window_type") {
if (value) {
if (strncmp(value, "normal", 6) == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->window.type = TYPE_NORMAL;
2009-08-06 06:54:40 +00:00
} else if (strncmp(value, "desktop", 7) == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->window.type = TYPE_DESKTOP;
2009-08-06 06:54:40 +00:00
} else if (strncmp(value, "dock", 4) == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->window.type = TYPE_DOCK;
2009-08-06 06:54:40 +00:00
text_alignment = TOP_LEFT;
} else if (strncmp(value, "panel", 5) == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->window.type = TYPE_PANEL;
2009-08-06 06:54:40 +00:00
} else if (strncmp(value, "override", 8) == EQUAL) {
2009-08-07 03:56:40 +00:00
ctx->window.type = TYPE_OVERRIDE;
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
#endif
2009-08-06 06:54:40 +00:00
CONF("stippled_borders") {
if (value) {
stippled_borders = strtol(value, 0, 0);
} else {
stippled_borders = 4;
}
}
#ifdef IMLIB2
CONF("imlib_cache_size") {
if (value) {
cimlib_set_cache_size(atoi(value));
}
}
CONF("imlib_cache_flush_interval") {
if (value) {
cimlib_set_cache_flush_interval(atoi(value));
}
}
#endif /* IMLIB2 */
#endif /* X11 */
CONF("update_interval_on_battery") {
if (value) {
2009-08-07 03:56:40 +00:00
ctx->update_interval_bat = strtod(value, 0);
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
CONF("update_interval") {
if (value) {
2009-08-07 03:56:40 +00:00
set_update_interval(ctx, strtod(value, 0));
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
if (ctx->info.music_player_interval == 0) {
2009-08-07 03:56:40 +00:00
// default to ctx->update_interval
2009-08-06 06:54:40 +00:00
ctx->info.music_player_interval = ctx->update_interval;
}
}
CONF("total_run_times") {
if (value) {
ctx->total_run_times = strtod(value, 0);
} else {
CONF_ERR;
}
}
CONF("uppercase") {
stuff_in_uppercase = string_to_bool(value);
}
CONF("max_specials") {
if (value) {
max_specials = atoi(value);
} else {
CONF_ERR;
}
}
CONF("max_user_text") {
if (value) {
max_user_text = atoi(value);
} else {
CONF_ERR;
}
}
CONF("text_buffer_size") {
if (value) {
text_buffer_size = atoi(value);
if (text_buffer_size < DEFAULT_TEXT_BUFFER_SIZE) {
NORM_ERR("text_buffer_size must be >=%i bytes", DEFAULT_TEXT_BUFFER_SIZE);
text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
}
} else {
CONF_ERR;
}
}
CONF("text") {
#ifdef X11
if (ctx->output_methods & TO_X) {
X11_initialisation();
}
#endif
2009-08-06 06:54:40 +00:00
if (global_text) {
free(global_text);
global_text = 0;
}
global_text = (char *) malloc(1);
global_text[0] = '\0';
while (!feof(fp)) {
unsigned int l = strlen(global_text);
unsigned int bl;
char buf[CONF_BUFF_SIZE];
if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
break;
}
2009-08-06 06:54:40 +00:00
/* Remove \\-\n. */
bl = strlen(buf);
if (bl >= 2 && buf[bl-2] == '\\' && buf[bl-1] == '\n') {
buf[bl-2] = '\0';
bl -= 2;
if (bl == 0) {
continue;
}
}
2009-08-06 06:54:40 +00:00
/* Check for continuation of \\-\n. */
if (l > 0 && buf[0] == '\n' && global_text[l-1] == '\\') {
global_text[l-1] = '\0';
continue;
}
2009-08-06 06:54:40 +00:00
global_text = (char *) realloc(global_text, l + bl + 1);
strcat(global_text, buf);
if (strlen(global_text) > max_user_text) {
break;
}
2009-08-06 06:54:40 +00:00
}
fclose(fp);
if (strlen(global_text) < 1) {
CRIT_ERR(NULL, NULL, "no text supplied in configuration; exiting");
}
global_text_lines = line + 1;
return TRUE;
}
#ifdef TCP_PORT_MONITOR
CONF("max_port_monitor_connections") {
int max;
if (!value || (sscanf(value, "%d", &max) != 1)) {
/* an error. use default, warn and continue. */
tcp_portmon_set_max_connections(0);
CONF_ERR;
} else if (tcp_portmon_set_max_connections(max)) {
/* max is < 0, default has been set*/
CONF_ERR;
}
}
#endif
CONF("if_up_strictness") {
if (!value) {
NORM_ERR("incorrect if_up_strictness value, defaulting to 'up'");
ifup_strictness = IFUP_UP;
} else if (strcasecmp(value, "up") == EQUAL) {
ifup_strictness = IFUP_UP;
} else if (strcasecmp(value, "link") == EQUAL) {
ifup_strictness = IFUP_LINK;
} else if (strcasecmp(value, "address") == EQUAL) {
ifup_strictness = IFUP_ADDR;
} else {
NORM_ERR("incorrect if_up_strictness value, defaulting to 'up'");
ifup_strictness = IFUP_UP;
}
}
CONF("temperature_unit") {
if (!value) {
NORM_ERR("config option 'temperature_unit' needs an argument, either 'celsius' or 'fahrenheit'");
} else if (set_temp_output_unit(value)) {
NORM_ERR("temperature_unit: incorrect argument");
}
}
#ifdef HAVE_LUA
CONF("lua_load") {
if (value) {
char *ptr = strtok(value, " ");
while (ptr) {
llua_load(ptr);
ptr = strtok(NULL, " ");
}
2009-08-06 06:54:40 +00:00
} else {
CONF_ERR;
}
}
#ifdef X11
CONF("lua_draw_hook_pre") {
if (value) {
llua_set_draw_pre_hook(value);
} else {
CONF_ERR;
}
}
CONF("lua_draw_hook_post") {
if (value) {
llua_set_draw_post_hook(value);
} else {
CONF_ERR;
}
}
CONF("lua_startup_hook") {
if (value) {
llua_set_startup_hook(value);
} else {
CONF_ERR;
}
}
CONF("lua_shutdown_hook") {
if (value) {
llua_set_shutdown_hook(value);
} else {
CONF_ERR;
}
}
#endif /* X11 */
#endif /* HAVE_LUA */
CONF("color0"){}
CONF("color1"){}
CONF("color2"){}
CONF("color3"){}
CONF("color4"){}
CONF("color5"){}
CONF("color6"){}
CONF("color7"){}
CONF("color8"){}
CONF("color9"){}
CONF("default_color"){}
CONF3("default_shade_color", "default_shadecolor"){}
CONF3("default_outline_color", "default_outlinecolor") {}
CONF("own_window_colour") {}
else {
NORM_ERR("%s: %d: no such configuration: '%s'", f, line, name);
}
}
fclose(fp);
if (ctx->info.music_player_interval == 0) {
2009-08-07 03:56:40 +00:00
// default to ctx->update_interval
2009-08-06 06:54:40 +00:00
ctx->info.music_player_interval = ctx->update_interval;
}
if (!global_text) { // didn't supply any text
CRIT_ERR(NULL, NULL, "missing text block in configuration; exiting");
}
return TRUE;
}
#ifdef X11
void load_config_file_x11(conky_context *ctx, const char *f)
{
int line = 0;
FILE *fp;
fp = open_config_file(f);
if (!fp) {
return;
}
DBGP("reading contents from config file '%s'", f);
while (!feof(fp)) {
char buff[CONF_BUFF_SIZE], *name, *value;
int ret = do_config_step(&line, fp, buff, &name, &value);
if (ret == CONF_BREAK) {
break;
} else if (ret == CONF_CONTINUE) {
continue;
}
CONF2("color0") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color0 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color1") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color1 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color2") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color2 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color3") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color3 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color4") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color4 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color5") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color5 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color6") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color6 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color7") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color7 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color8") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color8 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("color9") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
color9 = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF("default_color") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
default_fg_color = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF3("default_shade_color", "default_shadecolor") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
default_bg_color = get_x11_color(value);
} else {
CONF_ERR;
}
2009-08-06 06:54:40 +00:00
}
}
CONF3("default_outline_color", "default_outlinecolor") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
default_out_color = get_x11_color(value);
} else {
CONF_ERR;
}
}
}
#ifdef OWN_WINDOW
CONF("own_window_colour") {
X11_initialisation();
2009-08-07 03:56:40 +00:00
if (ctx->x_initialised == YES) {
2009-08-06 06:54:40 +00:00
if (value) {
background_colour = get_x11_color(value);
} else {
NORM_ERR("Invalid colour for own_window_colour (try omitting the "
"'#' for hex colours");
}
}
}
#endif
CONF("text") {
/* initialize X11 if nothing X11-related is mentioned before TEXT (and if X11 is the default outputmethod) */
if (ctx->output_methods & TO_X) {
X11_initialisation();
}
}
2009-08-06 06:54:40 +00:00
#undef CONF
#undef CONF2
#undef CONF3
#undef CONF_ERR
#undef CONF_ERR2
#undef CONF_BREAK
#undef CONF_CONTINUE
#undef CONF_BUFF_SIZE
}
2009-08-06 06:54:40 +00:00
fclose(fp);
}
2009-08-06 06:54:40 +00:00
#endif /* X11 */