123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- "use strict";
- var Buffer = require("safer-buffer").Buffer;
- exports.utf16be = Utf16BECodec;
- function Utf16BECodec() {
- }
- Utf16BECodec.prototype.encoder = Utf16BEEncoder;
- Utf16BECodec.prototype.decoder = Utf16BEDecoder;
- Utf16BECodec.prototype.bomAware = true;
- function Utf16BEEncoder() {
- }
- Utf16BEEncoder.prototype.write = function(str) {
- var buf = Buffer.from(str, 'ucs2');
- for (var i = 0; i < buf.length; i += 2) {
- var tmp = buf[i]; buf[i] = buf[i+1]; buf[i+1] = tmp;
- }
- return buf;
- }
- Utf16BEEncoder.prototype.end = function() {
- }
- function Utf16BEDecoder() {
- this.overflowByte = -1;
- }
- Utf16BEDecoder.prototype.write = function(buf) {
- if (buf.length == 0)
- return '';
- var buf2 = Buffer.alloc(buf.length + 1),
- i = 0, j = 0;
- if (this.overflowByte !== -1) {
- buf2[0] = buf[0];
- buf2[1] = this.overflowByte;
- i = 1; j = 2;
- }
- for (; i < buf.length-1; i += 2, j+= 2) {
- buf2[j] = buf[i+1];
- buf2[j+1] = buf[i];
- }
- this.overflowByte = (i == buf.length-1) ? buf[buf.length-1] : -1;
- return buf2.slice(0, j).toString('ucs2');
- }
- Utf16BEDecoder.prototype.end = function() {
- this.overflowByte = -1;
- }
- exports.utf16 = Utf16Codec;
- function Utf16Codec(codecOptions, iconv) {
- this.iconv = iconv;
- }
- Utf16Codec.prototype.encoder = Utf16Encoder;
- Utf16Codec.prototype.decoder = Utf16Decoder;
- function Utf16Encoder(options, codec) {
- options = options || {};
- if (options.addBOM === undefined)
- options.addBOM = true;
- this.encoder = codec.iconv.getEncoder('utf-16le', options);
- }
- Utf16Encoder.prototype.write = function(str) {
- return this.encoder.write(str);
- }
- Utf16Encoder.prototype.end = function() {
- return this.encoder.end();
- }
- function Utf16Decoder(options, codec) {
- this.decoder = null;
- this.initialBufs = [];
- this.initialBufsLen = 0;
- this.options = options || {};
- this.iconv = codec.iconv;
- }
- Utf16Decoder.prototype.write = function(buf) {
- if (!this.decoder) {
-
- this.initialBufs.push(buf);
- this.initialBufsLen += buf.length;
-
- if (this.initialBufsLen < 16)
- return '';
-
- var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding);
- this.decoder = this.iconv.getDecoder(encoding, this.options);
- var resStr = '';
- for (var i = 0; i < this.initialBufs.length; i++)
- resStr += this.decoder.write(this.initialBufs[i]);
- this.initialBufs.length = this.initialBufsLen = 0;
- return resStr;
- }
- return this.decoder.write(buf);
- }
- Utf16Decoder.prototype.end = function() {
- if (!this.decoder) {
- var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding);
- this.decoder = this.iconv.getDecoder(encoding, this.options);
- var resStr = '';
- for (var i = 0; i < this.initialBufs.length; i++)
- resStr += this.decoder.write(this.initialBufs[i]);
- var trail = this.decoder.end();
- if (trail)
- resStr += trail;
- this.initialBufs.length = this.initialBufsLen = 0;
- return resStr;
- }
- return this.decoder.end();
- }
- function detectEncoding(bufs, defaultEncoding) {
- var b = [];
- var charsProcessed = 0;
- var asciiCharsLE = 0, asciiCharsBE = 0;
- outer_loop:
- for (var i = 0; i < bufs.length; i++) {
- var buf = bufs[i];
- for (var j = 0; j < buf.length; j++) {
- b.push(buf[j]);
- if (b.length === 2) {
- if (charsProcessed === 0) {
-
- if (b[0] === 0xFF && b[1] === 0xFE) return 'utf-16le';
- if (b[0] === 0xFE && b[1] === 0xFF) return 'utf-16be';
- }
- if (b[0] === 0 && b[1] !== 0) asciiCharsBE++;
- if (b[0] !== 0 && b[1] === 0) asciiCharsLE++;
- b.length = 0;
- charsProcessed++;
- if (charsProcessed >= 100) {
- break outer_loop;
- }
- }
- }
- }
-
-
-
- if (asciiCharsBE > asciiCharsLE) return 'utf-16be';
- if (asciiCharsBE < asciiCharsLE) return 'utf-16le';
-
- return defaultEncoding || 'utf-16le';
- }
|