Source

UTF16LE.js

  1. /*
  2. * UTF16LE.js - Implement Unicode Transformation Format 16 bit,
  3. * Little Endian mappings
  4. *
  5. * Copyright © 2014-2015, 2018, JEDLSoft
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. *
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. // !data charset/UTF-16 charset/UTF-16LE
  21. var Charset = require("./Charset.js");
  22. var Charmap = require("./Charmap.js");
  23. /**
  24. * @class
  25. * Create a new UTF-16LE mapping instance
  26. * @constructor
  27. * @extends Charmap
  28. */
  29. var UTF16LE = function (options) {
  30. options = options || {sync: true};
  31. if (typeof(options.charset) === "object" && options.charset instanceof Charset) {
  32. this.charset = options.charset;
  33. this._init(options);
  34. } else {
  35. new Charset({
  36. name: "UTF-16LE",
  37. sync: options.sync,
  38. loadParams: options.loadParams,
  39. onLoad: ilib.bind(this, function(cs) {
  40. this.charset = cs;
  41. this._init(options);
  42. })
  43. });
  44. }
  45. };
  46. UTF16LE.prototype = new Charmap({noinstance: true});
  47. UTF16LE.prototype.parent = Charmap;
  48. UTF16LE.prototype.constructor = UTF16LE;
  49. /**
  50. * Initialize the charmap instance
  51. * @private
  52. */
  53. UTF16LE.prototype._init = function(options) {
  54. this._calcExpansionFactor();
  55. if (typeof(options.onLoad) === "function") {
  56. options.onLoad(this);
  57. }
  58. };
  59. UTF16LE.prototype.mapToUnicode = function (bytes) {
  60. if (typeof(Buffer) !== "undefined") {
  61. // nodejs can convert it quickly in native code
  62. var b = Buffer.from(bytes);
  63. return b.toString("utf16le");
  64. }
  65. // otherwise we have to implement it in pure JS
  66. var ret = "";
  67. for (var i = 0; i < bytes.length; i += 2) {
  68. ret += String.fromCharCode(bytes[i+1] << 8 | bytes[i]);
  69. }
  70. return ret;
  71. };
  72. UTF16LE.prototype.mapToNative = function(str) {
  73. if (typeof(Buffer) !== "undefined") {
  74. // nodejs can convert it quickly in native code
  75. var b = Buffer.from(str, "utf16le");
  76. return new Uint8Array(b);
  77. }
  78. // otherwise we have to implement it in pure JS
  79. var ret = new Uint8Array(str.length * 2 + 2);
  80. var c;
  81. for (var i = 0; i < str.length; i++) {
  82. c = str.charCodeAt(i);
  83. ret[i*2] = c & 0xFF;
  84. ret[i*2+1] = (c >> 8) & 0xFF;
  85. }
  86. // double null terminate it, just in case
  87. ret[i*2+1] = 0;
  88. ret[i*2+2] = 0;
  89. return ret;
  90. };
  91. Charmap._algorithms["UTF-16"] = UTF16LE;
  92. Charmap._algorithms["UTF-16LE"] = UTF16LE;
  93. module.exports = UTF16LE;