UniqueGenerator.php
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
namespace Faker;
use Faker\Extension\Extension;
/**
* Proxy for other generators that returns only unique values.
*
* Instantiated through @see Generator::unique().
*
* @mixin Generator
*/
class UniqueGenerator
{
protected $generator;
protected $maxRetries;
/**
* Maps from method names to a map with serialized result keys.
*
* @example [
* 'phone' => ['0123' => null],
* 'city' => ['London' => null, 'Tokyo' => null],
* ]
*
* @var array<string, array<string, null>>
*/
protected $uniques = [];
/**
* @param Extension|Generator $generator
* @param int $maxRetries
* @param array<string, array<string, null>> $uniques
*/
public function __construct($generator, $maxRetries = 10000, &$uniques = [])
{
$this->generator = $generator;
$this->maxRetries = $maxRetries;
$this->uniques = &$uniques;
}
public function ext(string $id)
{
return new self($this->generator->ext($id), $this->maxRetries, $this->uniques);
}
/**
* Catch and proxy all generator calls but return only unique values
*
* @param string $attribute
*
* @deprecated Use a method instead.
*/
public function __get($attribute)
{
trigger_deprecation('fakerphp/faker', '1.14', 'Accessing property "%s" is deprecated, use "%s()" instead.', $attribute, $attribute);
return $this->__call($attribute, []);
}
/**
* Catch and proxy all generator calls with arguments but return only unique values
*
* @param string $name
* @param array $arguments
*/
public function __call($name, $arguments)
{
if (!isset($this->uniques[$name])) {
$this->uniques[$name] = [];
}
$i = 0;
do {
$res = call_user_func_array([$this->generator, $name], $arguments);
++$i;
if ($i > $this->maxRetries) {
throw new \OverflowException(sprintf('Maximum retries of %d reached without finding a unique value', $this->maxRetries));
}
} while (array_key_exists(serialize($res), $this->uniques[$name]));
$this->uniques[$name][serialize($res)] = null;
return $res;
}
}