2017-07-03 20:28:17 +03:00
|
|
|
<?php
|
|
|
|
namespace GraphQL\Error;
|
|
|
|
|
|
|
|
final class Warning
|
|
|
|
{
|
2017-07-04 13:10:55 +03:00
|
|
|
const NAME_WARNING = 1;
|
|
|
|
const ASSIGN_WARNING = 2;
|
|
|
|
const CONFIG_WARNING = 4;
|
2017-07-10 15:38:12 +03:00
|
|
|
const RESOLVE_TYPE_WARNING = 8;
|
2017-08-13 20:08:13 +03:00
|
|
|
const CONFIG_DEPRECATION_WARNING = 16;
|
2017-07-04 13:10:55 +03:00
|
|
|
|
2017-08-13 20:08:13 +03:00
|
|
|
const ALL = 23;
|
2017-07-04 13:10:55 +03:00
|
|
|
|
|
|
|
static $enableWarnings = self::ALL;
|
2017-07-03 20:28:17 +03:00
|
|
|
|
|
|
|
static $warned = [];
|
|
|
|
|
2017-08-12 22:50:34 +03:00
|
|
|
static private $warningHandler;
|
|
|
|
|
|
|
|
public static function setWarningHandler(callable $warningHandler = null)
|
|
|
|
{
|
|
|
|
self::$warningHandler = $warningHandler;
|
|
|
|
}
|
|
|
|
|
2017-07-04 13:10:55 +03:00
|
|
|
static function suppress($suppress = true)
|
2017-07-03 20:28:17 +03:00
|
|
|
{
|
2017-07-04 13:10:55 +03:00
|
|
|
if (true === $suppress) {
|
|
|
|
self::$enableWarnings = 0;
|
|
|
|
} else if (false === $suppress) {
|
|
|
|
self::$enableWarnings = self::ALL;
|
|
|
|
} else {
|
|
|
|
$suppress = (int) $suppress;
|
|
|
|
self::$enableWarnings &= ~$suppress;
|
|
|
|
}
|
2017-07-03 20:28:17 +03:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:38:12 +03:00
|
|
|
public static function enable($enable = true)
|
|
|
|
{
|
|
|
|
if (true === $enable) {
|
|
|
|
self::$enableWarnings = self::ALL;
|
|
|
|
} else if (false === $enable) {
|
|
|
|
self::$enableWarnings = 0;
|
|
|
|
} else {
|
|
|
|
$enable = (int) $enable;
|
|
|
|
self::$enableWarnings |= $enable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 20:08:13 +03:00
|
|
|
static function warnOnce($errorMessage, $warningId, $messageLevel = null)
|
2017-07-03 20:28:17 +03:00
|
|
|
{
|
2017-08-12 22:50:34 +03:00
|
|
|
if (self::$warningHandler) {
|
|
|
|
$fn = self::$warningHandler;
|
|
|
|
$fn($errorMessage, $warningId);
|
|
|
|
} else if ((self::$enableWarnings & $warningId) > 0 && !isset(self::$warned[$warningId])) {
|
2017-07-04 13:10:55 +03:00
|
|
|
self::$warned[$warningId] = true;
|
2017-08-13 20:08:13 +03:00
|
|
|
trigger_error($errorMessage, $messageLevel ?: E_USER_WARNING);
|
2017-07-04 13:10:55 +03:00
|
|
|
}
|
|
|
|
}
|
2017-07-03 20:28:17 +03:00
|
|
|
|
2017-08-13 20:08:13 +03:00
|
|
|
static function warn($errorMessage, $warningId, $messageLevel = null)
|
2017-07-04 13:10:55 +03:00
|
|
|
{
|
2017-08-12 22:50:34 +03:00
|
|
|
if (self::$warningHandler) {
|
|
|
|
$fn = self::$warningHandler;
|
|
|
|
$fn($errorMessage, $warningId);
|
|
|
|
} else if ((self::$enableWarnings & $warningId) > 0) {
|
2017-08-13 20:08:13 +03:00
|
|
|
trigger_error($errorMessage, $messageLevel ?: E_USER_WARNING);
|
2017-07-03 20:28:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|