mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
118 lines
2.4 KiB
PHP
118 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.2
|
|
*
|
|
* @package phpOMS\System
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\System;
|
|
|
|
/**
|
|
* System utils
|
|
*
|
|
* @package phpOMS\System
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
final class SystemUtils
|
|
{
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
private function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get system RAM.
|
|
*
|
|
* @return int
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getRAM() : int
|
|
{
|
|
$mem = 0;
|
|
|
|
if (stristr(PHP_OS, 'WIN')) {
|
|
$mem = null;
|
|
exec('wmic memorychip get capacity', $mem);
|
|
|
|
/** @var array $mem */
|
|
$mem = array_sum($mem) / 1024;
|
|
} elseif (stristr(PHP_OS, 'LINUX')) {
|
|
$fh = fopen('/proc/meminfo', 'r');
|
|
$mem = 0;
|
|
|
|
while ($line = fgets($fh)) {
|
|
$pieces = [];
|
|
if (\preg_match('/^MemTotal:\s+(\d+)\skB$/', $line, $pieces)) {
|
|
$mem = $pieces[1] * 1024;
|
|
break;
|
|
}
|
|
}
|
|
|
|
fclose($fh);
|
|
}
|
|
|
|
return (int) $mem;
|
|
}
|
|
|
|
/**
|
|
* Get RAM usage.
|
|
*
|
|
* @return int
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getRAMUsage() : int
|
|
{
|
|
$memUsage = 0;
|
|
|
|
if (stristr(PHP_OS, 'LINUX')) {
|
|
$free = shell_exec('free');
|
|
$free = (string) trim($free);
|
|
$freeArr = \explode("\n", $free);
|
|
$mem = \explode(" ", $freeArr[1]);
|
|
$mem = array_values(array_filter($mem));
|
|
$memUsage = $mem[2] / $mem[1] * 100;
|
|
}
|
|
|
|
return (int) $memUsage;
|
|
}
|
|
|
|
/**
|
|
* Get cpu usage.
|
|
*
|
|
* @return int
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getCpuUsage() : int
|
|
{
|
|
$cpuUsage = 0;
|
|
|
|
if (stristr(PHP_OS, 'WIN') !== false) {
|
|
$cpuUsage = null;
|
|
exec('wmic cpu get LoadPercentage', $cpuUsage);
|
|
$cpuUsage = $cpuUsage[1];
|
|
} elseif (stristr(PHP_OS, 'LINUX') !== false) {
|
|
$cpuUsage = \sys_getloadavg()[0] * 100;
|
|
}
|
|
|
|
return (int) $cpuUsage;
|
|
}
|
|
}
|