Skip to content

gjm/Platenum

 
 

Repository files navigation

Platenum

Build Status License Latest Stable Version

Platenum provides a flexible and feature-complete solution for enumerations (enums) in PHP with no external dependencies. The name comes from the Latin term for a Platinum chemical element.

Installation

This library is available on Packagist and can be installed with Composer in projects supporting PHP 7.1 and above:

composer require thunderer/platenum

Usage

Create a new class with members definition:

<?php
declare(strict_types=1);
namespace X;

use Thunder\Platenum\Enum\ConstantsEnumTrait;

/**
 * @method static static ACTIVE()
 * @method static static INACTIVE()
 * @method static static SUSPENDED()
 * @method static static DISABLED()
 */
final class AccountStatusEnum
{
    private const ACTIVE = 1;
    private const INACTIVE = 2;
    private const SUSPENDED = 3;
    private const DISABLED = 4;

    use ConstantsEnumTrait;
}

Tip: To enable autocomplete for the constant methods, include the @method declarations as shown in the listing above.

Members instances can be created using either constants methods, members names, or their values:

$active = AccountStatusEnum::ACTIVE();
$alsoActive = AccountStatusEnum::fromMember('ACTIVE');
$stillActive = AccountStatusEnum::fromValue(1);

Enums can be compared using strict === operator or an equals() method:

assert($active === $alsoActive);
assert(true === $active->equals($alsoActive));

Note: Strict comparison === should be always preferred. Loose == comparison will also work correctly, but it has loads of quirks.

The getValue() method returns the raw value of given instance:

assert(1 === $active->getValue());

enum generator

Classes can be automatically generated using built-in bin/generate utility. It accepts three parameters:

  • location of its members (either constants, docblock or static),
  • (fully qualified) class name, Platenum matches the namespace to your autoloading configuration and puts the file in the proper directory,
  • members names with optional values where supported.

Example:

bin/generate constants Thunder\\Platenum\\YourEnum FOO=1,BAR=3
bin/generate docblock Thunder\\Platenum\\YourEnum FOO,BAR
bin/generate static Thunder\\Platenum\\YourEnum FOO,BAR=3

Sources

There are multiple sources from which Platenum can read enumeration members. Base EnumTrait provides all enum functionality without any source, to be defined in a static resolve() method. Each source is available both as a trait which uses EnumTrait with concrete resolve() method implementation and an abstract class based on that trait. Usage of traits is recommended as target enum classes should not have any common type hint.

In this section the BooleanEnum class with two members (TRUE=true and FALSE=false) will be used as an example.

class constants

final class BooleanEnum
{
    use ConstantsEnumTrait;

    private const TRUE = true;
    private const FALSE = false;
}
final class BooleanEnum extends AbstractConstantsEnum
{
    private const TRUE = true;
    private const FALSE = false;
}

class docblock

Note: There is no way to specify members values inside docblock, therefore all members names are also their values - in this case TRUE='TRUE' and FALSE='FALSE'.

/**
 * @method static static TRUE()
 * @method static static FALSE()
 */
final class BooleanEnum
{
    use DocblockEnumTrait;
}
/**
 * @method static static TRUE()
 * @method static static FALSE()
 */
final class BooleanEnum extends AbstractDocblockEnum {}

static property

final class BooleanEnum
{
    use StaticEnumTrait;

    private static $mapping = [
        'TRUE' => true,
        'FALSE' => false,
    ];
}
final class BooleanEnum extends AbstractStaticEnum
{
    private static $mapping = [
        'TRUE' => true,
        'FALSE' => false,
    ];
}

custom source

Note: The resolve method will be called only once when the enumeration is used for the first time.

final class BooleanEnum
{
    use EnumTrait;

    private static function resolve(): array
    {
        return [
            'TRUE' => true,
            'FALSE' => false,
        ];
    }
}

Reasons

There are already a few enum libraries in the PHP ecosystem. Why another one? There are several reasons to do so:

Sources Platenum allows multiple sources for enumeration members. EnumTrait contains all enum functions - extend it with your custom resolve() method to create custom source. In fact, all enumeration sources in this repository are defined this way.

Features Platenum provides complete feature set for all kinds of operations on enumeration members, values, comparison, transformation, and more. Look at PhpEnumerations project to see the feature matrix created during development of this library.

Inheritance Existing solutions use inheritance for creating enum classes:

class YourEnum extends LibraryEnum
{
    const ONE = 1;
    const TWO = 2;
}

Enumerations should be represented as different types without an ability to be used interchangeably. Platenum leverages traits to provide complete class body, therefore instanceof comparison will fail as it should and there is no possibility to typehint generic LibraryEnum class to allow any enum instance there.

Comparison Creating more than one instance of certain enum value should not prohibit you from strictly comparing them like any other variable. Other solutions encourage using loose comparison (==) as the instances with the same values are not the same instances of their classes. This library guarantees that the same enum value instance will always be the same instance which can be strictly compared:

final class YourEnum
{
    private const ONE = 1;
    private const TWO = 2;

    use EnumTrait;
}

YourEnum::ONE() === YourEnum::ONE()
YourEnum::fromValue(1) === YourEnum::ONE()
YourEnum::fromValue(1) === YourEnum::fromValue(1)

Note: If you want to prove me wrong by using reflection or other opcode modifying extensions like uopz, then save yourself that effort, you're right and I surrender.

Serialization

Platenum provides correct (de)serialization solution which preserves its single member instance guarantees.

The only exception to that guarantee is when an enum instance is unserialize()d inside another class as PHP always creates a new object there. This can be easily mitigated by fromInstance replacement helper method inside __wakeup() method which accepts its argument by reference and automatically swaps it to a correct instance:

public function __wakeup()
{
    $this->enum->fromInstance($this->enum);
}

Note that equals() method is not affected as it does not rely on the same object instance but its class and actual value inside.

License

See LICENSE file in the main directory of this library.

About

The PHP enumeration type library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 98.4%
  • Makefile 1.6%