Let $tail and $head work with FIFOs again (was disabled by commit 41a7cffbe7c4a4a4f04...
[monky] / src / common.h
1 #ifndef _COMMON_H
2 #define _COMMON_H
3
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <sys/socket.h>
8
9 void strfold(char *start, int count);
10 int check_mount(char *s);
11 void prepare_update(void);
12 void update_uptime(void);
13 void update_meminfo(void);
14 void update_net_stats(void);
15 void update_cpu_usage(void);
16 void update_total_processes(void);
17 void update_uname(void);
18 void update_running_processes(void);
19 void update_i8k(void);
20 void update_stuff(void);
21 char get_freq(char *, size_t, const char *, int, unsigned int);
22 void get_freq_dynamic(char *, size_t, const char *, int);
23 char get_voltage(char *, size_t, const char *, int, unsigned int);      /* ptarjan */
24 void update_load_average(void);
25 void update_top(void);
26 void free_all_processes(void);
27 struct process *get_first_process(void);
28 void get_cpu_count(void);
29 double get_time(void);
30
31 /* Converts '~/...' paths to '/home/blah/...' assumes that 'dest' is at least
32  * DEFAULT_TEXT_BUFFER_SIZE.  It's similar to variable_substitute, except only
33  * cheques for $HOME and ~/ in path */
34 void to_real_path(char *dest, const char *source);
35 FILE *open_file(const char *file, int *reported);
36 int open_fifo(const char *file, int *reported);
37 void variable_substitute(const char *s, char *dest, unsigned int n);
38
39 void format_seconds(char *buf, unsigned int n, long t);
40 void format_seconds_short(char *buf, unsigned int n, long t);
41
42 #ifdef X11
43 void update_x11info(void);
44 #endif
45
46 int round_to_int_temp(float);
47
48 unsigned int round_to_int(float);
49
50 extern unsigned long long need_mask;
51 extern int no_buffers;
52
53 struct dns_data {
54         int nscount;
55         char **ns_list;
56 };
57 void free_dns_data(void);
58
59 struct net_stat {
60         char *dev;
61         int up;
62         long long last_read_recv, last_read_trans;
63         long long recv, trans;
64         double recv_speed, trans_speed;
65         struct sockaddr addr;
66 #if defined(__linux__)
67         char addrs[273];
68 #endif /* __linux__ */
69         double net_rec[15], net_trans[15];
70         // wireless extensions
71         char essid[32];
72         char bitrate[16];
73         char mode[16];
74         int link_qual;
75         int link_qual_max;
76         char ap[18];
77 };
78 void clear_net_stats(void);
79 struct net_stat *get_net_stat(const char *dev, void *free_at_crash1, void *free_at_crash2);
80 int interface_up(const char *dev);
81
82 void get_adt746x_cpu(char *, size_t);
83 void get_adt746x_fan(char *, size_t);
84
85 int open_acpi_temperature(const char *name);
86 double get_acpi_temperature(int fd);
87 void get_acpi_ac_adapter(char *, size_t);
88 void get_acpi_fan(char *, size_t);
89 void get_battery_stuff(char *buf, unsigned int n, const char *bat, int item);
90 int get_battery_perct(const char *bat);
91 int get_battery_perct_bar(const char *bat);
92 void get_battery_short_status(char *buf, unsigned int n, const char *bat);
93
94 #endif /* _COMMON_H */