diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-09-13 20:51:22 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-09-13 20:51:22 +0200 |
commit | d567ceb9306f8250a28e0b68cc4ca9d196deef75 (patch) | |
tree | bb4d474c109167d225f6ebf18bbe966b80730b26 /src/Buffer.h | |
parent | 984680904368b94a64f45c6e5aa27348cf3d299d (diff) | |
download | dabmod-d567ceb9306f8250a28e0b68cc4ca9d196deef75.tar.gz dabmod-d567ceb9306f8250a28e0b68cc4ca9d196deef75.tar.bz2 dabmod-d567ceb9306f8250a28e0b68cc4ca9d196deef75.zip |
Add some Buffer comments
Diffstat (limited to 'src/Buffer.h')
-rw-r--r-- | src/Buffer.h | 53 |
1 files changed, 36 insertions, 17 deletions
diff --git a/src/Buffer.h b/src/Buffer.h index b1a5d93..4bb157b 100644 --- a/src/Buffer.h +++ b/src/Buffer.h @@ -29,28 +29,47 @@ #include <unistd.h> - +/* Buffer is a container for a byte array, that is memcpy'ed + * on assignment and by the copy-constructor. + * + * The allocation/freeing of the data is handled internally. + */ class Buffer { -protected: - size_t len; - size_t size; - void *data; + protected: + /* Current length of the data in the Buffer */ + size_t len; -public: - Buffer(const Buffer& copy); - Buffer(size_t len = 0, const void *data = NULL); - ~Buffer(); + /* Allocated size of the Buffer */ + size_t size; - Buffer &operator=(const Buffer ©); - Buffer &operator+=(const Buffer ©); + /* Pointer to the data. Memory allocation is entirely + * handled by setLength. + */ + void *data; - void setLength(size_t len); - void setData(const void *data, size_t len); - void appendData(const void *data, size_t len); + public: + Buffer(const Buffer& copy); + Buffer(size_t len = 0, const void *data = NULL); + ~Buffer(); - size_t getLength(); - void *getData(); -}; + /* Resize the buffer, reallocate memory if needed */ + void setLength(size_t len); + + /* Replace the data in the Buffer by the new data given. + * Reallocates memory if needed. + */ + void setData(const void *data, size_t len); + Buffer &operator=(const Buffer ©); + /* Concatenate the current data with the new data given. + * Reallocates memory if needed. + */ + void appendData(const void *data, size_t len); + Buffer &operator+=(const Buffer ©); + + size_t getLength() const { return len; } + void *getData() const { return data; } +}; #endif // BUFFER_H + |