FileReference.save() duplicates ByteArray - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:56:20Z http://stackoverflow.com/feeds/question/869816 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/869816/filereference-save-duplicates-bytearray 0 FileReference.save() duplicates ByteArray bartekb 2009-05-15T17:03:14Z 2009-11-09T14:28:32Z <p>Hi,</p> <p>I've encountered a memory problem using FileReference.save(). My Flash application generates of a lot of data in real-time and needs to save this data to a local file. As I understand, Flash 10 (as opposed to AIR) does not support streaming to a file. But, what's even worse is that FileReference.save() duplicates all the data before saving it. I was looking for a workaround to this doubled memory usage and thought about the following approach:</p> <p>What if I pass a custom subclass of ByteArray as an argument to FileReference.save(), where this ByteArray subclass would override all read*() methods. The overridden read*() methods would wait for a piece of data to be generated by my application, return this piece of data and immediately remove it from the memory. I know how much data will be generated, so I could also override length/bytesAvailable methods.</p> <p>Would it be possible? Could you give me some hint how to do it? I've created a subclass of ByteArray, registered an alias for it, passed an instance of this subclass to FileReference.save(), but somehow FileReference.save() seems to treat it just as it was a ByteArray instance and doesn't call any of my overridden methods...</p> <p>Thanks a lot for any help!</p> http://stackoverflow.com/questions/869816/filereference-save-duplicates-bytearray/870152#870152 0 Answer by quoo for FileReference.save() duplicates ByteArray quoo 2009-05-15T18:24:27Z 2009-05-15T18:24:27Z <p>It's not something I've tried before, but can you try sending the data out to a php application that would handle saving the ByteArray to the server, much like saving an image to the server, so then you'd use URLLoader.data instead, using something like this:</p> <p><a href="http://www.zedia.net/2008/sending-bytearray-and-variables-to-server-side-script-at-the-same-time/" rel="nofollow">http://www.zedia.net/2008/sending-bytearray-and-variables-to-server-side-script-at-the-same-time/</a></p> http://stackoverflow.com/questions/869816/filereference-save-duplicates-bytearray/872497#872497 0 Answer by Robert Sköld for FileReference.save() duplicates ByteArray Robert Sköld 2009-05-16T14:11:01Z 2009-05-16T14:11:01Z <p>It's an interesting idea. Perhaps to start you should just add traces in your extended ByteArray to see how the FileReference#save() functions internally. </p> <p>If it has some kind of </p> <pre><code>while( originalByteArray.bytesAvailable ) writeToSaveBuffer( originalByteArray.readByte() ); </code></pre> <p>functionality the overrides could just truncate the original buffer on every read like you say, something like:</p> <pre><code>override function readByte() : uint { var b : uint = super.readByte(); // Truncate the bytes (assuming bytesAvailable = length - removedBytes) length = length - bytesAvailable; return b; } </code></pre> <p>On the other hand, if this now works I guess the original byte array would not be available afterwards in the application anymore.</p> <p>(i havn't tested this myself, truncating might require more work than the example)</p> http://stackoverflow.com/questions/869816/filereference-save-duplicates-bytearray/1701295#1701295 0 Answer by blnjanhd for FileReference.save() duplicates ByteArray blnjanhd 2009-11-09T14:28:32Z 2009-11-09T14:28:32Z <p>you have to do is go to jail in Chicago get out and sue the PD! Avg 15mil! AGH. I just found some GREAT resources for my project...if only I had done</p>