2004-06-22 06:37:04 +08:00
|
|
|
use strict;
|
|
|
|
use File::Path;
|
|
|
|
|
2006-06-27 20:44:52 +08:00
|
|
|
my $package = 'org.hyperic.sigar';
|
2006-06-23 01:04:48 +08:00
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
my %platforms = (
|
|
|
|
A => "AIX",
|
|
|
|
D => "Darwin",
|
|
|
|
F => "FreeBSD",
|
|
|
|
H => "HPUX",
|
|
|
|
L => "Linux",
|
|
|
|
S => "Solaris",
|
|
|
|
W => "Win32",
|
|
|
|
);
|
|
|
|
|
|
|
|
sub supported_platforms {
|
|
|
|
my $p = shift;
|
|
|
|
return 'Undocumented' unless $p;
|
|
|
|
if ($p eq '*') {
|
|
|
|
return 'All';
|
|
|
|
}
|
|
|
|
|
|
|
|
my @platforms;
|
|
|
|
for (split //, $p) {
|
|
|
|
push @platforms, $platforms{$_};
|
|
|
|
}
|
|
|
|
|
|
|
|
return join ", ", @platforms;
|
|
|
|
}
|
|
|
|
|
|
|
|
#this script generates jni code and java classes for the following table
|
|
|
|
|
|
|
|
my %classes = (
|
|
|
|
Mem => [
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Total system memory',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => 'lsattr -El sys0 -a realmem',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'ram', type => 'Long',
|
|
|
|
desc => 'System Random Access Memory (in MB)',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => 'lsattr -El sys0 -a realmem',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'cat /proc/mtrr | head -1',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'used', type => 'Long',
|
|
|
|
desc => 'Total used system memory',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'free', type => 'Long',
|
2004-11-20 10:11:12 +08:00
|
|
|
desc => 'Total free system memory (e.g. Linux plus cached)',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'actual_used', type => 'Long',
|
|
|
|
desc => 'Actual total used system memory (e.g. Linux minus buffers)',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'actual_free', type => 'Long',
|
|
|
|
desc => 'Actual total free system memory',
|
2004-06-22 06:37:04 +08:00
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
Swap => [
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Total system swap',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => 'lsps -s',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => 'swap -s',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'used', type => 'Long',
|
|
|
|
desc => 'Total used system swap',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => 'lsps -s',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => 'swap -s',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'free', type => 'Long',
|
|
|
|
desc => 'Total free system swap',
|
|
|
|
plat => '*',
|
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'free',
|
|
|
|
Solaris => 'swap -s',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
Cpu => [
|
|
|
|
{
|
|
|
|
name => 'user', type => 'Long',
|
|
|
|
desc => 'Total system cpu user time',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'sys', type => 'Long',
|
|
|
|
desc => 'Total system cpu kernel time',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'nice', type => 'Long',
|
|
|
|
desc => 'Total system cpu nice time',
|
|
|
|
plat => 'DFHL'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'idle', type => 'Long',
|
|
|
|
desc => 'Total system cpu idle time',
|
|
|
|
plat => '*'
|
|
|
|
},
|
2004-11-22 09:51:34 +08:00
|
|
|
{
|
|
|
|
name => 'wait', type => 'Long',
|
|
|
|
desc => 'Total system cpu io wait time',
|
|
|
|
plat => 'ALHS'
|
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Total system cpu time',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
CpuInfo => [
|
|
|
|
{
|
|
|
|
name => 'vendor', type => 'String',
|
|
|
|
desc => 'CPU vendor id',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'AFLHSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'model', type => 'String',
|
|
|
|
desc => 'CPU model',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'AFLHSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'mhz', type => 'Int',
|
|
|
|
desc => 'CPU speed',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'AFHLSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'cache_size', type => 'Long',
|
|
|
|
desc => 'CPU cache size',
|
|
|
|
plat => 'AL'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
Uptime => [
|
|
|
|
{
|
|
|
|
name => 'uptime', type => 'Double',
|
|
|
|
desc => 'Time since machine started in seconds',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ProcMem => [
|
|
|
|
{
|
|
|
|
name => 'size', type => 'Long',
|
|
|
|
desc => 'Total process virtual memory',
|
2006-03-04 10:34:01 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'resident', type => 'Long',
|
2006-03-04 10:34:01 +08:00
|
|
|
desc => 'Total process resident memory',
|
2005-11-02 03:16:12 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'share', type => 'Long',
|
|
|
|
desc => 'Total process shared memory',
|
2004-07-22 07:29:48 +08:00
|
|
|
plat => 'AHLS'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
2005-11-24 01:39:28 +08:00
|
|
|
{
|
|
|
|
name => 'minor_faults', type => 'Long',
|
2005-11-24 02:04:16 +08:00
|
|
|
desc => 'non i/o page faults',
|
|
|
|
plat => 'AHLS'
|
2005-11-24 01:39:28 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'major_faults', type => 'Long',
|
2005-11-24 02:04:16 +08:00
|
|
|
desc => 'i/o page faults',
|
|
|
|
plat => 'AHLS'
|
2005-11-24 01:39:28 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'page_faults', type => 'Long',
|
2005-11-24 02:04:16 +08:00
|
|
|
desc => 'Total number of page faults',
|
2005-11-29 01:50:43 +08:00
|
|
|
plat => 'ADHLSW'
|
2005-11-24 01:39:28 +08:00
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
],
|
|
|
|
ProcCred => [
|
|
|
|
{
|
|
|
|
name => 'uid', type => 'Long',
|
|
|
|
desc => 'Process user id',
|
|
|
|
plat => 'ADFHLS'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'gid', type => 'Long',
|
|
|
|
desc => 'Process group id',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'ADFHLS'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'euid', type => 'Long',
|
|
|
|
desc => 'Process effective user id',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'ADFHLS'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'egid', type => 'Long',
|
|
|
|
desc => 'Process effective group id',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'ADFHLS'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
ProcCredName => [
|
|
|
|
{
|
|
|
|
name => 'user', type => 'String',
|
|
|
|
desc => 'Process owner user name',
|
2004-07-22 07:29:48 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'group', type => 'String',
|
|
|
|
desc => 'Process owner group name',
|
2004-07-22 07:29:48 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
ProcTime => [
|
|
|
|
{
|
|
|
|
name => 'start_time', type => 'Long',
|
|
|
|
desc => 'Time process was started in seconds',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
2004-08-21 08:13:13 +08:00
|
|
|
name => 'user', type => 'Long',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => 'Process cpu user time',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
2004-08-21 08:13:13 +08:00
|
|
|
name => 'sys', type => 'Long',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => 'Process cpu kernel time',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
2004-08-21 08:25:07 +08:00
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Process cpu time (sum of User and Sys)',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => '*'
|
2004-08-21 08:25:07 +08:00
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
],
|
|
|
|
ProcState => [
|
|
|
|
{
|
|
|
|
name => 'state', type => 'Char',
|
|
|
|
desc => 'Process state (Running, Zombie, etc.)',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'name', type => 'String',
|
|
|
|
desc => 'Name of the process program',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'ppid', type => 'Long',
|
|
|
|
desc => 'Process parent process id',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => '*'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tty', type => 'Int',
|
|
|
|
desc => 'Device number of rocess controling terminal',
|
2004-07-22 07:29:48 +08:00
|
|
|
plat => 'AHLS'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'nice', type => 'Int',
|
|
|
|
desc => 'Nice value of process',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'ADFHLS'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'priority', type => 'Int',
|
|
|
|
desc => 'Kernel scheduling priority of process',
|
2004-07-22 07:29:48 +08:00
|
|
|
plat => 'DFHLSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
2005-11-23 05:45:45 +08:00
|
|
|
{
|
|
|
|
name => 'threads', type => 'Long',
|
|
|
|
desc => 'Number of active threads',
|
2005-11-23 08:41:33 +08:00
|
|
|
plat => 'AHLSW'
|
2005-11-23 05:45:45 +08:00
|
|
|
},
|
2005-11-23 09:16:52 +08:00
|
|
|
{
|
|
|
|
name => 'processor', type => 'Int',
|
|
|
|
desc => 'Processor number last run on',
|
2005-11-24 00:27:42 +08:00
|
|
|
plat => 'AHLS'
|
2005-11-23 09:16:52 +08:00
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
],
|
|
|
|
ProcFd => [
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Total number of open file descriptors',
|
|
|
|
plat => 'AHLSW'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ProcStat => [
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Total number of processes',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ProcExe => [
|
|
|
|
{
|
|
|
|
name => 'name', type => 'String',
|
|
|
|
desc => 'Name of process executable',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'FLSW',
|
2004-06-22 06:37:04 +08:00
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'ls -l /proc/$$/exe',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'cwd', type => 'String',
|
|
|
|
desc => 'Name of process current working directory',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'LSW',
|
2004-06-22 06:37:04 +08:00
|
|
|
cmd => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'ls -l /proc/$$/cwd',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2004-11-17 12:56:18 +08:00
|
|
|
ThreadCpu => [
|
|
|
|
{
|
|
|
|
name => 'user', type => 'Long',
|
|
|
|
desc => 'Thread cpu user time',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'AHLSW'
|
2004-11-17 12:56:18 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'sys', type => 'Long',
|
|
|
|
desc => 'Thread cpu kernel time',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'AHLSW'
|
2004-11-17 12:56:18 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Thread cpu time (sum of User and Sys)',
|
2005-02-13 14:49:16 +08:00
|
|
|
plat => 'AHLSW'
|
2004-11-17 12:56:18 +08:00
|
|
|
},
|
|
|
|
],
|
2004-06-22 06:37:04 +08:00
|
|
|
FileSystem => [
|
|
|
|
{
|
|
|
|
name => 'dir_name', type => 'String',
|
|
|
|
desc => 'Directory name',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'dev_name', type => 'String',
|
|
|
|
desc => 'Device name',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'type_name', type => 'String',
|
|
|
|
desc => 'File system generic type name',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'sys_type_name', type => 'String',
|
|
|
|
desc => 'File system os specific type name',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'type', type => 'Int',
|
|
|
|
desc => 'File system type',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'flags', type => 'Long',
|
|
|
|
desc => 'File system flags',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
FileSystemUsage => [
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
desc => 'Total bytes of filesystem',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'free', type => 'Long',
|
2005-04-28 06:39:05 +08:00
|
|
|
desc => 'Total free bytes on filesystem',
|
2004-06-22 06:37:04 +08:00
|
|
|
plat => '*'
|
|
|
|
},
|
2005-04-27 03:55:21 +08:00
|
|
|
{
|
|
|
|
name => 'used', type => 'Long',
|
|
|
|
desc => 'Total used bytes on filesystem',
|
|
|
|
plat => '*'
|
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
{
|
|
|
|
name => 'avail', type => 'Long',
|
2005-04-28 06:39:05 +08:00
|
|
|
desc => 'Total free bytes on filesystem available to caller',
|
2004-06-22 06:37:04 +08:00
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'files', type => 'Long',
|
|
|
|
desc => 'Total number of file nodes on the filesystem',
|
|
|
|
plat => 'ADFHLS'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'free_files', type => 'Long',
|
|
|
|
desc => 'Number of free file nodes on the filesystem',
|
|
|
|
plat => 'ADFHLS'
|
|
|
|
},
|
2004-12-05 09:18:57 +08:00
|
|
|
{
|
|
|
|
name => 'disk_reads', type => 'Long',
|
|
|
|
desc => 'Number of physical disk reads',
|
2005-04-07 09:19:31 +08:00
|
|
|
plat => 'AFHLSW'
|
2004-12-05 09:18:57 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'disk_writes', type => 'Long',
|
|
|
|
desc => 'Number of physical disk writes',
|
2005-04-07 09:19:31 +08:00
|
|
|
plat => 'AFHLSW'
|
2004-12-05 09:18:57 +08:00
|
|
|
},
|
2005-04-07 09:24:06 +08:00
|
|
|
{
|
|
|
|
name => 'disk_read_bytes', type => 'Long',
|
|
|
|
desc => 'Number of physical disk bytes read',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'disk_write_bytes', type => 'Long',
|
|
|
|
desc => 'Number of physical disk bytes written',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'disk_queue', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
{
|
|
|
|
name => 'use_percent', type => 'Double',
|
|
|
|
desc => 'Percent of disk used',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
FileAttrs => [
|
|
|
|
{
|
|
|
|
name => 'permissions', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'type', type => 'Int',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'uid', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'gid', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'inode', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'device', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'nlink', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'size', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'atime', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'ctime', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'mtime', type => 'Long',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
DirStat => [
|
|
|
|
{
|
|
|
|
name => 'total', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'files', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'subdirs', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'symlinks', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'chrdevs', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'blkdevs', type => 'Long',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'sockets', type => 'Long',
|
|
|
|
},
|
2005-12-14 09:28:44 +08:00
|
|
|
{
|
|
|
|
name => 'disk_usage', type => 'Long',
|
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
],
|
2005-07-12 04:21:48 +08:00
|
|
|
NetInfo => [
|
|
|
|
{
|
|
|
|
name => 'default_gateway', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
2005-07-12 06:43:56 +08:00
|
|
|
{
|
|
|
|
name => 'host_name', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
2005-07-12 04:21:48 +08:00
|
|
|
{
|
2005-07-12 04:41:57 +08:00
|
|
|
name => 'domain_name', type => 'String',
|
2005-07-12 04:21:48 +08:00
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'primary_dns', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'secondary_dns', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
],
|
2004-06-22 06:37:04 +08:00
|
|
|
NetRoute => [
|
|
|
|
{
|
2006-07-05 03:22:05 +08:00
|
|
|
name => 'destination', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => 'HLW'
|
|
|
|
},
|
|
|
|
{
|
2006-07-05 03:22:05 +08:00
|
|
|
name => 'gateway', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => 'HLW'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'flags', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'refcnt', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'use', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'metric', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
2006-07-05 03:22:05 +08:00
|
|
|
name => 'mask', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => 'HL'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'mtu', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'window', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'irtt', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'ifname', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => 'L'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
NetInterfaceConfig => [
|
|
|
|
{
|
|
|
|
name => 'name', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'hwaddr', type => 'String',
|
2005-11-19 02:08:49 +08:00
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'type', type => 'String',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
2006-03-05 06:28:09 +08:00
|
|
|
{
|
|
|
|
name => 'description', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
{
|
2006-07-05 01:32:08 +08:00
|
|
|
name => 'address', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
2006-07-05 01:32:08 +08:00
|
|
|
name => 'destination', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
2006-07-05 01:32:08 +08:00
|
|
|
name => 'broadcast', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
2006-07-05 01:32:08 +08:00
|
|
|
name => 'netmask', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'flags', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'mtu', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'DFL'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'metric', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => 'DFL'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
NetInterfaceStat => [
|
|
|
|
{
|
|
|
|
name => 'rx_bytes', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'rx_packets', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'rx_errors', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'rx_dropped', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'rx_overruns', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'rx_frame', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_bytes', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_packets', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => '*'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_errors', type => 'Long',
|
|
|
|
desc => '*',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_dropped', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_overruns', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_collisions', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'tx_carrier', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
],
|
|
|
|
NetConnection => [
|
|
|
|
{
|
|
|
|
name => 'local_port', type => 'Long',
|
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
2006-07-05 00:35:27 +08:00
|
|
|
name => 'local_address', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'remote_port', type => 'Long',
|
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
2006-07-05 00:35:27 +08:00
|
|
|
name => 'remote_address', type => 'NetAddress',
|
2004-06-22 06:37:04 +08:00
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'type', type => 'Int',
|
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFSW'
|
2004-06-22 06:37:04 +08:00
|
|
|
},
|
2005-03-12 01:15:24 +08:00
|
|
|
{
|
|
|
|
name => 'state', type => 'Int',
|
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFSW'
|
2005-03-12 01:15:24 +08:00
|
|
|
},
|
2005-03-12 12:50:47 +08:00
|
|
|
{
|
|
|
|
name => 'send_queue', type => 'Long',
|
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFS'
|
2005-03-12 12:50:47 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'receive_queue', type => 'Long',
|
|
|
|
desc => '',
|
2005-03-16 03:00:08 +08:00
|
|
|
plat => 'LFS'
|
2005-03-12 12:50:47 +08:00
|
|
|
},
|
2004-06-22 06:37:04 +08:00
|
|
|
],
|
2005-07-08 09:11:42 +08:00
|
|
|
ResourceLimit => [
|
|
|
|
{
|
|
|
|
name => 'cpu_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'cpu_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'file_size_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'file_size_max',
|
|
|
|
},
|
2005-07-22 10:26:48 +08:00
|
|
|
{
|
|
|
|
name => 'pipe_size_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'pipe_size_cur',
|
|
|
|
},
|
2005-07-08 09:11:42 +08:00
|
|
|
{
|
|
|
|
name => 'data_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'data_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'stack_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'stack_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'core_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'core_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'memory_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'memory_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'processes_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'processes_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'open_files_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'open_files_max',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'virtual_memory_cur',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'virtual_memory_max',
|
|
|
|
},
|
|
|
|
],
|
2005-02-22 09:51:21 +08:00
|
|
|
Who => [
|
|
|
|
{
|
|
|
|
name => 'user', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'device', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'host', type => 'String',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name => 'time', type => 'Long',
|
|
|
|
desc => '',
|
|
|
|
plat => ''
|
|
|
|
},
|
|
|
|
],
|
2004-06-22 06:37:04 +08:00
|
|
|
);
|
|
|
|
|
2005-12-14 10:58:26 +08:00
|
|
|
$classes{DirUsage} = $classes{DirStat};
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
my %cmds = (
|
|
|
|
Mem => {
|
|
|
|
AIX => 'top',
|
|
|
|
Darwin => 'top',
|
|
|
|
FreeBSD => 'top',
|
|
|
|
HPUX => 'top',
|
|
|
|
Linux => 'top',
|
|
|
|
Solaris => 'top',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
Swap => {
|
|
|
|
AIX => 'top',
|
|
|
|
Darwin => 'top',
|
|
|
|
FreeBSD => 'top',
|
|
|
|
HPUX => 'top',
|
|
|
|
Linux => 'top',
|
|
|
|
Solaris => 'top',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
Cpu => {
|
|
|
|
AIX => 'top',
|
|
|
|
Darwin => 'top',
|
|
|
|
FreeBSD => 'top',
|
|
|
|
HPUX => 'top',
|
|
|
|
Linux => 'top',
|
|
|
|
Solaris => 'top',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
CpuInfo => {
|
|
|
|
AIX => 'lsattr -El proc0',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'cat /proc/cpuinfo',
|
|
|
|
Solaris => 'psrinfo -v',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
Uptime => {
|
|
|
|
AIX => 'uptime',
|
|
|
|
Darwin => 'uptime',
|
|
|
|
FreeBSD => 'uptime',
|
|
|
|
HPUX => 'uptime',
|
|
|
|
Linux => 'uptime',
|
|
|
|
Solaris => 'uptime',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
ProcMem => {
|
|
|
|
AIX => 'top, ps',
|
|
|
|
Darwin => 'top, ps',
|
|
|
|
FreeBSD => 'top, ps',
|
|
|
|
HPUX => 'top, ps',
|
|
|
|
Linux => 'top, ps',
|
|
|
|
Solaris => 'top, ps',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
ProcCred => {
|
|
|
|
AIX => 'top, ps',
|
|
|
|
Darwin => 'top, ps',
|
|
|
|
FreeBSD => 'top, ps',
|
|
|
|
HPUX => 'top, ps',
|
|
|
|
Linux => 'top, ps',
|
|
|
|
Solaris => 'top, ps',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
ProcTime => {
|
|
|
|
AIX => 'top, ps',
|
|
|
|
Darwin => 'top, ps',
|
|
|
|
FreeBSD => 'top, ps',
|
|
|
|
HPUX => 'top, ps',
|
|
|
|
Linux => 'top, ps',
|
|
|
|
Solaris => 'top, ps',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
ProcState => {
|
|
|
|
AIX => 'top, ps',
|
|
|
|
Darwin => 'top, ps',
|
|
|
|
FreeBSD => 'top, ps',
|
|
|
|
HPUX => 'top, ps',
|
|
|
|
Linux => 'top, ps',
|
|
|
|
Solaris => 'top, ps',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
ProcFd => {
|
|
|
|
AIX => 'lsof',
|
|
|
|
Darwin => 'lsof',
|
|
|
|
FreeBSD => 'lsof',
|
|
|
|
HPUX => 'lsof',
|
|
|
|
Linux => 'lsof',
|
|
|
|
Solaris => 'lsof',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
ProcStat => {
|
|
|
|
AIX => 'top, ps',
|
|
|
|
Darwin => 'top, ps',
|
|
|
|
FreeBSD => 'top, ps',
|
|
|
|
HPUX => 'top, ps',
|
|
|
|
Linux => 'top, ps',
|
|
|
|
Solaris => 'top, ps',
|
|
|
|
Win32 => 'taskman',
|
|
|
|
},
|
|
|
|
FileSystemUsage => {
|
|
|
|
AIX => 'df',
|
|
|
|
Darwin => 'df',
|
|
|
|
FreeBSD => 'df',
|
|
|
|
HPUX => 'df',
|
|
|
|
Linux => 'df',
|
|
|
|
Solaris => 'df',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
NetRoute => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'route -n',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
NetInterfaceConfig => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'ifconfig',
|
|
|
|
Solaris => 'ifconfig -a',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
NetInterfaceStat => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '/usr/sbin/lanadmin -g mibstats 0, netstat -i',
|
|
|
|
Linux => 'ifconfig',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
NetConnection => {
|
|
|
|
AIX => '',
|
|
|
|
Darwin => '',
|
|
|
|
FreeBSD => '',
|
|
|
|
HPUX => '',
|
|
|
|
Linux => 'netstat',
|
|
|
|
Solaris => '',
|
|
|
|
Win32 => '',
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
my %jfields = (
|
|
|
|
Long => "J",
|
|
|
|
Double => "D",
|
|
|
|
Int => "I",
|
|
|
|
Char => "C",
|
|
|
|
String => "Ljava/lang/String;",
|
|
|
|
);
|
|
|
|
|
|
|
|
my %pfields = (
|
2005-05-14 08:31:25 +08:00
|
|
|
Long => "sigar_uint64_t",
|
2004-06-22 06:37:04 +08:00
|
|
|
Double => "double",
|
|
|
|
Int => "IV",
|
|
|
|
Char => "char",
|
|
|
|
String => "char *",
|
2006-07-05 03:24:22 +08:00
|
|
|
NetAddress => "Sigar::NetAddress",
|
2004-06-22 06:37:04 +08:00
|
|
|
);
|
|
|
|
|
2006-07-05 03:24:22 +08:00
|
|
|
$jfields{'NetAddress'} = $jfields{'String'};
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
my %jinit = (
|
|
|
|
String => 'null',
|
|
|
|
);
|
|
|
|
|
|
|
|
my %jtype = (
|
|
|
|
String => 'String',
|
|
|
|
);
|
|
|
|
|
|
|
|
#alias
|
|
|
|
for my $j (\%jfields, \%jinit, \%jtype) {
|
2006-07-05 03:24:22 +08:00
|
|
|
$j->{'NetAddress'} = $j->{'String'};
|
2004-06-22 06:37:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
my %func_alias = (
|
|
|
|
);
|
|
|
|
|
|
|
|
my $cfile = 'javasigar_generated.c';
|
|
|
|
my $hfile = 'javasigar_generated.h';
|
|
|
|
my $pfile = 'Sigar_generated.xs';
|
2005-08-28 13:49:29 +08:00
|
|
|
my $dfile = 'javasigar_generated.def';
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
my $build_src = $ARGV[0] or die "usage: $0 build_directory";
|
|
|
|
|
|
|
|
if (! -d $build_src) {
|
|
|
|
die "$build_src: $!";
|
|
|
|
}
|
|
|
|
|
2005-05-08 03:01:20 +08:00
|
|
|
if ((stat $0)[9] < (stat "$build_src/$cfile")[9]) {
|
|
|
|
print "$cfile unchanged\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "generating $cfile\n";
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
chdir $build_src;
|
|
|
|
|
2006-06-27 20:44:52 +08:00
|
|
|
my $jsrc = 'org/hyperic/sigar';
|
2004-06-22 06:37:04 +08:00
|
|
|
mkpath([$jsrc], 0, 0755) unless -d $jsrc;
|
|
|
|
|
|
|
|
open CFH, ">$cfile" or die "open $cfile: $!";
|
|
|
|
open HFH, ">$hfile" or die "open $hfile: $!";
|
|
|
|
open PFH, ">$pfile" or die "open $pfile: $!";
|
2005-08-28 13:49:29 +08:00
|
|
|
open DFH, ">$dfile" or die "open $dfile: $!";
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
my $datestamp = scalar localtime;
|
|
|
|
|
|
|
|
my $warning = <<EOF;
|
|
|
|
|
|
|
|
/*****************************************************
|
|
|
|
* WARNING: this file was generated by $0
|
|
|
|
* on $datestamp, any changes
|
|
|
|
* made here will be lost.
|
|
|
|
*****************************************************/
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
print CFH $warning;
|
|
|
|
print HFH $warning;
|
|
|
|
|
|
|
|
#XXX kinda ugly having this here
|
|
|
|
#will consider moving elsewhere if there
|
|
|
|
#are more cases like this.
|
|
|
|
my %extra_code = (
|
|
|
|
FileSystem => <<'EOF',
|
|
|
|
public static final int TYPE_UNKNOWN = 0;
|
|
|
|
public static final int TYPE_NONE = 1;
|
|
|
|
public static final int TYPE_LOCAL_DISK = 2;
|
|
|
|
public static final int TYPE_NETWORK = 3;
|
|
|
|
public static final int TYPE_RAM_DISK = 4;
|
|
|
|
public static final int TYPE_CDROM = 5;
|
|
|
|
public static final int TYPE_SWAP = 6;
|
2005-07-21 11:04:27 +08:00
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return this.getDirName();
|
|
|
|
}
|
2004-06-22 06:37:04 +08:00
|
|
|
EOF
|
|
|
|
NetConnection => <<'EOF',
|
|
|
|
public native String getTypeString();
|
2005-03-12 01:15:24 +08:00
|
|
|
|
2005-05-07 14:01:32 +08:00
|
|
|
public native static String getStateString(int state);
|
|
|
|
|
|
|
|
public String getStateString() {
|
|
|
|
return getStateString(this.state);
|
|
|
|
}
|
2004-06-22 06:37:04 +08:00
|
|
|
EOF
|
|
|
|
Mem => <<'EOF',
|
|
|
|
public String toString() {
|
|
|
|
return
|
|
|
|
"Mem: " +
|
|
|
|
(this.total / 1024) + "K av, " +
|
|
|
|
(this.used / 1024) + "K used, " +
|
2006-07-01 10:47:09 +08:00
|
|
|
(this.free / 1024) + "K free";
|
2004-06-22 06:37:04 +08:00
|
|
|
}
|
2005-07-22 07:34:36 +08:00
|
|
|
EOF
|
|
|
|
ResourceLimit => <<'EOF',
|
|
|
|
public static native long INFINITY();
|
2004-06-22 06:37:04 +08:00
|
|
|
EOF
|
|
|
|
Swap => <<'EOF',
|
|
|
|
public String toString() {
|
|
|
|
return
|
|
|
|
"Swap: " +
|
|
|
|
(this.total / 1024) + "K av, " +
|
|
|
|
(this.used / 1024) + "K used, " +
|
|
|
|
(this.free / 1024) + "K free";
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
ProcState => <<'EOF',
|
|
|
|
public static final char SLEEP = 'S';
|
|
|
|
public static final char RUN = 'R';
|
|
|
|
public static final char STOP = 'T';
|
|
|
|
public static final char ZOMBIE = 'Z';
|
|
|
|
public static final char IDLE = 'D';
|
2006-03-04 10:34:01 +08:00
|
|
|
EOF
|
|
|
|
ProcMem => <<'EOF',
|
|
|
|
/**
|
|
|
|
* @deprecated
|
2006-04-01 02:14:08 +08:00
|
|
|
* @see #getResident()
|
2006-03-04 10:34:01 +08:00
|
|
|
*/
|
|
|
|
public long getRss() { return getResident(); }
|
|
|
|
/**
|
|
|
|
* @deprecated
|
2006-04-01 02:14:08 +08:00
|
|
|
* @see #getSize()
|
2006-03-04 10:34:01 +08:00
|
|
|
*/
|
|
|
|
public long getVsize() { return getSize(); }
|
2004-06-22 06:37:04 +08:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
|
2005-12-14 10:58:26 +08:00
|
|
|
my %has_name_arg = map { $_, 1 } qw(FileSystemUsage FileAttrs DirStat DirUsage
|
2004-06-22 06:37:04 +08:00
|
|
|
NetInterfaceConfig NetInterfaceStat);
|
|
|
|
my %proc_no_arg = map { $_, 1 } qw(stat);
|
2005-02-22 09:51:21 +08:00
|
|
|
my %get_not_impl = map { $_, 1 } qw(net_route net_connection who
|
2004-06-22 06:37:04 +08:00
|
|
|
cpu_info file_system); #list funcs only
|
|
|
|
|
|
|
|
my %field_cache;
|
|
|
|
my $i = 0;
|
|
|
|
while (my($class, $fields) = each %classes) {
|
|
|
|
next if $field_cache{$class}++;
|
|
|
|
print HFH "#define JSIGAR_FIELDS_\U$class $i\n";
|
|
|
|
$i++;
|
|
|
|
my $n = 0;
|
|
|
|
for my $field (@$fields) {
|
|
|
|
my $name = $field->{name};
|
|
|
|
print HFH "# define JSIGAR_FIELDS_\U${class}_${name} $n\n";
|
|
|
|
$n++;
|
|
|
|
}
|
|
|
|
print HFH "# define JSIGAR_FIELDS_\U${class}_MAX $n\n";
|
|
|
|
}
|
|
|
|
print HFH "#define JSIGAR_FIELDS_MAX $i\n";
|
|
|
|
|
|
|
|
while (my($name, $fields) = each %classes) {
|
2006-06-23 01:04:48 +08:00
|
|
|
my $java_class = "$package.$name";
|
2004-06-22 06:37:04 +08:00
|
|
|
(my $jni_prefix = "Java.$java_class") =~ s/\./_/g;
|
|
|
|
my $class = $name;
|
|
|
|
my $cname;
|
|
|
|
my $args_proto = "";
|
|
|
|
my($arg, $arg_type);
|
|
|
|
my $args = "";
|
|
|
|
my $is_proc = 0;
|
|
|
|
my $decl_string = "";
|
|
|
|
my $get_string = "";
|
|
|
|
my $release_string = "";
|
|
|
|
|
|
|
|
my $jname = lcfirst $name;
|
|
|
|
|
|
|
|
#example: FileSystemUsage -> file_system_usage
|
|
|
|
($cname = $name) =~ s/([a-z])([A-Z])/$1_$2/g;
|
|
|
|
$cname = lc $cname;
|
|
|
|
|
2004-11-17 12:56:18 +08:00
|
|
|
if ($cname =~ /^proc_(\w+)/ or $cname =~ /^thread_cpu/) {
|
2004-06-22 06:37:04 +08:00
|
|
|
unless ($proc_no_arg{$1}) {
|
|
|
|
$args_proto = ", jlong pid";
|
|
|
|
$arg_type = 'sigar_pid_t';
|
|
|
|
$arg = 'pid';
|
|
|
|
$args = " $arg, ";
|
|
|
|
$is_proc = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($has_name_arg{$name}) {
|
|
|
|
#hallo freulien
|
|
|
|
$args_proto = ", jstring jname";
|
|
|
|
$arg_type = 'const char *';
|
|
|
|
$decl_string = "const char *name;";
|
|
|
|
$get_string = "name = JENV->GetStringUTFChars(env, jname, 0);";
|
|
|
|
$release_string = "JENV->ReleaseStringUTFChars(env, jname, name);";
|
|
|
|
$arg = 'name';
|
|
|
|
$args = " $arg, ";
|
|
|
|
}
|
|
|
|
|
|
|
|
my $sigar_prefix = join '_', 'sigar', $cname;
|
|
|
|
|
|
|
|
my $sigar_function = join '_', $sigar_prefix, 'get';
|
|
|
|
$sigar_function = $func_alias{$sigar_function} || $sigar_function;
|
|
|
|
my $sigar_type = join '_', $sigar_prefix, 't';
|
|
|
|
|
2004-11-22 03:11:55 +08:00
|
|
|
my $nativefunc = join '_', $jni_prefix, 'gather';
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
my $proto = join "\n",
|
|
|
|
"JNIEXPORT void JNICALL $nativefunc",
|
|
|
|
"(JNIEnv *env, jobject obj, jobject sigar_obj$args_proto)";
|
|
|
|
|
|
|
|
my $jfile = "$name.java";
|
|
|
|
open JFH, ">$jsrc/$jfile" or die "open $jfile: $!";
|
|
|
|
print JFH $warning;
|
|
|
|
|
|
|
|
my $impl = ! $get_not_impl{$cname};
|
2005-08-28 13:49:29 +08:00
|
|
|
print DFH $nativefunc, "\n" if $impl;
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
print CFH <<EOF if $impl;
|
|
|
|
|
|
|
|
$proto;
|
|
|
|
|
|
|
|
$proto
|
|
|
|
{
|
|
|
|
$sigar_type s;
|
|
|
|
int status;
|
|
|
|
jclass cls = JENV->GetObjectClass(env, obj);
|
|
|
|
$decl_string
|
|
|
|
dSIGAR_VOID;
|
|
|
|
|
|
|
|
$get_string
|
|
|
|
|
|
|
|
status = $sigar_function(sigar,${args}&s);
|
|
|
|
|
|
|
|
$release_string
|
|
|
|
|
|
|
|
if (status != SIGAR_OK) {
|
2004-08-14 12:22:27 +08:00
|
|
|
sigar_throw_error(env, jsigar, status);
|
2004-06-22 06:37:04 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
my $jargs_proto = 'Sigar sigar';
|
|
|
|
my $jargs = 'sigar';
|
|
|
|
|
|
|
|
if ($is_proc) {
|
|
|
|
$jargs_proto .= ', long pid';
|
|
|
|
$jargs .= ", pid";
|
|
|
|
}
|
|
|
|
elsif ($has_name_arg{$name}) {
|
|
|
|
$jargs_proto .= ', String name';
|
|
|
|
$jargs .= ", name";
|
|
|
|
}
|
|
|
|
|
|
|
|
my $cache_field_ids = 1;
|
|
|
|
|
|
|
|
print JFH <<EOF;
|
2006-06-23 01:04:48 +08:00
|
|
|
package $package;
|
2004-06-22 06:37:04 +08:00
|
|
|
|
2005-11-24 03:33:12 +08:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
/**
|
|
|
|
* $name sigar class.
|
|
|
|
*/
|
|
|
|
public class $name {
|
|
|
|
|
2004-11-22 03:11:55 +08:00
|
|
|
public $name() { }
|
2004-06-22 06:37:04 +08:00
|
|
|
|
2004-11-22 03:11:55 +08:00
|
|
|
public native void gather($jargs_proto) throws SigarException;
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is not intended to be called directly.
|
|
|
|
* use Sigar.get$name() instead.
|
|
|
|
* \@exception SigarException on failure.
|
2006-06-23 01:04:48 +08:00
|
|
|
* \@see $package.Sigar#get$name
|
2004-06-22 06:37:04 +08:00
|
|
|
*/
|
|
|
|
static $name fetch($jargs_proto) throws SigarException {
|
|
|
|
$name $jname = new $name();
|
2004-11-22 03:11:55 +08:00
|
|
|
$jname.gather($jargs);
|
2004-06-22 06:37:04 +08:00
|
|
|
return $jname;
|
|
|
|
}
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2005-11-24 03:33:12 +08:00
|
|
|
my(@copy, @tostring);
|
2004-06-22 06:37:04 +08:00
|
|
|
my $define = "JAVA_SIGAR_SET_FIELDS_\U$name";
|
|
|
|
my @macro = ("\#define $define(cls, obj, s)");
|
|
|
|
my $init_define = "JAVA_SIGAR_INIT_FIELDS_\U$name";
|
|
|
|
my $field_class_ix = "JSIGAR_FIELDS_\U$name";
|
|
|
|
my $field_class_ix = "JSIGAR_FIELDS_\U$name";
|
|
|
|
my $field_class_max = $field_class_ix . '_MAX';
|
|
|
|
my $field_class = "jsigar->fields[$field_class_ix]";
|
|
|
|
|
|
|
|
my @init_fields = ("#define $init_define(cls)",
|
|
|
|
" if (!$field_class) {",
|
|
|
|
" $field_class = ",
|
|
|
|
" malloc(sizeof(*$field_class));",
|
|
|
|
" $field_class->classref = ",
|
|
|
|
" (jclass)JENV->NewGlobalRef(env, cls);",
|
|
|
|
" $field_class->ids = ",
|
|
|
|
" malloc($field_class_max *",
|
|
|
|
" sizeof(*$field_class->ids));");
|
|
|
|
|
|
|
|
my $perl_class = "Sigar::$class";
|
|
|
|
if (0) {
|
|
|
|
#insert into Sigar.xs
|
|
|
|
(my $perl_typedef = $perl_class) =~ s/:/_/g;
|
|
|
|
print "typedef $sigar_type * $perl_typedef;\n";
|
|
|
|
}
|
|
|
|
elsif (0) {
|
|
|
|
#insert into typemap
|
|
|
|
print "$perl_class T_PTROBJ\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
print PFH "\nMODULE = Sigar PACKAGE = Sigar PREFIX = sigar_\n\n";
|
|
|
|
|
|
|
|
my $xs_args = 'sigar';
|
|
|
|
if ($arg) {
|
|
|
|
$xs_args .= ", $arg";
|
|
|
|
}
|
|
|
|
|
|
|
|
print PFH <<EOF if $impl;
|
|
|
|
$perl_class
|
|
|
|
$cname($xs_args)
|
|
|
|
Sigar sigar
|
|
|
|
EOF
|
|
|
|
if ($arg) {
|
|
|
|
print PFH " $arg_type $arg\n" if $impl;
|
|
|
|
}
|
|
|
|
|
|
|
|
print PFH <<EOF if $impl;
|
|
|
|
|
|
|
|
PREINIT:
|
|
|
|
int status;
|
|
|
|
|
|
|
|
CODE:
|
|
|
|
RETVAL = safemalloc(sizeof(*RETVAL));
|
|
|
|
if ((status = $sigar_function($xs_args, RETVAL)) != SIGAR_OK) {
|
|
|
|
SIGAR_CROAK(sigar, "$cname");
|
|
|
|
}
|
|
|
|
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
EOF
|
|
|
|
|
|
|
|
print PFH <<EOF;
|
|
|
|
|
|
|
|
MODULE = Sigar PACKAGE = $perl_class PREFIX = sigar_
|
|
|
|
|
|
|
|
void
|
|
|
|
DESTROY(obj)
|
|
|
|
$perl_class obj
|
|
|
|
|
|
|
|
CODE:
|
|
|
|
safefree(obj);
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
for my $field (@$fields) {
|
2005-07-08 09:11:42 +08:00
|
|
|
my $type = $field->{type} || 'Long';
|
2004-06-22 06:37:04 +08:00
|
|
|
my $name = $field->{name};
|
|
|
|
my $desc = $field->{desc} || $name;
|
|
|
|
(my $jname = $name) =~ s/_(\w)/\u$1/g;
|
|
|
|
my $sig = qq("$jfields{$type}");
|
|
|
|
my $set = "JENV->Set${type}Field";
|
|
|
|
|
|
|
|
print PFH <<EOF;
|
|
|
|
$pfields{$type}
|
|
|
|
$name($cname)
|
|
|
|
$perl_class $cname
|
|
|
|
|
|
|
|
CODE:
|
|
|
|
RETVAL = $cname->$name;
|
|
|
|
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
my $field_ix = $field_class_ix . "_\U$name";
|
|
|
|
my $get_id = qq|JENV->GetFieldID(env, cls, "$jname", $sig)|;
|
|
|
|
my $id_cache = "$field_class->ids[$field_ix]";
|
|
|
|
|
|
|
|
my $id_lookup = $cache_field_ids ?
|
|
|
|
$id_cache : $get_id;
|
|
|
|
|
|
|
|
push @init_fields,
|
|
|
|
" $id_cache = ",
|
|
|
|
" $get_id;";
|
|
|
|
|
|
|
|
push @macro,
|
|
|
|
qq| $set(env, obj, $id_lookup, s.$name);|;
|
|
|
|
|
|
|
|
my $init = $jinit{$type} || '0';
|
|
|
|
my $jtype = $jtype{$type} || lcfirst($type);
|
|
|
|
my $platforms = supported_platforms($field->{plat});
|
|
|
|
|
|
|
|
print JFH " $jtype $jname = $init;\n\n";
|
|
|
|
push @copy, " copy.$jname = this.$jname;\n";
|
2005-11-24 03:33:12 +08:00
|
|
|
push @tostring, $jname;
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
#documentation
|
|
|
|
print JFH " /**\n";
|
|
|
|
print JFH " * Get the $desc.<p>\n";
|
|
|
|
print JFH " * Supported Platforms: $platforms.\n";
|
|
|
|
print JFH " * <p>\n";
|
|
|
|
if (my $cmd = ($field->{cmd} || $cmds{$class})) {
|
|
|
|
print JFH " * System equivalent commands:<ul>\n";
|
|
|
|
for my $p (sort keys %$cmd) {
|
|
|
|
print JFH " * <li> $p: <code>$cmd->{$p}</code><br>\n";
|
|
|
|
}
|
|
|
|
print JFH " * </ul>\n";
|
|
|
|
}
|
|
|
|
print JFH " * \@return $desc\n";
|
|
|
|
print JFH " */\n";
|
|
|
|
|
|
|
|
print JFH " public $jtype get\u$jname() { return $jname; }\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
print JFH "\n void copyTo($name copy) {\n", @copy, " }\n";
|
|
|
|
|
2005-11-24 03:33:12 +08:00
|
|
|
my $code = $extra_code{$name};
|
|
|
|
if ($code) {
|
2004-06-22 06:37:04 +08:00
|
|
|
print JFH $code;
|
|
|
|
}
|
|
|
|
|
2005-11-24 03:33:12 +08:00
|
|
|
my $num_fields = @tostring;
|
|
|
|
print JFH "\n public Map toMap() {\n";
|
|
|
|
print JFH " Map map = new HashMap();\n";
|
|
|
|
for (my $i=0; $i<$num_fields; $i++) {
|
|
|
|
my $jfield = $tostring[$i];
|
|
|
|
my $sfield = "str${jfield}";
|
|
|
|
print JFH " String $sfield = \n";
|
|
|
|
print JFH " String.valueOf(this.$jfield);\n";
|
|
|
|
print JFH qq{ if (!"-1".equals($sfield))\n};
|
|
|
|
print JFH qq{ map.put("\u$jfield", $sfield);\n};
|
|
|
|
}
|
|
|
|
print JFH " return map;\n";
|
|
|
|
print JFH " }\n";
|
|
|
|
|
|
|
|
if (!$code or $code !~ /toString/) {
|
|
|
|
print JFH "\n public String toString() {\n";
|
|
|
|
print JFH " return toMap().toString();\n";
|
|
|
|
print JFH " }\n";
|
|
|
|
}
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
push @init_fields, " }";
|
|
|
|
|
|
|
|
if ($cache_field_ids) {
|
|
|
|
print HFH join(' \\' . "\n", @init_fields), "\n\n";
|
|
|
|
print CFH "\n\n $init_define(cls);\n\n" if $impl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print HFH "#define $init_define(cls)\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
print HFH join(' \\' . "\n", @macro), "\n\n";
|
|
|
|
print CFH "\n\n $define(cls, obj, s);" if $impl;
|
|
|
|
|
|
|
|
print CFH "\n}\n" if $impl;
|
|
|
|
print JFH "\n}\n";
|
|
|
|
|
|
|
|
close JFH;
|
|
|
|
}
|
|
|
|
|
2005-08-28 14:00:27 +08:00
|
|
|
my $jsigar = "../../src/jni/javasigar.c";
|
|
|
|
open JSIGAR, $jsigar or die "open $jsigar: $!";
|
|
|
|
while (<JSIGAR>) {
|
|
|
|
next unless /SIGAR_JNI\(([A-Za-z_]+)\)/;
|
2006-06-27 20:44:52 +08:00
|
|
|
print DFH "Java_org_hyperic_sigar_$1\n";
|
2005-08-28 14:00:27 +08:00
|
|
|
}
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
close CFH;
|
2005-08-28 13:49:29 +08:00
|
|
|
close DFH;
|