]> git.sur5r.net Git - i3/i3status/blob - include/i3status.h
DragonFlyBSD support added
[i3/i3status] / include / i3status.h
1 #ifndef _I3STATUS_H
2 #define _I3STATUS_H
3
4 enum { O_DZEN2, O_XMOBAR, O_I3BAR, 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 #endif
37
38 #if defined(__FreeBSD_kernel__) && defined(__GLIBC__)
39
40 #include <sys/stat.h>
41 #include <sys/param.h>
42
43 #endif
44
45 /* Allows for the definition of a variable without opening a new scope, thus
46  * suited for usage in a macro. Idea from wmii. */
47 #define with(type, var, init) \
48         for (type var = (type)-1; (var == (type)-1) && ((var=(init)) || 1); )
49
50 #define CASE_SEC(name) \
51         if (BEGINS_WITH(current, name)) \
52                 with(cfg_t *, sec, cfg_section = cfg_getsec(cfg, name)) \
53                         if (sec != NULL)
54
55 #define CASE_SEC_TITLE(name) \
56         if (BEGINS_WITH(current, name)) \
57                 with(const char *, title, current + strlen(name) + 1) \
58                         with(cfg_t *, sec, cfg_section = cfg_gettsec(cfg, name, title)) \
59                                 if (sec != NULL)
60
61 /* Macro which any plugin can use to output the full_text part (when the output
62  * format is JSON) or just output to stdout (any other output format). */
63 #define OUTPUT_FULL_TEXT(text) \
64         do { \
65                 /* Terminate the output buffer here in any case, so that it’s \
66                  * not forgotten in the module */ \
67                 *outwalk = '\0'; \
68                 if (output_format == O_I3BAR) { \
69                         yajl_gen_string(json_gen, (const unsigned char *)"full_text", strlen("full_text")); \
70                         yajl_gen_string(json_gen, (const unsigned char *)text, strlen(text)); \
71                 } else { \
72                         printf("%s", text); \
73                 } \
74         } while (0)
75
76 #define SEC_OPEN_MAP(name) \
77         do { \
78                 if (output_format == O_I3BAR) { \
79                         yajl_gen_map_open(json_gen); \
80                         yajl_gen_string(json_gen, (const unsigned char *)"name", strlen("name")); \
81                         yajl_gen_string(json_gen, (const unsigned char *)name, strlen(name)); \
82                 } \
83         } while (0)
84
85 #define SEC_CLOSE_MAP \
86         do { \
87                 if (output_format == O_I3BAR) { \
88                         yajl_gen_map_close(json_gen); \
89                 } \
90         } while (0)
91
92 #define START_COLOR(colorstr) \
93         do { \
94                 if (cfg_getbool(cfg_general, "colors")) { \
95                         const char *_val = NULL; \
96                         if (cfg_section) \
97                                 _val = cfg_getstr(cfg_section, colorstr); \
98                         if (!_val) \
99                                 _val = cfg_getstr(cfg_general, colorstr); \
100                         if (output_format == O_I3BAR) { \
101                                 yajl_gen_string(json_gen, (const unsigned char *)"color", strlen("color")); \
102                                 yajl_gen_string(json_gen, (const unsigned char *)_val, strlen(_val)); \
103                         } else { \
104                                 outwalk += sprintf(outwalk, "%s", color(colorstr)); \
105                         } \
106                 } \
107         } while (0)
108
109 #define END_COLOR \
110         do { \
111                 if (cfg_getbool(cfg_general, "colors") && output_format != O_I3BAR) { \
112                         outwalk += sprintf(outwalk, "%s", endcolor()); \
113                 } \
114         } while (0)
115
116 #define INSTANCE(instance) \
117         do { \
118                 if (output_format == O_I3BAR) { \
119                         yajl_gen_string(json_gen, (const unsigned char *)"instance", strlen("instance")); \
120                         yajl_gen_string(json_gen, (const unsigned char *)instance, strlen(instance)); \
121                 } \
122         } while (0)
123
124
125 typedef enum { CS_DISCHARGING, CS_CHARGING, CS_FULL } charging_status_t;
126
127 /* src/general.c */
128 char *skip_character(char *input, char character, int amount);
129 void die(const char *fmt, ...);
130 bool slurp(const char *filename, char *destination, int size);
131
132 /* src/output.c */
133 void print_seperator();
134 char *color(const char *colorstr);
135 char *endcolor() __attribute__ ((pure));
136
137 /* src/auto_detect_format.c */
138 char *auto_detect_format();
139
140 void print_ipv6_info(yajl_gen json_gen, char *buffer, const char *format_up, const char *format_down);
141 void print_disk_info(yajl_gen json_gen, char *buffer, const char *path, const char *format);
142 void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char *path, const char *format, int low_threshold, char *threshold_type, bool last_full_capacity);
143 void print_time(yajl_gen json_gen, char *buffer, const char *format, struct tm *current_tm);
144 void print_ddate(yajl_gen json_gen, char *buffer, const char *format, struct tm *current_tm);
145 const char *get_ip_addr();
146 void print_wireless_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
147 void print_run_watch(yajl_gen json_gen, char *buffer, const char *title, const char *pidfile, const char *format);
148 void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const char *path, const char *format, int);
149 void print_cpu_usage(yajl_gen json_gen, char *buffer, const char *format);
150 void print_eth_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
151 void print_load(yajl_gen json_gen, char *buffer, const char *format);
152 void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char *device, const char *mixer, int mixer_idx);
153 bool process_runs(const char *path);
154
155 /* socket file descriptor for general purposes */
156 extern int general_socket;
157
158 extern cfg_t *cfg, *cfg_general, *cfg_section;
159
160 #endif