2775 |
rexy |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Apcupsd class
|
|
|
4 |
*
|
|
|
5 |
* PHP version 5
|
|
|
6 |
*
|
|
|
7 |
* @category PHP
|
|
|
8 |
* @package PSI_UPS
|
|
|
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.apcupsd.inc.php 661 2012-08-27 11:26:39Z namiltd $
|
|
|
13 |
* @link http://phpsysinfo.sourceforge.net
|
|
|
14 |
*/
|
|
|
15 |
/**
|
|
|
16 |
* getting ups information from apcupsd program
|
|
|
17 |
*
|
|
|
18 |
* @category PHP
|
|
|
19 |
* @package PSI_UPS
|
|
|
20 |
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
|
|
|
21 |
* @author Artem Volk <artvolk@mail.ru>
|
|
|
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 Apcupsd extends UPS
|
|
|
28 |
{
|
|
|
29 |
/**
|
|
|
30 |
* internal storage for all gathered data
|
|
|
31 |
*
|
|
|
32 |
* @var array
|
|
|
33 |
*/
|
|
|
34 |
private $_output = array();
|
|
|
35 |
|
|
|
36 |
/**
|
|
|
37 |
* get all information from all configured ups in phpsysinfo.ini and store output in internal array
|
|
|
38 |
*/
|
|
|
39 |
public function __construct()
|
|
|
40 |
{
|
|
|
41 |
parent::__construct();
|
|
|
42 |
if (defined('PSI_UPS_APCUPSD_LIST') && is_string(PSI_UPS_APCUPSD_LIST)) {
|
|
|
43 |
if (preg_match(ARRAY_EXP, PSI_UPS_APCUPSD_LIST)) {
|
|
|
44 |
$upses = eval(PSI_UPS_APCUPSD_LIST);
|
|
|
45 |
} else {
|
|
|
46 |
$upses = array(PSI_UPS_APCUPSD_LIST);
|
|
|
47 |
}
|
|
|
48 |
foreach ($upses as $ups) {
|
|
|
49 |
CommonFunctions::executeProgram('apcaccess', 'status '.trim($ups), $temp);
|
|
|
50 |
if (! empty($temp)) {
|
|
|
51 |
$this->_output[] = $temp;
|
|
|
52 |
}
|
|
|
53 |
}
|
|
|
54 |
} else { //use default if address and port not defined
|
|
|
55 |
CommonFunctions::executeProgram('apcaccess', 'status', $temp);
|
|
|
56 |
if (! empty($temp)) {
|
|
|
57 |
$this->_output[] = $temp;
|
|
|
58 |
}
|
|
|
59 |
}
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
/**
|
|
|
63 |
* parse the input and store data in resultset for xml generation
|
|
|
64 |
*
|
|
|
65 |
* @return Void
|
|
|
66 |
*/
|
|
|
67 |
private function _info()
|
|
|
68 |
{
|
|
|
69 |
foreach ($this->_output as $ups) {
|
|
|
70 |
|
|
|
71 |
$dev = new UPSDevice();
|
|
|
72 |
|
|
|
73 |
// General info
|
|
|
74 |
if (preg_match('/^UPSNAME\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
75 |
$dev->setName(trim($data[1]));
|
|
|
76 |
}
|
|
|
77 |
if (preg_match('/^MODEL\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
78 |
$model = trim($data[1]);
|
|
|
79 |
if (preg_match('/^APCMODEL\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
80 |
$dev->setModel($model.' ('.trim($data[1]).')');
|
|
|
81 |
} else {
|
|
|
82 |
$dev->setModel($model);
|
|
|
83 |
}
|
|
|
84 |
}
|
|
|
85 |
if (preg_match('/^UPSMODE\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
86 |
$dev->setMode(trim($data[1]));
|
|
|
87 |
}
|
|
|
88 |
if (preg_match('/^STARTTIME\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
89 |
$dev->setStartTime(trim($data[1]));
|
|
|
90 |
}
|
|
|
91 |
if (preg_match('/^STATUS\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
92 |
$dev->setStatus(trim($data[1]));
|
|
|
93 |
}
|
|
|
94 |
if (preg_match('/^ITEMP\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
95 |
$temperatur = trim($data[1]);
|
|
|
96 |
if (($temperatur !== "-273.1 C") && ($temperatur !== "-273.1 C Internal")) {
|
|
|
97 |
$dev->setTemperatur($temperatur);
|
|
|
98 |
}
|
|
|
99 |
}
|
|
|
100 |
// Outages
|
|
|
101 |
if (preg_match('/^NUMXFERS\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
102 |
$dev->setOutages(trim($data[1]));
|
|
|
103 |
}
|
|
|
104 |
if (preg_match('/^LASTXFER\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
105 |
$dev->setLastOutage(trim($data[1]));
|
|
|
106 |
}
|
|
|
107 |
if (preg_match('/^XOFFBATT\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
108 |
$dev->setLastOutageFinish(trim($data[1]));
|
|
|
109 |
}
|
|
|
110 |
// Line
|
|
|
111 |
if (preg_match('/^LINEV\s*:\s*(\d*\.\d*)(.*)$/m', $ups, $data)) {
|
|
|
112 |
$dev->setLineVoltage(trim($data[1]));
|
|
|
113 |
}
|
|
|
114 |
if (preg_match('/^LINEFREQ\s*:\s*(\d*\.\d*)(.*)$/m', $ups, $data)) {
|
|
|
115 |
$dev->setLineFrequency(trim($data[1]));
|
|
|
116 |
}
|
|
|
117 |
if (preg_match('/^LOADPCT\s*:\s*(\d*\.\d*)(.*)$/m', $ups, $data)) {
|
|
|
118 |
$dev->setLoad(trim($data[1]));
|
|
|
119 |
}
|
|
|
120 |
// Battery
|
|
|
121 |
if (preg_match('/^BATTDATE\s*:\s*(.*)$/m', $ups, $data)) {
|
|
|
122 |
$dev->setBatteryDate(trim($data[1]));
|
|
|
123 |
}
|
|
|
124 |
if (preg_match('/^BATTV\s*:\s*(\d*\.\d*)(.*)$/m', $ups, $data)) {
|
|
|
125 |
$dev->setBatteryVoltage(trim($data[1]));
|
|
|
126 |
}
|
|
|
127 |
if (preg_match('/^BCHARGE\s*:\s*(\d*\.\d*)(.*)$/m', $ups, $data)) {
|
|
|
128 |
$dev->setBatterCharge(trim($data[1]));
|
|
|
129 |
}
|
|
|
130 |
if (preg_match('/^TIMELEFT\s*:\s*(\d*\.\d*)(.*)$/m', $ups, $data)) {
|
|
|
131 |
$dev->setTimeLeft(trim($data[1]));
|
|
|
132 |
}
|
|
|
133 |
$this->upsinfo->setUpsDevices($dev);
|
|
|
134 |
}
|
|
|
135 |
}
|
|
|
136 |
|
|
|
137 |
/**
|
|
|
138 |
* get the information
|
|
|
139 |
*
|
|
|
140 |
* @see PSI_Interface_UPS::build()
|
|
|
141 |
*
|
|
|
142 |
* @return Void
|
|
|
143 |
*/
|
|
|
144 |
public function build()
|
|
|
145 |
{
|
|
|
146 |
$this->_info();
|
|
|
147 |
}
|
|
|
148 |
}
|