From d3a244f9d9f3a90b7bd92a22210601c7f543441f Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 9 May 2019 14:06:44 +0200 Subject: Allow crash reporters to catpture any message Signed-off-by: Christoph Wurst --- lib/private/Support/CrashReport/Registry.php | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'lib/private/Support/CrashReport') diff --git a/lib/private/Support/CrashReport/Registry.php b/lib/private/Support/CrashReport/Registry.php index 72c43fe37e2..be022efb385 100644 --- a/lib/private/Support/CrashReport/Registry.php +++ b/lib/private/Support/CrashReport/Registry.php @@ -24,6 +24,7 @@ namespace OC\Support\CrashReport; use Exception; use OCP\Support\CrashReport\ICollectBreadcrumbs; +use OCP\Support\CrashReport\IMessageReporter; use OCP\Support\CrashReport\IRegistry; use OCP\Support\CrashReport\IReporter; use Throwable; @@ -38,7 +39,7 @@ class Registry implements IRegistry { * * @param IReporter $reporter */ - public function register(IReporter $reporter) { + public function register(IReporter $reporter): void { $this->reporters[] = $reporter; } @@ -51,7 +52,7 @@ class Registry implements IRegistry { * * @since 15.0.0 */ - public function delegateBreadcrumb(string $message, string $category, array $context = []) { + public function delegateBreadcrumb(string $message, string $category, array $context = []): void { foreach ($this->reporters as $reporter) { if ($reporter instanceof ICollectBreadcrumbs) { $reporter->collect($message, $category, $context); @@ -65,11 +66,27 @@ class Registry implements IRegistry { * @param Exception|Throwable $exception * @param array $context */ - public function delegateReport($exception, array $context = []) { + public function delegateReport($exception, array $context = []): void { /** @var IReporter $reporter */ foreach ($this->reporters as $reporter) { $reporter->report($exception, $context); } } + /** + * Delegate a message to all reporters that implement IMessageReporter + * + * @param string $message + * @param array $context + * + * @return void + */ + public function delegateMessage(string $message, array $context = []): void { + foreach ($this->reporters as $reporter) { + if ($reporter instanceof IMessageReporter) { + $reporter->reportMessage($message, $context); + } + } + } + } -- cgit v1.2.3