diff options
Diffstat (limited to 'lib/private/Diagnostics/Query.php')
-rw-r--r-- | lib/private/Diagnostics/Query.php | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/lib/private/Diagnostics/Query.php b/lib/private/Diagnostics/Query.php new file mode 100644 index 00000000000..020fc4bb512 --- /dev/null +++ b/lib/private/Diagnostics/Query.php @@ -0,0 +1,74 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ +namespace OC\Diagnostics; + +use OCP\Diagnostics\IQuery; + +class Query implements IQuery { + private $sql; + + private $params; + + private $start; + + private $end; + + private $stack; + + /** + * @param string $sql + * @param array $params + * @param int $start + */ + public function __construct($sql, $params, $start, array $stack) { + $this->sql = $sql; + $this->params = $params; + $this->start = $start; + $this->stack = $stack; + } + + public function end($time) { + $this->end = $time; + } + + /** + * @return array + */ + public function getParams() { + return $this->params; + } + + /** + * @return string + */ + public function getSql() { + return $this->sql; + } + + /** + * @return float + */ + public function getStart() { + return $this->start; + } + + /** + * @return float + */ + public function getDuration() { + return $this->end - $this->start; + } + + public function getStartTime() { + return $this->start; + } + + public function getStacktrace() { + return $this->stack; + } +} |