A whole bunch of changes, mostly Lua related.
[monky] / src / conky.h
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 #ifndef _conky_h_
29 #define _conky_h_
30
31 #include "config.h"     /* defines */
32 #include "common.h"     /* at least for struct dns_data */
33 #include <sys/utsname.h> /* struct uname_s */
34
35 #if defined(HAS_MCHECK_H)
36 #include <mcheck.h>
37 #endif /* HAS_MCHECK_H */
38
39 #undef EQUAL
40 #undef FALSE
41 #undef TRUE
42 #define EQUAL 0 //returnvalue of strcmp-variants when strings are equal
43 #define FALSE 0
44 #define TRUE 1
45
46 #define DEFAULT_BAR_WIDTH_NO_X 10
47
48 #if !defined(__GNUC__)
49 #  define __attribute__(x) /* nothing */
50 #endif
51
52 #ifndef HAVE_STRNDUP
53 // use our own strndup() if it's not available
54 char *strndup(const char *s, size_t n);
55 #endif /* HAVE_STRNDUP */
56
57 /* headers of optional features
58  * include them here, so we don't need to run the check
59  * in every code file optionally using the feature
60  */
61
62 #ifdef AUDACIOUS
63 #include "audacious.h"
64 #endif
65
66 #ifdef BMPX
67 #include "bmpx.h"
68 #endif
69
70 #ifdef EVE
71 #include "eve.h"
72 #endif
73
74 #ifdef HDDTEMP
75 #include "hddtemp.h"
76 #endif /* HDDTEMP */
77
78 #ifdef MOC
79 #include "moc.h"
80 #endif
81
82 #ifdef MPD
83 #include "mpd.h"
84 #endif
85
86 #ifdef NVIDIA
87 #include "nvidia.h"
88 #endif
89
90 #ifdef RSS
91 #include "rss.h"
92 #endif
93
94 #ifdef WEATHER
95 #include "weather.h"
96 #endif
97
98 #ifdef HAVE_LUA
99 #include "llua.h"
100 #endif
101
102 #ifdef TCP_PORT_MONITOR
103 #include "tcp-portmon.h"
104 #endif
105
106 #ifdef XMMS2
107 #include "xmms2.h"
108 #endif
109
110 #ifdef IBM
111 #include "ibm.h"
112 #include "smapi.h"
113 #endif
114
115 #ifdef APCUPSD
116 #include "apcupsd.h"
117 #endif
118
119 /* sony support */
120 #include "sony.h"
121
122 /* A size for temporary, static buffers to use when
123  * one doesn't know what to choose. Defaults to 256.  */
124 extern unsigned int text_buffer_size;
125
126 struct entropy_s {
127         unsigned int entropy_avail;
128         unsigned int poolsize;
129 };
130
131 struct usr_info {
132         char *names;
133         char *times;
134         char *terms;
135         int number;
136 };
137
138 struct gateway_info {
139         char *iface;
140         char *ip;
141         int count;
142 };
143
144 #ifdef X11
145 struct monitor_info {
146         int number;
147         int current;
148 };
149
150 struct x11_info {
151         struct monitor_info monitor;
152 };
153 #endif
154
155 enum {
156         INFO_CPU = 0,
157         INFO_MAIL = 1,
158         INFO_MEM = 2,
159         INFO_NET = 3,
160         INFO_PROCS = 4,
161         INFO_RUN_PROCS = 5,
162         INFO_UPTIME = 6,
163         INFO_BUFFERS = 7,
164         INFO_FS = 8,
165         INFO_SYSFS = 9,
166         INFO_MIXER = 10,
167         INFO_LOADAVG = 11,
168         INFO_UNAME = 12,
169         INFO_FREQ = 13,
170 #ifdef MPD
171         INFO_MPD = 14,
172 #endif
173         INFO_TOP = 15,
174         INFO_WIFI = 16,
175         INFO_DISKIO = 17,
176         INFO_I8K = 18,
177 #ifdef TCP_PORT_MONITOR
178         INFO_TCP_PORT_MONITOR = 19,
179 #endif
180 #ifdef AUDACIOUS
181         INFO_AUDACIOUS = 20,
182 #endif
183 #ifdef BMPX
184         INFO_BMPX = 21,
185 #endif
186 #ifdef XMMS2
187         INFO_XMMS2 = 22,
188 #endif
189         INFO_ENTROPY = 23,
190 #ifdef RSS
191         INFO_RSS = 24,
192 #endif
193 #ifdef IBM
194         INFO_SMAPI = 25,
195 #endif
196         INFO_USERS = 26,
197         INFO_GW = 27,
198 #ifdef NVIDIA
199         INFO_NVIDIA = 28,
200 #endif
201 #ifdef X11
202         INFO_X11 = 29,
203 #endif
204         INFO_DNS = 30,
205 #ifdef MOC
206         INFO_MOC = 31,
207 #endif
208 #ifdef APCUPSD
209         INFO_APCUPSD = 32,
210 #endif
211 #ifdef WEATHER
212         INFO_WEATHER = 33,
213 #endif
214 };
215
216 /* get_battery_stuff() item selector
217  * needed by conky.c, linux.c and freebsd.c */
218 enum {
219         BATTERY_STATUS,
220         BATTERY_TIME
221 };
222
223 /* if_up strictness selector
224  * needed by conky.c and linux.c (and potentially others) */
225 enum {
226         IFUP_UP,
227         IFUP_LINK,
228         IFUP_ADDR
229 } ifup_strictness;
230
231 struct information {
232         unsigned int mask;
233
234         struct utsname uname_s;
235
236         char freq[10];
237
238         double uptime;
239
240         /* memory information in kilobytes */
241         unsigned long long mem, memeasyfree, memfree, memmax, swap, swapfree, swapmax;
242         unsigned long long bufmem, buffers, cached;
243
244         unsigned short procs;
245         unsigned short run_procs;
246
247         float *cpu_usage;
248         /* struct cpu_stat cpu_summed; what the hell is this? */
249         unsigned int cpu_count;
250         int cpu_avg_samples;
251
252         int net_avg_samples;
253
254         int diskio_avg_samples;
255
256         float loadavg[3];
257
258         struct mail_s *mail;
259         int mail_running;
260 #ifdef XMMS2
261         struct xmms2_s xmms2;
262 #endif
263 #ifdef AUDACIOUS
264         AUDACIOUS_S audacious;
265 #endif
266 #ifdef BMPX
267         struct bmpx_s bmpx;
268 #endif
269         struct usr_info users;
270         struct gateway_info gw_info;
271         struct dns_data nameserver_info;
272         struct process *cpu[10];
273         struct process *memu[10];
274         struct process *time[10];
275 #ifdef IOSTATS
276         struct process *io[10];
277 #endif
278         struct process *first_process;
279         unsigned long looped;
280         struct entropy_s entropy;
281         double music_player_interval;
282
283 #ifdef X11
284         struct x11_info x11;
285 #endif
286
287 #ifdef APCUPSD
288         APCUPSD_S apcupsd;
289 #endif
290
291         short kflags;   /* kernel settings, see enum KFLAG */
292 };
293
294 /* needed by linux.c and top.c -> outsource somewhere */
295 enum {
296         /* set to true if kernel uses "long" format for /proc/stats */
297         KFLAG_IS_LONGSTAT = 0x01,
298         /* set to true if kernel shows # of threads for the proc value
299          * in sysinfo() call */
300         KFLAG_PROC_IS_THREADS = 0x02
301         /* bits 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 available for future use */
302         /* KFLAG_NEXT_ONE = 0x04 */
303 };
304 #define KFLAG_SETON(a) info.kflags |= a
305 #define KFLAG_SETOFF(a) info.kflags &= (~a)
306 #define KFLAG_FLIP(a) info.kflags ^= a
307 #define KFLAG_ISSET(a) info.kflags & a
308
309 /* defined in conky.c, needed by top.c */
310 extern int top_cpu, top_mem, top_time;
311 #ifdef IOSTATS
312 extern int top_io;
313 #endif
314
315 /* defined in conky.c, needed by top.c */
316 extern int cpu_separate;
317
318 /* struct that has all info to be shared between
319  * instances of the same text object */
320 extern struct information info;
321
322 /* defined in users.c */
323 void update_users(void);
324
325 /* defined in conky.c */
326 extern double current_update_time, last_update_time, update_interval;
327
328 /* defined in conky.c */
329 int spaced_print(char *, int, const char *, int, ...)
330         __attribute__((format(printf, 3, 5)));
331 extern int inotify_fd;
332
333 /* defined in conky.c
334  * evaluates 'text' and places the result in 'buffer'
335  */
336 void evaluate(char *text, char *buffer);
337
338 /* maximum size of config TEXT buffer, i.e. below TEXT line. */
339 extern unsigned int max_user_text;
340
341 /* path to config file */
342 extern char *current_config;
343
344 #ifdef X11
345 #define TO_X 1
346 #endif
347 #define TO_STDOUT 2
348 #define TO_STDERR 4
349 #define OVERWRITE_FILE 8
350 #define APPEND_FILE 16
351 enum x_initialiser_state {
352         NO = 0,
353         YES = 1,
354         NEVER = 2
355 };
356 extern int output_methods;
357 extern enum x_initialiser_state x_initialised;
358
359 #define DEFAULT_TEXT_BUFFER_SIZE_S "##DEFAULT_TEXT_BUFFER_SIZE"
360
361 #endif /* _conky_h_ */