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