2009-07-21 17:07:30 +00:00
|
|
|
|
#ifndef _I3STATUS_H
|
|
|
|
|
#define _I3STATUS_H
|
|
|
|
|
|
2015-03-16 09:00:32 +00:00
|
|
|
|
enum { O_DZEN2,
|
|
|
|
|
O_XMOBAR,
|
|
|
|
|
O_I3BAR,
|
|
|
|
|
O_TERM,
|
|
|
|
|
O_NONE } output_format;
|
2009-10-23 22:38:26 +00:00
|
|
|
|
|
2009-07-21 17:07:30 +00:00
|
|
|
|
#include <stdbool.h>
|
2009-10-11 20:11:09 +00:00
|
|
|
|
#include <confuse.h>
|
2011-04-21 18:49:22 +00:00
|
|
|
|
#include <time.h>
|
2012-03-25 18:55:55 +00:00
|
|
|
|
#include <yajl/yajl_gen.h>
|
2012-04-08 12:05:47 +00:00
|
|
|
|
#include <yajl/yajl_version.h>
|
2012-03-25 18:55:55 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
2015-03-11 16:29:32 +00:00
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <stdint.h>
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
2008-10-04 16:42:12 +00:00
|
|
|
|
#define BEGINS_WITH(haystack, needle) (strncmp(haystack, needle, strlen(needle)) == 0)
|
2009-10-11 20:11:09 +00:00
|
|
|
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
2009-07-21 18:23:08 +00:00
|
|
|
|
|
2015-03-11 16:29:32 +00:00
|
|
|
|
#define DEFAULT_SINK_INDEX UINT32_MAX
|
2015-04-19 14:32:51 +00:00
|
|
|
|
#define COMPOSE_VOLUME_MUTE(vol, mute) ((vol) | ((mute) ? (1 << 30) : 0))
|
|
|
|
|
#define DECOMPOSE_VOLUME(cvol) ((cvol) & ~(1 << 30))
|
|
|
|
|
#define DECOMPOSE_MUTED(cvol) (((cvol) & (1 << 30)) != 0)
|
2015-03-11 16:29:32 +00:00
|
|
|
|
|
2009-07-23 16:40:49 +00:00
|
|
|
|
#if defined(LINUX)
|
|
|
|
|
|
|
|
|
|
#define THERMAL_ZONE "/sys/class/thermal/thermal_zone%d/temp"
|
|
|
|
|
|
2012-11-14 01:29:55 +00:00
|
|
|
|
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
|
2009-07-23 16:40:49 +00:00
|
|
|
|
|
2011-12-09 23:30:22 +00:00
|
|
|
|
/* this needs the coretemp module to be loaded */
|
2012-11-14 01:29:55 +00:00
|
|
|
|
#if defined(__DragonFly__)
|
|
|
|
|
#define THERMAL_ZONE "hw.sensors.cpu%d.temp0"
|
|
|
|
|
#else
|
2011-12-09 23:30:22 +00:00
|
|
|
|
#define THERMAL_ZONE "dev.cpu.%d.temperature"
|
2012-11-14 01:29:55 +00:00
|
|
|
|
#endif
|
2009-07-23 16:40:49 +00:00
|
|
|
|
#define BATT_LIFE "hw.acpi.battery.life"
|
|
|
|
|
#define BATT_TIME "hw.acpi.battery.time"
|
|
|
|
|
#define BATT_STATE "hw.acpi.battery.state"
|
|
|
|
|
|
2014-04-29 22:30:11 +00:00
|
|
|
|
#elif defined(__OpenBSD__) || defined(__NetBSD__)
|
2012-10-10 07:57:32 +00:00
|
|
|
|
/* Default to acpitz(4) if no path is set. */
|
2012-10-10 07:53:34 +00:00
|
|
|
|
#define THERMAL_ZONE "acpitz%d"
|
2009-07-23 16:40:49 +00:00
|
|
|
|
#endif
|
2009-07-21 18:23:08 +00:00
|
|
|
|
|
2009-08-31 17:34:57 +00:00
|
|
|
|
#if defined(__FreeBSD_kernel__) && defined(__GLIBC__)
|
|
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-10-11 20:11:09 +00:00
|
|
|
|
/* Allows for the definition of a variable without opening a new scope, thus
|
|
|
|
|
* suited for usage in a macro. Idea from wmii. */
|
|
|
|
|
#define with(type, var, init) \
|
2015-09-20 17:56:44 +00:00
|
|
|
|
for (type var = (type)-1; (var == (type)-1) && ((var = (init)) || 1); var = (type)1)
|
2009-10-11 20:11:09 +00:00
|
|
|
|
|
2015-03-16 09:00:32 +00:00
|
|
|
|
#define CASE_SEC(name) \
|
|
|
|
|
if (BEGINS_WITH(current, name)) \
|
|
|
|
|
with(cfg_t *, sec, cfg_section = cfg_getsec(cfg, name)) if (sec != NULL)
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
2015-03-16 09:00:32 +00:00
|
|
|
|
#define CASE_SEC_TITLE(name) \
|
|
|
|
|
if (BEGINS_WITH(current, name)) \
|
|
|
|
|
with(const char *, title, current + strlen(name) + 1) \
|
|
|
|
|
with(cfg_t *, sec, cfg_section = cfg_gettsec(cfg, name, title)) if (sec != NULL)
|
2009-10-11 20:11:09 +00:00
|
|
|
|
|
2012-03-25 18:55:55 +00:00
|
|
|
|
/* Macro which any plugin can use to output the full_text part (when the output
|
|
|
|
|
* format is JSON) or just output to stdout (any other output format). */
|
2015-03-16 09:00:32 +00:00
|
|
|
|
#define OUTPUT_FULL_TEXT(text) \
|
|
|
|
|
do { \
|
|
|
|
|
/* Terminate the output buffer here in any case, so that it’s \
|
|
|
|
|
* not forgotten in the module */ \
|
|
|
|
|
*outwalk = '\0'; \
|
|
|
|
|
if (output_format == O_I3BAR) { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "full_text", strlen("full_text")); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *)text, strlen(text)); \
|
|
|
|
|
} else { \
|
|
|
|
|
printf("%s", text); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define SEC_OPEN_MAP(name) \
|
|
|
|
|
do { \
|
|
|
|
|
if (output_format == O_I3BAR) { \
|
|
|
|
|
yajl_gen_map_open(json_gen); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "name", strlen("name")); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *)name, strlen(name)); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define SEC_CLOSE_MAP \
|
|
|
|
|
do { \
|
|
|
|
|
if (output_format == O_I3BAR) { \
|
|
|
|
|
char *_align = cfg_getstr(sec, "align"); \
|
|
|
|
|
if (_align) { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "align", strlen("align")); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *)_align, strlen(_align)); \
|
|
|
|
|
} \
|
|
|
|
|
struct min_width *_width = cfg_getptr(sec, "min_width"); \
|
|
|
|
|
if (_width) { \
|
|
|
|
|
/* if the value can be parsed as a number, we use the numerical value */ \
|
|
|
|
|
if (_width->num > 0) { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "min_width", strlen("min_width")); \
|
|
|
|
|
yajl_gen_integer(json_gen, _width->num); \
|
|
|
|
|
} else { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "min_width", strlen("min_width")); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *)_width->str, strlen(_width->str)); \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
const char *_sep = cfg_getstr(cfg_general, "separator"); \
|
|
|
|
|
if (strlen(_sep) == 0) { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "separator", strlen("separator")); \
|
|
|
|
|
yajl_gen_bool(json_gen, false); \
|
|
|
|
|
} \
|
|
|
|
|
yajl_gen_map_close(json_gen); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define START_COLOR(colorstr) \
|
|
|
|
|
do { \
|
|
|
|
|
if (cfg_getbool(cfg_general, "colors")) { \
|
|
|
|
|
const char *_val = NULL; \
|
|
|
|
|
if (cfg_section) \
|
|
|
|
|
_val = cfg_getstr(cfg_section, colorstr); \
|
|
|
|
|
if (!_val) \
|
|
|
|
|
_val = cfg_getstr(cfg_general, colorstr); \
|
|
|
|
|
if (output_format == O_I3BAR) { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "color", strlen("color")); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *)_val, strlen(_val)); \
|
|
|
|
|
} else { \
|
|
|
|
|
outwalk += sprintf(outwalk, "%s", color(colorstr)); \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define END_COLOR \
|
|
|
|
|
do { \
|
|
|
|
|
if (cfg_getbool(cfg_general, "colors") && output_format != O_I3BAR) { \
|
|
|
|
|
outwalk += sprintf(outwalk, "%s", endcolor()); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define INSTANCE(instance) \
|
|
|
|
|
do { \
|
|
|
|
|
if (output_format == O_I3BAR) { \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *) "instance", strlen("instance")); \
|
|
|
|
|
yajl_gen_string(json_gen, (const unsigned char *)instance, strlen(instance)); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
typedef enum { CS_DISCHARGING,
|
|
|
|
|
CS_CHARGING,
|
|
|
|
|
CS_FULL } charging_status_t;
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
2014-03-05 19:53:07 +00:00
|
|
|
|
/*
|
|
|
|
|
* The "min_width" module option may either be defined as a string or a number.
|
|
|
|
|
*/
|
|
|
|
|
struct min_width {
|
|
|
|
|
long num;
|
|
|
|
|
const char *str;
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-21 17:07:30 +00:00
|
|
|
|
/* src/general.c */
|
|
|
|
|
char *skip_character(char *input, char character, int amount);
|
|
|
|
|
void die(const char *fmt, ...);
|
2010-11-28 15:45:34 +00:00
|
|
|
|
bool slurp(const char *filename, char *destination, int size);
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
|
|
|
|
/* src/output.c */
|
2014-03-01 10:05:03 +00:00
|
|
|
|
void print_separator(const char *separator);
|
2009-07-21 17:07:30 +00:00
|
|
|
|
char *color(const char *colorstr);
|
2015-03-16 09:00:32 +00:00
|
|
|
|
char *endcolor() __attribute__((pure));
|
2013-05-16 20:49:13 +00:00
|
|
|
|
void reset_cursor(void);
|
2011-07-13 01:27:57 +00:00
|
|
|
|
|
|
|
|
|
/* src/auto_detect_format.c */
|
|
|
|
|
char *auto_detect_format();
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
2013-01-13 13:18:38 +00:00
|
|
|
|
/* src/print_time.c */
|
2013-02-10 16:19:56 +00:00
|
|
|
|
void set_timezone(const char *tz);
|
2013-01-13 13:18:38 +00:00
|
|
|
|
|
2014-12-07 14:14:02 +00:00
|
|
|
|
/* src/first_network_device.c */
|
|
|
|
|
typedef enum {
|
2015-03-16 09:00:32 +00:00
|
|
|
|
NET_TYPE_WIRELESS = 0,
|
|
|
|
|
NET_TYPE_ETHERNET = 1
|
2014-12-07 14:14:02 +00:00
|
|
|
|
} net_type_t;
|
|
|
|
|
const char *first_eth_interface(const net_type_t type);
|
|
|
|
|
|
2012-03-25 18:55:55 +00:00
|
|
|
|
void print_ipv6_info(yajl_gen json_gen, char *buffer, const char *format_up, const char *format_down);
|
2015-02-18 22:43:25 +00:00
|
|
|
|
void print_disk_info(yajl_gen json_gen, char *buffer, const char *path, const char *format, const char *format_not_mounted, const char *prefix_type, const char *threshold_type, const double low_threshold);
|
2014-10-07 13:47:58 +00:00
|
|
|
|
void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char *path, const char *format, const char *format_down, const char *status_chr, const char *status_bat, const char *status_full, int low_threshold, char *threshold_type, bool last_full_capacity, bool integer_battery_capacity, bool hide_seconds);
|
2015-03-23 20:42:52 +00:00
|
|
|
|
void print_time(yajl_gen json_gen, char *buffer, const char *title, const char *format, const char *tz, time_t t);
|
2013-01-13 13:18:38 +00:00
|
|
|
|
void print_ddate(yajl_gen json_gen, char *buffer, const char *format, time_t t);
|
2015-04-02 07:06:07 +00:00
|
|
|
|
const char *get_ip_addr(const char *interface);
|
2012-03-25 18:55:55 +00:00
|
|
|
|
void print_wireless_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
|
2015-04-02 20:31:06 +00:00
|
|
|
|
void print_run_watch(yajl_gen json_gen, char *buffer, const char *title, const char *pidfile, const char *format, const char *format_down);
|
|
|
|
|
void print_path_exists(yajl_gen json_gen, char *buffer, const char *title, const char *path, const char *format, const char *format_down);
|
2012-10-10 07:57:32 +00:00
|
|
|
|
void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const char *path, const char *format, int);
|
2012-03-25 18:55:55 +00:00
|
|
|
|
void print_cpu_usage(yajl_gen json_gen, char *buffer, const char *format);
|
|
|
|
|
void print_eth_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
|
2013-07-07 15:54:50 +00:00
|
|
|
|
void print_load(yajl_gen json_gen, char *buffer, const char *format, const float max_threshold);
|
2013-11-14 23:41:33 +00:00
|
|
|
|
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);
|
2009-07-21 17:07:30 +00:00
|
|
|
|
bool process_runs(const char *path);
|
2015-03-11 16:29:32 +00:00
|
|
|
|
int volume_pulseaudio(uint32_t sink_idx);
|
|
|
|
|
bool pulse_initialize(void);
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
|
|
|
|
/* socket file descriptor for general purposes */
|
|
|
|
|
extern int general_socket;
|
|
|
|
|
|
2012-10-18 20:55:41 +00:00
|
|
|
|
extern cfg_t *cfg, *cfg_general, *cfg_section;
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
2014-12-07 20:32:19 +00:00
|
|
|
|
extern void **cur_instance;
|
|
|
|
|
|
2015-03-11 16:29:32 +00:00
|
|
|
|
extern pthread_cond_t i3status_sleep_cond;
|
|
|
|
|
extern pthread_mutex_t i3status_sleep_mutex;
|
|
|
|
|
|
2009-07-21 17:07:30 +00:00
|
|
|
|
#endif
|