-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpu_usage.c
238 lines (209 loc) · 5.39 KB
/
cpu_usage.c
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include "atomic.h"
#include "cpu_usage.h"
static inline bool
is_power_of_2(uint32_t n)
{
return (n != 0 && ((n & (n - 1)) == 0));
}
static inline
uint32_t roundup_power_of_2(uint32_t a)
{
int i;
if (is_power_of_2(a))
return a;
uint32_t position = 0;
for (i = a; i != 0; i >>= 1)
position++;
return (uint32_t)(1 << position);
}
Crb_t*
crb_creat(uint32_t size, uint32_t msize)
{
Crb_t* crb_ptr = (Crb_t*) malloc(sizeof(Crb_t));
size_t i = 0;
crb_ptr->curr = 0;
crb_ptr->msize = msize;
crb_ptr->size = roundup_power_of_2(size);
crb_ptr->data = calloc(sizeof(void *), crb_ptr->size);
if (crb_ptr->data == NULL) {
return NULL;
}
for (i = 0; i < crb_ptr->size; i++) {
crb_ptr->data[i] = malloc(crb_ptr->msize);
}
return crb_ptr;
}
bool
is_crb_fill(Crb_t* rcb)
{
return rcb->curr >= rcb->size;
}
bool
is_crb_empoty(Crb_t* rcb)
{
return rcb->curr == 0;
}
uint32_t
crb_set(Crb_t* rcb, void* data )
{
uint32_t curr = ATOM_FINC(&rcb->curr);
uint32_t index = curr & (rcb->size - 1);
memcpy(rcb->data[index], data, rcb->msize);
return curr;
}
int
crb_get_curr(Crb_t* rcb, void* data)
{
uint32_t curr = rcb->curr - 1;
uint32_t index = curr & (rcb->size - 1);
memcpy(data, rcb->data[index], rcb->msize);
return 0;
}
int
crb_get_offset(Crb_t* rcb, void* data, uint32_t offset)
{
uint32_t curr = rcb->curr;
uint32_t index = (curr - offset) & (rcb->size - 1);
if (offset >= rcb->size) {
return -1;
}
if (curr < rcb->size && curr < offset) {
return -1;
}
memcpy(data, rcb->data[index], rcb->msize);
return 0;
}
int
read_cpu_stat(stat_cputime_t *stat)
{
FILE* fp = NULL;
char line[1024] = {0};
fp = fopen("/proc/stat", "r");
if (NULL == fp) {
printf("open file /proc/stat error\n");
return -1;
}
fgets(line, sizeof(line), fp);
fclose(fp);
if (sscanf(line, "cpu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
&stat->user,
&stat->nice,
&stat->system,
&stat->idle,
&stat->iowait,
&stat->irq,
&stat->softirq,
&stat->steal,
&stat->guest,
&stat->guest_nice) < 9) {
return -1;
}
gettimeofday(&stat->tv, NULL);
return 0;
}
static inline uint64_t
cputime_get_total(stat_cputime_t *time)
{
return time->user + time->nice + time->system
+ time->idle + time->iowait + time->irq + time->softirq
+ time->steal + time->guest + time->guest_nice;
}
static inline uint64_t
cputime_get_load(stat_cputime_t *time)
{
return time->user + time->nice + time->system
+ time->irq + time->softirq
+ time->steal + time->guest + time->guest_nice;
}
static inline uint64_t
cputime_get_idle(stat_cputime_t *time)
{
return time->idle + time->iowait;
}
static inline uint64_t
cputime_get_iowait(stat_cputime_t *time)
{
return time->iowait;
}
static inline uint64_t
cputime_get_system(stat_cputime_t *time)
{
return time->system;
}
static inline uint64_t
cputime_get_user(stat_cputime_t *time)
{
return time->user + time->nice;
}
static inline uint64_t
cputime_get_irq(stat_cputime_t *time)
{
return time->irq + time->softirq;
}
static inline uint64_t
cputime_get_guest(stat_cputime_t *time)
{
return time->guest + time->guest_nice;
}
static void
cpu_usagetime_convrt(stat_cputime_t* stat, cpu_usagetime_t *usage)
{
usage->total = cputime_get_total(stat);
usage->load = cputime_get_load(stat);
usage->idle = cputime_get_idle(stat);
usage->io = cputime_get_iowait(stat);
usage->system = cputime_get_system(stat);
usage->irq = cputime_get_irq(stat);
usage->guest = cputime_get_guest(stat);
usage->user = cputime_get_user(stat);
memcpy(&usage->tv, &stat->tv, sizeof(stat->tv));
}
void
cal_cpu_usage_result(cpu_usagetime_t *b, cpu_usagetime_t *a, int delay)
{
uint64_t total = a->total - b->total;
uint64_t load = a->load - b->load;
uint64_t irq = a->irq - b->irq;
uint64_t system = a->system - b->system;
uint64_t user = a->user - b->user;
uint64_t io = a->io - b->io;
uint64_t guest = a->guest - b->guest;
uint64_t idle = a->idle - b->idle;
float usage = (float) load * 100 / total;
char buf[1024] = {0};
int buf_len = sizeof(buf);
snprintf(buf, buf_len, "%5.2f%% in last %3ds "
"(total:%-5lu idle:%-5lu load:%-5lu io:%-5lu system:%-4lu user:%-5lu irq:%-5lu guest:%-4lu)\n",
usage, delay,
total, idle, load, io, system, user, irq, guest);
printf("%s\n", buf);
}
float
cal_cpu_usage(cpu_usagetime_t *b, cpu_usagetime_t *a)
{
uint64_t total = a->total - b->total;
uint64_t load = a->load - b->load;
if (total == 0) {
return -1.0;
}
return (float)load / total * 100;
}
int
get_cpu_usagetime(cpu_usagetime_t *usage)
{
stat_cputime_t stat;
int rc = read_cpu_stat(&stat);
if (rc < 0) {
fprintf(stderr, "%s\n", "fail to get cpu stat");
return -1;
}
cpu_usagetime_convrt(&stat, usage);
return 0;
}