]> git.sur5r.net Git - i3/i3status/blob - include/i3status.h
Typo in function name
[i3/i3status] / include / i3status.h
1 #ifndef _I3STATUS_H
2 #define _I3STATUS_H
3
4 enum { O_DZEN2, O_XMOBAR, O_I3BAR, O_TERM, O_NONE } output_format;
5
6 #include <stdbool.h>
7 #include <confuse.h>
8 #include <time.h>
9 #include <yajl/yajl_gen.h>
10 #include <yajl/yajl_version.h>
11 #include <unistd.h>
12 #include <string.h>
13
14 #define BEGINS_WITH(haystack, needle) (strncmp(haystack, needle, strlen(needle)) == 0)
15 #define max(a, b) ((a) > (b) ? (a) : (b))
16
17 #if defined(LINUX)
18
19 #define THERMAL_ZONE "/sys/class/thermal/thermal_zone%d/temp"
20
21 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
22
23 /* this needs the coretemp module to be loaded */
24 #if defined(__DragonFly__)
25 #define THERMAL_ZONE "hw.sensors.cpu%d.temp0"
26 #else
27 #define THERMAL_ZONE "dev.cpu.%d.temperature"
28 #endif
29 #define BATT_LIFE "hw.acpi.battery.life"
30 #define BATT_TIME "hw.acpi.battery.time"
31 #define BATT_STATE "hw.acpi.battery.state"
32
33 #elif defined(__OpenBSD__)
34 /* Default to acpitz(4) if no path is set. */
35 #define THERMAL_ZONE "acpitz%d"
36 #elif defined(__NetBSD__)
37 /* Rely on envsys(4). The key of the sensor is generally cpu%d temperature */
38 #define THERMAL_ZONE "cpu%d temperature"
39 #endif
40
41 #if defined(__FreeBSD_kernel__) && defined(__GLIBC__)
42
43 #include <sys/stat.h>
44 #include <sys/param.h>
45
46 #endif
47
48 /* Allows for the definition of a variable without opening a new scope, thus
49  * suited for usage in a macro. Idea from wmii. */
50 #define with(type, var, init) \
51         for (type var = (type)-1; (var == (type)-1) && ((var=(init)) || 1); )
52
53 #define CASE_SEC(name) \
54         if (BEGINS_WITH(current, name)) \
55                 with(cfg_t *, sec, cfg_section = cfg_getsec(cfg, name)) \
56                         if (sec != NULL)
57
58 #define CASE_SEC_TITLE(name) \
59         if (BEGINS_WITH(current, name)) \
60                 with(const char *, title, current + strlen(name) + 1) \
61                         with(cfg_t *, sec, cfg_section = cfg_gettsec(cfg, name, title)) \
62                                 if (sec != NULL)
63
64 /* Macro which any plugin can use to output the full_text part (when the output
65  * format is JSON) or just output to stdout (any other output format). */
66 #define OUTPUT_FULL_TEXT(text) \
67         do { \
68                 /* Terminate the output buffer here in any case, so that it’s \
69                  * not forgotten in the module */ \
70                 *outwalk = '\0'; \
71                 if (output_format == O_I3BAR) { \
72                         yajl_gen_string(json_gen, (const unsigned char *)"full_text", strlen("full_text")); \
73                         yajl_gen_string(json_gen, (const unsigned char *)text, strlen(text)); \
74                 } else { \
75                         printf("%s", text); \
76                 } \
77         } while (0)
78
79 #define SEC_OPEN_MAP(name) \
80         do { \
81                 if (output_format == O_I3BAR) { \
82                         yajl_gen_map_open(json_gen); \
83                         yajl_gen_string(json_gen, (const unsigned char *)"name", strlen("name")); \
84                         yajl_gen_string(json_gen, (const unsigned char *)name, strlen(name)); \
85                 } \
86         } while (0)
87
88 #define SEC_CLOSE_MAP \
89         do { \
90                 if (output_format == O_I3BAR) { \
91                         const char *_sep = cfg_getstr(cfg_general, "separator"); \
92                         if (strlen(_sep) == 0) {\
93                                 yajl_gen_string(json_gen, (const unsigned char *)"separator", strlen("separator")); \
94                                 yajl_gen_bool(json_gen, false); \
95                         } \
96                         yajl_gen_map_close(json_gen); \
97                 } \
98         } while (0)
99
100 #define START_COLOR(colorstr) \
101         do { \
102                 if (cfg_getbool(cfg_general, "colors")) { \
103                         const char *_val = NULL; \
104                         if (cfg_section) \
105                                 _val = cfg_getstr(cfg_section, colorstr); \
106                         if (!_val) \
107                                 _val = cfg_getstr(cfg_general, colorstr); \
108                         if (output_format == O_I3BAR) { \
109                                 yajl_gen_string(json_gen, (const unsigned char *)"color", strlen("color")); \
110                                 yajl_gen_string(json_gen, (const unsigned char *)_val, strlen(_val)); \
111                         } else { \
112                                 outwalk += sprintf(outwalk, "%s", color(colorstr)); \
113                         } \
114                 } \
115         } while (0)
116
117 #define END_COLOR \
118         do { \
119                 if (cfg_getbool(cfg_general, "colors") && output_format != O_I3BAR) { \
120                         outwalk += sprintf(outwalk, "%s", endcolor()); \
121                 } \
122         } while (0)
123
124 #define INSTANCE(instance) \
125         do { \
126                 if (output_format == O_I3BAR) { \
127                         yajl_gen_string(json_gen, (const unsigned char *)"instance", strlen("instance")); \
128                         yajl_gen_string(json_gen, (const unsigned char *)instance, strlen(instance)); \
129                 } \
130         } while (0)
131
132
133 typedef enum { CS_DISCHARGING, CS_CHARGING, CS_FULL } charging_status_t;
134
135 /* src/general.c */
136 char *skip_character(char *input, char character, int amount);
137 void die(const char *fmt, ...);
138 bool slurp(const char *filename, char *destination, int size);
139
140 /* src/output.c */
141 void print_separator(const char *separator);
142 char *color(const char *colorstr);
143 char *endcolor() __attribute__ ((pure));
144 void reset_cursor(void);
145
146 /* src/auto_detect_format.c */
147 char *auto_detect_format();
148
149 /* src/print_time.c */
150 void set_timezone(const char *tz);
151
152 void print_ipv6_info(yajl_gen json_gen, char *buffer, const char *format_up, const char *format_down);
153 void print_disk_info(yajl_gen json_gen, char *buffer, const char *path, const char *format, const char *prefix_type);
154 void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char *path, const char *format, const char *format_down, int low_threshold, char *threshold_type, bool last_full_capacity, bool integer_battery_capacity, bool hide_seconds);
155 void print_time(yajl_gen json_gen, char *buffer, const char *format, const char *tz, time_t t);
156 void print_ddate(yajl_gen json_gen, char *buffer, const char *format, time_t t);
157 const char *get_ip_addr();
158 void print_wireless_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
159 void print_run_watch(yajl_gen json_gen, char *buffer, const char *title, const char *pidfile, const char *format);
160 void print_path_exists(yajl_gen json_gen, char *buffer, const char *title, const char *path, const char *format);
161 void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const char *path, const char *format, int);
162 void print_cpu_usage(yajl_gen json_gen, char *buffer, const char *format);
163 void print_eth_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
164 void print_load(yajl_gen json_gen, char *buffer, const char *format, const float max_threshold);
165 void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char *fmt_muted, const char *device, const char *mixer, int mixer_idx);
166 bool process_runs(const char *path);
167
168 /* socket file descriptor for general purposes */
169 extern int general_socket;
170
171 extern cfg_t *cfg, *cfg_general, *cfg_section;
172
173 #endif