Subversion Repositories ALCASAR

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
2775 rexy 1
<?php
2
/**
3
 * Pmset class
4
 *
5
 * PHP version 5
6
 *
7
 * @category  PHP
8
 * @package   PSI_UPS
9
 * @author    Robert Pelletier <drizzt@menzonet.org>
10
 * @copyright 2014 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.nut.inc.php 661 2012-08-27 11:26:39Z namiltd $
13
 * @link      http://phpsysinfo.sourceforge.net
14
 */
15
 /**
16
 * getting ups information from pmset program
17
 *
18
 * @category  PHP
19
 * @package   PSI_UPS
20
 * @author    Robert Pelletier <drizzt@menzonet.org>
21
 * @copyright 2014 phpSysInfo
22
 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
23
 * @version   Release: 3.0
24
 * @link      http://phpsysinfo.sourceforge.net
25
 */
26
class Pmset extends UPS
27
{
28
    /**
29
     * internal storage for all gathered data
30
     *
31
     * @var array
32
     */
33
    private $_output = array();
34
 
35
    /**
36
     * get all information from all configured ups and store output in internal array
37
     */
38
    public function __construct()
39
    {
40
        parent::__construct();
41
        $temp = "";
42
        if (CommonFunctions::executeProgram('pmset', '-g batt', $temp) && !empty($temp)) {
43
            $this->_output[] = $temp;
44
        }
45
    }
46
 
47
    /**
48
     * parse the input and store data in resultset for xml generation
49
     *
50
     * @return void
51
     */
52
   private function _info()
53
    {
54
        if (empty($this->_output)) {
55
            return;
56
        }
57
        $model = array();
58
        $percCharge = array();
59
        $lines = explode(PHP_EOL, implode($this->_output));
60
        if (count($lines)>1) {
61
            $model = explode('FW:', $lines[1]);
62
            if (strpos($model[0], 'InternalBattery') === false) {
63
                $dev = new UPSDevice();
64
                $percCharge = explode(';', $lines[1]);
65
                $dev->setName('UPS');
66
                if ($model !== false) {
67
                    $dev->setModel(substr(trim($model[0]), 1));
68
                }
69
                if ($percCharge !== false) {
70
                    $dev->setBatterCharge(trim(substr($percCharge[0], -4, 3)));
71
                    $dev->setStatus(trim($percCharge[1]));
72
                    if (isset($percCharge[2])) {
73
                        $time = explode(':', $percCharge[2]);
74
                        $hours = $time[0];
75
                        $minutes = $hours*60+substr($time[1], 0, 2);
76
                        $dev->setTimeLeft($minutes);
77
                    }
78
                }
79
                $dev->setMode("pmset");
80
                $this->upsinfo->setUpsDevices($dev);
81
            }
82
        }
83
    }
84
 
85
    /**
86
     * get the information
87
     *
88
     * @see PSI_Interface_UPS::build()
89
     *
90
     * @return Void
91
     */
92
    public function build()
93
    {
94
        $this->_info();
95
    }
96
}