| 2775 |
rexy |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Nut class
|
|
|
4 |
*
|
|
|
5 |
* PHP version 5
|
|
|
6 |
*
|
|
|
7 |
* @category PHP
|
|
|
8 |
* @package PSI_UPS
|
|
|
9 |
* @author Artem Volk <artvolk@mail.ru>
|
|
|
10 |
* @author Anders Häggström <hagge@users.sourceforge.net>
|
|
|
11 |
* @copyright 2009 phpSysInfo
|
|
|
12 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
|
|
|
13 |
* @version SVN: $Id: class.nut.inc.php 661 2012-08-27 11:26:39Z namiltd $
|
|
|
14 |
* @link http://phpsysinfo.sourceforge.net
|
|
|
15 |
*/
|
|
|
16 |
/**
|
|
|
17 |
* getting ups information from upsc program
|
|
|
18 |
*
|
|
|
19 |
* @category PHP
|
|
|
20 |
* @package PSI_UPS
|
|
|
21 |
* @author Artem Volk <artvolk@mail.ru>
|
|
|
22 |
* @author Anders Häggström <hagge@users.sourceforge.net>
|
|
|
23 |
* @copyright 2009 phpSysInfo
|
|
|
24 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
|
|
|
25 |
* @version Release: 3.0
|
|
|
26 |
* @link http://phpsysinfo.sourceforge.net
|
|
|
27 |
*/
|
|
|
28 |
class Nut extends UPS
|
|
|
29 |
{
|
|
|
30 |
/**
|
|
|
31 |
* internal storage for all gathered data
|
|
|
32 |
*
|
|
|
33 |
* @var array
|
|
|
34 |
*/
|
|
|
35 |
private $_output = array();
|
|
|
36 |
|
|
|
37 |
/**
|
|
|
38 |
* get all information from all configured ups and store output in internal array
|
|
|
39 |
*/
|
|
|
40 |
public function __construct()
|
|
|
41 |
{
|
|
|
42 |
parent::__construct();
|
| 3037 |
rexy |
43 |
if (!defined('PSI_UPS_NUT_ACCESS')) {
|
|
|
44 |
define('PSI_UPS_NUT_ACCESS', false);
|
|
|
45 |
}
|
|
|
46 |
switch (strtolower(PSI_UPS_NUT_ACCESS)) {
|
|
|
47 |
case 'data':
|
|
|
48 |
if (defined('PSI_UPS_NUT_LIST') && is_string(PSI_UPS_NUT_LIST)) {
|
|
|
49 |
if (preg_match(ARRAY_EXP, PSI_UPS_NUT_LIST)) {
|
|
|
50 |
$upss = eval(PSI_UPS_NUT_LIST);
|
|
|
51 |
} else {
|
|
|
52 |
$upss = array(PSI_UPS_NUT_LIST);
|
|
|
53 |
}
|
| 2775 |
rexy |
54 |
} else {
|
| 3037 |
rexy |
55 |
$upss = array('UPS');
|
| 2775 |
rexy |
56 |
}
|
| 3037 |
rexy |
57 |
$un = 0;
|
|
|
58 |
foreach ($upss as $ups) {
|
|
|
59 |
$temp = "";
|
|
|
60 |
CommonFunctions::rftsdata("upsnut{$un}.tmp", $temp);
|
|
|
61 |
if (! empty($temp)) {
|
|
|
62 |
$this->_output[$ups] = $temp;
|
|
|
63 |
}
|
|
|
64 |
$un++;
|
|
|
65 |
}
|
|
|
66 |
break;
|
|
|
67 |
default:
|
|
|
68 |
if (defined('PSI_UPS_NUT_LIST') && is_string(PSI_UPS_NUT_LIST)) {
|
|
|
69 |
if (preg_match(ARRAY_EXP, PSI_UPS_NUT_LIST)) {
|
|
|
70 |
$upses = eval(PSI_UPS_NUT_LIST);
|
|
|
71 |
} else {
|
|
|
72 |
$upses = array(PSI_UPS_NUT_LIST);
|
|
|
73 |
}
|
|
|
74 |
foreach ($upses as $ups) {
|
|
|
75 |
CommonFunctions::executeProgram('upsc', '-l '.trim($ups), $output, PSI_DEBUG);
|
|
|
76 |
$ups_names = preg_split("/\n/", $output, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
77 |
foreach ($ups_names as $ups_name) {
|
|
|
78 |
$upsname = trim($ups_name).'@'.trim($ups);
|
|
|
79 |
$temp = "";
|
|
|
80 |
CommonFunctions::executeProgram('upsc', $upsname, $temp, PSI_DEBUG);
|
|
|
81 |
if (! empty($temp)) {
|
|
|
82 |
$this->_output[$upsname] = $temp;
|
|
|
83 |
}
|
|
|
84 |
}
|
|
|
85 |
}
|
|
|
86 |
} else { //use default if address and port not defined
|
| 3100 |
rexy |
87 |
if (!defined('PSI_EMU_HOSTNAME') || defined('PSI_EMU_PORT')) {
|
| 3037 |
rexy |
88 |
CommonFunctions::executeProgram('upsc', '-l', $output, PSI_DEBUG);
|
|
|
89 |
} else {
|
|
|
90 |
CommonFunctions::executeProgram('upsc', '-l '.PSI_EMU_HOSTNAME, $output, PSI_DEBUG);
|
|
|
91 |
}
|
| 2775 |
rexy |
92 |
$ups_names = preg_split("/\n/", $output, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
93 |
foreach ($ups_names as $ups_name) {
|
| 3037 |
rexy |
94 |
$temp = "";
|
|
|
95 |
CommonFunctions::executeProgram('upsc', trim($ups_name), $temp, PSI_DEBUG);
|
| 2775 |
rexy |
96 |
if (! empty($temp)) {
|
| 3037 |
rexy |
97 |
$this->_output[trim($ups_name)] = $temp;
|
| 2775 |
rexy |
98 |
}
|
|
|
99 |
}
|
|
|
100 |
}
|
|
|
101 |
}
|
|
|
102 |
}
|
|
|
103 |
|
|
|
104 |
/**
|
|
|
105 |
* parse the input and store data in resultset for xml generation
|
|
|
106 |
*
|
|
|
107 |
* @return void
|
|
|
108 |
*/
|
|
|
109 |
private function _info()
|
|
|
110 |
{
|
|
|
111 |
if (! empty($this->_output)) {
|
|
|
112 |
foreach ($this->_output as $name => $value) {
|
|
|
113 |
$temp = preg_split("/\n/", $value, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
114 |
$ups_data = array();
|
|
|
115 |
foreach ($temp as $valueTemp) {
|
|
|
116 |
$line = preg_split('/: /', $valueTemp, 2);
|
|
|
117 |
$ups_data[$line[0]] = isset($line[1]) ? trim($line[1]) : '';
|
|
|
118 |
}
|
|
|
119 |
$dev = new UPSDevice();
|
|
|
120 |
//General
|
|
|
121 |
$dev->setName($name);
|
|
|
122 |
if (isset($ups_data['ups.model'])) {
|
|
|
123 |
$dev->setModel($ups_data['ups.model']);
|
|
|
124 |
}
|
|
|
125 |
if (isset($ups_data['driver.name'])) {
|
|
|
126 |
$dev->setMode($ups_data['driver.name']);
|
|
|
127 |
}
|
|
|
128 |
if (isset($ups_data['ups.status'])) {
|
|
|
129 |
$dev->setStatus($ups_data['ups.status']);
|
|
|
130 |
}
|
| 3037 |
rexy |
131 |
if (isset($ups_data['ups.beeper.status'])) {
|
|
|
132 |
$dev->setBeeperStatus($ups_data['ups.beeper.status']);
|
|
|
133 |
}
|
| 2775 |
rexy |
134 |
|
|
|
135 |
//Line
|
|
|
136 |
if (isset($ups_data['input.voltage'])) {
|
|
|
137 |
$dev->setLineVoltage($ups_data['input.voltage']);
|
|
|
138 |
}
|
|
|
139 |
if (isset($ups_data['input.frequency'])) {
|
|
|
140 |
$dev->setLineFrequency($ups_data['input.frequency']);
|
|
|
141 |
}
|
|
|
142 |
if (isset($ups_data['ups.load'])) {
|
|
|
143 |
$dev->setLoad($ups_data['ups.load']);
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
//Battery
|
|
|
147 |
if (isset($ups_data['battery.voltage'])) {
|
|
|
148 |
$dev->setBatteryVoltage($ups_data['battery.voltage']);
|
|
|
149 |
}
|
|
|
150 |
if (isset($ups_data['battery.charge'])) {
|
|
|
151 |
$dev->setBatterCharge($ups_data['battery.charge']);
|
|
|
152 |
}
|
|
|
153 |
if (isset($ups_data['battery.runtime'])) {
|
|
|
154 |
$dev->setTimeLeft(round($ups_data['battery.runtime']/60, 2));
|
|
|
155 |
}
|
|
|
156 |
|
|
|
157 |
//Temperature
|
|
|
158 |
if (isset($ups_data['ups.temperature'])) {
|
|
|
159 |
$dev->setTemperatur($ups_data['ups.temperature']);
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
$this->upsinfo->setUpsDevices($dev);
|
|
|
163 |
}
|
|
|
164 |
}
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
/**
|
|
|
168 |
* get the information
|
|
|
169 |
*
|
|
|
170 |
* @see PSI_Interface_UPS::build()
|
|
|
171 |
*
|
| 3037 |
rexy |
172 |
* @return void
|
| 2775 |
rexy |
173 |
*/
|
|
|
174 |
public function build()
|
|
|
175 |
{
|
|
|
176 |
$this->_info();
|
|
|
177 |
}
|
|
|
178 |
}
|