* Add option to specify number of retries for IMAP/POP3 stuff (via -r)
[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-2008 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  * $Id$
27  *
28  */
29
30 #ifndef _conky_h_
31 #define _conky_h_
32
33 #if defined(HAS_MCHECK_H)
34 #include <mcheck.h>
35 #endif /* HAS_MCHECK_H */
36
37 #undef EQUAL
38 #undef FALSE
39 #undef TRUE
40 #define EQUAL 0 //returnvalue of strcmp-variants when strings are equal
41 #define FALSE 0
42 #define TRUE 1
43
44 #include "config.h"
45 #include <sys/utsname.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <locale.h>
49 #include <langinfo.h>
50 #include <wchar.h>
51 #include <sys/param.h>
52
53 #if !defined(__GNUC__)
54 #  define __attribute__(x) /* nothing */
55 #endif
56
57 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
58 #include "freebsd.h"
59 #endif /* __FreeBSD__ || __FreeBSD_kernel__ */
60
61 #if defined(__OpenBSD__)
62 #include "openbsd.h"
63 #endif /* __OpenBSD__ */
64
65 #ifndef HAVE_STRNDUP
66 // use our own strndup() if it's not available
67 char *strndup(const char *s, size_t n);
68 #endif /* HAVE_STRNDUP */
69
70 #ifdef AUDACIOUS
71 #include "audacious.h"
72 #endif
73
74 #ifdef XMMS2
75 #include <xmmsclient/xmmsclient.h>
76 #endif
77
78 #ifdef RSS
79 #include "rss.h"
80 #endif
81
82 #ifdef EVE
83 #include "eve.h"
84 #endif
85
86 #ifdef SMAPI
87 #include "smapi.h"
88 #endif
89
90 #ifdef NVIDIA
91 #include "nvidia.h"
92 #endif
93
94 #include "mboxscan.h"
95 #include "timed_thread.h"
96 #include "top.h"
97
98 #define DEFAULT_TEXT_BUFFER_SIZE 256
99 extern unsigned int text_buffer_size;
100
101 /* maximum number of special things, e.g. fonts, offsets, aligns, etc. */
102 #define MAX_SPECIALS_DEFAULT 512
103
104 /* maximum size of config TEXT buffer, i.e. below TEXT line. */
105 #define MAX_USER_TEXT_DEFAULT 16384
106
107 #include <sys/socket.h>
108
109 #define ERR(...) { \
110         fprintf(stderr, PACKAGE_NAME": "); \
111         fprintf(stderr, __VA_ARGS__); \
112         fprintf(stderr, "\n"); \
113 }
114
115 /* critical error */
116 #define CRIT_ERR(...) \
117         { ERR(__VA_ARGS__); exit(EXIT_FAILURE); }
118
119 struct net_stat {
120         const char *dev;
121         int up;
122         long long last_read_recv, last_read_trans;
123         long long recv, trans;
124         double recv_speed, trans_speed;
125         struct sockaddr addr;
126         char* addrs;
127         double net_rec[15], net_trans[15];
128         // wireless extensions
129         char essid[32];
130         char bitrate[16];
131         char mode[16];
132         int link_qual;
133         int link_qual_max;
134         char ap[18];
135 };
136
137 struct dns_data {
138         int nscount;
139         char **ns_list;
140 };
141
142 struct fs_stat {
143         char path[DEFAULT_TEXT_BUFFER_SIZE];
144         char type[DEFAULT_TEXT_BUFFER_SIZE];
145         long long size;
146         long long avail;
147         long long free;
148         char set;
149 };
150
151 #include "diskio.h"
152
153 struct mail_s {                 // for imap and pop3
154         unsigned long unseen;
155         unsigned long messages;
156         unsigned long used;
157         unsigned long quota;
158         unsigned long port;
159         unsigned long retries;
160         float interval;
161         double last_update;
162         char host[128];
163         char user[128];
164         char pass[128];
165         char command[1024];
166         char folder[128];
167         timed_thread *p_timed_thread;
168         char secure;
169 };
170
171 /* struct cpu_stat {
172         unsigned int user, nice, system, idle, iowait, irq, softirq;
173         int cpu_avg_samples;
174 }; */
175
176 #ifdef MPD
177 #include "mpd.h"
178 #endif
179
180 #ifdef XMMS2
181 #include "xmms2.h"
182 #endif
183
184 #ifdef AUDACIOUS
185 #include "audacious.h"
186 #endif
187
188 #ifdef BMPX
189 #include "bmpx.h"
190 #endif
191
192 void update_entropy(void);
193 struct entropy_s {
194         unsigned int entropy_avail;
195         unsigned int poolsize;
196 };
197
198 struct usr_info {
199         char *names;
200         char *times;
201         char *terms;
202         int number;
203 };
204
205 struct gateway_info {
206         char *iface;
207         char *ip;
208         int count;
209 };
210
211 #ifdef X11
212 struct monitor_info {
213         int number;
214         int current;
215 };
216
217 struct x11_info {
218         struct monitor_info monitor;
219 };
220 #endif
221
222 #ifdef TCP_PORT_MONITOR
223 #include "libtcp-portmon.h"
224 #endif
225
226 enum {
227         INFO_CPU = 0,
228         INFO_MAIL = 1,
229         INFO_MEM = 2,
230         INFO_NET = 3,
231         INFO_PROCS = 4,
232         INFO_RUN_PROCS = 5,
233         INFO_UPTIME = 6,
234         INFO_BUFFERS = 7,
235         INFO_FS = 8,
236         INFO_SYSFS = 9,
237         INFO_MIXER = 10,
238         INFO_LOADAVG = 11,
239         INFO_UNAME = 12,
240         INFO_FREQ = 13,
241 #ifdef MPD
242         INFO_MPD = 14,
243 #endif
244         INFO_TOP = 15,
245         INFO_WIFI = 16,
246         INFO_DISKIO = 17,
247         INFO_I8K = 18,
248 #ifdef TCP_PORT_MONITOR
249         INFO_TCP_PORT_MONITOR = 19,
250 #endif
251 #ifdef AUDACIOUS
252         INFO_AUDACIOUS = 20,
253 #endif
254 #ifdef BMPX
255         INFO_BMPX = 21,
256 #endif
257 #ifdef XMMS2
258         INFO_XMMS2 = 22,
259 #endif
260         INFO_ENTROPY = 23,
261 #ifdef RSS
262         INFO_RSS = 24,
263 #endif
264 #ifdef SMAPI
265         INFO_SMAPI = 25,
266 #endif
267         INFO_USERS = 26,
268         INFO_GW = 27,
269 #ifdef NVIDIA
270         INFO_NVIDIA = 28,
271 #endif
272 #ifdef X11
273         INFO_X11 = 29,
274 #endif
275         INFO_DNS = 30
276
277 };
278
279 /* get_battery_stuff() item selector */
280 enum {
281         BATTERY_STATUS,
282         BATTERY_TIME
283 };
284
285 /* if_up strictness selector */
286 enum {
287         IFUP_UP,
288         IFUP_LINK,
289         IFUP_ADDR
290 } ifup_strictness;
291
292 /* Update interval */
293 double update_interval;
294
295 volatile int g_signal_pending;
296
297 struct information {
298         unsigned int mask;
299
300         struct utsname uname_s;
301
302         char freq[10];
303
304         double uptime;
305
306         /* memory information in kilobytes */
307         unsigned long long mem, memeasyfree, memfree, memmax, swap, swapmax;
308         unsigned long long bufmem, buffers, cached;
309
310         unsigned short procs;
311         unsigned short run_procs;
312
313         float *cpu_usage;
314         /* struct cpu_stat cpu_summed; what the hell is this? */
315         unsigned int cpu_count;
316         unsigned int cpu_avg_samples;
317
318         unsigned int net_avg_samples;
319
320         float loadavg[3];
321
322         struct mail_s *mail;
323         int mail_running;
324 #ifdef MPD
325         struct mpd_s mpd;
326 #endif
327 #ifdef XMMS2
328         struct xmms2_s xmms2;
329         int xmms2_conn_state;
330         xmms_socket_t xmms2_fd;
331         fd_set xmms2_fdset;
332         xmmsc_connection_t *xmms2_conn;
333 #endif
334 #ifdef AUDACIOUS
335         AUDACIOUS_S audacious;
336 #endif
337 #ifdef BMPX
338         struct bmpx_s bmpx;
339 #endif
340         struct usr_info users;
341         struct gateway_info gw_info;
342         struct dns_data nameserver_info;
343         struct process *cpu[10];
344         struct process *memu[10];
345         struct process *first_process;
346         unsigned long looped;
347 #ifdef TCP_PORT_MONITOR
348         tcp_port_monitor_collection_t *p_tcp_port_monitor_collection;
349 #endif
350         struct entropy_s entropy;
351         double music_player_interval;
352
353 #ifdef X11
354         struct x11_info x11;
355 #endif
356
357         short kflags;   /* kernel settings, see enum KFLAG */
358
359         unsigned int diskio_value;
360         unsigned int diskio_read_value;
361         unsigned int diskio_write_value;
362 };
363
364 enum {
365         /* set to true if kernel uses "long" format for /proc/stats */
366         KFLAG_IS_LONGSTAT = 0x01,
367         /* set to true if kernel shows # of threads for the proc value
368          * in sysinfo() call */
369         KFLAG_PROC_IS_THREADS = 0x02
370         /* bits 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 available for future use */
371         /* KFLAG_NEXT_ONE = 0x04 */
372 };
373
374 #define KFLAG_SETON(a) info.kflags |= a
375 #define KFLAG_SETOFF(a) info.kflags &= (~a)
376 #define KFLAG_FLIP(a) info.kflags ^= a
377 #define KFLAG_ISSET(a) info.kflags & a
378
379 #define TO_X 1
380 #define TO_STDOUT 2
381 int output_methods;
382
383 int top_cpu;
384 int top_mem;
385
386 int use_spacer;
387
388 enum spacer_opts { NO_SPACER = 0, LEFT_SPACER, RIGHT_SPACER };
389
390 char *tmpstring1;
391 char *tmpstring2;
392
393 #ifdef X11
394 #include "x11.h"
395 #endif /* X11 */
396
397 int cpu_separate;
398 int short_units;
399
400 /* struct that has all info */
401 struct information info;
402
403 void signal_handler(int);
404 void reload_config(void);
405 void clean_up(void);
406
407 void update_uname(void);
408 double get_time(void);
409 FILE *open_file(const char *file, int *reported);
410 void variable_substitute(const char *s, char *dest, unsigned int n);
411 void format_seconds(char *buf, unsigned int n, long t);
412 void format_seconds_short(char *buf, unsigned int n, long t);
413 struct net_stat *get_net_stat(const char *dev);
414 void clear_net_stats(void);
415 void free_dns_data(void);
416 void update_dns_data(void);
417 void update_users(void);
418
419 #ifdef X11
420 void update_x11info(void);
421 #endif
422
423 void update_stuff(void);
424
425 int round_to_int(float f);
426
427 extern unsigned long long need_mask;
428
429 extern double current_update_time, last_update_time;
430
431 extern int no_buffers;
432
433 #if defined(__linux__)
434 #include "linux.h"
435 #endif
436
437 #include "fs.h"
438 #include "mixer.h"
439 #include "mail.h"
440
441 #if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
442                 || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
443 int apm_getinfo(int fd, apm_info_t aip);
444 char *get_apm_adapter(void);
445 char *get_apm_battery_life(void);
446 char *get_apm_battery_time(void);
447 #endif
448
449 #ifdef HDDTEMP
450 #include "hddtemp.h"
451 #endif /* HDDTEMP */
452
453 #endif