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
|
/***************************************
$Header: /home/amb/CVS/procmeter3/modules/cpuinfo.c,v 1.4 2008-05-05 18:45:17 amb Exp $
ProcMeter - A system monitoring program for Linux - Version 3.5b.
CPU information.
******************/ /******************
Written by Andrew M. Bishop
This file Copyright 1998-2008 Andrew M. Bishop
It may be distributed under the GNU Public License, version 2, or
any higher version. See section COPYING of the GNU Public license
for conditions under which this file may be redistributed.
***************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "procmeter.h"
#define CPU_SPEED 0
#define NOUTPUTS 1
/* The interface information. */
/*+ The normal outputs +*/
ProcMeterOutput _output=
/*+ The cpu speed output +*/
{
/* char name[]; */ "CPU_Speed",
/* char *description; */ "The speed of the CPU in MHz.",
/* char type; */ PROCMETER_GRAPH|PROCMETER_TEXT|PROCMETER_BAR,
/* short interval; */ 1,
/* char text_value[]; */ "0",
/* long graph_value; */ 0,
/* short graph_scale; */ 500,
/* char graph_units[]; */ "(%d)"
};
/*+ The outputs with multiple CPUs +*/
ProcMeterOutput _smp_output=
/*+ The total cpu output +*/
{
/* char name[]; */ "CPU%d_Speed",
/* char *description; */ "The speed of the CPU number %d in MHz.",
/* char type; */ PROCMETER_GRAPH|PROCMETER_TEXT|PROCMETER_BAR,
/* short interval; */ 1,
/* char text_value[]; */ "0",
/* long graph_value; */ 0,
/* short graph_scale; */ 500,
/* char graph_units[]; */ "(%d)"
};
/*+ The outputs (with single or multiple CPUs). +*/
ProcMeterOutput **outputs=NULL;
/*+ The module. +*/
ProcMeterModule module=
{
/* char name[]; */ "CPUInfo",
/* char *description; */ "CPU Information. [From /proc/cpuinfo]",
};
/* The line buffer */
static char *line=NULL;
static size_t length=0;
/* The current and previous information */
static float *current,*previous,*values[2]={NULL,NULL};
/*+ The number of CPUs. +*/
static int ncpus=0;
/*++++++++++++++++++++++++++++++++++++++
Load the module.
ProcMeterModule *Load Returns the module information.
++++++++++++++++++++++++++++++++++++++*/
ProcMeterModule *Load(void)
{
return(&module);
}
/*++++++++++++++++++++++++++++++++++++++
Initialise the module, creating the outputs as required.
ProcMeterOutput **Initialise Returns a NULL terminated list of outputs.
char *options The options string for the module from the .procmeterrc file.
++++++++++++++++++++++++++++++++++++++*/
ProcMeterOutput **Initialise(char *options)
{
FILE *f;
int i;
/* Verify the statistics from /proc/stat */
f=fopen("/proc/cpuinfo","r");
if(!f)
fprintf(stderr,"ProcMeter(%s): Could not open '/proc/cpuinfo'.\n",__FILE__);
else
{
if(!fgets_realloc(&line,&length,f)) /* cpu */
fprintf(stderr,"ProcMeter(%s): Could not read '/proc/cpuinfo'.\n",__FILE__);
else
{
int count;
do
{
if(sscanf(line,"processor : %d",&count)==1)
ncpus++;
}
while(fgets_realloc(&line,&length,f));
}
fclose(f);
}
/* Create the outputs */
outputs=(ProcMeterOutput**)malloc((ncpus+1)*sizeof(ProcMeterOutput*));
outputs[ncpus]=NULL;
values[0]=(float*)malloc(ncpus*sizeof(float));
values[1]=(float*)malloc(ncpus*sizeof(float));
current=values[0];
previous=values[1];
if(ncpus==1)
{
outputs[0]=(ProcMeterOutput*)malloc(sizeof(ProcMeterOutput));
*outputs[0]=_output;
}
else
for(i=0;i<ncpus;i++)
{
outputs[i]=(ProcMeterOutput*)malloc(sizeof(ProcMeterOutput));
*outputs[i]=_smp_output;
snprintf(outputs[i]->name,PROCMETER_NAME_LEN+1,_smp_output.name,i);
outputs[i]->description=(char*)malloc(strlen(_smp_output.description)+8);
sprintf(outputs[i]->description,_smp_output.description,i);
}
return(outputs);
}
/*++++++++++++++++++++++++++++++++++++++
Perform an update on one of the statistics.
int Update Returns 0 if OK, else -1.
time_t now The current time.
ProcMeterOutput *output The output that the value is wanted for.
++++++++++++++++++++++++++++++++++++++*/
int Update(time_t now,ProcMeterOutput *output)
{
static time_t last=0;
int i;
/* Get the statistics from /proc/cpuinfo */
if(now!=last)
{
FILE *f;
float *temp;
temp=current;
current=previous;
previous=temp;
f=fopen("/proc/cpuinfo","r");
if(!f)
return(-1);
i=0;
while(fgets_realloc(&line,&length,f))
{
float speed;
if(sscanf(line,"cpu MHz : %f",&speed)==1)
{
current[i]=speed;
i++;
}
}
fclose(f);
last=now;
}
for(i=0;i<ncpus;i++)
if(output==outputs[i])
{
double value;
value=current[i];
output->graph_value=PROCMETER_GRAPH_FLOATING(value/output->graph_scale);
sprintf(output->text_value,"%.1f MHz",value);
return(0);
}
return(-1);
}
/*++++++++++++++++++++++++++++++++++++++
Tidy up and prepare to have the module unloaded.
++++++++++++++++++++++++++++++++++++++*/
void Unload(void)
{
int i;
if(ncpus>1)
for(i=0;i<ncpus;i++)
free(outputs[i]->description);
for(i=0;i<ncpus;i++)
free(outputs[i]);
free(outputs);
free(values[0]);
free(values[1]);
if(line)
free(line);
}
|