all files / lib/lifx/packets/ stateLocation.js

18.52% Statements 5/27
0% Branches 0/2
0% Functions 0/2
18.52% Lines 5/27
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                                                                                                         
'use strict';
 
var _require = require('../../lifx'),
    utils = _require.utils;
 
var Packet = {
  size: 56
};
 
/**
 * Converts packet specific data from a buffer to an object
 * @param  {Buffer} buf Buffer containing only packet specific data no header
 * @return {Object}     Information contained in packet
 */
Packet.toObject = function (buf) {
  var obj = {};
  var offset = 0;
 
  if (buf.length !== this.size) {
    throw new Error('Invalid length given for stateLocation LIFX packet');
  }
 
  obj.location = buf.toString('hex', offset, offset + 16);
  offset += 16;
 
  obj.label = buf.toString('utf8', offset, offset + 32);
  obj.label = obj.label.replace(/\0/g, '');
  offset += 32;
 
  obj.updatedAt = utils.readUInt64LE(buf, offset);
  offset += 8;
 
  return obj;
};
 
/**
 * Converts the given packet specific object into a packet
 * @param  {Object} obj object with configuration data
 * @return {Buffer}     packet
 */
Packet.toBuffer = function (obj) {
  var buf = Buffer.alloc(this.size);
  buf.fill(0);
  var offset = 0;
 
  buf.write(obj.location, offset, 16, 'hex');
  offset += 16;
 
  buf.write(obj.label, offset, 32, 'utf8');
  offset += 32;
 
  utils.writeUInt64LE(buf, offset, obj.updatedAt);
  offset += 8;
 
  return buf;
};
 
module.exports = Packet;