-
Notifications
You must be signed in to change notification settings - Fork 130
/
computer.h
183 lines (150 loc) · 4.49 KB
/
computer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
* HardInfo - Displays System Information
* Copyright (C) 2003-2007 L. A. F. Pereira <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __COMPUTER_H__
#define __COMPUTER_H__
#include "hardinfo.h"
#include "x_util.h"
typedef struct _Computer Computer;
typedef struct _OperatingSystem OperatingSystem;
typedef struct _MemoryInfo MemoryInfo;
typedef struct _UptimeInfo UptimeInfo;
typedef struct _LoadInfo LoadInfo;
typedef struct _DisplayInfo DisplayInfo;
typedef struct _Distro Distro;
typedef struct _AlsaInfo AlsaInfo;
typedef struct _AlsaCard AlsaCard;
typedef struct _FileSystem FileSystem;
typedef struct _FileSystemEntry FileSystemEntry;
struct _AlsaCard {
gchar *alsa_name;
gchar *friendly_name;
/*
gchar *board;
gchar revision, compat_class;
gint subsys_vendorid, subsys_id;
gint cap_dac_res, cap_adc_res;
gboolean cap_3d_enh;
gint curr_mic_gain;
gboolean curr_3d_enh,
curr_loudness,
curr_simstereo;
gchar *curr_mic_select;
*/
};
struct _AlsaInfo {
GSList *cards;
};
struct _DisplayInfo {
/* old stuff */
gint width, height;
/* new stuff */
xinfo *xi; /* x info */
wl_info *wl; /* wayland info */
gchar *display_server;
/* don't free */
const gchar *vendor; /* X vendor; points to xrr->xi->vendor */
const gchar *session_type; /* points to wl->xdg_session_type */
};
struct _LoadInfo {
float load1, load5, load15;
};
struct _UptimeInfo {
int days, hours, minutes;
};
struct _Computer {
MemoryInfo *memory;
OperatingSystem *os;
DisplayInfo *display;
AlsaInfo *alsa;
gchar *date_time;
};
#include "distro_flavors.h"
struct _OperatingSystem {
gchar *kernel;
gchar *kcmdline;
gchar *libc;
gchar *distrocode;
gchar *distroid;
gchar *distro;
gchar *hostname;
gchar *language;
gchar *homedir;
gchar *kernel_version;
gchar *languages;
gchar *desktop;
gchar *username;
gchar *boots;
gchar *entropy_avail;
const DistroFlavor* distro_flavor;
};
struct _MemoryInfo {
gint total, used, free, cached;
gfloat ratio;
};
struct _Distro {
gchar *distro;
gchar *codename;
gchar *id;
};
#define get_str(field_name,ptr) \
if (g_str_has_prefix(tmp[0], field_name)) { \
ptr = g_strdup(tmp[1]); \
g_strfreev(tmp); \
continue; \
}
#define get_int(field_name,ptr) \
if (g_str_has_prefix(tmp[0], field_name)) { \
ptr = atoi(tmp[1]); \
g_strfreev(tmp); \
continue; \
}
#define get_float(field_name,ptr) \
if (g_str_has_prefix(tmp[0], field_name)) { \
ptr = atof(tmp[1]); \
g_strfreev(tmp); \
continue; \
}
extern gchar *users;
extern gchar *groups;
extern gchar *fs_list;
extern GHashTable *_module_hash_table;
extern Computer *computer;
extern gchar *module_list;
gchar *computer_get_formatted_loadavg();
gchar *computer_get_formatted_uptime();
gchar *computer_get_alsacards(Computer * computer);
gchar *computer_get_entropy_avail(void);
gchar *computer_get_aslr(void);
gchar *computer_get_dmesg_status(void);
const gchar *computer_get_selinux(void);
gchar *computer_get_lsm(void);
OperatingSystem *computer_get_os(void);
AlsaInfo *computer_get_alsainfo(void);
MemoryInfo *computer_get_memory(void);
UptimeInfo *computer_get_uptime(void);
DisplayInfo *computer_get_display(void);
void computer_free_display(DisplayInfo *di);
void scan_modules_do(void);
void scan_filesystems(void);
void scan_users_do(void);
/* Memory Usage */
extern GHashTable *memlabels;
void init_memory_labels(void);
void scan_memory_do(void);
void kernel_module_icon_init(void);
#endif /* __COMPUTER_H__ */