Index: lib/typedObjects/stringType.js |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/lib/typedObjects/stringType.js |
@@ -0,0 +1,61 @@ |
+/* |
+ * This file is part of Adblock Plus <http://adblockplus.org/>, |
+ * Copyright (C) 2006-2014 Eyeo GmbH |
+ * |
+ * Adblock Plus is free software: you can redistribute it and/or modify |
+ * it under the terms of the GNU General Public License version 3 as |
+ * published by the Free Software Foundation. |
+ * |
+ * Adblock Plus is distributed in the hope that it will be useful, |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
+ * GNU General Public License for more details. |
+ * |
+ * You should have received a copy of the GNU General Public License |
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
+ */ |
+ |
+"use strict"; |
+ |
+let {uint16} = require("typedObjects/primitiveTypes"); |
René Jeschke
2014/05/19 08:15:28
Have you already thought about trading some CPU po
|
+ |
tschuster
2014/05/19 11:31:29
I think a good idea would be to have "ASCII" strin
René Jeschke
2014/05/19 13:55:01
Sorry, but this doesn't work. If we plan to suppor
Wladimir Palant
2014/05/19 15:16:39
Actually, a cstring type might make sense in some
René Jeschke
2014/05/19 15:26:24
Yep, right. Just wanted to hear if you already con
|
+let string = exports.string = uint16.Array({ |
+ toString: function() |
+ { |
+ let buffer = this.getArrayBuffer(); |
+ if (!buffer) |
+ return ""; |
+ let array = new Uint16Array(buffer, this.arrayByteOffset, this.length); |
+ return String.fromCharCode.apply(null, array); |
+ } |
+}, { |
+ constructor: function(value, offset, length) |
+ { |
+ let type = typeof value; |
+ if (type == "number") |
+ this.length = value | 0; |
+ else if (type == "string" || (value && string.isInstance(value))) |
+ { |
+ let sourceLength = value.length | 0; |
+ offset = Math.min(sourceLength, offset | 0) |
+ length = (typeof length == "number" ? length | 0 : sourceLength); |
+ length = Math.min(length, sourceLength - offset); |
+ this.length = length; |
+ |
+ if (length > 0) |
+ { |
+ let dest = new Uint16Array(this.getArrayBuffer(), this.arrayByteOffset, length); |
+ if (type == "string") |
René Jeschke
2014/05/19 08:15:28
For readability and to enable error free future im
|
+ for (let i = 0; i < length; i++, offset++) |
+ dest[i] = value.charCodeAt(offset) | 0; |
tschuster
2014/05/19 11:31:29
|0 doesn't really make a difference if you are wri
|
+ else |
+ { |
+ let src = new Uint16Array(value.getArrayBuffer(), |
+ value.arrayByteOffset + offset * (uint16.referenceLength | 0), |
+ length); |
+ dest.set(src); |
+ } |
+ } |
+ } |
+ } |
+}); |