-
Notifications
You must be signed in to change notification settings - Fork 0
/
PuceneAdapter.php
53 lines (44 loc) · 1.33 KB
/
PuceneAdapter.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
<?php
/*
* This file is part of Pucene.
*
* (c) asapo.at
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Pucene\SealAdapter;
use Pucene\Index\Driver\DriverFactoryInterface;
use Pucene\Index\PuceneIndexFactory;
use Schranz\Search\SEAL\Adapter\AdapterInterface;
use Schranz\Search\SEAL\Adapter\ConnectionInterface;
use Schranz\Search\SEAL\Adapter\SchemaManagerInterface;
class PuceneAdapter implements AdapterInterface
{
public static function createFromFactories(
PuceneIndexFactory $indexFactory,
DriverFactoryInterface $driverFactory,
): self {
return new self(
new PuceneConnection($indexFactory),
new PuceneSchemaManager($driverFactory),
);
}
private readonly ConnectionInterface $connection;
private readonly SchemaManagerInterface $schemaManager;
public function __construct(
ConnectionInterface $connection,
SchemaManagerInterface $schemaManager,
) {
$this->connection = $connection;
$this->schemaManager = $schemaManager;
}
public function getSchemaManager(): SchemaManagerInterface
{
return $this->schemaManager;
}
public function getConnection(): ConnectionInterface
{
return $this->connection;
}
}