2015-08-26 01:10:13 +03:00
|
|
|
/*
|
2015-08-26 02:46:14 +03:00
|
|
|
* Copyright 2015 Joyent Inc.
|
2015-08-26 01:10:13 +03:00
|
|
|
*
|
2015-08-26 01:15:02 +03:00
|
|
|
* `triton instances ...`
|
2015-08-26 01:10:13 +03:00
|
|
|
*/
|
|
|
|
|
2015-08-26 19:59:12 +03:00
|
|
|
var f = require('util').format;
|
|
|
|
|
2015-08-26 01:10:13 +03:00
|
|
|
var tabula = require('tabula');
|
|
|
|
|
2015-08-26 02:46:14 +03:00
|
|
|
var common = require('./common');
|
2015-08-26 01:10:13 +03:00
|
|
|
|
2015-08-26 02:46:14 +03:00
|
|
|
// to be passed as query string args to /my/machines
|
|
|
|
var validFilters = [
|
|
|
|
'name',
|
|
|
|
'image',
|
|
|
|
'state',
|
|
|
|
'memory',
|
|
|
|
'tombstone',
|
|
|
|
'credentials'
|
|
|
|
];
|
|
|
|
|
|
|
|
// valid output fields to be printed
|
|
|
|
var validFields = [
|
|
|
|
'id',
|
|
|
|
'name',
|
|
|
|
'type',
|
|
|
|
'state',
|
|
|
|
'dataset',
|
|
|
|
'memory',
|
|
|
|
'disk',
|
|
|
|
'ips',
|
|
|
|
'metadata',
|
|
|
|
'created',
|
|
|
|
'updated',
|
|
|
|
'package',
|
2015-08-26 03:00:50 +03:00
|
|
|
'image',
|
2015-08-26 19:59:12 +03:00
|
|
|
'img',
|
2015-08-26 03:00:50 +03:00
|
|
|
'ago'
|
2015-08-26 02:46:14 +03:00
|
|
|
];
|
2015-08-26 01:10:13 +03:00
|
|
|
|
2015-08-26 01:15:02 +03:00
|
|
|
function do_instances(subcmd, opts, args, callback) {
|
2015-08-26 01:10:13 +03:00
|
|
|
if (opts.help) {
|
|
|
|
this.do_help('help', {}, [subcmd], callback);
|
|
|
|
return;
|
2015-08-26 02:46:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var columns = opts.o.trim().split(',');
|
|
|
|
var sort = opts.s.trim().split(',');
|
|
|
|
|
|
|
|
var listOpts;
|
|
|
|
try {
|
|
|
|
listOpts = common.kvToObj(args, validFilters);
|
|
|
|
} catch (e) {
|
|
|
|
callback(e);
|
|
|
|
return;
|
2015-08-26 01:10:13 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 19:59:12 +03:00
|
|
|
var i = 0;
|
|
|
|
|
|
|
|
i++;
|
|
|
|
var images;
|
|
|
|
this.triton.listImages({usecache: true}, function (err, _images) {
|
2015-08-26 02:46:14 +03:00
|
|
|
if (err) {
|
|
|
|
callback(err);
|
|
|
|
return;
|
2015-08-26 01:10:13 +03:00
|
|
|
}
|
2015-08-26 19:59:12 +03:00
|
|
|
images = _images;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
i++;
|
|
|
|
var machines;
|
|
|
|
this.triton.cloudapi.listMachines(listOpts, function (err, _machines) {
|
|
|
|
if (err) {
|
|
|
|
callback(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
machines = _machines;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
function done() {
|
|
|
|
if (--i > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// map "uuid" => "image_name"
|
|
|
|
var imgmap = {};
|
|
|
|
images.forEach(function (image) {
|
|
|
|
imgmap[image.id] = f('%s@%s', image.name, image.version);
|
|
|
|
});
|
2015-08-26 03:00:50 +03:00
|
|
|
|
|
|
|
// add extra fields for nice output
|
|
|
|
var now = new Date();
|
|
|
|
machines.forEach(function (machine) {
|
|
|
|
var created = new Date(machine.created);
|
|
|
|
machine.ago = common.longAgo(created, now);
|
2015-08-26 19:59:12 +03:00
|
|
|
machine.img = imgmap[machine.image] || machine.image;
|
2015-08-26 03:00:50 +03:00
|
|
|
});
|
|
|
|
|
2015-08-26 01:10:13 +03:00
|
|
|
if (opts.json) {
|
2015-08-26 23:53:23 +03:00
|
|
|
common.jsonStream(machines);
|
2015-08-26 01:10:13 +03:00
|
|
|
} else {
|
2015-08-26 02:46:14 +03:00
|
|
|
tabula(machines, {
|
|
|
|
skipHeader: opts.H,
|
|
|
|
columns: columns,
|
|
|
|
sort: sort,
|
|
|
|
validFields: validFields
|
2015-08-26 01:10:13 +03:00
|
|
|
});
|
|
|
|
}
|
2015-08-26 02:46:14 +03:00
|
|
|
callback();
|
2015-08-26 19:59:12 +03:00
|
|
|
}
|
2015-08-26 02:46:14 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 01:15:02 +03:00
|
|
|
do_instances.options = [
|
2015-08-26 01:10:13 +03:00
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
},
|
2015-08-26 02:46:14 +03:00
|
|
|
{
|
|
|
|
names: ['H'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Omit table header row.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['o'],
|
|
|
|
type: 'string',
|
2015-08-26 19:59:12 +03:00
|
|
|
default: 'id,name,state,type,img,memory,disk,ago',
|
2015-08-26 02:46:14 +03:00
|
|
|
help: 'Specify fields (columns) to output.',
|
|
|
|
helpArg: 'field1,...'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['s'],
|
|
|
|
type: 'string',
|
|
|
|
default: 'name',
|
|
|
|
help: 'Sort on the given fields. Default is "name".',
|
|
|
|
helpArg: 'field1,...'
|
|
|
|
},
|
2015-08-26 01:10:13 +03:00
|
|
|
{
|
|
|
|
names: ['json', 'j'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'JSON output.'
|
|
|
|
}
|
|
|
|
];
|
2015-08-26 01:15:02 +03:00
|
|
|
do_instances.help = (
|
|
|
|
'List instances.\n'
|
2015-08-26 01:10:13 +03:00
|
|
|
+ '\n'
|
|
|
|
+ 'Usage:\n'
|
2015-08-26 01:15:02 +03:00
|
|
|
+ ' {{name}} instances [<filters>...]\n'
|
2015-08-26 01:10:13 +03:00
|
|
|
+ '\n'
|
|
|
|
+ '{{options}}'
|
|
|
|
);
|
|
|
|
|
2015-08-26 03:00:50 +03:00
|
|
|
do_instances.aliases = ['insts'];
|
2015-08-26 01:10:13 +03:00
|
|
|
|
2015-08-26 01:15:02 +03:00
|
|
|
module.exports = do_instances;
|