ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/os_info.c
Revision: 1.4
Committed: Fri Mar 7 13:20:46 2003 UTC (21 years, 2 months ago) by pajs
Content type: text/plain
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_3_4, LIBSTATGRAB_0_3_3, LIBSTATGRAB_0_3_2, LIBSTATGRAB_0_3_1, LIBSTATGRAB_0_3
Changes since 1.3: +20 -2 lines
Log Message:
Made it work with linux :)

File Contents

# Content
1 /*
2 * i-scream central monitoring system
3 * http://www.i-scream.org.uk
4 * Copyright (C) 2000-2002 i-scream
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <sys/utsname.h>
26 #include "statgrab.h"
27 #ifdef SOLARIS
28 #include <kstat.h>
29 #include <time.h>
30 #endif
31 #ifdef LINUX
32 #include <stdio.h>
33 #endif
34
35 general_stat_t *get_general_stats(){
36
37 static general_stat_t general_stat;
38 static struct utsname os;
39
40 #ifdef SOLARIS
41 time_t boottime,curtime;
42 kstat_ctl_t *kc;
43 kstat_t *ksp;
44 kstat_named_t *kn;
45 #endif
46 #ifdef LINUX
47 FILE *f;
48 #endif
49
50 if((uname(&os)) < 0){
51 return NULL;
52 }
53
54 general_stat.os_name = os.sysname;
55 general_stat.os_release = os.release;
56 general_stat.os_version = os.version;
57 general_stat.platform = os.machine;
58 general_stat.hostname = os.nodename;
59
60 /* get uptime */
61 #ifdef SOLARIS
62 if ((kc = kstat_open()) == NULL) {
63 return NULL;
64 }
65 if((ksp=kstat_lookup(kc, "unix", -1, "system_misc"))==NULL){
66 return NULL;
67 }
68 if (kstat_read(kc, ksp, 0) == -1) {
69 return NULL;
70 }
71 if((kn=kstat_data_lookup(ksp, "boot_time")) == NULL){
72 return NULL;
73 }
74 boottime=(kn->value.ui32);
75
76 kstat_close(kc);
77
78 time(&curtime);
79 general_stat.uptime = curtime - boottime;
80 #endif
81 #ifdef LINUX
82 if ((f=fopen("/proc/uptime", "r")) == NULL) {
83 return NULL;
84 }
85 if((fscanf(f,"%lu %*d",&general_stat.uptime)) != 1){
86 return NULL;
87 }
88 fclose(f);
89 #endif
90
91 return &general_stat;
92
93 }