aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_proc_stat.c
blob: e7b9bf826e25705e81df87d22ff50387da0e41e8 (plain)
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
/* $Id: plugin_proc_stat.c,v 1.2 2004/01/16 07:26:25 reinelt Exp $
 *
 * plugin for /proc/stat parsing
 *
 * Copyright 2003 Michael Reinelt <reinelt@eunet.at>
 * Copyright 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * LCD4Linux is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 * $Log: plugin_proc_stat.c,v $
 * Revision 1.2  2004/01/16 07:26:25  reinelt
 * moved various /proc parsing to own functions
 * made some progress with /proc/stat parsing
 *
 * Revision 1.1  2004/01/16 05:04:53  reinelt
 * started plugin proc_stat which should parse /proc/stat
 * which again is a paint in the a**
 * thinking over implementation methods of delta functions
 * (CPU load, ...)
 *
 */

/* 
 * exported functions:
 *
 * int plugin_init_proc_stat (void)
 *  adds functions to access /proc/stat
 *
 */


#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <time.h>
#include <sys/time.h>

#include "debug.h"
#include "plugin.h"
#include "hash.h"


static HASH Stat = { 0, 0, NULL };

static int renew(int msec)
{
  static struct timeval end = {0, 0};
  struct timeval now;

  // update every 10 msec
  gettimeofday(&now, NULL);
  if (now.tv_sec==end.tv_sec?now.tv_usec<end.tv_usec:now.tv_sec<end.tv_sec) {
    return 0;
  }
  end.tv_sec  = now.tv_sec;
  end.tv_usec = now.tv_usec + 1000*msec;
  while (end.tv_usec > 1000000) {
    end.tv_usec -= 1000000;
    end.tv_sec++;
  }
  return 1;
}


static void my_hash_set (char *key1, char *key2, char *val) 
{
  char key[16];
  
  snprintf (key, sizeof(key), "%s.%s", key1, key2);
  debug ("Michi: hash_set(%s, %s)", key, val);
  hash_set (&Stat, key, val);
}


static int parse_proc_stat (void)
{
  FILE *stream;
  
  // update every 10 msec
  if (!renew(10)) return 0;
  
  stream=fopen("/proc/stat", "r");
  if (stream==NULL) {
    error ("fopen(/proc/stat) failed: %s", strerror(errno));
    return -1;
  }
  
  while (!feof(stream)) {
    char buffer[256];
    fgets (buffer, sizeof(buffer), stream);
    
    if (strncmp(buffer, "cpu", 3)==0) {
      char *cpu;
      cpu=strtok(buffer, " \t");
      my_hash_set (cpu, "user",   strtok(NULL, " \t"));
      my_hash_set (cpu, "nice",   strtok(NULL, " \t"));
      my_hash_set (cpu, "system", strtok(NULL, " \t"));
      my_hash_set (cpu, "idle",   strtok(NULL, " \t"));
    } 
    else if (strncmp(buffer, "page ", 5)==0) {
      
    } 
    else if (strncmp(buffer, "swap ", 5)==0) {
    } 
    else if (strncmp(buffer, "intr ", 5)==0) {
    } 
    else if (strncmp(buffer, "disk_io:", 8)==0) {
    } 
    else if (strncmp(buffer, "ctxt ", 5)==0) {
    } 
    else if (strncmp(buffer, "btime ", 5)==0) {
    } 
    else if (strncmp(buffer, "processes ", 5)==0) {
    } 
    else {
      error ("unknown line <%s> from /proc/stat");
    }
  }
  fclose (stream);
  return 0;
}

static void my_proc_stat (RESULT *result, RESULT *arg1)
{
  char *key, *val;
  
  if (parse_proc_stat()<0) {
    SetResult(&result, R_STRING, ""); 
    return;
  }

  key=R2S(arg1);
  val=hash_get(&Stat, key);
  if (val==NULL) val="";

  SetResult(&result, R_STRING, val); 
}


int plugin_init_proc_stat (void)
{
  AddFunction ("stat", 1, my_proc_stat);
  return 0;
}