Subversion Repositories ALCASAR

Rev

Rev 325 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 325 Rev 2770
Line 1... Line 1...
1
<?php 
1
<?php
-
 
2
/**
-
 
3
 * NetBSD System Class
-
 
4
 *
-
 
5
 * PHP version 5
-
 
6
 *
-
 
7
 * @category  PHP
-
 
8
 * @package   PSI NetBSD OS class
-
 
9
 * @author    Michael Cramer <BigMichi1@users.sourceforge.net>
-
 
10
 * @copyright 2009 phpSysInfo
-
 
11
 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
-
 
12
 * @version   SVN: $Id: class.NetBSD.inc.php 287 2009-06-26 12:11:59Z bigmichi1 $
-
 
13
 * @link      http://phpsysinfo.sourceforge.net
-
 
14
 */
-
 
15
 /**
-
 
16
 * NetBSD sysinfo class
-
 
17
 * get all the required information from NetBSD systems
-
 
18
 *
-
 
19
 * @category  PHP
-
 
20
 * @package   PSI NetBSD OS class
-
 
21
 * @author    Michael Cramer <BigMichi1@users.sourceforge.net>
-
 
22
 * @copyright 2009 phpSysInfo
-
 
23
 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
-
 
24
 * @version   Release: 3.0
-
 
25
 * @link      http://phpsysinfo.sourceforge.net
-
 
26
 */
-
 
27
class NetBSD extends BSDCommon
-
 
