0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 08:30:56 +01:00
mongodb/util/builder.h

64 lines
1.3 KiB
C
Raw Normal View History

2007-10-20 01:35:48 +02:00
/* builder.h
*/
#include "../stdafx.h"
class BufBuilder {
public:
2007-10-28 19:42:59 +01:00
BufBuilder(int initsize = 32768) : size(initsize) {
data = (char *) malloc(size);
l = 0;
}
~BufBuilder() {
if( data ) {
free(data);
data = 0;
}
}
/* leave room for some stuff later */
void skip(int n) { grow(n); }
/* note this may be deallocated (realloced) if you keep writing. */
char* buf() { return data; }
/* assume ownership of the buffer - you must then free it */
void decouple() { data = 0; }
template<class T> void append(T j) { *((T*)grow(sizeof(T))) = j; }
void append(short j) { append<short>(j); }
void append(int j) { append<int>(j); }
void append(unsigned j) { append<unsigned>(j); }
void append(bool j) { append<bool>(j); }
void append(double j) { append<double>(j); }
void append(void *src, int len) { memcpy(grow(len), src, len); }
void append(const char *str) {
append((void*) str, strlen(str)+1);
}
int len() { return l; }
private:
/* returns the pre-grow write position */
char* grow(int by) {
int oldlen = l;
l += by;
if( l > size ) {
int a = size * 2;
if( l > a )
a = l + 16 * 1024;
assert( a < 64 * 1024 * 1024 );
data = (char *) realloc(data, a);
size= a;
}
return data + oldlen;
}
char *data;
int l;
int size;
2007-10-20 01:35:48 +02:00
};