sys-cpu 0.6.4-universal-linux → 0.7.0-universal-linux
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +11 -1
- data/README +6 -2
- data/Rakefile +19 -50
- data/doc/sunos.txt +2 -2
- data/doc/windows.txt +2 -2
- data/examples/example_sys_cpu_windows.rb +5 -4
- data/lib/linux/sys/cpu.rb +1 -1
- data/lib/unix/sys/cpu.rb +347 -0
- data/lib/windows/sys/cpu.rb +4 -4
- data/sys-cpu.gemspec +4 -11
- data/test/test_sys_cpu.rb +12 -12
- data/test/test_sys_cpu_bsd.rb +84 -60
- data/test/test_sys_cpu_sunos.rb +62 -46
- data/test/test_sys_cpu_version.rb +2 -2
- data/test/test_sys_cpu_windows.rb +13 -13
- metadata +25 -13
- data/ext/bsd/bsd.c +0 -331
- data/ext/extconf.rb +0 -26
- data/ext/hpux/hpux.c +0 -219
- data/ext/sunos/sunos.c +0 -281
- data/ext/version.h +0 -2
data/ext/sunos/sunos.c
DELETED
@@ -1,281 +0,0 @@
|
|
1
|
-
/*****************************************************************************
|
2
|
-
* sunos.c (cpu.c) - Solaris code sys-cpu
|
3
|
-
*
|
4
|
-
* Interface to provide various types of cpu information.
|
5
|
-
* Based on the Unix::Processors Perl module (Wilson Snyder) with ideas from
|
6
|
-
* Sys::CPU (Matt Sanford) and Solaris::Kstat (Alan Burlison) as well.
|
7
|
-
*
|
8
|
-
* The kstat code for load_avg() was taken largely from a post by Casper Dik
|
9
|
-
* on comp.unix.solaris.
|
10
|
-
*****************************************************************************/
|
11
|
-
#include <ruby.h>
|
12
|
-
#include "version.h"
|
13
|
-
#include <unistd.h>
|
14
|
-
#include <sys/types.h>
|
15
|
-
#include <sys/processor.h>
|
16
|
-
#include <sys/utsname.h>
|
17
|
-
#include <sys/param.h>
|
18
|
-
#include <kstat.h>
|
19
|
-
|
20
|
-
#ifdef HAVE_GETLOADAVG
|
21
|
-
#include <sys/loadavg.h>
|
22
|
-
#endif
|
23
|
-
|
24
|
-
/* Missing in older header files */
|
25
|
-
#ifndef P_POWEROFF
|
26
|
-
#define P_POWEROFF 5
|
27
|
-
#endif
|
28
|
-
|
29
|
-
#ifdef __cplusplus
|
30
|
-
extern "C"
|
31
|
-
{
|
32
|
-
#endif
|
33
|
-
|
34
|
-
VALUE cCPUError;
|
35
|
-
|
36
|
-
/*
|
37
|
-
* call-seq:
|
38
|
-
* CPU.freq(cpu_num=0)
|
39
|
-
*
|
40
|
-
* Returns an integer indicating the speed (i.e. frequency in Mhz) of
|
41
|
-
* +cpu_num+, or cpu 0 (zero) if no number is provided. If you provide an
|
42
|
-
* invalid cpu number then a CPU::Error is raised.
|
43
|
-
*/
|
44
|
-
static VALUE cpu_freq(int argc, VALUE *argv)
|
45
|
-
{
|
46
|
-
int ncpu = 0; /* Default value */
|
47
|
-
int cpu;
|
48
|
-
int last_cpu = 0;
|
49
|
-
int clock = 0;
|
50
|
-
processor_info_t pi;
|
51
|
-
VALUE cpu_num = Qnil;
|
52
|
-
|
53
|
-
rb_scan_args(argc, argv, "01", &cpu_num);
|
54
|
-
|
55
|
-
if(cpu_num != Qnil)
|
56
|
-
ncpu = NUM2INT(cpu_num);
|
57
|
-
|
58
|
-
for(cpu = ncpu; cpu < last_cpu+16; cpu++) {
|
59
|
-
if(processor_info(cpu, &pi) == 0 && pi.pi_state == P_ONLINE){
|
60
|
-
if(clock < pi.pi_clock){
|
61
|
-
clock = pi.pi_clock;
|
62
|
-
}
|
63
|
-
last_cpu = cpu;
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
if(clock == 0)
|
68
|
-
rb_raise(cCPUError, "Invalid CPU number?");
|
69
|
-
|
70
|
-
return INT2NUM(clock);
|
71
|
-
}
|
72
|
-
|
73
|
-
/*
|
74
|
-
* call-seq:
|
75
|
-
* CPU.state(cpu_num=0)
|
76
|
-
*
|
77
|
-
* Returns a string indicating the cpu state of +cpu_num+, or cpu 0 if no
|
78
|
-
* number is specified. Raises a CPU::Error if an invalid +cpu_num+ is provided.
|
79
|
-
*/
|
80
|
-
static VALUE cpu_state(int argc, VALUE *argv)
|
81
|
-
{
|
82
|
-
int cpu = 0; /* Default value */
|
83
|
-
char* value = NULL;
|
84
|
-
processor_info_t pi;
|
85
|
-
VALUE cpu_num = Qnil;
|
86
|
-
|
87
|
-
rb_scan_args(argc, argv, "01", &cpu_num);
|
88
|
-
|
89
|
-
if(cpu_num != Qnil)
|
90
|
-
cpu = NUM2INT(cpu_num);
|
91
|
-
|
92
|
-
if(processor_info(cpu, &pi) == 0){
|
93
|
-
switch (pi.pi_state)
|
94
|
-
{
|
95
|
-
case P_ONLINE:
|
96
|
-
value = "online";
|
97
|
-
break;
|
98
|
-
case P_OFFLINE:
|
99
|
-
value = "offline";
|
100
|
-
break;
|
101
|
-
case P_POWEROFF:
|
102
|
-
value = "poweroff";
|
103
|
-
break;
|
104
|
-
default:
|
105
|
-
value = "unknown";
|
106
|
-
}
|
107
|
-
}
|
108
|
-
else{
|
109
|
-
rb_raise(cCPUError, "state() call failed - invalid cpu num?");
|
110
|
-
}
|
111
|
-
|
112
|
-
return rb_str_new2(value);
|
113
|
-
}
|
114
|
-
|
115
|
-
/*
|
116
|
-
* call-seq:
|
117
|
-
* CPU.num_cpu
|
118
|
-
*
|
119
|
-
* Returns the number of cpu's on your system.
|
120
|
-
*/
|
121
|
-
static VALUE cpu_num()
|
122
|
-
{
|
123
|
-
int num_cpu;
|
124
|
-
num_cpu = sysconf(_SC_NPROCESSORS_ONLN);
|
125
|
-
return INT2NUM(num_cpu);
|
126
|
-
}
|
127
|
-
|
128
|
-
/*
|
129
|
-
* call-seq:
|
130
|
-
* CPU.cpu_type
|
131
|
-
*
|
132
|
-
* Returns a string indicating the type of processor. This is the
|
133
|
-
* architecture (e.g. sparcv9), not the exact model (e.g. Ultra-IIe).
|
134
|
-
* Returns nil if not found.
|
135
|
-
*--
|
136
|
-
* All cpu must be the same type (right?)
|
137
|
-
*/
|
138
|
-
static VALUE cpu_type()
|
139
|
-
{
|
140
|
-
int cpu = 0;
|
141
|
-
char* value = NULL;
|
142
|
-
processor_info_t pi;
|
143
|
-
|
144
|
-
/* Some systems start the cpu num at 0, others start at 1 */
|
145
|
-
if(processor_info(cpu, &pi) == 0)
|
146
|
-
value = pi.pi_processor_type;
|
147
|
-
else if(processor_info(cpu+1, &pi) == 0)
|
148
|
-
value = pi.pi_processor_type;
|
149
|
-
else
|
150
|
-
return Qnil;
|
151
|
-
|
152
|
-
return rb_str_new2(value);
|
153
|
-
}
|
154
|
-
|
155
|
-
/*
|
156
|
-
* call-seq:
|
157
|
-
* CPU.fpu_type
|
158
|
-
*
|
159
|
-
* Returns a string indicating the type of floating point unit, or nil if
|
160
|
-
* not found.
|
161
|
-
*/
|
162
|
-
static VALUE cpu_fpu_type()
|
163
|
-
{
|
164
|
-
int cpu = 0;
|
165
|
-
char* value = NULL;
|
166
|
-
processor_info_t pi;
|
167
|
-
|
168
|
-
/* Some systems start the cpu num at 0, others start at 1 */
|
169
|
-
if(processor_info(cpu, &pi) == 0)
|
170
|
-
value = pi.pi_fputypes;
|
171
|
-
else if(processor_info(cpu+1, &pi) == 0)
|
172
|
-
value = pi.pi_fputypes;
|
173
|
-
else
|
174
|
-
return Qnil;
|
175
|
-
|
176
|
-
return rb_str_new2(value);
|
177
|
-
}
|
178
|
-
|
179
|
-
/*
|
180
|
-
* call-seq:
|
181
|
-
* CPU.model
|
182
|
-
*
|
183
|
-
* Returns a string indicating the cpu model. For now, this is the
|
184
|
-
* architecture type, rather than the exact model.
|
185
|
-
*/
|
186
|
-
static VALUE cpu_model()
|
187
|
-
{
|
188
|
-
struct utsname u;
|
189
|
-
uname(&u);
|
190
|
-
return rb_str_new2(u.machine);
|
191
|
-
}
|
192
|
-
|
193
|
-
/*
|
194
|
-
* call-seq:
|
195
|
-
* CPU.load_avg
|
196
|
-
*
|
197
|
-
* Returns an array of 3 floats, the load averages for the last 1, 5 and 15
|
198
|
-
* minutes.
|
199
|
-
*/
|
200
|
-
static VALUE cpu_load_avg()
|
201
|
-
{
|
202
|
-
VALUE la_ary = rb_ary_new();
|
203
|
-
|
204
|
-
#ifdef HAVE_GETLOADAVG
|
205
|
-
double load_avg[3];
|
206
|
-
|
207
|
-
if(getloadavg(load_avg, sizeof(load_avg)) < 0)
|
208
|
-
rb_raise(cCPUError, "getloadavg() error");
|
209
|
-
|
210
|
-
rb_ary_push(la_ary, rb_float_new(load_avg[0]));
|
211
|
-
rb_ary_push(la_ary, rb_float_new(load_avg[1]));
|
212
|
-
rb_ary_push(la_ary, rb_float_new(load_avg[2]));
|
213
|
-
#else
|
214
|
-
kstat_ctl_t* kc;
|
215
|
-
kstat_t* ksp;
|
216
|
-
kstat_named_t* kn1;
|
217
|
-
kstat_named_t* kn5;
|
218
|
-
kstat_named_t* kn15;
|
219
|
-
|
220
|
-
kc = kstat_open();
|
221
|
-
|
222
|
-
if(kc == 0)
|
223
|
-
rb_raise(cCPUError, "kstat_open() error");
|
224
|
-
|
225
|
-
ksp = kstat_lookup(kc, "unix", 0, "system_misc");
|
226
|
-
|
227
|
-
if(ksp == 0)
|
228
|
-
rb_raise(cCPUError, "kstat_lookup() error");
|
229
|
-
|
230
|
-
if(kstat_read(kc,ksp,0) == -1)
|
231
|
-
rb_raise(cCPUError, "kstat_read() error");
|
232
|
-
|
233
|
-
kn1 = kstat_data_lookup(ksp, "avenrun_1min");
|
234
|
-
kn5 = kstat_data_lookup(ksp, "avenrun_5min");
|
235
|
-
kn15 = kstat_data_lookup(ksp, "avenrun_15min");
|
236
|
-
|
237
|
-
if( (kn1 == 0) || (kn5 == 0) || (kn15 == 0) )
|
238
|
-
rb_raise(cCPUError, "kstat_lookup() error");
|
239
|
-
|
240
|
-
rb_ary_push(la_ary, rb_float_new((double)kn1->value.ui32/FSCALE));
|
241
|
-
rb_ary_push(la_ary, rb_float_new((double)kn5->value.ui32/FSCALE));
|
242
|
-
rb_ary_push(la_ary, rb_float_new((double)kn15->value.ui32/FSCALE));
|
243
|
-
|
244
|
-
kstat_close(kc);
|
245
|
-
#endif
|
246
|
-
|
247
|
-
return la_ary;
|
248
|
-
}
|
249
|
-
|
250
|
-
void Init_cpu()
|
251
|
-
{
|
252
|
-
VALUE mSys, cCPU;
|
253
|
-
|
254
|
-
/* The Sys module serves as a toplevel namespace only */
|
255
|
-
mSys = rb_define_module("Sys");
|
256
|
-
|
257
|
-
/* The CPU class provides class methods for obtaining CPU information */
|
258
|
-
cCPU = rb_define_class_under(mSys, "CPU", rb_cObject);
|
259
|
-
|
260
|
-
/* The CPU::Error Exception class is raised whenever any of the CPU class
|
261
|
-
* methods fail.
|
262
|
-
*/
|
263
|
-
cCPUError = rb_define_class_under(cCPU, "Error", rb_eStandardError);
|
264
|
-
|
265
|
-
/* 0.6.4: The version of the sys-cpu library */
|
266
|
-
rb_define_const(cCPU, "VERSION", rb_str_new2(SYS_CPU_VERSION));
|
267
|
-
|
268
|
-
/* Class Methods */
|
269
|
-
rb_define_singleton_method(cCPU, "freq", cpu_freq, -1);
|
270
|
-
rb_define_singleton_method(cCPU, "state", cpu_state, -1);
|
271
|
-
rb_define_singleton_method(cCPU, "num_cpu", cpu_num, 0);
|
272
|
-
rb_define_singleton_method(cCPU, "cpu_type", cpu_type, 0);
|
273
|
-
rb_define_singleton_method(cCPU, "fpu_type", cpu_fpu_type, 0);
|
274
|
-
rb_define_singleton_method(cCPU, "model", cpu_model, 0);
|
275
|
-
rb_define_singleton_method(cCPU, "load_avg", cpu_load_avg, 0);
|
276
|
-
|
277
|
-
}
|
278
|
-
|
279
|
-
#ifdef __cplusplus
|
280
|
-
}
|
281
|
-
#endif
|
data/ext/version.h
DELETED