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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
#!/opt/local/bin/gawk -f
# Usage: get_system.awk [--force]
#
# Copyright 2002 Stephan Schulz, schulz@informatik.tu-muenchen.de
#
# Determine a string describing the processor type and speed. Option
# --force will force only the first recognized processor to be
# considered.
#
# Similar to C assert()
function assert(val, comment)
{
if(!val)
{
print "Assertion fail: " comment > "/dev/stderr";
exit 1;
}
}
# round --- do normal rounding
#
# Arnold Robbins, arnold@gnu.org, August, 1996
# Public Domain
function round(x, ival, aval, fraction)
{
ival = int(x) # integer part, int() truncates
# see if fractional part
if (ival == x) # no fraction
return x
if (x < 0) {
aval = -x # absolute value
ival = int(aval)
fraction = aval - ival
if (fraction >= .5)
return int(x) - 1 # -2.5 --> -3
else
return int(x) # -2.3 --> -2
} else {
fraction = x - ival
if (fraction >= .5)
return ival + 1
else
return ival
}
}
# Return the result of a single, simple shell command yieding exactly
# one line
function get_shell_res(cmd, tmp)
{
cmd | getline tmp;
close(cmd);
assert(tmp, "No result found (get_shell_res)");
return tmp;
}
# Return an OS string sufficient to tell us how to proceed.
function get_OS( tmp, res, arr, elements)
{
res = "";
tmp = get_shell_res("uname -a");
elements = split(tmp, arr);
if(!elements)
{
print "Cannot get operation system info!" > "/dev/stderr";
exit 1;
}
if((arr[1] == "SunOS")&& (index(arr[3], "5.") == 1))
{
res = "SunOS-5";
}
else if(arr[1] == "Linux")
{
res = "Linux";
}
else if(arr[1] == "Darwin")
{
res = "Darwin";
}
else
{
print "Warning: Unknown operating system!" > "/dev/stderr";
res = "unknown";
}
return res;
}
function get_platform_info_SunOS5( pipe, tmp, res, tmpres, i, arr, elements)
{
tmp = "";
res = "";
pipe = "psrinfo -v";
while((pipe | getline tmp )>0)
{
if(i = index(tmp, "processor operates at"))
{
elements = split(tmp, arr);
if(elements!=7)
{
print "Cannot parse processor information" > "/dev/stderr";
exit 1;
}
tmpres = arr[2] "-" arr[6];
if(res && (res!=tmpres))
{
if(first_proc_only)
{
print "Two different processors found! Ignoring second"\
" one (it's your responsibility now!)" >\
"/dev/stderr";
tmpres = "NC-" res;
}
else
{
print "Two different processors found! Machine"\
" is unsuitable for E-MARK evaluation" > "/dev/stderr";
exit 1;
}
exit 1;
}
else if(res)
{
print "Two or more identical processors found!" > "/dev/stderr";
}
res = tmpres;
}
}
close(pipe);
tmp = get_shell_res("uname -i");
gsub(",","-",tmp);
return tmp "-" res;
}
function get_platform_info_Linux( pipe, tmp, res, tmpres, i, arr, elements)
{
pipe = "cat /proc/cpuinfo";
res = "";
tmpname = "";
tmpmhz = "";
while((pipe | getline tmp )>0)
{
if(i = index(tmp, "model name")==1)
{
elements = split(tmp, arr, ": ");
if(elements!=2)
{
print "Cannot parse processor information" > "/dev/stderr";
exit 1;
}
tmpname = arr[2];
}
if(i = index(tmp, "cpu MHz")==1)
{
elements = split(tmp, arr, ": ");
if(elements!=2)
{
print "Cannot parse processor information" > "/dev/stderr";
exit 1;
}
tmpmhz = round(arr[2]); # PCs have NO reliable frequency!
}
if(i = index(tmp, "bogomips")==1)
{
tmpres = tmpname "-" tmpmhz;
if(res && (res!=tmpres))
{
if(first_proc_only)
{
print "Two different processors found! Ignoring second"\
" one (it's your responsibility now!)" >\
"/dev/stderr";
tmpres = "NC-" res;
}
else
{
print "Two different processors found! Machine"\
" is unsuitable for E-MARK evaluation" > "/dev/stderr";
exit 1;
}
}
else if(res)
{
print "Two or more identical processors found!" > "/dev/stderr";
}
res = tmpres;
tmpres = "";
tmpname = "";
tmpmhz = "";
}
}
close(pipe);
gsub(" ","-",res);
gsub("\\(","",res);
gsub("\\)","",res);
return res;
}
function get_platform_info_Darwin( pipe, tmp, i, arr, elements,
tmpname, freq)
{
pipe = "hostinfo";
while((pipe | getline tmp )>0)
{
if(i = index(tmp, "Processor type")==1)
{
elements = split(tmp, arr, ": ");
if(elements!=2)
{
print "Cannot parse processor information" > "/dev/stderr";
exit 1;
}
tmp = arr[2];
split(tmp, arr, " ");
tmpname = arr[1];
}
}
close(pipe);
tmp = get_shell_res("sysctl -n hw.cpufrequency");
freq = tmp/1000000
return tmpname "-" freq;
}
function get_procinfo( os, res)
{
os = get_OS();
if(os == "SunOS-5")
{
res = get_platform_info_SunOS5();
}
else if(os == "Linux")
{
res = get_platform_info_Linux();
}
else if(os == "Darwin")
{
res = get_platform_info_Darwin()
}
else
{
assert((os==unknown), "OS identification failed (get_procinfo())");
print "Warning: Unknown OS. Trying....";
res = get_procinfo_SunOS5();
if(!res)
{
res = get_platform_info_Linux();
}
if(!res)
{
print "Cannot get system information" > "/dev/stderr";
exit 1;
}
}
return res;
}
BEGIN{
if(ARGV[1]=="--force")
{
first_proc_only = 1;
}
print get_procinfo();
}
|