28
{
-
 
29
    /**
-
 
30
     * define the regexp for log parser
-
 
31
     */
-
 
32
    public function __construct($blockname = false)
-
 
33
    {
-
 
34
        parent::__construct($blockname);
-
 
35
        $this->setCPURegExp1("/^cpu(.*)\, (.*) MHz/");
-
 
36
        $this->setCPURegExp2("/user = (.*), nice = (.*), sys = (.*), intr = (.*), idle = (.*)/");
-
 
37
        $this->setSCSIRegExp1("/^(.*) at scsibus.*: <(.*)> .*/");
-
 
38
        $this->setSCSIRegExp2("/^(sd[0-9]+): (.*)([MG])B,/");
-
 
39
        $this->setPCIRegExp1("/(.*) at pci[0-9]+ dev [0-9]* function [0-9]*: (.*)$/");
-
 
40
        $this->setPCIRegExp2("/\"(.*)\" (.*).* at [.0-9]+ irq/");
-
 
41
    }
2
 
42
 
-
 
43
    /**
-
 
44
     * UpTime
3
// phpSysInfo - A PHP System Information Script
45
     * time the system is running
-
 
46
     *
-
 
47
     * @return void
-
 
48
     */
-
 
49
    private function _uptime()
-
 
50
    {
-
 
51
        $a = $this->grabkey('kern.boottime');
4
// http://phpsysinfo.sourceforge.net/
52
        $this->sys->setUptime(time() - $a);
-
 
53
    }
5
 
54
 
-
 
55
    /**
-
 
56
     * get network information
-
 
57
     *
-
 
58
     * @return void
-
 
59
     */
-
 
60
    private function _network()
-
 
61
    {
-
 
62
        CommonFunctions::executeProgram('netstat', '-nbdi | cut -c1-25,44- | grep "^[a-z]*[0-9][ \t].*Link"', $netstat_b);
-
 
63
        CommonFunctions::executeProgram('netstat', '-ndi | cut -c1-25,44- | grep "^[a-z]*[0-9][ \t].*Link"', $netstat_n);
-
 
64
        $lines_b = preg_split("/\n/", $netstat_b, -1, PREG_SPLIT_NO_EMPTY);
6
// This program is free software; you can redistribute it and/or
65
        $lines_n = preg_split("/\n/", $netstat_n, -1, PREG_SPLIT_NO_EMPTY);
7
// modify it under the terms of the GNU General Public License
66
        for ($i = 0, $max = sizeof($lines_b); $i < $max; $i++) {
8
// as published by the Free Software Foundation; either version 2
67
            $ar_buf_b = preg_split("/\s+/", $lines_b[$i]);
9
// of the License, or (at your option) any later version.
68
            $ar_buf_n = preg_split("/\s+/", $lines_n[$i]);
-
 
69
            if (!empty($ar_buf_b[0]) && (!empty($ar_buf_n[3]) || ($ar_buf_n[3] === "0"))) {
-
 
70
                $dev = new NetDevice();
-
 
71
                $dev->setName($ar_buf_b[0]);
-
 
72
                $dev->setTxBytes($ar_buf_b[4]);
-
 
73
                $dev->setRxBytes($ar_buf_b[3]);
-
 
74
                $dev->setDrops($ar_buf_n[8]);
-
 
75
                $dev->setErrors($ar_buf_n[4] + $ar_buf_n[6]);
-
 
76
                if (defined('PSI_SHOW_NETWORK_INFOS') && (PSI_SHOW_NETWORK_INFOS) && (CommonFunctions::executeProgram('ifconfig', $ar_buf_b[0].' 2>/dev/null', $bufr2, PSI_DEBUG))) {
-
 
77
                    $speedinfo = "";
-
 
78
                    $bufe2 = preg_split("/\n/", $bufr2, -1, PREG_SPLIT_NO_EMPTY);
-
 
79
                    foreach ($bufe2 as $buf2) {
-
 
80
                        if (preg_match('/^\s+address:\s+(\S+)/i', $buf2, $ar_buf2)) {
-
 
81
                            if (!defined('PSI_HIDE_NETWORK_MACADDR') || !PSI_HIDE_NETWORK_MACADDR) $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').preg_replace('/:/', '-', strtoupper($ar_buf2[1])));
-
 
82
                        } elseif (preg_match('/^\s+inet\s+(\S+)\s+netmask/i', $buf2, $ar_buf2)) {
-
 
83
                            $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').$ar_buf2[1]);
-
 
84
                        } elseif ((preg_match('/^\s+inet6\s+([^\s%]+)\s+prefixlen/i', $buf2, $ar_buf2)
-
 
85
                              || preg_match('/^\s+inet6\s+([^\s%]+)%\S+\s+prefixlen/i', $buf2, $ar_buf2))
-
 
86
                              && ($ar_buf2[1]!="::") && !preg_match('/^fe80::/i', $ar_buf2[1])) {
-
 
87
                            $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').strtolower($ar_buf2[1]));
-
 
88
                        } elseif (preg_match('/^\s+media:\s+/i', $buf2) && preg_match('/[\(\s](\d+)(G*)base/i', $buf2, $ar_buf2)) {
-
 
89
                            if (isset($ar_buf2[2]) && strtoupper($ar_buf2[2])=="G") {
-
 
90
                                $unit = "G";
-
 
91
                            } else {
-
 
92
                                $unit = "M";
-
 
93
                            }
-
 
94
                            if (preg_match('/\s(\S+)-duplex/i', $buf2, $ar_buf3))
-
 
95
                                $speedinfo = $ar_buf2[1].$unit.'b/s '.strtolower($ar_buf3[1]);
-
 
96
                            else
-
 
97
                                $speedinfo = $ar_buf2[1].$unit.'b/s';
-
 
98
                        }
-
 
99
                    }
-
 
100
                    if ($speedinfo != "") $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').$speedinfo);
-
 
101
                }
-
 
102
                $this->sys->setNetDevices($dev);
-
 
103
            }
-
 
104
        }
-
 
105
    }
10
 
106
 
-
 
107
    /**
-
 
108
     * IDE information
-
 
109
     *
-
 
110
     * @return void
-
 
111
     */
-
 
112
    protected function ide()
-
 
113
    {
-
 
114
        foreach ($this->readdmesg() as $line) {
-
 
115
            if (preg_match('/^(.*) at (pciide|wdc|atabus|atapibus)[0-9]+ (.*): <(.*)>/', $line, $ar_buf)
-
 
116
               || preg_match('/^(.*) at (pciide|wdc|atabus|atapibus)[0-9]+ /', $line, $ar_buf)) {
-
 
117
                $dev = new HWDevice();
-
 
118
                if (isset($ar_buf[4])) {
-
 
119
                    $dev->setName($ar_buf[4]);
-
 
120
                } else {
-
 
121
                    $dev->setName($ar_buf[1]);
-
 
122
                    // now loop again and find the name
11
// This program is distributed in the hope that it will be useful,
123
                    foreach ($this->readdmesg() as $line2) {
-
 
124
                        if (preg_match("/^(".$ar_buf[1]."): <(.*)>$/", $line2, $ar_buf_n)) {
-
 
125
                            $dev->setName($ar_buf_n[2]);
-
 
126
                            break;
-
 
127
                        }
-
 
128
                    }
-
 
129
                }
-
 
130
                if (defined('PSI_SHOW_DEVICES_INFOS') && PSI_SHOW_DEVICES_INFOS) {
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
131
                    // now loop again and find the capacity
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
132
                    foreach ($this->readdmesg() as $line2) {
-
 
133
                        if (preg_match("/^(".$ar_buf[1]."): (.*), (.*), (.*)MB, .*$/", $line2, $ar_buf_n)) {
-
 
134
                            $dev->setCapacity($ar_buf_n[4] * 1024 * 1024);
-
 
135
                            break;
-
 
136
                        } elseif (preg_match("/^(".$ar_buf[1]."): (.*) MB, (.*), (.*), .*$/", $line2, $ar_buf_n)) {
-
 
137
                            $dev->setCapacity($ar_buf_n[2] * 1024 * 1024);
-
 
138
                            break;
-
 
139
                        } elseif (preg_match("/^(".$ar_buf[1]."): (.*) GB, (.*), (.*), .*$/", $line2, $ar_buf_n)) {
-
 
140
                            $dev->setCapacity($ar_buf_n[2] * 1024 * 1024 * 1024);
-
 
141
                            break;
-
 
142
                        }
-
 
143
                    }
-
 
144
                }
14
// GNU General Public License for more details.
145
                $this->sys->setIdeDevices($dev);
-
 
146
            }
-
 
147
        }
-
 
148
    }
-
 
149
 
-
 
150
    /**
-
 
151
     * get icon name
-
 
152
     *
-
 
153
     * @return void
-
 
154
     */
-
 
155
    private function _distroicon()
-
 
156
    {
-
 
157
        $this->sys->setDistributionIcon('NetBSD.png');
-
 
158
    }
15
 
159
 
-
 
160
    /**
-
 
161
     * Processes
-
 
162
     *
-
 
163
     * @return void
-
 
164
     */
-
 
165
    protected function _processes()
-
 
166
    {
-
 
167
        if (CommonFunctions::executeProgram('ps', 'aux', $bufr, PSI_DEBUG)) {
16
// You should have received a copy of the GNU General Public License
168
            $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
-
 
169
            $processes['*'] = 0;
-
 
170
            foreach ($lines as $line) {
-
 
171
                if (preg_match("/^\S+\s+\d+\s+\S+\s+\S+\s+\d+\s+\d+\s+\S+\s+(\w)/", $line, $ar_buf)) {
-
 
172
                    $processes['*']++;
-
 
173
                    $state = $ar_buf[1];
17
// along with this program; if not, write to the Free Software
174
                    if ($state == 'O') $state = 'R'; //linux format
18
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
175
                    elseif ($state == 'I') $state = 'S';
-
 
176
                    if (isset($processes[$state])) {
-
 
177
                        $processes[$state]++;
-
 
178
                    } else {
-
 
179
                        $processes[$state] = 1;
-
 
180
                    }
-
 
181
                }
-
 
182
            }
-
 
183
            if ($processes['*'] > 0) {
-
 
184
                $this->sys->setProcesses($processes);
-
 
185
            }
-
 
186
        }
-
 
187
    }
19
 
188
 
-
 
189
    /**
-
 
190
     * get the information
-
 
191
     *
-
 
192
     * @see BSDCommon::build()
-
 
193
     *
-
 
194
     * @return Void
-
 
195
     */
-
 
196
    public function build()
-
 
197
    {
-
 
198
        parent::build();
20
// $Id: class.NetBSD.inc.php,v 1.18 2006/04/18 16:57:32 bigmichi1 Exp $
199
        if (!$this->blockname || $this->blockname==='vitals') {
21
if (!defined('IN_PHPSYSINFO')) {
200
            $this->_distroicon();
22
    die("No Hacking");
201
            $this->_uptime();
-
 
202
            $this->_processes();
-
 
203
        }
-
 
204
        if (!$this->blockname || $this->blockname==='network') {
-
 
205
            $this->_network();
-
 
206
        }
-
 
207
    }
23
}
208
}
24
 
