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
|
# -*-Perl-*-
# instances allowed: one
# (single instance modules would be silly to use more than one of
# anyway, so we use package local storage. This is faster and places
# less artificial load on the machine than doing everything through
# the object hash)
package MGMmodule::netstat;
use vars qw($xpath @if @keys $active $field $prompt @prev @bytes $widget
$graph $lastmod $minscale);
# class init
sub module_init{
my$this=shift;
my$toplevel=$this->{"toplevel"};
my$xclass=$this->{"xclass"};
$minscale=2048;
# is the helper up and running?
if(!defined(%MGMmodule::helperST::net)){
$toplevel->optionAdd("$xclass.active",'false',21);
}
$toplevel->optionAdd("$xclass.order",20,21);
$this;
}
# instance init
sub module_instance{
my$this=shift;
my$toplevel=$this->{"toplevel"};
return undef if(defined($xpath));
$xpath=$this->{"xpath"};
undef@keys;
undef@prev;
foreach my $key (keys %MGMmodule::helperST::net){
push @keys, $key if(defined($MGMmodule::helperST::net{$key}));
}
$active=$MGMmodule::helperST::active_if;
# three possible different formats.
my@test=split ' ', $MGMmodule::helperST::net{$keys[0]};
if($#test==10){
$field=5;
$prompt=' pkts/s';
$minscale=16;
}else{
$field=($#test+1)/2;
$prompt='B/s';
}
# modify defaults
my$i=0;
foreach my $key (@keys){
$toplevel->optionAdd("$xpath.bar.".($i*2).".label", "$key Rx",21);
$toplevel->optionAdd("$xpath.bar.".($i*2).".litbackground", '#787cf8',21);
$toplevel->optionAdd("$xpath.bar.".($i*2+1).".label", "$key Tx",21);
$toplevel->optionAdd("$xpath.bar.".($i*2+1).".litbackground","#78b0f8",21);
$i++;
}
$toplevel->optionAdd("$xpath.scalewidadj", 80*$i*2,21); # narrower
$toplevel->optionAdd("$xpath.scalereturn", 120,21);
# this relies on the above defaults
my($minx,$miny)=MGM::Graph::calcxysize($this,1024*1024*512,
$prompt,$active*2);
$toplevel->optionAdd("$xpath.minx", $minx,21);
$toplevel->optionAdd("$xpath.miny", $miny,21);
$this;
}
# instance widget build
sub module_run{
my$this=shift;
$graph=MGM::Graph->new($this,num=>$active*2,
prompt=>$prompt,
minscale=>$minscale);
$lastmod=-1;
$widget=$graph->{"widget"}; # must return the widget
}
sub module_update{
my$this=shift;
# don't update unless the helper has
if($lastmod!=$MGMmodule::helperST::lastmod){
my$time=$MGMmodule::helperST::lastmod;
my@vals;
my$i=0;
my$reflag=0;
foreach my $key (@keys){
return &reconfig if(!defined($MGMmodule::helperST::net{$key}));
my@temp=split ' ', $MGMmodule::helperST::net{$key};
$bytes[$i]=$temp[0];
$bytes[$i+1]=$temp[$field];
$i+=2;
}
if(defined(@prev)){
for($i=0;$i<$active*2;$i++){
$vals[$i]=($bytes[$i]-$prev[$i])/($time-$lastmod)*100;
}
$graph->set(@vals);
return &reconfig if($active<$MGMmodule::helperST::active_if);
}
@prev=@bytes;
$lastmod=$time;
}
}
sub reconfig{
&main::reinstance() if($widget->optionGet("reconfig","") eq 'true');
}
sub destroy{
undef $xpath;
}
bless {};
|