%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/apps/serverinfo/lib/OperatingSystems/ |
| Current File : //www/varak.net/nextcloud.varak.net/apps/serverinfo/lib/OperatingSystems/IOperatingSystem.php |
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\ServerInfo\OperatingSystems;
use OCA\ServerInfo\Resources\Disk;
use OCA\ServerInfo\Resources\Memory;
use OCA\ServerInfo\Resources\NetInterface;
use OCA\ServerInfo\Resources\ThermalZone;
interface IOperatingSystem {
public function supported(): bool;
/**
* Get name of the processor.
*
* @return string
*/
public function getCpuName(): string;
/**
* Get disk info returns a list of Disk objects. Used and Available in bytes.
*
* @return Disk[]
*/
public function getDiskInfo(): array;
/**
* Get memory returns a Memory object. All values are in bytes.
*
* @return Memory
*/
public function getMemory(): Memory;
/**
* Get info about network connection.
*
* [
* 'gateway' => string,
* 'hostname' => string,
* ]
*/
public function getNetworkInfo(): array;
/**
* Get info about available network interfaces.
*
* @return NetInterface[]
*/
public function getNetworkInterfaces(): array;
/**
* Get system time and timezone.
* Empty string in case of errors
*/
public function getTime(): string;
/**
* Get the total number of seconds the system has been up or -1 on failure.
*/
public function getUptime(): int;
/**
* Get info about available thermal zones.
*
* @return ThermalZone[]
*/
public function getThermalZones(): array;
}