2017-11-12 17:28:04 +03:00
|
|
|
<?php
|
|
|
|
|
2019-05-09 15:06:44 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-11-12 17:28:04 +03:00
|
|
|
/**
|
2019-12-03 21:57:53 +03:00
|
|
|
*
|
|
|
|
*
|
2017-11-12 17:28:04 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-11-12 17:28:04 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Support\CrashReport;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use Throwable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
|
|
|
interface IRegistry {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a reporter instance
|
|
|
|
*
|
|
|
|
* @param IReporter $reporter
|
2019-05-09 15:06:44 +03:00
|
|
|
*
|
|
|
|
* @since 13.0.0
|
2017-11-12 17:28:04 +03:00
|
|
|
*/
|
2019-05-09 15:06:44 +03:00
|
|
|
public function register(IReporter $reporter): void;
|
2017-11-12 17:28:04 +03:00
|
|
|
|
2018-09-03 09:37:50 +03:00
|
|
|
/**
|
|
|
|
* Delegate breadcrumb collection to all registered reporters
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param string $category
|
|
|
|
* @param array $context
|
|
|
|
*
|
2018-09-03 09:49:14 +03:00
|
|
|
* @since 15.0.0
|
2018-09-03 09:37:50 +03:00
|
|
|
*/
|
2019-05-09 15:06:44 +03:00
|
|
|
public function delegateBreadcrumb(string $message, string $category, array $context = []): void;
|
2018-09-03 09:37:50 +03:00
|
|
|
|
2017-11-12 17:28:04 +03:00
|
|
|
/**
|
|
|
|
* Delegate crash reporting to all registered reporters
|
|
|
|
*
|
|
|
|
* @param Exception|Throwable $exception
|
2017-11-14 16:28:04 +03:00
|
|
|
* @param array $context
|
2019-05-09 15:06:44 +03:00
|
|
|
*
|
|
|
|
* @since 13.0.0
|
2017-11-12 17:28:04 +03:00
|
|
|
*/
|
2017-11-14 16:28:04 +03:00
|
|
|
public function delegateReport($exception, array $context = []);
|
2019-05-09 15:06:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Delegate a message to all reporters that implement IMessageReporter
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
|
|
|
public function delegateMessage(string $message, array $context = []): void;
|
2017-11-12 17:28:04 +03:00
|
|
|
}
|