| Line 25... |
Line 25... |
| 25 |
* fill the private content var through command or data access
|
25 |
* fill the private content var through command or data access
|
| 26 |
*/
|
26 |
*/
|
| 27 |
public function __construct()
|
27 |
public function __construct()
|
| 28 |
{
|
28 |
{
|
| 29 |
parent::__construct();
|
29 |
parent::__construct();
|
| 30 |
if (!defined('PSI_EMU_HOSTNAME')) switch (defined('PSI_SENSOR_IPMICFG_ACCESS')?strtolower(PSI_SENSOR_IPMICFG_ACCESS):'command') {
|
30 |
if (!defined('PSI_EMU_HOSTNAME') || defined('PSI_EMU_PORT')) switch (defined('PSI_SENSOR_IPMICFG_ACCESS')?strtolower(PSI_SENSOR_IPMICFG_ACCESS):'command') {
|
| 31 |
case 'command':
|
31 |
case 'command':
|
| 32 |
if (!defined('PSI_SENSOR_IPMICFG_PSFRUINFO') || (strtolower(PSI_SENSOR_IPMICFG_PSFRUINFO)!=="only")) {
|
32 |
if (!defined('PSI_SENSOR_IPMICFG_PSFRUINFO') || (strtolower(PSI_SENSOR_IPMICFG_PSFRUINFO)!=="only")) {
|
| 33 |
CommonFunctions::executeProgram('ipmicfg', '-sdr', $lines);
|
33 |
CommonFunctions::executeProgram('ipmicfg', '-sdr', $lines);
|
| 34 |
}
|
34 |
}
|
| 35 |
if (defined('PSI_SENSOR_IPMICFG_PSFRUINFO') && (PSI_SENSOR_IPMICFG_PSFRUINFO!==false)) {
|
35 |
if (defined('PSI_SENSOR_IPMICFG_PSFRUINFO') && (PSI_SENSOR_IPMICFG_PSFRUINFO!==false)) {
|
| Line 38... |
Line 38... |
| 38 |
}
|
38 |
}
|
| 39 |
}
|
39 |
}
|
| 40 |
$this->_lines = preg_split("/\r?\n/", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
40 |
$this->_lines = preg_split("/\r?\n/", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
| 41 |
break;
|
41 |
break;
|
| 42 |
case 'data':
|
42 |
case 'data':
|
| 43 |
if (CommonFunctions::rftsdata('ipmicfg.tmp', $lines)) {
|
43 |
if (!defined('PSI_EMU_PORT') && CommonFunctions::rftsdata('ipmicfg.tmp', $lines)) {
|
| 44 |
$this->_lines = preg_split("/\r?\n/", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
44 |
$this->_lines = preg_split("/\r?\n/", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
| 45 |
}
|
45 |
}
|
| 46 |
break;
|
46 |
break;
|
| 47 |
default:
|
47 |
default:
|
| 48 |
$this->error->addConfigError('__construct()', '[sensor_ipmicfg] ACCESS');
|
48 |
$this->error->addConfigError('__construct()', '[sensor_ipmicfg] ACCESS');
|