all files / src/ util.js

94% Statements 47/50
71.43% Branches 10/14
100% Functions 8/8
93.75% Lines 45/48
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                                                              47×                   112× 112× 112× 112× 112×                 186×                   110× 110× 110×     109× 436× 436×     109× 109×     109×               101× 101× 101× 338×             101×       107× 107× 107×   107× 214× 214× 535× 107× 107×       107×                       117× 117× 336× 336× 336×       117×      
// @flow
// Copyright (c) 2016 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
 
import xorshift from 'xorshift';
import Int64 from 'node-int64';
import os from 'os';
 
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 whehter 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 (obj.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;
    }
}