-
Notifications
You must be signed in to change notification settings - Fork 28
/
cli.js
executable file
·293 lines (252 loc) · 7.37 KB
/
cli.js
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
#!/usr/bin/env node
var params = require('minimist')(process.argv.slice(2));
var Dyno = require('../index.js');
var queue = require('queue-async');
var es = require('event-stream');
var stream = require('stream');
function usage() {
console.error('');
console.error('Usage: dyno <sub-command> <region>[/<tablename>]');
console.error('');
console.error('Valid sub-commands:');
console.error(' - tables: list available tables');
console.error(' - table: describe a single table');
console.error(' - export: print table description and data to stdout');
console.error(' - import: read table description and data into a new table');
console.error(' - scan: print data to stdout');
console.error(' - put: read data into an existing table');
console.error('');
console.error('Options:');
console.error(' - e | endpoint: endpoint for DynamoDB. Automatically set to http://localhost:4567 if region is `local`');
console.error('');
console.error('Examples:');
console.error('');
console.error('dyno scan us-east-1/my-table');
console.error('');
console.error('dyno export us-east-1/my-table | dyno import local/my-local-copy');
}
if (params.help) {
usage();
process.exit(0);
}
params.command = params._[0];
var commands = ['tables', 'table', 'export', 'import', 'scan', 'put'];
if (commands.indexOf(params.command) === -1) {
console.error('Error: Use a valid sub-command. One of ' + commands.join(', '));
usage();
process.exit(1);
}
params.region = params._[1] ? params._[1].split('/')[0] : null;
if (!params.region) {
console.error('Error: Specify a region');
usage();
process.exit(1);
}
if (params.region === 'local') params.endpoint = 'http://localhost:4567';
if (params.e) params.endpoint = params.e;
params.table = params._[1] ? params._[1].split('/')[1] : null;
if (!params.table && params.command !== 'tables') {
console.error('Error: Specify a table name');
usage();
process.exit(1);
}
if (!params.table && params.command === 'tables') {
params.table = 'none';
}
var dyno = Dyno(params);
// Transform stream to stringifies JSON objects and base64 encodes buffers
function Stringifier() {
var stringifier = new stream.Transform({ highWaterMark: 100 });
stringifier._writableState.objectMode = true;
stringifier._readableState.objectMode = false;
stringifier._transform = function(record, enc, callback) {
var str = Dyno.serialize(record);
this.push(str + '\n');
setImmediate(callback);
};
return stringifier;
}
// Transform stream parses JSON strings and base64 decodes into buffers
function Parser() {
var parser = new stream.Transform({ highWaterMark: 100 });
parser._writableState.objectMode = false;
parser._readableState.objectMode = true;
var firstline = true;
parser._transform = function(record, enc, callback) {
if (!record || record.length === 0) return;
if (firstline) {
firstline = false;
var parsed = Dyno.deserialize(record);
if (!Object.keys(parsed).every(function(key) {
return !!parsed[key];
})) return this.push(JSON.parse(record.toString()));
}
record = Dyno.deserialize(record);
this.push(record);
setImmediate(callback);
};
return parser;
}
// Remove unimportant table metadata from the description
function cleanDescription(desc) {
var deleteAttributes = [
'CreationDateTime',
'IndexSizeBytes',
'IndexStatus',
'ItemCount',
'NumberOfDecreasesToday',
'TableSizeBytes',
'TableStatus',
'LastDecreaseDateTime',
'LastIncreaseDateTime'
];
return JSON.stringify(desc.Table, function(key, value) {
if (deleteAttributes.indexOf(key) !== -1) {
return undefined;
}
return value;
});
}
function scan() {
dyno.scanStream()
.pipe(Stringifier())
.pipe(process.stdout)
.on('error', function(err) {
console.error(err);
process.exit(1);
});
}
// Transform stream that aggregates into sets of 25 objects
function Aggregator(withTable) {
var firstline = !!withTable;
var aggregator = new stream.Transform({ objectMode: true, highWaterMark: 100 });
aggregator.records = [];
aggregator._transform = function(record, enc, callback) {
if (!record) return;
if (firstline) {
firstline = false;
this.push(record);
} else if (aggregator.records.length === 25) {
this.push(aggregator.records);
aggregator.records = [record];
} else {
aggregator.records.push(record);
}
callback();
};
aggregator._flush = function(callback) {
if (aggregator.records.length) this.push(aggregator.records);
callback();
};
return aggregator;
}
function Importer(withTable) {
var firstline = !!withTable;
var q = queue(10);
var importer = stream.Transform({ objectMode: true, highWaterMark: 100 });
var queued = 0;
importer._transform = function(data, enc, callback) {
if (!data) return;
if (queued > 100)
setImmediate(importer._transform.bind(importer), data, enc, callback);
if (firstline) {
firstline = false;
this.pause();
data.TableName = params.table;
delete data.TableArn;
dyno.createTable(data, function(err) {
if (err) throw err;
this.resume();
}.bind(this));
} else {
var reqs = { RequestItems: {} };
reqs.RequestItems[params.table] = [];
data.forEach(function(item) {
reqs.RequestItems[params.table].push({
PutRequest: { Item: item }
});
});
dyno.batchWriteItemRequests(reqs).forEach(function(req) {
queued++;
q.defer(function(next) {
req.send(function(err) {
queued--;
next(err);
});
});
});
callback();
}
};
importer._flush = function(callback) {
q.awaitAll(callback);
};
return importer;
}
// ----------------------------------
// List tables
// ----------------------------------
if (params.command === 'tables') dyno.listTables(function(err, data) {
if (err) {
console.error(err);
process.exit(1);
}
data.TableNames.forEach(function(name) {
console.log(name);
});
});
// ----------------------------------
// Describe table
// ----------------------------------
if (params.command === 'table') dyno.describeTable(function(err, data) {
if (err) {
console.error(err);
process.exit(1);
}
console.log(JSON.stringify(data));
});
// ----------------------------------
// Export table
// ----------------------------------
if (params.command === 'export') {
return dyno.describeTable(function(err, desc) {
if (err) {
console.error(err);
process.exit(1);
}
console.log(cleanDescription(desc));
scan();
});
}
// ----------------------------------
// Scan table
// ----------------------------------
if (params.command === 'scan') scan();
// ----------------------------------
// Import table
// ----------------------------------
if (params.command === 'import') {
process.stdin
.pipe(es.split())
.pipe(Parser())
.pipe(Aggregator(true))
.pipe(Importer(true))
.on('error', function(err) {
console.error(err);
process.exit(1);
});
}
// ----------------------------------
// Import data
// ----------------------------------
if (params.command === 'put') {
process.stdin
.pipe(es.split())
.pipe(Parser())
.pipe(Aggregator(false))
.pipe(Importer(false))
.on('error', function(err) {
console.error(err);
process.exit(1);
});
}