#!/bin/bash
# Usage:
# ./cpu-gather.sh | ./cpu-parse.sh
data=`cat`
model=`sed -ne '/^model name[ ]*:/ {s/^[^:]*: \(.*\)/\1/p; q}' <<<"$data"`
fname=`sed -e 's/^ *//;
s/ *$//;
s/[ -]\+ \+/ /g;
s/(\([Rr]\|[Tt][Mm]\))//g;
s/.*\(Intel\|AMD\) //;
s/ \(Duo\|Quad\|II X[0-9]\+\) / /;
s/ \(CPU\|Processor\)\>//;
s/ @.*//;
s/ APU .*//;
s/ \(v[0-9]\|SE\)$//;
s/ /-/g' <<<"$model"`
fname="x86_64-cpuid-$fname"
xml()
{
hex='\(0x[0-9a-f]\+\)'
match="$hex $hex: eax=$hex ebx=$hex ecx=$hex edx=$hex"
subst=""
echo ""
echo ""
sed -ne "s/^ *$match$/ $subst/p"
echo ""
}
json()
{
first=true
sed -ne '/{"QMP".*/d;
/{"return": {}}/d;
/{"timestamp":.*/d;
/^{/p' <<<"$data" | \
while read; do
$first || echo
first=false
json_reformat <<<"$REPLY" | tr -s '\n'
done
}
xml <<<"$data" >$fname.xml
echo $fname.xml
json <<<"$data" >$fname.json
if [[ -s $fname.json ]]; then
echo $fname.json
else
rm $fname.json
fi