mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
158 lines
3.1 KiB
PHP
158 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.2
|
|
*
|
|
* @package TBD
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Stdlib\Base;
|
|
|
|
/**
|
|
* Enum class.
|
|
*
|
|
* Replacing the SplEnum class and providing basic enum.
|
|
*
|
|
* @package Framework
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class Enum
|
|
{
|
|
|
|
/**
|
|
* Check enum value.
|
|
*
|
|
* Checking if a given value is part of this enum
|
|
*
|
|
* @param mixed $value Value to check
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function isValidValue($value) : bool
|
|
{
|
|
$constants = self::getConstants();
|
|
|
|
return \in_array($value, $constants, true);
|
|
}
|
|
|
|
/**
|
|
* Getting all constants of this enum.
|
|
*
|
|
* @return array
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getConstants() : array
|
|
{
|
|
$reflect = new \ReflectionClass(get_called_class());
|
|
|
|
return $reflect->getConstants();
|
|
}
|
|
|
|
/**
|
|
* Get random enum value.
|
|
*
|
|
* @return mixed
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getRandom()
|
|
{
|
|
$constants = self::getConstants();
|
|
$keys = array_keys($constants);
|
|
|
|
return $constants[$keys[mt_rand(0, count($constants) - 1)]];
|
|
}
|
|
|
|
/**
|
|
* Get enum value by name.
|
|
*
|
|
* @param string $name Enum name
|
|
*
|
|
* @return mixed
|
|
*
|
|
* @throws \UnexpectedValueException Throws this exception if the constant is not defined in the enum class.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getByName(string $name)
|
|
{
|
|
if (!self::isValidName($name)) {
|
|
throw new \UnexpectedValueException($name);
|
|
}
|
|
|
|
return constant('static::' . $name);
|
|
}
|
|
|
|
/**
|
|
* Get enum name by value.
|
|
*
|
|
* @param string $value Enum value
|
|
*
|
|
* @return mixed
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getName(string $value)
|
|
{
|
|
$arr = self::getConstants();
|
|
|
|
return array_search($value, $arr);
|
|
}
|
|
|
|
/**
|
|
* Checking enum name.
|
|
*
|
|
* Checking if a certain const name exists (case sensitive)
|
|
*
|
|
* @param string $name Name of the value (case sensitive)
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function isValidName(string $name) : bool
|
|
{
|
|
return defined('static::' . $name);
|
|
}
|
|
|
|
/**
|
|
* Count enum variables
|
|
*
|
|
* @return int
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function count() : int
|
|
{
|
|
return count(self::getConstants());
|
|
}
|
|
|
|
/**
|
|
* Check if flag is set
|
|
*
|
|
* This only works for binary flags.
|
|
*
|
|
* @param int $flags Set flags
|
|
* @param int $checkForFlag Check if this flag is part of the set flags
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function hasFlag(int $flags, int $checkForFlag) : bool
|
|
{
|
|
return ($flags & $checkForFlag) === $checkForFlag;
|
|
}
|
|
}
|