]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/tidep0084.git/blobdiff - example/iot-gateway/node_modules/aws-iot-device-sdk/node_modules/mqtt/bin/sub.js
Updated Sensor To Cloud design to have an easy to use setup GUI on the
[apps/tidep0084.git] / example / iot-gateway / node_modules / aws-iot-device-sdk / node_modules / mqtt / bin / sub.js
diff --git a/example/iot-gateway/node_modules/aws-iot-device-sdk/node_modules/mqtt/bin/sub.js b/example/iot-gateway/node_modules/aws-iot-device-sdk/node_modules/mqtt/bin/sub.js
deleted file mode 100755 (executable)
index e52380e..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-#!/usr/bin/env node
-
-var mqtt      = require('../')
-  , path      = require('path')
-  , fs        = require('fs')
-  , concat    = require('concat-stream')
-  , helpMe    = require('help-me')({
-      dir: path.join(__dirname, '..', 'doc')
-    })
-  , minimist  = require('minimist');
-
-function start(args) {
-  args = minimist(args, {
-    string: ['hostname', 'username', 'password', 'key', 'cert', 'ca'],
-    integer: ['port', 'qos', 'keepAlive'],
-    boolean: ['stdin', 'help', 'clean', 'insecure'],
-    alias: {
-      port: 'p',
-      hostname: ['h', 'host'],
-      topic: 't',
-      qos: 'q',
-      clean: 'c',
-      keepalive: 'k',
-      clientId: ['i', 'id'],
-      username: 'u',
-      password: 'P',
-      protocol: ['C', 'l'],
-      verbose: 'v',
-      help: '-H',
-      ca: 'cafile'
-    },
-    default: {
-      host: 'localhost',
-      qos: 0,
-      retain: false,
-      clean: true,
-      keepAlive: 30 // 30 sec
-    }
-  })
-
-  if (args.help) {
-    return helpMe.toStdout('subscribe');
-  }
-
-  args.topic = args.topic || args._.shift();
-
-  if (!args.topic) {
-    console.error('missing topic\n')
-    return helpMe.toStdout('subscribe');
-  }
-
-  if (args.key) {
-    args.key = fs.readFileSync(args.key);
-  }
-
-  if (args.cert) {
-    args.cert = fs.readFileSync(args.cert);
-  }
-
-  if (args.ca) {
-    args.ca = fs.readFileSync(args.ca);
-  }
-
-  if (args.key && args.cert && !args.protocol) {
-    args.protocol = 'mqtts';
-  }
-
-  if (args.insecure) {
-    args.rejectUnauthorized = false;
-  }
-
-  if (args.port){
-    if (typeof args.port !== 'number') {
-      console.warn('# Port: number expected, \'%s\' was given.', typeof args.port);
-      return;
-    }
-  }
-
-  if (args['will-topic']) {
-    args.will = {};
-    args.will.topic = args['will-topic'];
-    args.will.payload = args['will-message'];
-    args.will.qos = args['will-qos'];
-    args.will.retain = args['will-retain'];
-  }
-
-  args.keepAlive = args['keep-alive'];
-
-  var client = mqtt.connect(args);
-
-  client.on('connect', function() {
-    client.subscribe(args.topic, { qos: args.qos }, function (err, result) {
-      result.forEach(function (sub) {
-        if (sub.qos > 2) {
-          console.error('subscription negated to', sub.topic, 'with code', sub.qos);
-          process.exit(1);
-        }
-      })
-    });
-  });
-
-  client.on('message', function(topic, payload) {
-    if (args.verbose) {
-      console.log(topic, payload.toString())
-    } else {
-      console.log(payload.toString())
-    }
-  });
-}
-
-module.exports = start;
-
-if (require.main === module) {
-  start(process.argv.slice(2))
-}