• File: StatisticsPacket.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/mysql/lib/protocol/packets/StatisticsPacket.js
  • Date Modified: 10/26/1985 3:15 PM
  • File size: 544 bytes
  • MIME-type: text/plain
  • Charset: utf-8
module.exports = StatisticsPacket;
function StatisticsPacket() {
  this.message      = undefined;
}

StatisticsPacket.prototype.parse = function(parser) {
  this.message      = parser.parsePacketTerminatedString();

  var items = this.message.split(/\s\s/);
  for (var i = 0; i < items.length; i++) {
    var m = items[i].match(/^(.+)\:\s+(.+)$/);
    if (m !== null) {
      this[m[1].toLowerCase().replace(/\s/g, '_')] = Number(m[2]);
    }
  }
};

StatisticsPacket.prototype.write = function(writer) {
  writer.writeString(this.message);
};