347 lines
11 KiB
PHP
347 lines
11 KiB
PHP
<?php
|
|
|
|
namespace StubTests\Model;
|
|
|
|
use RuntimeException;
|
|
use function array_key_exists;
|
|
use function count;
|
|
|
|
class StubsContainer
|
|
{
|
|
/**
|
|
* @var PHPConst[]
|
|
*/
|
|
private $constants = [];
|
|
|
|
/**
|
|
* @var PHPFunction[]
|
|
*/
|
|
private $functions = [];
|
|
|
|
/**
|
|
* @var PHPClass[]
|
|
*/
|
|
private $classes = [];
|
|
|
|
/**
|
|
* @var PHPInterface[]
|
|
*/
|
|
private $interfaces = [];
|
|
|
|
/**
|
|
* @var PHPEnum[]
|
|
*/
|
|
private $enums = [];
|
|
|
|
/**
|
|
* @return PHPConst[]
|
|
*/
|
|
public function getConstants()
|
|
{
|
|
return $this->constants;
|
|
}
|
|
|
|
/**
|
|
* @param string $constantName
|
|
* @param string|null $sourceFilePath
|
|
* @return PHPConst|null
|
|
* @throws RuntimeException
|
|
*/
|
|
public function getConstant($constantName, $sourceFilePath = null)
|
|
{
|
|
$constants = array_filter($this->constants, function (PHPConst $const) use ($constantName) {
|
|
return $const->name === $constantName && $const->duplicateOtherElement === false
|
|
&& BasePHPElement::entitySuitsCurrentPhpVersion($const);
|
|
});
|
|
if (count($constants) === 1) {
|
|
return array_pop($constants);
|
|
}
|
|
|
|
if ($sourceFilePath !== null) {
|
|
$constants = array_filter($constants, function (PHPConst $constant) use ($sourceFilePath) {
|
|
return $constant->sourceFilePath === $sourceFilePath
|
|
&& BasePHPElement::entitySuitsCurrentPhpVersion($constant);
|
|
});
|
|
}
|
|
if (count($constants) > 1) {
|
|
throw new RuntimeException("Multiple constants with name $constantName found");
|
|
}
|
|
if (!empty($constants)) {
|
|
return array_pop($constants);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public function addConstant(PHPConst $constant)
|
|
{
|
|
if (isset($constant->name)) {
|
|
if (array_key_exists($constant->name, $this->constants)) {
|
|
$amount = count(array_filter(
|
|
$this->constants,
|
|
function (PHPConst $nextConstant) use ($constant) {
|
|
return $nextConstant->name === $constant->name;
|
|
}
|
|
));
|
|
$constant->duplicateOtherElement = true;
|
|
$this->constants[$constant->name . '_duplicated_' . $amount] = $constant;
|
|
} else {
|
|
$this->constants[$constant->name] = $constant;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return PHPFunction[]
|
|
*/
|
|
public function getFunctions()
|
|
{
|
|
return $this->functions;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param string|null $sourceFilePath
|
|
* @param bool $shouldSuitCurrentPhpVersion
|
|
* @return PHPFunction
|
|
* @throws RuntimeException
|
|
*/
|
|
public function getFunction($name, $sourceFilePath = null, $shouldSuitCurrentPhpVersion = true)
|
|
{
|
|
$functions = array_filter($this->functions, function (PHPFunction $function) use ($shouldSuitCurrentPhpVersion, $name) {
|
|
return $function->name === $name && (!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($function));
|
|
});
|
|
if (count($functions) > 1) {
|
|
$functions = array_filter($functions, function (PHPFunction $function) {
|
|
return $function->duplicateOtherElement === false;
|
|
});
|
|
}
|
|
if (count($functions) === 1) {
|
|
return array_pop($functions);
|
|
}
|
|
|
|
if ($sourceFilePath !== null) {
|
|
$functions = array_filter($functions, function (PHPFunction $function) use ($shouldSuitCurrentPhpVersion, $sourceFilePath) {
|
|
return $function->sourceFilePath === $sourceFilePath
|
|
&& (!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($function));
|
|
});
|
|
}
|
|
if (count($functions) > 1) {
|
|
throw new RuntimeException("Multiple functions with name $name found");
|
|
}
|
|
if (!empty($functions)) {
|
|
return array_pop($functions);
|
|
} else {
|
|
throw new RuntimeException("Could not get function {$name} from reflection");
|
|
}
|
|
}
|
|
|
|
public function addFunction(PHPFunction $function)
|
|
{
|
|
if (isset($function->name)) {
|
|
if (array_key_exists($function->name, $this->functions)) {
|
|
$amount = count(array_filter(
|
|
$this->functions,
|
|
function (PHPFunction $nextFunction) use ($function) {
|
|
return $nextFunction->name === $function->name;
|
|
}
|
|
));
|
|
$function->duplicateOtherElement = true;
|
|
$this->functions[$function->name . '_duplicated_' . $amount] = $function;
|
|
} else {
|
|
$this->functions[$function->name] = $function;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return PHPClass[]
|
|
*/
|
|
public function getClasses()
|
|
{
|
|
return $this->classes;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param string|null $sourceFilePath
|
|
* @param bool $shouldSuitCurrentPhpVersion
|
|
* @return PHPClass|null
|
|
* @throws RuntimeException
|
|
*/
|
|
public function getClass($name, $sourceFilePath = null, $shouldSuitCurrentPhpVersion = true)
|
|
{
|
|
$classes = array_filter($this->classes, function (PHPClass $class) use ($shouldSuitCurrentPhpVersion, $name) {
|
|
return $class->name === $name &&
|
|
(!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($class));
|
|
});
|
|
if (count($classes) === 1) {
|
|
return array_pop($classes);
|
|
}
|
|
|
|
if ($sourceFilePath !== null) {
|
|
$classes = array_filter($classes, function (PHPClass $class) use ($shouldSuitCurrentPhpVersion, $sourceFilePath) {
|
|
return $class->sourceFilePath === $sourceFilePath &&
|
|
(!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($class));
|
|
});
|
|
}
|
|
if (count($classes) > 1) {
|
|
throw new RuntimeException("Multiple classes with name $name found");
|
|
}
|
|
if (!empty($classes)) {
|
|
return array_pop($classes);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param string|null $sourceFilePath
|
|
* @param bool $shouldSuitCurrentPhpVersion
|
|
* @return PHPEnum|null
|
|
* @throws RuntimeException
|
|
*/
|
|
public function getEnum($name, $sourceFilePath = null, $shouldSuitCurrentPhpVersion = true)
|
|
{
|
|
$enums = array_filter($this->enums, function (PHPEnum $enum) use ($shouldSuitCurrentPhpVersion, $name) {
|
|
return $enum->name === $name &&
|
|
(!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($enum));
|
|
});
|
|
if (count($enums) === 1) {
|
|
return array_pop($enums);
|
|
}
|
|
|
|
if ($sourceFilePath !== null) {
|
|
$enums = array_filter($enums, function (PHPEnum $enum) use ($shouldSuitCurrentPhpVersion, $sourceFilePath) {
|
|
return $enum->sourceFilePath === $sourceFilePath &&
|
|
(!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($enum));
|
|
});
|
|
}
|
|
if (count($enums) > 1) {
|
|
throw new RuntimeException("Multiple enums with name $name found");
|
|
}
|
|
if (!empty($enums)) {
|
|
return array_pop($enums);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @return PHPClass[]
|
|
*/
|
|
public function getCoreClasses()
|
|
{
|
|
return array_filter($this->classes, function (PHPClass $class) {
|
|
return $class->stubBelongsToCore === true;
|
|
});
|
|
}
|
|
|
|
public function addClass(PHPClass $class)
|
|
{
|
|
if (isset($class->name)) {
|
|
if (array_key_exists($class->name, $this->classes)) {
|
|
$amount = count(array_filter(
|
|
$this->classes,
|
|
function (PHPClass $nextClass) use ($class) {
|
|
return $nextClass->name === $class->name;
|
|
}
|
|
));
|
|
$this->classes[$class->name . '_duplicated_' . $amount] = $class;
|
|
} else {
|
|
$this->classes[$class->name] = $class;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param string|null $sourceFilePath
|
|
* @param bool $shouldSuitCurrentPhpVersion
|
|
* @return PHPInterface|null
|
|
* @throws RuntimeException
|
|
*/
|
|
public function getInterface($name, $sourceFilePath = null, $shouldSuitCurrentPhpVersion = true)
|
|
{
|
|
$interfaces = array_filter($this->interfaces, function (PHPInterface $interface) use ($shouldSuitCurrentPhpVersion, $name) {
|
|
return $interface->name === $name &&
|
|
(!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($interface));
|
|
});
|
|
if (count($interfaces) === 1) {
|
|
return array_pop($interfaces);
|
|
}
|
|
|
|
if ($sourceFilePath !== null) {
|
|
$interfaces = array_filter($interfaces, function (PHPInterface $interface) use ($shouldSuitCurrentPhpVersion, $sourceFilePath) {
|
|
return $interface->sourceFilePath === $sourceFilePath &&
|
|
(!$shouldSuitCurrentPhpVersion || BasePHPElement::entitySuitsCurrentPhpVersion($interface));
|
|
});
|
|
}
|
|
if (count($interfaces) > 1) {
|
|
throw new RuntimeException("Multiple interfaces with name $name found");
|
|
}
|
|
if (!empty($interfaces)) {
|
|
return array_pop($interfaces);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @return PHPInterface[]
|
|
*/
|
|
public function getInterfaces()
|
|
{
|
|
return $this->interfaces;
|
|
}
|
|
|
|
/**
|
|
* @return PHPEnum[]
|
|
*/
|
|
public function getEnums()
|
|
{
|
|
return $this->enums;
|
|
}
|
|
|
|
/**
|
|
* @return PHPInterface[]
|
|
*/
|
|
public function getCoreInterfaces()
|
|
{
|
|
return array_filter($this->interfaces, function (PHPInterface $interface) {
|
|
return $interface->stubBelongsToCore === true;
|
|
});
|
|
}
|
|
|
|
public function addInterface(PHPInterface $interface)
|
|
{
|
|
if (isset($interface->name)) {
|
|
if (array_key_exists($interface->name, $this->interfaces)) {
|
|
$amount = count(array_filter(
|
|
$this->interfaces,
|
|
function (PHPInterface $nextInterface) use ($interface) {
|
|
return $nextInterface->name === $interface->name;
|
|
}
|
|
));
|
|
$this->interfaces[$interface->name . '_duplicated_' . $amount] = $interface;
|
|
} else {
|
|
$this->interfaces[$interface->name] = $interface;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function addEnum(PHPEnum $enum)
|
|
{
|
|
if (isset($enum->name)) {
|
|
if (array_key_exists($enum->name, $this->enums)) {
|
|
$amount = count(array_filter(
|
|
$this->enums,
|
|
function (PHPEnum $nextEnum) use ($enum) {
|
|
return $nextEnum->name === $enum->name;
|
|
}
|
|
));
|
|
$this->enums[$enum->name . '_duplicated_' . $amount] = $enum;
|
|
} else {
|
|
$this->enums[$enum->name] = $enum;
|
|
}
|
|
}
|
|
}
|
|
}
|