-
 
25
require_once(APP_ROOT . '/includes/os/class.BSD.common.inc.php');
-
 
26
 
-
 
27
class sysinfo extends bsd_common {
-
 
28
  var $cpu_regexp;
-
 
29
  var $scsi_regexp; 
-
 
30
  // Our contstructor
-
 
31
  // this function is run on the initialization of this class
-
 
32
  function sysinfo () {
-
 
33
    $this->bsd_common();
-
 
34
    
-
 
35
    $this->cpu_regexp = "^cpu(.*)\, (.*) MHz";
-
 
36
    $this->scsi_regexp1 = "^(.*) at scsibus.*: <(.*)> .*";
-
 
37
    $this->scsi_regexp2 = "^(da[0-9]): (.*)MB ";
-
 
38
    $this->cpu_regexp2 = "/user = (.*), nice = (.*), sys = (.*), intr = (.*), idle = (.*)/";
-
 
39
    $this->pci_regexp1 = '/(.*) at pci[0-9] dev [0-9]* function [0-9]*: (.*)$/';
-
 
40
    $this->pci_regexp2 = '/"(.*)" (.*).* at [.0-9]+ irq/';
-
 
41
  } 
-
 
42
 
-
 
43
  function get_sys_ticks () {
-
 
44
    $a = $this->grab_key('kern.boottime');
-
 
45
    $sys_ticks = time() - $a;
-
 
46
    return $sys_ticks;
-
 
47
  } 
-
 
48
 
-
 
49
  function network () {
-
 
50
    $netstat_b = execute_program('netstat', '-nbdi | cut -c1-25,44- | grep "^[a-z]*[0-9][ \t].*Link"');
-
 
51
    $netstat_n = execute_program('netstat', '-ndi | cut -c1-25,44- | grep "^[a-z]*[0-9][ \t].*Link"');
-
 
52
    $lines_b = explode("\n", $netstat_b);
-
 
53
    $lines_n = explode("\n", $netstat_n);
-
 
54
    $results = array();
-
 
55
    for ($i = 0, $max = sizeof($lines_b); $i < $max; $i++) {
-
 
56
      $ar_buf_b = preg_split("/\s+/", $lines_b[$i]);
-
 
57
      $ar_buf_n = preg_split("/\s+/", $lines_n[$i]);
-
 
58
      if (!empty($ar_buf_b[0]) && !empty($ar_buf_n[3])) {
-
 
59
        $results[$ar_buf_b[0]] = array();
-
 
60
 
-
 
61
        $results[$ar_buf_b[0]]['rx_bytes'] = $ar_buf_b[3];
-
 
62
        $results[$ar_buf_b[0]]['rx_packets'] = $ar_buf_n[3];
-
 
63
        $results[$ar_buf_b[0]]['rx_errs'] = $ar_buf_n[4];
-
 
64
        $results[$ar_buf_b[0]]['rx_drop'] = $ar_buf_n[8];
-
 
65
 
-
 
66
        $results[$ar_buf_b[0]]['tx_bytes'] = $ar_buf_b[4];
-
 
67
        $results[$ar_buf_b[0]]['tx_packets'] = $ar_buf_n[5];
-
 
68
        $results[$ar_buf_b[0]]['tx_errs'] = $ar_buf_n[6];
-
 
69
        $results[$ar_buf_b[0]]['tx_drop'] = $ar_buf_n[8];
-
 
70
 
-
 
71
        $results[$ar_buf_b[0]]['errs'] = $ar_buf_n[4] + $ar_buf_n[6];
-
 
72
        $results[$ar_buf_b[0]]['drop'] = $ar_buf_n[8];
-
 
73
      } 
-
 
74
    } 
-
 
75
    return $results;
-
 
76
  } 
-
 
77
 
-
 
78
  // get the ide device information out of dmesg
-
 
79
  function ide () {
-
 
80
    $results = array();
-
 
81
 
-
 
82
    $s = 0;
-
 
83
    for ($i = 0, $max = count($this->read_dmesg()); $i < $max; $i++) {
-
 
84
      $buf = $this->dmesg[$i];
-
 
85
      if (preg_match('/^(.*) at (pciide|wdc|atabus|atapibus)[0-9] (.*): <(.*)>/', $buf, $ar_buf)) {
-
 
86
        $s = $ar_buf[1];
-
 
87
        $results[$s]['model'] = $ar_buf[4];
-
 
88
        $results[$s]['media'] = 'Hard Disk'; 
-
 
89
        // now loop again and find the capacity
-
 
90
        for ($j = 0, $max1 = count($this->read_dmesg()); $j < $max1; $j++) {
-
 
91
          $buf_n = $this->dmesg[$j];
-
 
92
          if (preg_match("/^($s): (.*), (.*), (.*)MB, .*$/", $buf_n, $ar_buf_n)) {
-
 
93
            $results[$s]['capacity'] = $ar_buf_n[4] * 2048 * 1.049;
-
 
94
          } elseif (preg_match("/^($s): (.*) MB, (.*), (.*), .*$/", $buf_n, $ar_buf_n)) {
-
 
95
	    $results[$s]['capacity'] = $ar_buf_n[2] * 2048;
-
 
96
	  }
-
 
97
        } 
-
 
98
      } 
-
 
99
    } 
-
 
100
    asort($results);
-
 
101
    return $results;
-
 
102
  } 
-
 
103
 
-
 
104
  function distroicon () {
-
 
105
    $result = 'NetBSD.png';
-
 
106
    return($result);
-
 
107
  }
-
 
108
  
-
 
109
} 
-
 
110
 
-
 
111
?>
-