This repository was archived by the owner on Dec 1, 2021. It is now read-only.
forked from neoxygen/neo4j-neoclient
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathClient.php
238 lines (207 loc) · 7.11 KB
/
Client.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
/*
* This file is part of the GraphAware Neo4j Client package.
*
* (c) GraphAware Limited <http://graphaware.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace GraphAware\Neo4j\Client;
use GraphAware\Common\Cypher\Statement;
use GraphAware\Common\Result\Record;
use GraphAware\Neo4j\Client\Connection\ConnectionManager;
use GraphAware\Neo4j\Client\Event\FailureEvent;
use GraphAware\Neo4j\Client\Event\PostRunEvent;
use GraphAware\Neo4j\Client\Event\PreRunEvent;
use GraphAware\Neo4j\Client\Exception\Neo4jException;
use GraphAware\Neo4j\Client\Result\ResultCollection;
use GraphAware\Neo4j\Client\Schema\Label;
use GraphAware\Neo4j\Client\Transaction\Transaction;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class Client implements ClientInterface
{
const NEOCLIENT_VERSION = '4.6.3';
/**
* @var ConnectionManager
*/
protected $connectionManager;
/**
* @var EventDispatcherInterface
*/
protected $eventDispatcher;
public function __construct(ConnectionManager $connectionManager, EventDispatcherInterface $eventDispatcher = null)
{
$this->connectionManager = $connectionManager;
$this->eventDispatcher = null !== $eventDispatcher ? $eventDispatcher : new EventDispatcher();
}
/**
* Run a Cypher statement against the default database or the database specified.
*
* @param $query
* @param null|array $parameters
* @param null|string $tag
* @param null|string $connectionAlias
*
* @throws \GraphAware\Neo4j\Client\Exception\Neo4jExceptionInterface
*
* @return \GraphAware\Common\Result\Result|null
*/
public function run($query, $parameters = null, $tag = null, $connectionAlias = null)
{
$connection = $this->connectionManager->getConnection($connectionAlias);
$params = null !== $parameters ? $parameters : [];
$statement = Statement::create($query, $params, $tag);
$this->eventDispatcher->dispatch(new PreRunEvent([$statement]), Neo4jClientEvents::NEO4J_PRE_RUN);
try {
$result = $connection->run($query, $parameters, $tag);
$this->eventDispatcher->dispatch(new PostRunEvent(ResultCollection::withResult($result)), Neo4jClientEvents::NEO4J_POST_RUN);
} catch (Neo4jException $e) {
$event = new FailureEvent($e);
$this->eventDispatcher->dispatch($event, Neo4jClientEvents::NEO4J_ON_FAILURE);
if ($event->shouldThrowException()) {
throw $e;
}
return;
}
return $result;
}
/**
* @param string $query
* @param null|array $parameters
* @param null|string $tag
*
* @throws Neo4jException
*
* @return \GraphAware\Common\Result\Result
*/
public function runWrite($query, $parameters = null, $tag = null)
{
return $this->connectionManager
->getMasterConnection()
->run($query, $parameters, $tag);
}
/**
* @deprecated since 4.0 - will be removed in 5.0 - use <code>$client->runWrite()</code> instead
*
* @param string $query
* @param null|array $parameters
* @param null|string $tag
*
* @throws Neo4jException
*
* @return \GraphAware\Common\Result\Result
*/
public function sendWriteQuery($query, $parameters = null, $tag = null)
{
return $this->runWrite($query, $parameters, $tag);
}
/**
* @param string|null $tag
* @param string|null $connectionAlias
*
* @return StackInterface
*/
public function stack($tag = null, $connectionAlias = null)
{
return Stack::create($tag, $connectionAlias);
}
/**
* @param StackInterface $stack
*
* @throws Neo4jException
*
* @return ResultCollection|null
*/
public function runStack(StackInterface $stack)
{
$connectionAlias = $stack->hasWrites()
? $this->connectionManager->getMasterConnection()->getAlias()
: $stack->getConnectionAlias();
$pipeline = $this->pipeline(null, null, $stack->getTag(), $connectionAlias);
foreach ($stack->statements() as $statement) {
$pipeline->push($statement->text(), $statement->parameters(), $statement->getTag());
}
$this->eventDispatcher->dispatch(new PreRunEvent($stack->statements()), Neo4jClientEvents::NEO4J_PRE_RUN);
try {
$results = $pipeline->run();
$this->eventDispatcher->dispatch(new PostRunEvent($results), Neo4jClientEvents::NEO4J_POST_RUN);
} catch (Neo4jException $e) {
$event = new FailureEvent($e);
$this->eventDispatcher->dispatch($event, Neo4jClientEvents::NEO4J_ON_FAILURE);
if ($event->shouldThrowException()) {
throw $e;
}
return null;
}
return $results;
}
/**
* @param null|string $connectionAlias
*
* @return Transaction
*/
public function transaction($connectionAlias = null)
{
$connection = $this->connectionManager->getConnection($connectionAlias);
$driverTransaction = $connection->getTransaction();
return new Transaction($driverTransaction, $this->eventDispatcher);
}
/**
* @param null|string $query
* @param null|array $parameters
* @param null|string $tag
* @param null|string $connectionAlias
*
* @return \GraphAware\Common\Driver\PipelineInterface
*/
private function pipeline($query = null, $parameters = null, $tag = null, $connectionAlias = null)
{
$connection = $this->connectionManager->getConnection($connectionAlias);
return $connection->createPipeline($query, $parameters, $tag);
}
/**
* @param string|null $conn
*
* @return Label[]
*/
public function getLabels($conn = null)
{
$connection = $this->connectionManager->getConnection($conn);
$result = $connection->getSession()->run('CALL db.labels()');
return array_map(function (Record $record) {
return new Label($record->get('label'));
}, $result->records());
}
/**
* @deprecated since 4.0 - will be removed in 5.0 - use <code>$client->run()</code> instead
*
* @param string $query
* @param null|array $parameters
* @param null|string $tag
* @param null|string $connectionAlias
*
* @return \GraphAware\Common\Result\Result
*/
public function sendCypherQuery($query, $parameters = null, $tag = null, $connectionAlias = null)
{
return $this->connectionManager
->getConnection($connectionAlias)
->run($query, $parameters, $tag);
}
/**
* @return ConnectionManager
*/
public function getConnectionManager()
{
return $this->connectionManager;
}
/**
* @return EventDispatcherInterface
*/
public function getEventDispatcher()
{
return $this->eventDispatcher;
}
}