2010-01-28 00:40:09 +01:00
|
|
|
#ifndef NODE_BUFFER_H_
|
|
|
|
#define NODE_BUFFER_H_
|
2009-12-13 08:42:45 +01:00
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
#include <node.h>
|
|
|
|
#include <node_object_wrap.h>
|
2009-12-13 08:42:45 +01:00
|
|
|
#include <v8.h>
|
|
|
|
|
|
|
|
namespace node {
|
|
|
|
|
2009-12-15 09:22:36 +01:00
|
|
|
/* A buffer is a chunk of memory stored outside the V8 heap, mirrored by an
|
|
|
|
* object in javascript. The object is not totally opaque, one can access
|
|
|
|
* individual bytes with [] and slice it into substrings or sub-buffers
|
|
|
|
* without copying memory.
|
|
|
|
*
|
|
|
|
* // return an ascii encoded string - no memory iscopied
|
2010-01-28 00:40:09 +01:00
|
|
|
* buffer.asciiSlide(0, 3)
|
2009-12-15 09:22:36 +01:00
|
|
|
*
|
|
|
|
* // returns another buffer - no memory is copied
|
|
|
|
* buffer.slice(0, 3)
|
|
|
|
*
|
|
|
|
* Interally, each javascript buffer object is backed by a "struct buffer"
|
|
|
|
* object. These "struct buffer" objects are either a root buffer (in the
|
|
|
|
* case that buffer->root == NULL) or slice objects (in which case
|
|
|
|
* buffer->root != NULL). A root buffer is only GCed once all its slices
|
|
|
|
* are GCed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
struct Blob_;
|
|
|
|
|
|
|
|
class Buffer : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
static bool HasInstance(v8::Handle<v8::Value> val);
|
2009-12-13 08:42:45 +01:00
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
const char* data() const { return data_; }
|
|
|
|
size_t length() const { return length_; }
|
|
|
|
struct Blob_* blob() const { return blob_; }
|
2009-12-15 09:22:36 +01:00
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
protected:
|
|
|
|
static v8::Persistent<v8::FunctionTemplate> constructor_template;
|
|
|
|
static v8::Handle<v8::Value> New(const v8::Arguments &args);
|
|
|
|
static v8::Handle<v8::Value> Slice(const v8::Arguments &args);
|
|
|
|
static v8::Handle<v8::Value> AsciiSlice(const v8::Arguments &args);
|
|
|
|
static v8::Handle<v8::Value> Utf8Slice(const v8::Arguments &args);
|
|
|
|
static v8::Handle<v8::Value> AsciiWrite(const v8::Arguments &args);
|
|
|
|
static v8::Handle<v8::Value> Utf8Write(const v8::Arguments &args);
|
|
|
|
static v8::Handle<v8::Value> Utf8Length(const v8::Arguments &args);
|
2010-01-24 23:06:07 +01:00
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
int AsciiWrite(char *string, int offset, int length);
|
|
|
|
int Utf8Write(char *string, int offset, int length);
|
2009-12-15 09:22:36 +01:00
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
private:
|
|
|
|
Buffer(size_t length);
|
|
|
|
Buffer(Buffer *parent, size_t start, size_t end);
|
|
|
|
~Buffer();
|
|
|
|
|
|
|
|
const char *data_;
|
|
|
|
size_t length_;
|
|
|
|
struct Blob_ *blob_;
|
|
|
|
};
|
2009-12-15 09:22:36 +01:00
|
|
|
|
2010-01-26 02:55:02 +01:00
|
|
|
|
|
|
|
} // namespace node buffer
|
2009-12-13 08:42:45 +01:00
|
|
|
|
2010-01-28 00:40:09 +01:00
|
|
|
#endif // NODE_BUFFER_H_
|