EDITED, 26/12/2012, node v0.8.16
Currently there are 3 ways to write a file:
fs.write(fd, buffer, offset, length, position, [callback])
You need to wait for the callback to ensure that the buffer is written to disk. It's not buffered.
fs.writeFile(filename, data, [encoding], [callback])
All the data has to be stored at the same time. You can't perform sequential writes.
fs.createWriteStream(path, [options])
An improvement of (1) because you don't need to wait any callback but, again, it's not buffered.
Note: The WriteStream, as the name says, it's a stream. A stream by definition is a buffer with data that moves from an origin to a destination, but a writable stream does not need to be buffered. A stream is buffered when you write n times and at the n+1 time the stream sends the buffer because it's full and needs to be flushed.
If you look at the code, the WriteStream inherits from a writable Stream object. If you go to the line 134, you'll see what it does when you write a string with the WriteStream, the string is converted to a Buffer, and then in line 155 they call _write() to send the buffer. _write() is not implemented in this file, it's implemented in the fs module. Then, the _write() function calls to fs.write()...
As you see, they're not filling any buffer when you write strings, so if you do: write("a"), write("b"), write("c") you're doing: fs.write(new Buffer("a")), fs.write(new Buffer("b")), fs.write(new Buffer("c")), 3 calls to the I/O layer and obviously you're using buffers but the data is not buffered. A buffered stream would do: fs.write(new Buffer ("abc")), 1 call to the I/O layer.
In Java there are some classes that provide buffered streams (BufferedOutputStream and BufferedWriter). If you write 3 bytes, these bytes will be stored in the buffer (memory) instead of doing an I/O call just for 3 bytes. When the buffer is full the content is flushed and persisted to the disk. Doing this you win performance.
I'm not discovering anything, just remembering how a disk access should be done.
Then, how can we write buffered data? With a buffered-writer.
With a buffered writer you can accomplish 2 goals:
- Write text and binary data.
- Concatenate buffers. How can you write 0x00 and then 0x01? The
Buffer class only allows you to concatenate strings (buf.write(string, [offset], [length], [encoding]))
It's very easy to use.
Full reference
bw.open ("file")
.on ("error", function (error){
console.log (error);
})
.write ([0x00, 0x01, 0x02]) //Writes: 0x00, 0x01, 0x02
.write (new Buffer ([0x03, 0x04]), 1, 1) //Writes: 0x04
.write (0x0506) //Writes: 0x05, 0x06
.write ("↑a", 1) //Writes: a (0x61)
.close ();
The buffered-writer is not a stream!! it does not inherit from a Stream.
Read operations also need a buffer, especially if you're doing a random access. You can use a buffered-reader.