2
0
mirror of https://github.com/opencultureconsulting/php-basics.git synced 2025-03-30 00:00:15 +01:00
php-basics/src/Traits/Singleton.php

92 lines
2.6 KiB
PHP
Raw Normal View History

2023-10-11 13:31:20 +02:00
<?php
2023-09-11 19:31:06 +02:00
/**
2024-01-23 17:58:33 +01:00
* PHP Basics
*
* Copyright (C) 2024 Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
2023-09-11 19:31:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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
2024-01-23 17:58:33 +01:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2023-09-11 19:31:06 +02:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2024-01-23 17:58:33 +01:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2023-09-11 19:31:06 +02:00
*/
2023-10-11 13:31:20 +02:00
declare(strict_types=1);
2023-11-18 18:13:51 +01:00
namespace OCC\Basics\Traits;
2023-11-06 17:54:14 +01:00
2023-11-12 15:27:56 +01:00
use LogicException;
2023-09-11 19:31:06 +02:00
/**
2023-10-11 13:31:20 +02:00
* Allows just a single instance of the class using this trait.
2023-09-11 19:31:06 +02:00
*
* Get the singleton by calling the static method `getInstance()`.
2024-02-11 16:21:02 +01:00
*
* If there is no object yet, the constructor is called with the same arguments
* as `getInstance()`. Any later call will just return the already instantiated
* object (irrespective of the given arguments).
*
* In order for this to work as expected, the constructor has to be implemented
* as `private` to prevent direct instantiation of the class.
*
2023-09-11 19:31:06 +02:00
* @author Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
2024-01-23 17:58:33 +01:00
* @package Basics\Traits
2023-09-11 19:31:06 +02:00
*/
trait Singleton
{
/**
2024-01-23 17:58:33 +01:00
* Holds the singleton instance.
2023-12-20 13:48:35 +01:00
*
2024-02-05 15:37:02 +01:00
* @var array<class-string, static>
2024-01-26 16:37:41 +01:00
*
* @internal
2023-09-11 19:31:06 +02:00
*/
2024-02-11 16:21:02 +01:00
private static array $_singleton = [];
2023-09-11 19:31:06 +02:00
/**
* Get a singleton instance of this class.
2023-11-11 09:34:02 +01:00
*
2024-02-11 16:21:02 +01:00
* @param mixed ...$args Constructor arguments
2023-11-19 20:53:44 +01:00
*
2023-12-20 13:48:35 +01:00
* @return static The singleton instance
*
2024-01-26 16:37:41 +01:00
* @api
2023-09-11 19:31:06 +02:00
*/
2023-11-11 20:06:53 +01:00
final public static function getInstance(mixed ...$args): static
2023-09-11 19:31:06 +02:00
{
2024-02-11 16:21:02 +01:00
if (!isset(static::$_singleton[static::class])) {
static::$_singleton[static::class] = new static(...$args);
2023-09-11 19:31:06 +02:00
}
2024-02-11 16:21:02 +01:00
return static::$_singleton[static::class];
2023-09-11 19:31:06 +02:00
}
/**
2023-11-11 20:06:53 +01:00
* This is a singleton class, thus the constructor is private.
2023-11-15 12:01:21 +01:00
*
2024-01-26 16:37:41 +01:00
* @return void
*
* @see Singleton::getInstance() to get an singleton object of the class
2023-09-11 19:31:06 +02:00
*/
2023-11-19 15:56:42 +01:00
abstract private function __construct();
2023-09-11 19:31:06 +02:00
/**
* This is a singleton class, thus cloning is prohibited.
2023-11-12 15:27:56 +01:00
*
2024-01-26 16:37:41 +01:00
* @return void
*
* @throws LogicException when trying to clone the singleton object
2023-09-11 19:31:06 +02:00
*/
2024-02-05 15:37:02 +01:00
final public function __clone()
2023-09-11 19:31:06 +02:00
{
2023-11-18 18:50:14 +01:00
throw new LogicException('Cloning a singleton is prohibited.');
2023-09-11 19:31:06 +02:00
}
}