-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDynamoDBWrapper.php
456 lines (407 loc) · 15 KB
/
DynamoDBWrapper.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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<?php
use Aws\DynamoDb\DynamoDbClient;
use Aws\DynamoDb\Exception\ConditionalCheckFailedException;
class DynamoDBWrapper
{
protected $client;
public function __construct($args)
{
$this->client = DynamoDbClient::factory($args);
}
public function get($tableName, $key, $options = array())
{
$args = array(
'TableName' => $tableName,
'Key' => $this->convertAttributes($key),
);
if (isset($options['ConsistentRead'])) {
$args['ConsistentRead'] = $options['ConsistentRead'];
}
$item = $this->client->getItem($args);
return $this->convertItem($item['Item']);
}
public function batchGet($tableName, $keys, $options = array())
{
$results = array();
$ddbKeys = array();
foreach ($keys as $key) {
$ddbKeys[] = $this->convertAttributes($key);
}
while (count($ddbKeys) > 0) {
$targetKeys = array_splice($ddbKeys, 0, 100);
$result = $this->client->batchGetItem(array(
'RequestItems' => array(
$tableName => array(
'Keys' => $targetKeys,
),
),
));
$items = $result->getPath("Responses/{$tableName}");
$results = array_merge($results, $this->convertItems($items));
// if some keys not processed, try again as next request
$unprocessedKeys = $result->getPath("UnprocessedKeys/{$tableName}");
if (count($unprocessedKeys) > 0) {
$ddbKeys = array_merge($ddbKeys, $unprocessedKeys);
}
}
if (isset($options['Order'])) {
if ( ! isset($options['Order']['Key'])) {
throw new Exception("Order option needs 'Key'.");
}
$key = $options['Order']['Key'];
if (isset($options['Order']['Forward']) && !$options['Order']['Forward']) {
$vals = array('b', 'a');
} else {
$vals = array('a', 'b');
}
$f = 'return ($'.$vals[0].'[\''.$key.'\'] - $'.$vals[1].'[\''.$key.'\']);';
usort($results, create_function('$a,$b',$f));
}
return $results;
}
public function query($tableName, $keyConditions, $options = array())
{
$args = array(
'TableName' => $tableName,
'KeyConditions' => $this->convertConditions($keyConditions),
'ScanIndexForward' => true,
'Limit' => 100,
);
if (isset($options['ScanIndexForward'])) {
$args['ScanIndexForward'] = $options['ScanIndexForward'];
}
if (isset($options['IndexName'])) {
$args['IndexName'] = $options['IndexName'];
}
if (isset($options['Limit'])) {
$args['Limit'] = $options['Limit']+0;
}
if (isset($options['ConsistentRead'])) {
$args['ConsistentRead'] = $options['ConsistentRead'];
}
if (isset($options['ExclusiveStartKey'])) {
$args['ExclusiveStartKey'] = $this->convertAttributes($options['ExclusiveStartKey']);
}
$result = $this->client->query($args);
return $this->convertItems($result['Items']);
}
public function count($tableName, $keyConditions, $options = array())
{
$args = array(
'TableName' => $tableName,
'KeyConditions' => $this->convertConditions($keyConditions),
'Select' => 'COUNT',
);
if (isset($options['IndexName'])) {
$args['IndexName'] = $options['IndexName'];
}
$result = $this->client->query($args);
return $result['Count'];
}
public function scan($tableName, $filter, $limit = null)
{
if (empty($filter)) {
$scanFilter = null;
} else {
$scanFilter = $this->convertConditions($filter);
}
$items = $this->client->getIterator('Scan', array(
'TableName' => $tableName,
'ScanFilter' => $scanFilter,
));
return $this->convertItems($items);
}
public function put($tableName, $item, $expected = array())
{
$args = array(
'TableName' => $tableName,
'Item' => $this->convertAttributes($item),
);
if (!empty($expected)) {
$item['Expected'] = $expected;
}
// Put and catch exception when ConditionalCheckFailed
try {
$item = $this->client->putItem($args);
}
catch (ConditionalCheckFailedException $e) {
return false;
}
return true;
}
public function batchPut($tableName, $items)
{
return $this->batchWrite('PutRequest', $tableName, $items);
}
public function update($tableName, $key, $update, $expected = array())
{
$args = array(
'TableName' => $tableName,
'Key' => $this->convertAttributes($key),
'AttributeUpdates' => $this->convertUpdateAttributes($update),
'ReturnValues' => 'UPDATED_NEW',
);
if (!empty($expected)) {
$item['Expected'] = $expected;
}
// Put and catch exception when ConditionalCheckFailed
try {
$item = $this->client->updateItem($args);
}
catch (ConditionalCheckFailed $e) {
return null;
}
return $this->convertItem($item['Attributes']);
}
public function delete($tableName, $key)
{
$args = array(
'TableName' => $tableName,
'Key' => $this->convertAttributes($key),
'ReturnValues' => 'ALL_OLD',
);
$result = $this->client->deleteItem($args);
return $this->convertItem($result['Attributes']);
}
public function batchDelete($tableName, $keys)
{
return $this->batchWrite('DeleteRequest', $tableName, $keys);
}
protected function batchWrite($requestType, $tableName, $items)
{
$entityKeyName = ($requestType === 'PutRequest' ? 'Item' : 'Key');
$requests = array();
foreach ($items as $item) {
$requests[] = array(
$requestType => array(
$entityKeyName => $this->convertAttributes($item)
)
);
}
while (count($requests) > 0) {
$targetRequests = array_splice($requests, 0, 25);
$result = $this->client->batchWriteItem(array(
'RequestItems' => array(
$tableName => $targetRequests
),
));
// if some items not processed, try again as next request
$unprocessedRequests = $result->getPath("UnprocessedItems/{$tableName}");
if (count($unprocessedRequests) > 0) {
$requests = array_merge($requests, $unprocessedRequests);
}
}
return true;
}
public function createTable($tableName, $hashKey, $rangeKey = null, $options = null) {
$attributeDefinitions = array();
$keySchema = array();
// HashKey
$hashKeyComponents = $this->convertComponents($hashKey);
$hashKeyName = $hashKeyComponents[0];
$hashKeyType = $hashKeyComponents[1];
$attributeDefinitions []= array('AttributeName' => $hashKeyName, 'AttributeType' => $hashKeyType);
$keySchema[] = array('AttributeName' => $hashKeyName, 'KeyType' => 'HASH');
// RangeKey
if (isset($rangeKey)) {
$rangeKeyComponents = $this->convertComponents($rangeKey);
$rangeKeyName = $rangeKeyComponents[0];
$rangeKeyType = $rangeKeyComponents[1];
$attributeDefinitions[] = array('AttributeName' => $rangeKeyName, 'AttributeType' => $rangeKeyType);
$keySchema[] = array('AttributeName' => $rangeKeyName, 'KeyType' => 'RANGE');
}
// Generate Args
$args = array(
'TableName' => $tableName,
'AttributeDefinitions' => $attributeDefinitions,
'KeySchema' => $keySchema,
'ProvisionedThroughput' => array(
'ReadCapacityUnits' => 1,
'WriteCapacityUnits' => 1
)
);
// Set Local Secondary Index if needed
if (isset($options['LocalSecondaryIndexes'])) {
$LSI = array();
foreach ($options['LocalSecondaryIndexes'] as $i) {
$LSI []= array(
'IndexName' => $i['name'].'Index',
'KeySchema' => array(
array('AttributeName' => $hashKeyName, 'KeyType' => 'HASH'),
array('AttributeName' => $i['name'], 'KeyType' => 'RANGE')
),
'Projection' => array(
'ProjectionType' => $i['projection_type']
),
);
$attributeDefinitions []= array('AttributeName' => $i['name'], 'AttributeType' => $i['type']);
}
$args['LocalSecondaryIndexes'] = $LSI;
$args['AttributeDefinitions'] = $attributeDefinitions;
}
$this->client->createTable($args);
$this->client->waitUntilTableExists(array('TableName' => $tableName));
}
public function deleteTable($tableName)
{
$this->client->deleteTable(array('TableName' => $tableName));
$this->client->waitUntilTableNotExists(array('TableName' => $tableName));
}
public function emptyTable($table) {
// Get table info
$result = $this->client->describeTable(array('TableName' => $table));
$keySchema = $result['Table']['KeySchema'];
foreach ($keySchema as $schema) {
if ($schema['KeyType'] === 'HASH') {
$hashKeyName = $schema['AttributeName'];
}
else if ($schema['KeyType'] === 'RANGE') {
$rangeKeyName = $schema['AttributeName'];
}
}
// Delete items in the table
$scan = $this->client->getIterator('Scan', array('TableName' => $table));
foreach ($scan as $item) {
// set hash key
$hashKeyType = array_key_exists('S', $item[$hashKeyName]) ? 'S' : 'N';
$key = array(
$hashKeyName => array($hashKeyType => $item[$hashKeyName][$hashKeyType]),
);
// set range key if defined
if (isset($rangeKeyName)) {
$rangeKeyType = array_key_exists('S', $item[$rangeKeyName]) ? 'S' : 'N';
$key[$rangeKeyName] = array($rangeKeyType => $item[$rangeKeyName][$rangeKeyType]);
}
$this->client->deleteItem(array(
'TableName' => $table,
'Key' => $key
));
}
}
protected function asString($value)
{
if (is_array($value)) {
$newValue = array();
foreach ($value as $v) {
$newValue[] = (string)$v;
}
} else {
$newValue = (string)$value;
}
return $newValue;
}
protected function convertAttributes($targets)
{
$newTargets = array();
foreach ($targets as $k => $v) {
$attrComponents = $this->convertComponents($k);
$newTargets[$attrComponents[0]] = array($attrComponents[1] => $this->asString($v));
}
return $newTargets;
}
protected function convertUpdateAttributes($targets)
{
$newTargets = array();
foreach ($targets as $k => $v) {
$attrComponents = $this->convertComponents($k);
$newTargets[$attrComponents[0]] = array(
'Action' => $v[0],
'Value' => array($attrComponents[1] => $this->asString($v[1])),
);
}
return $newTargets;
}
protected function convertConditions($conditions)
{
$ddbConditions = array();
foreach ($conditions as $k => $v) {
// Get attr name and type
$attrComponents = $this->convertComponents($k);
$attrName = $attrComponents[0];
$attrType = $attrComponents[1];
// Get ComparisonOperator and value
if ( ! is_array($v)) {
$v = array('EQ', $this->asString($v));
}
$comparisonOperator = $v[0];
$value = count($v) > 1 ? $v[1] : null;
// Get AttributeValueList
if ($v[0] === 'BETWEEN') {
if (count($value) !== 2) {
throw new Exception("Require 2 values as array for BETWEEN");
}
$attributeValueList = array(
array($attrType => $this->asString($value[0])),
array($attrType => $this->asString($value[1]))
);
} else if ($v[0] === 'IN') {
$attributeValueList = array();
foreach ($value as $v) {
$attributeValueList[] = array($attrType => $this->asString($v));
}
} else if ($v[0] === 'NOT_NULL' || $v[0] === 'NULL') {
$attributeValueList = null;
} else {
$attributeValueList = array(
array($attrType => $this->asString($value)),
);
}
// Constract key condition for DynamoDB
$ddbConditions[$attrName] = array(
'AttributeValueList' => $attributeValueList,
'ComparisonOperator' => $comparisonOperator
);
}
return $ddbConditions;
}
protected function convertItem($item)
{
if (empty($item)) return null;
$converted = array();
foreach ($item as $k => $v) {
if (isset($v['S'])) {
$converted[$k] = $v['S'];
}
else if (isset($v['SS'])) {
$converted[$k] = $v['SS'];
}
else if (isset($v['N'])) {
$converted[$k] = $v['N'];
}
else if (isset($v['NS'])) {
$converted[$k] = $v['NS'];
}
else if (isset($v['B'])) {
$converted[$k] = $v['B'];
}
else if (isset($v['BS'])) {
$converted[$k] = $v['BS'];
}
else {
throw new Exception('Not implemented type');
}
}
return $converted;
}
protected function convertItems($items)
{
$converted = array();
foreach ($items as $item) {
$converted []= $this->convertItem($item);
}
return $converted;
}
/**
* convert string attribute paramter to array components.
*
* @param string $attribute double colon separated string "<Attribute Name>::<Attribute type>"
* @return array parsed parameter. [0]=<Attribute Name>, [1]=<Attribute type>
*/
protected function convertComponents($attribute){
$components = explode('::', $attribute);
if (count($components) < 2) {
$components[1] = 'S';
}
return $components;
}
}