不要怂,就是干,撸起袖子干!

pack.js 13.2 KB
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
// 
// pack/unpack style seralizer and deserializer.
//  
exports.unpack = function(format, data) {
    var result = [];
    var instruction, quantifier, currentData, i, j, k;
    
    while(format) {
	instruction = format.substring(0,1);
	format = format.slice(1);
	quantifier = '1';
	var q = format.match(/^(\*|\d+)/);
	if(q!==null) {
	    quantifier = q[0];
	    format = format.slice(quantifier.length);
	}
        switch (instruction) {
        case 'a': // NUL-padded string
        case 'A': // SPACE-padded string
        case 'Z': // 
            if (quantifier === '*') {
		quantifier = data.indexOf( (instruction==='A'?" ":"\0"))+1;
                if(!quantifier) quantifier = data.length;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
            currentData = data.substr(0, quantifier);
            data = data.slice(quantifier);
	    
            if (instruction === 'a') {
                currentResult = currentData.replace(/\0+$/, '');
	    }
            else if (instruction === 'A') {
                currentResult = currentData.replace(/ +$/, '');
            }
	    else { // 'Z'
		currentResult = currentData;
	    }
            result.push(currentResult);
            break;
	    
        case 'b': // 
            if (quantifier === '*') {
                quantifier = data.length;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
            currentData = data.substr(0, quantifier);
            data = data.slice(quantifier);
	    
	    currentResult = '';
            for (i=0;i<currentData.length;i++) {
		j = parseInt(currentData.charCodeAt(i));
		for(k=0; k<8; ++k) {
		    j <<= 1;
		    currentResult += (j>255) ? "1" : "0";
		    j &= 0xff;
		}
            }
            result.push(currentResult);
            break;

        case 'c': // signed char
        case 'C': // unsigned c
            if (quantifier === '*') {
                quantifier = data.length;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
            currentData = data.substr(0, quantifier);
            data = data.slice(quantifier);
	    
            for (i=0;i<currentData.length;i++) {
                currentResult = parseInt(currentData.charCodeAt(i));
                if ((instruction === 'c') && (currentResult >= 128)) {
                    currentResult -= 256;
                }
                result.push(currentResult);
            }
            break;
	    
        case 'v': // unsigned short (always 16 bit, little endian byte order)
            if (quantifier === '*') {
                quantifier = (data.length) / 2;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
            currentData = data.substr(0, quantifier*2);
            data = data.slice(quantifier*2);
            for (i=0;i<currentData.length;i+=2) {
                currentResult = parseInt(currentData.charCodeAt(i+1) << 8) +
                    parseInt(currentData.charCodeAt(i));
                result.push(currentResult);
            }
            break;
	    
        case 'V': // unsigned long (always 32 bit, little endian byte order)
            if (quantifier === '*') {
                quantifier = (data.length) / 4;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
	    
            currentData = data.substr(0, quantifier*4);
            data = data.slice(quantifier*4);
            for (i=0;i<currentData.length;i+=4) {
                currentResult =
                    parseInt((currentData.charCodeAt(i+3) & 0xFF) << 24) +
                    parseInt((currentData.charCodeAt(i+2) & 0xFF) << 16) +
                    parseInt((currentData.charCodeAt(i+1) & 0xFF) << 8) +
                    parseInt((currentData.charCodeAt(i) & 0xFF));
                result.push(currentResult);
            }
            break;
	
	case 'e':
            if (quantifier === '*') {
                quantifier = (data.length) / 4;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
	    
            currentData = data.substr(0, quantifier*4);
            data = data.slice(quantifier*4);
            for (i=0;i<currentData.length;i+=4) {
                currentResult = decodeIEEE754(currentData.substring(i*4, i*4+4));
                result.push(currentResult);
            }
            break;
	    
	case 'E':
            if (quantifier === '*') {
                quantifier = (data.length) / 8;
            } else {
                quantifier = parseInt(quantifier, 10);
            }
	    
            currentData = data.substr(0, quantifier*8);
            data = data.slice(quantifier*8);
            for (i=0;i<currentData.length;i+=8) {
                currentResult = decodeIEEE754(currentData.substring(i*8, i*8+8));
                result.push(currentResult);
            }
            break;
	    
        default:
            throw 'Warning:  unpack() Type ' + instruction + ': unknown format code';
	}
    }
    return result;
};


exports.pack = function(format) {
    var result = "";
    var instruction, quantifier, currentData;
    var argumentPointer = 1;
    var args = arguments;
    if(args[1].constructor.toString().indexOf(" Array(") >= 0) {
	args = args[1];
	argumentPointer = 0;
    }
    
    while(format) {
	instruction = format.substring(0,1);
	format = format.slice(1);
	quantifier = '1';
	var q = format.match(/^(\*|\d+)/);
	if(q!==null) {
	    quantifier = q[0];
	    format = format.slice(quantifier.length);
	}
	
	switch (instruction) {
        case 'a': //NUL-padded string            
        case 'A': //SPACE-padded string
        case 'Z':
            if (typeof args[argumentPointer] === 'undefined') {
                throw new Error('Warning: pack() Type ' + instruction +
                       ': not enough arguments');
            } else {
                argument = String(args[argumentPointer]);
            }
            if (quantifier === '*') {
                quantifier = argument.length + ((instruction === 'a') ? 1 : 0);
            }
            for (i = 0; i < quantifier; i ++) { 
		if (typeof(argument[i]) === 'undefined') {
                    if (instruction === 'a') {
                        result += String.fromCharCode(0);
                    } else {
                        result += ' ';
                    }
                } else {
                    result += argument[i];
                }
            }
	    argumentPointer++;
            break;
	    
        case 'c': //signed char
        case 'C': //unsigned char
            //c and C is the same in pack
            if (quantifier === '*') {
                quantifier = args.length - argumentPointer;
	    }
            if (quantifier > (args.length - argumentPointer)) {
                throw new Error('Warning: pack() Type ' + instruction +
                        ': too few arguments');
            } 
            for (i = 0; i < quantifier; i++) {
                result += String.fromCharCode(args[argumentPointer]);
                argumentPointer++;
            }
	    break;

        case 'v':            //s and S is the same in pack
            //but can machine byte order be retrieved in javascript?
            //this is default byte order anywayz...
            if (quantifier === '*') {
                quantifier = args.length - argumentPointer;
	    }
            if (quantifier > (args.length - argumentPointer)) {
                throw new Error('Warning: pack() Type ' + instruction +
                        ': too few arguments');
            } 
            for (i = 0; i < quantifier; i++) {
                result += String.fromCharCode(args[argumentPointer] &
                        0xFF);
                result += String.fromCharCode(args[argumentPointer] >> 8 & 0xFF);
                argumentPointer++;
            }
            break;
	    
        case 'V': // unsigned long (always 32 bit, little endian byte order)
            if (quantifier === '*') {
                quantifier = args.length - argumentPointer;
	    }
            if (quantifier > (args.length - argumentPointer)) {
                throw new Error('Warning: pack() Type ' + instruction +
                        ': too few arguments');
            } 
            for (i = 0; i < quantifier; i++) {
                result += String.fromCharCode(args[argumentPointer] & 0xFF);
                result += String.fromCharCode(args[argumentPointer] >> 8 & 0xFF);
                result += String.fromCharCode(args[argumentPointer] >> 16 & 0xFF);
                result += String.fromCharCode(args[argumentPointer] >> 24 & 0xFF);
                argumentPointer++;
            }
            break;

        case 'e': // IEEE754 32bit
            if (quantifier === '*') {
                quantifier = args.length - argumentPointer;
	    }
            if (quantifier > (args.length - argumentPointer)) {
                throw new Error('Warning: pack() Type ' + instruction +
                        ': too few arguments');
            } 

            for (i = 0; i < quantifier; i++) {
		result += encodeIEEE754(args[argumentPointer], 'float');
                argumentPointer++;
            }
            break;
	    
        case 'E': // IEEE754 64bit
            if (quantifier === '*') {
                quantifier = args.length - argumentPointer;
	    }
            if (quantifier > (args.length - argumentPointer)) {
                throw new Error('Warning: pack() Type ' + instruction +
                        ': too few arguments');
            } 

            for (i = 0; i < quantifier; i++) {
		result += encodeIEEE754(args[argumentPointer], 'double');
                argumentPointer++;
            }
            break;

        default:
            throw 'Warning: pack() Type ' + instruction + ': unknown format code';
	}
    }
    return result;
};


var encodeIEEE754 = function(val, type) {
    var config = {
	'double': {
	    bias: 1023,
	    bytes: 8,
	    exp: 11,
	    
	    POSITIVE_INFINITY: Number.POSITIVE_INFINITY,
	    NEGATIVE_INFINITY: Number.NEGATIVE_INFINITY,
	    
	    qNAN: String.fromCharCode(0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff),
	    pINF: String.fromCharCode(0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
	    nINF: String.fromCharCode(0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
	    zero: String.fromCharCode(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
	},
	'float': {
	    bias: 127,
	    bytes: 4,
	    exp: 8,
	    
	    POSITIVE_INFINITY: (2 - Math.pow(2, -23)) * Math.pow(2, 127),
	    NEGATIVE_INFINITY: -(2 - Math.pow(2, -23)) * Math.pow(2, 127),
	    
	    qNAN: String.fromCharCode(0xff, 0xff, 0xff, 0xff),
	    pINF: String.fromCharCode(0x7f, 0x80, 0x00, 0x00),
	    nINF: String.fromCharCode(0xff, 0x80, 0x00, 0x00),
	    zero: String.fromCharCode(0x00, 0x00, 0x00, 0x00)
	}
    }[type || 'double'];
    
    if ( isNaN(val) )  return config.qNAN;
    if ( val >= config.POSITIVE_INFINITY ) return config.pINF;
    if ( val <= config.NEGATIVE_INFINITY ) return config.nINF;
    if ( Math.abs(val) == 0 )  return config.zero;

    var zeropadding = function(val,len,prepare) {
	var padding = "0000000000".substring(0,len-val.length);
	return prepare ? padding+val : val+padding;
    }
    var bval = Math.abs(val).toString(2);
    var exp = bval.indexOf(".") - 1 + config.bias;
    var bfrac = bval.replace(".", "");
    exp -= bfrac.indexOf("1");
    bfrac = bfrac.substring(bfrac.indexOf("1")+1);
    var bits = (val<0?"1":"0")+zeropadding(exp.toString(2), config.exp, true)+bfrac;

    result = [];
    for (var i = 0; i < config.bytes; i++) {
	result.push(String.fromCharCode(parseInt(zeropadding(bits.substring(i*8,i*8+8),8,false),2)));
    }
    
    return result.reverse().join("");
};


var decodeIEEE754 = function(data) {
    var bits = data.split('').map(function(s){return s.charCodeAt(0);}).reverse();
    var n = bits.length;
    var config = {
	4: {
	    bias: 127,
	    sgnd: 23,
	    pbias: Math.pow(2, 126),
	    psgnd: Math.pow(2, 23)
	},
	8: {
	    bias: 1023,
	    sgnd: 52,
	    pbias: Math.pow(2, 1022),
	    psgnd: Math.pow(2, 52)
	}
    }[n];

    var e, m;
    if ( n == 4 ) {
        e = ((bits[0] & 0x7f) << 1) + (bits[1] >> 7);
        m = bits[1] & 0x7f;
    }
    else if ( n == 8 ) {
        e = ((bits[0] & 0x7f) << 4) + (bits[1] >> 4);
        m = bits[1] & 0x0f;
    }
    else {
        throw "Range error";
    }

    s = bits[0] & 0x80;
    for (var i = 2; i < n; i++) {
        m = m * 0x100 + bits[i];
    }

    // e = 0xff, 0x7ff - +INF, -INF or NAN
    if ( e == config.bias * 2 + 1 ) {
        // NAN
        if ( m ) {
            return 0 / 0;
        }

        // +INF, -INF
        return (s ? -1 : +1) / 0;
    }

    var result = e 
        ? (m / config.psgnd + 1) * Math.pow(2, e - config.bias) 
        : m / config.psgnd / config.pbias;
    
    return s ? -result : result;
};

/*
node-mysql
A node.js interface for MySQL

Author: masuidrive <masui@masuidrive.jp>
License: MIT License
Copyright (c) Yuichiro MASUI
*/

// pack/unpack Original
// MIT license http://phpjs.org/functions/pack:880
// http://kevin.vanzonneveld.net
// +   original by: Tim de Koning (http://www.kingsquare.nl)
// +      parts by: Jonas Raoni Soares Silva
// +      http://www.jsfromhell.com    // %        note 1: Float encoding by: Jonas Raoni Soares Silva

// encode/decodeFloat Original
// http://snippets.dzone.com/posts/show/685