Is there a commonly accepted technique for efficiently converting JavaScript strings to ArrayBuffers and vice-versa? Specifically, I'd like to be able to write the contents of an ArrayBuffer to localStorage and to read it back.

link|improve this question

57% accept rate
I don't have any experience in this, but judging from the API documentation (khronos.org/registry/typedarray/specs/latest) if you build an Int8Array ArrayBufferView it might be possible to simply use the bracket notation to copy chars string[i] = buffer[i] and vice versa. – FK82 Aug 6 '11 at 13:30
@FK82, that looks like a reasonable approach (using Uint16Arrays for JS's 16-bit characters), but JavaScript strings are immutable so you can't assign directly to a character position. I would still need to copy String.fromCharCode(x) of each value in the Uint16Array to a normal Array and then call .join() on the Array. – kpozin Aug 6 '11 at 15:11
@kpozin: True, didn't really think that through. – FK82 Aug 6 '11 at 15:52
1  
@kpozin It turns out that most modern JS engines have optimized string concatenation to the point where it's cheaper to just use string += String.fromCharCode(buffer[i]);. It does seem odd that there wouldn't be built-in methods for converting between strings and typed arrays. They had to know something like this would come up. – download Oct 21 '11 at 18:48
feedback

3 Answers

up vote 2 down vote accepted

Based on the answer of gengkev, I created functions for both ways, because BlobBuilder can handle String and ArrayBuffer:

function string2ArrayBuffer(string, callback) {
    var bb = new BlobBuilder();
    bb.append(string);
    var f = new FileReader();
    f.onload = function(e) {
        callback(e.target.result);
    }
    f.readAsArrayBuffer(bb.getBlob());
}

and

function arrayBuffer2String(buf, callback) {
    var bb = new BlobBuilder();
    bb.append(buf);
    var f = new FileReader();
    f.onload = function(e) {
        callback(e.target.result)
    }
    f.readAsText(bb.getBlob());
}

A simple test:

string2ArrayBuffer("abc",
    function (buf) {
        var uInt8 = new Uint8Array(buf);
        console.log(uInt8); // Returns `Uint8Array { 0=97, 1=98, 2=99}`

        arrayBuffer2String(buf, 
            function (string) {
                console.log(string); // returns "abc"
            }
        )
    }
)
link|improve this answer
In arrayBuffer2String(), did you mean to call callback(...) instead of console.log()? Otherwise the callback argument goes unused. – Dan Phillimore Mar 14 at 16:09
Yepp, you're right. I corrected it. Thanks. – Dennis Mar 14 at 22:31
This looks like the way to go -- thanks genkev and Dennis. Seems kind of silly that there's no synchronous way to accomplish this, but what can you do... – kpozin Mar 30 at 3:12
JavaScript is single threaded. Therefore the FileReader is asynchronous for two reasons: (1) it will not block the execution of other JavaScript while loading a (huge) file (imagine a more complex application) and (2) it will not block the UI/Browser (common problem with long executing JS code). Plenty of APIs are asynchronous. Even in XMLHttpRequest 2 the synchronous is removed. – Dennis Apr 2 at 16:09
I was really hoping this would work for me, but the conversion from string to ArrayBuffer is not working reliably. I am making an ArrayBuffer with 256 values, and can turn that into a string with length 256. But then if I try to convert that back to an ArrayBuffer - depending on the contents of my initial ArrayBuffer - I'm getting out 376 elements. If you want to try to reproduce my problem, I'm treating my ArrayBuffer as a 16x16 grid in a Uint8Array, with values calculated as a[y * w + x] = (x + y) / 2 * 16; I've tried getBlob("x"), with many different mimetypes - no luck. – Matt Cruikshank May 6 at 13:40
show 1 more comment
feedback

(Update Please see the 2nd half of this answer, where I have (hopefully) provided a more complete solution.)

I also ran into this issue, the following works for me in FF 6 (for one direction):

var buf = new ArrayBuffer( 10 );
var view = new Uint8Array( buf );
view[ 3 ] = 4;
alert(Array.prototype.slice.call(view).join(""));

Unfortunately, of course, you end up with ASCII text representations of the values in the array, rather than characters. It still (should be) much more efficient than a loop, though. eg. For the example above, the result is 0004000000, rather than several null chars & a chr(4).

Edit:

After looking on MDC here, you may create an ArrayBuffer from an Array as follows:

var arr = new Array(23);
// New Uint8Array() converts the Array elements
//  to Uint8s & creates a new ArrayBuffer
//  to store them in & a corresponding view.
//  To get at the generated ArrayBuffer,
//  you can then access it as below, with the .buffer property
var buf = new Uint8Array( arr ).buffer;

To answer your original question, this allows you to convert ArrayBuffer <-> String as follows:

var buf, view, str;
buf = new ArrayBuffer( 256 );
view = new Uint8Array( buf );

view[ 0 ] = 7; // Some dummy values
view[ 2 ] = 4;

// ...

// 1. Buffer -> String (as byte array "list")
str = bufferToString(buf);
alert(str); // Alerts "7,0,4,..."

// 1. String (as byte array) -> Buffer    
buf = stringToBuffer(str);
alert(new Uint8Array( buf )[ 2 ]); // Alerts "4"

// Converts any ArrayBuffer to a string
//  (a comma-separated list of ASCII ordinals,
//  NOT a string of characters from the ordinals
//  in the buffer elements)
function bufferToString( buf ) {
    var view = new Uint8Array( buf );
    return Array.prototype.join.call(view, ",");
}
// Converts a comma-separated ASCII ordinal string list
//  back to an ArrayBuffer (see note for bufferToString())
function stringToBuffer( str ) {
    var arr = str.split(",")
      , view = new Uint8Array( arr );
    return view.buffer;
}

For convenience, here is a function for converting a raw Unicode String to an ArrayBuffer (will only work with ASCII/one-byte characters)

function rawStringToBuffer( str ) {
    var idx, len = str.length, arr = new Array( len );
    for ( idx = 0 ; idx < len ; ++idx ) {
        arr[ idx ] = str.charCodeAt(idx) & 0xFF;
    }
    // You may create an ArrayBuffer from a standard array (of values) as follows:
    return new Uint8Array( arr ).buffer;
}

// Alerts "97"
alert(new Uint8Array( rawStringToBuffer("abc") )[ 0 ]);

The above allow you to go from ArrayBuffer -> String & back to ArrayBuffer again, where the string may be stored in eg. .localStorage :)

Hope this helps,

Dan

link|improve this answer
feedback

Well, here's a somewhat convoluted way of doing the same thing:

var string = "Blah blah blah", output;
var bb = new (window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder)();
bb.append(string);
var f = new FileReader();
f.onload = function(e) {
  // do whatever
  output = e.target.result;
}
f.readAsArrayBuffer(bb.getBlob());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.