-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRedisBloomFactory.php
119 lines (107 loc) · 3.56 KB
/
RedisBloomFactory.php
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
/**
* @project phpredis-bloom
* @author Rafael Campoy <rafa.campoy@gmail.com>
* @copyright 2019 Rafael Campoy <rafa.campoy@gmail.com>
* @license MIT
* @link https://github.com/averias/phpredis-bloom
*
* Copyright and license information, is included in
* the LICENSE file that is distributed with this source code.
*/
namespace Averias\RedisBloom\Factory;
use Averias\RedisBloom\Adapter\RedisClientAdapterInterface;
use Averias\RedisBloom\Client\RedisBloomClient;
use Averias\RedisBloom\Client\RedisBloomClientInterface;
use Averias\RedisBloom\DataTypes\BloomFilter;
use Averias\RedisBloom\DataTypes\BloomFilterInterface;
use Averias\RedisBloom\DataTypes\CountMinSketch;
use Averias\RedisBloom\DataTypes\CountMinSketchInterface;
use Averias\RedisBloom\DataTypes\CuckooFilter;
use Averias\RedisBloom\DataTypes\CuckooFilterInterface;
use Averias\RedisBloom\DataTypes\TopK;
use Averias\RedisBloom\DataTypes\TopKInterface;
use Averias\RedisBloom\Exception\RedisClientException;
use Averias\RedisBloom\Validator\RedisClientValidator;
use Averias\RedisBloom\Adapter\AdapterProvider;
use Exception;
class RedisBloomFactory implements RedisBloomFactoryInterface
{
/** @var array */
protected $config;
public function __construct(?array $config = null)
{
$this->config = $config;
}
/**
* @param array|null $config
* @return RedisClientAdapterInterface
* @throws RedisClientException
*/
public function getAdapter(?array $config = null): RedisClientAdapterInterface
{
try {
$config = $config ?? $this->config;
$adapter = $this->getAdapterProvider()->get($config);
} catch (Exception $e) {
throw new RedisClientException($e->getMessage());
}
return $adapter;
}
/**
* @param array|null $config
* @return RedisBloomClientInterface
* @throws RedisClientException
*/
public function createClient(?array $config = null): RedisBloomClientInterface
{
return new RedisBloomClient($this->getAdapter($config));
}
/**
* @param string $filterName
* @param array|null $config
* @return BloomFilterInterface
* @throws RedisClientException
*/
public function createBloomFilter(string $filterName, ?array $config = null): BloomFilterInterface
{
return new BloomFilter($filterName, $this->getAdapter($config));
}
/**
* @param string $filterName
* @param array|null $config
* @return CuckooFilterInterface
* @throws RedisClientException
*/
public function createCuckooFilter(string $filterName, ?array $config = null): CuckooFilterInterface
{
return new CuckooFilter($filterName, $this->getAdapter($config));
}
/**
* @param string $filterName
* @param array|null $config
* @return CountMinSketchInterface
* @throws RedisClientException
*/
public function createCountMinSketch(string $filterName, ?array $config = null): CountMinSketchInterface
{
return new CountMinSketch($filterName, $this->getAdapter($config));
}
/**
* @param string $filterName
* @param array|null $config
* @return TopKInterface
* @throws RedisClientException
*/
public function createTopK(string $filterName, ?array $config = null): TopKInterface
{
return new TopK($filterName, $this->getAdapter($config));
}
/**
* @return AdapterProvider
*/
protected function getAdapterProvider(): AdapterProvider
{
return new AdapterProvider(new RedisClientValidator());
}
}