mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
151 lines
3.1 KiB
PHP
151 lines
3.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Profiler;
|
|
|
|
use OCP\DataCollector\IDataCollector;
|
|
use OCP\Profiler\IProfile;
|
|
|
|
class Profile implements \JsonSerializable, IProfile {
|
|
private string $token;
|
|
|
|
private ?int $time = null;
|
|
|
|
private ?string $url = null;
|
|
|
|
private ?string $method = null;
|
|
|
|
private ?int $statusCode = null;
|
|
|
|
/** @var array<string, IDataCollector> */
|
|
private array $collectors = [];
|
|
|
|
private ?IProfile $parent = null;
|
|
|
|
/** @var IProfile[] */
|
|
private array $children = [];
|
|
|
|
public function __construct(string $token) {
|
|
$this->token = $token;
|
|
}
|
|
|
|
public function getToken(): string {
|
|
return $this->token;
|
|
}
|
|
|
|
public function setToken(string $token): void {
|
|
$this->token = $token;
|
|
}
|
|
|
|
public function getTime(): ?int {
|
|
return $this->time;
|
|
}
|
|
|
|
public function setTime(int $time): void {
|
|
$this->time = $time;
|
|
}
|
|
|
|
public function getUrl(): ?string {
|
|
return $this->url;
|
|
}
|
|
|
|
public function setUrl(string $url): void {
|
|
$this->url = $url;
|
|
}
|
|
|
|
public function getMethod(): ?string {
|
|
return $this->method;
|
|
}
|
|
|
|
public function setMethod(string $method): void {
|
|
$this->method = $method;
|
|
}
|
|
|
|
public function getStatusCode(): ?int {
|
|
return $this->statusCode;
|
|
}
|
|
|
|
public function setStatusCode(int $statusCode): void {
|
|
$this->statusCode = $statusCode;
|
|
}
|
|
|
|
public function addCollector(IDataCollector $collector) {
|
|
$this->collectors[$collector->getName()] = $collector;
|
|
}
|
|
|
|
public function getParent(): ?IProfile {
|
|
return $this->parent;
|
|
}
|
|
|
|
public function setParent(?IProfile $parent): void {
|
|
$this->parent = $parent;
|
|
}
|
|
|
|
public function getParentToken(): ?string {
|
|
return $this->parent ? $this->parent->getToken() : null;
|
|
}
|
|
|
|
/** @return IProfile[] */
|
|
public function getChildren(): array {
|
|
return $this->children;
|
|
}
|
|
|
|
/**
|
|
* @param IProfile[] $children
|
|
*/
|
|
public function setChildren(array $children): void {
|
|
$this->children = [];
|
|
foreach ($children as $child) {
|
|
$this->addChild($child);
|
|
}
|
|
}
|
|
|
|
public function addChild(IProfile $profile): void {
|
|
$this->children[] = $profile;
|
|
$profile->setParent($this);
|
|
}
|
|
|
|
/**
|
|
* @return IDataCollector[]
|
|
*/
|
|
public function getCollectors(): array {
|
|
return $this->collectors;
|
|
}
|
|
|
|
/**
|
|
* @param IDataCollector[] $collectors
|
|
*/
|
|
public function setCollectors(array $collectors): void {
|
|
$this->collectors = $collectors;
|
|
}
|
|
|
|
public function __sleep(): array {
|
|
return ['token', 'parent', 'children', 'collectors', 'method', 'url', 'time', 'statusCode'];
|
|
}
|
|
|
|
#[\ReturnTypeWillChange]
|
|
public function jsonSerialize() {
|
|
// Everything but parent
|
|
return [
|
|
'token' => $this->token,
|
|
'method' => $this->method,
|
|
'children' => $this->children,
|
|
'url' => $this->url,
|
|
'statusCode' => $this->statusCode,
|
|
'time' => $this->time,
|
|
'collectors' => $this->collectors,
|
|
];
|
|
}
|
|
|
|
public function getCollector(string $collectorName): ?IDataCollector {
|
|
if (!array_key_exists($collectorName, $this->collectors)) {
|
|
return null;
|
|
}
|
|
return $this->collectors[$collectorName];
|
|
}
|
|
}
|