-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathTransactionBase.php
397 lines (340 loc) · 9.01 KB
/
TransactionBase.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<?php
/**
* ArangoDB PHP client: transaction base
*
* @package ArangoDBClient
* @author Frank Mayer
* @copyright Copyright 2013, triagens GmbH, Cologne, Germany
*/
namespace ArangoDBClient;
/**
* Transaction base class, used by Transaction and StreamingTransaction
*
* @package ArangoDBClient
* @since 1.3
*/
class TransactionBase
{
/**
* The connection object
*
* @var Connection
*/
private $_connection;
/**
* The transaction's attributes.
*
* @var array
*/
public $attributes = [];
/**
* Collections index
*/
const ENTRY_COLLECTIONS = 'collections';
/**
* WaitForSync index
*/
const ENTRY_WAIT_FOR_SYNC = 'waitForSync';
/**
* Lock timeout index
*/
const ENTRY_LOCK_TIMEOUT = 'lockTimeout';
/**
* Read index
*/
const ENTRY_READ = 'read';
/**
* WRITE index
*/
const ENTRY_WRITE = 'write';
/**
* EXCLUSIVE index
*/
const ENTRY_EXCLUSIVE = 'exclusive';
/**
* Initialize the transaction object
*
* @param Connection $connection - the connection to be used
*
* @throws \ArangoDBClient\ClientException
*/
public function __construct(Connection $connection)
{
$this->_connection = $connection;
$this->attributes[self::ENTRY_COLLECTIONS] = [
self::ENTRY_READ => [],
self::ENTRY_WRITE => [],
self::ENTRY_EXCLUSIVE => []
];
}
/**
* Return the connection object
*
* @return Connection - the connection object
*/
protected function getConnection()
{
return $this->_connection;
}
/**
* Set the collections array.
*
* The array should have 2 sub-arrays, namely 'read' and 'write' which should hold the respective collections
* for the transaction
*
* @param array $value
*/
public function setCollections(array $value)
{
if (array_key_exists('read', $value)) {
$this->setReadCollections($value['read']);
}
if (array_key_exists('write', $value)) {
$this->setWriteCollections($value['write']);
}
if (array_key_exists('exclusive', $value)) {
$this->setExclusiveCollections($value['exclusive']);
}
}
/**
* Get collections array
*
* This holds the read and write collections of the transaction
*
* @return array $value
*/
public function getCollections()
{
return $this->get(self::ENTRY_COLLECTIONS);
}
/**
* set waitForSync value
*
* @param bool $value
*
* @throws \ArangoDBClient\ClientException
*/
public function setWaitForSync($value)
{
$this->set(self::ENTRY_WAIT_FOR_SYNC, (bool) $value);
}
/**
* get waitForSync value
*
* @return bool waitForSync
*/
public function getWaitForSync()
{
return $this->get(self::ENTRY_WAIT_FOR_SYNC);
}
/**
* Set lockTimeout value
*
* @param int $value
*
* @throws \ArangoDBClient\ClientException
*/
public function setLockTimeout($value)
{
$this->set(self::ENTRY_LOCK_TIMEOUT, (int) $value);
}
/**
* Get lockTimeout value
*
* @return int lockTimeout
*/
public function getLockTimeout()
{
return $this->get(self::ENTRY_LOCK_TIMEOUT);
}
/**
* Convenience function to directly set read-collections without having to access
* them from the collections attribute.
*
* @param array $value
*/
public function setReadCollections($value)
{
$this->attributes[self::ENTRY_COLLECTIONS][self::ENTRY_READ] = (array) $value;
}
/**
* Convenience function to directly get read-collections without having to access
* them from the collections attribute.
*
* @return array params
*/
public function getReadCollections()
{
return $this->attributes[self::ENTRY_COLLECTIONS][self::ENTRY_READ];
}
/**
* Convenience function to directly set write-collections without having to access
* them from the collections attribute.
*
* @param array $value
*/
public function setWriteCollections($value)
{
$this->attributes[self::ENTRY_COLLECTIONS][self::ENTRY_WRITE] = (array) $value;
}
/**
* Convenience function to directly get write-collections without having to access
* them from the collections attribute.
*
* @return array params
*/
public function getWriteCollections()
{
return $this->attributes[self::ENTRY_COLLECTIONS][self::ENTRY_WRITE];
}
/**
* Convenience function to directly set exclusive-collections without having to access
* them from the collections attribute.
*
* @param array $value
*/
public function setExclusiveCollections($value)
{
$this->attributes[self::ENTRY_COLLECTIONS][self::ENTRY_EXCLUSIVE] = (array) $value;
}
/**
* Convenience function to directly get exclusive-collections without having to access
* them from the collections attribute.
*
* @return array params
*/
public function getExclusiveCollections()
{
return $this->attributes[self::ENTRY_COLLECTIONS][self::ENTRY_EXCLUSIVE];
}
/**
* Sets an attribute
*
* @param $key
* @param $value
*
* @throws ClientException
*/
public function set($key, $value)
{
if (!is_string($key)) {
throw new ClientException('Invalid document attribute key');
}
$this->attributes[$key] = $value;
}
/**
* Set an attribute, magic method
*
* This is a magic method that allows the object to be used without
* declaring all document attributes first.
*
* @throws ClientException
*
* @magic
*
* @param string $key - attribute name
* @param mixed $value - value for attribute
*
* @return void
*/
public function __set($key, $value)
{
switch ($key) {
case self::ENTRY_COLLECTIONS :
$this->setCollections($value);
break;
case 'writeCollections' :
$this->setWriteCollections($value);
break;
case 'readCollections' :
$this->setReadCollections($value);
break;
case 'exclusiveCollections' :
$this->setExclusiveCollections($value);
break;
case self::ENTRY_WAIT_FOR_SYNC :
$this->setWaitForSync($value);
break;
case self::ENTRY_LOCK_TIMEOUT :
$this->setLockTimeout($value);
break;
default:
$this->set($key, $value);
break;
}
}
/**
* Get an attribute
*
* @param string $key - name of attribute
*
* @return mixed - value of attribute, NULL if attribute is not set
*/
public function get($key)
{
switch ($key) {
case 'readCollections' :
return $this->getReadCollections();
break;
case 'writeCollections' :
return $this->getWriteCollections();
break;
case 'exclusiveCollections' :
return $this->getExclusiveCollections();
break;
}
if (isset($this->attributes[$key])) {
return $this->attributes[$key];
}
return null;
}
/**
* Get an attribute, magic method
*
* This function is mapped to get() internally.
*
* @magic
*
* @param string $key - name of attribute
*
* @return mixed - value of attribute, NULL if attribute is not set
*/
public function __get($key)
{
return $this->get($key);
}
/**
* Is triggered by calling isset() or empty() on inaccessible properties.
*
* @param string $key - name of attribute
*
* @return boolean returns true or false (set or not set)
*/
public function __isset($key)
{
if (isset($this->attributes[$key])) {
return true;
}
return false;
}
/**
* Build the object's attributes from a given array
*
* @param $options
*
* @throws \ArangoDBClient\ClientException
*/
protected function buildTransactionAttributesFromArray($options)
{
if (isset($options[self::ENTRY_COLLECTIONS])) {
$this->setCollections($options[self::ENTRY_COLLECTIONS]);
}
if (isset($options[self::ENTRY_WAIT_FOR_SYNC])) {
$this->setWaitForSync($options[self::ENTRY_WAIT_FOR_SYNC]);
}
if (isset($options[self::ENTRY_LOCK_TIMEOUT])) {
$this->setLockTimeout($options[self::ENTRY_LOCK_TIMEOUT]);
}
}
}
class_alias(TransactionBase::class, '\triagens\ArangoDb\TransactionBase');