all files / src/ util.js

98.31% Statements 58/59
78.57% Branches 11/14
100% Functions 13/13
98.25% Lines 56/57
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                                              52×                   114× 114× 114× 114× 114×                 189×                 135× 135× 135×     134× 536× 536×     134× 134×     134×               104× 104× 104× 379×             104×       132× 132× 132× 132× 264× 264× 660× 132× 132×       132×       11× 11×       11×       149× 149× 567× 567× 567×       149×         20×               18×     18× 18× 18×     18× 18×                
// @flow
// Copyright (c) 2016 Uber Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
// or implied. See the License for the specific language governing permissions and limitations under
// the License.
 
import xorshift from 'xorshift';
import Int64 from 'node-int64';
import os from 'os';
import http from 'http';
 
export default class Utils {
  /**
   * Determines whether a string contains a given prefix.
   *
   * @param {string} text - the string for to search for a prefix
   * @param {string} prefix - the prefix to search for in the text given.
   * @return {boolean} - boolean representing whether or not the
   * string contains the prefix.
   **/
  static startsWith(text: string, prefix: string): boolean {
    return text.indexOf(prefix) === 0;
  }
 
  /**
   * Determines whether a string contains a given prefix.
   *
   * @return {Buffer}  - returns a buffer representing a random 64 bit
   * number.
   **/
  static getRandom64(): Buffer {
    let randint = xorshift.randomint();
    let buf = new Buffer(8);
    buf.writeUInt32BE(randint[0], 0);
    buf.writeUInt32BE(randint[1], 4);
    return buf;
  }
 
  /**
   * @param {string|number} numberValue - a string or number to be encoded
   * as a 64 bit byte array.
   * @return {Buffer} - returns a buffer representing the encoded string, or number.
   **/
  static encodeInt64(numberValue: any): any {
    return new Int64(numberValue).toBuffer();
  }
 
  /**
   * @param {string} ip - a string representation of an ip address.
   * @return {number} - a 32-bit number where each byte represents an
   * octect of an ip address.
   **/
  static ipToInt(ip: string): ?number {
    let ipl = 0;
    let parts = ip.split('.');
    if (parts.length != 4) {
      return null;
    }
 
    for (let i = 0; i < parts.length; i++) {
      ipl <<= 8;
      ipl += parseInt(parts[i], 10);
    }
 
    let signedLimit = 0x7fffffff;
    if (Iipl > signedLimit) {
      return (1 << 32) - ipl;
    }
    return ipl;
  }
 
  /**
   * @param {string} input - the input for which leading zeros should be removed.
   * @return {string} - returns the input string without leading zeros.
   **/
  static removeLeadingZeros(input: string): string {
    let counter = 0;
    let length = input.length - 1;
    for (let i = 0; i < length; i++) {
      if (input.charAt(i) === '0') {
        counter++;
      } else {
        break;
      }
    }
 
    return input.substring(counter);
  }
 
  static myIp(): string {
    let myIp = '0.0.0.0';
    let ifaces = os.networkInterfaces();
    let keys = Object.keys(ifaces);
    loop1: for (let i = 0; i < keys.length; i++) {
      let iface = ifaces[keys[i]];
      for (let j = 0; j < iface.length; j++) {
        if (iface[j].family === 'IPv4' && !iface[j].internal) {
          myIp = iface[j].address;
          break loop1;
        }
      }
    }
    return myIp;
  }
 
  static clone(obj: any): any {
    let newObj = {};
    for (let key in obj) {
      if (Eobj.hasOwnProperty(key)) {
        newObj[key] = obj[key];
      }
    }
 
    return newObj;
  }
 
  static convertObjectToTags(dict: any): Array<Tag> {
    let tags: Array<Tag> = [];
    for (let key in dict) {
      let value = dict[key];
      if (Edict.hasOwnProperty(key)) {
        tags.push({ key: key, value: value });
      }
    }
 
    return tags;
  }
 
  static httpGet(host: string, port: number, path: string, success: Function, error: Function) {
    http
      .get(
        {
          host: host,
          port: port,
          path: path,
        },
        res => {
          // explicitly treat incoming data as utf8 (avoids issues with multi-byte chars)
          res.setEncoding('utf8');
 
          // incrementally capture the incoming response body
          let body = '';
          res.on('data', chunk => {
            body += chunk;
          });
 
          res.on('end', () => {
            success(body);
          });
        }
      )
      .on('error', err => {
        error(err);
      });
  }
}