aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/util/rawbuf.h
blob: 0ede792b1771a708aa5b4c67fdd8352054f24197 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/util/compress.h>
#include <cstring>
#include <cstdlib>

namespace search {
/**
 * A buffer with an input point and an output point.  The space
 * is dynamically allocated by the constructor, and can be extended
 * when needed.  Buffer contents may be moved around when there is
 * insufficient room.
 */

class RawBuf
{
private:
    char* _bufStart;        // ref. to start of buffer (don't move this!)
    char* _bufEnd;          // ref. to byte after last in buffer (don't mo)
    char* _bufFillPos;      // ref. to byte where next should be put in
    char* _bufDrainPos;     // ref. to next byte to take out of buffer

    void ensureSizeInternal(size_t size);
    void    expandBuf(size_t needlen);
    /**
     * Convert unsigned int.s 'src', to interNet highendian order, at 'dst'
     * or _bufFillPos.  Update or return ref to next char after those filled in.
     */
    static unsigned char* ToInet(uint32_t src, unsigned char* dst) {
        *(dst + 3) = src;       // The least significant 8 bits
        src >>= 8;          //  of 'src' are stored.
        *(dst + 2) = src;
        src >>= 8;
        *(dst + 1) = src;
        src >>= 8;
        *dst     = src;
        return dst + 4;
    };
    static unsigned char* ToInet(uint64_t src, unsigned char* dst) {
        ToInet(static_cast<uint32_t>(src >> 32), dst);
        ToInet(static_cast<uint32_t>(src & 0xffffffffull), dst + 4);
        return dst + 8;
    };
public:
    RawBuf(const RawBuf &) = delete;
    RawBuf& operator=(const RawBuf &) = delete;
    explicit RawBuf(size_t size)
        : _bufStart(static_cast<char *>(malloc(size))),
          _bufEnd(_bufStart + size),
          _bufFillPos(_bufStart),
          _bufDrainPos(_bufStart)
    { }
    ~RawBuf() {
        free(_bufStart);
    }      // Frees _bufStart, i.e. the char[].

    void    append(const void *data, size_t len) {
        if (__builtin_expect(len != 0, true)) {
            ensureSize(len);
            memcpy(_bufFillPos, data, len);
            _bufFillPos += len;
        }
    }
    void    append(uint8_t byte) {
        ensureSize(1);
        *_bufFillPos++ = byte;
    }
    void    appendCompressedPositiveNumber(uint64_t n) {
        ensureSize(vespalib::compress::Integer::compressedPositiveLength(n));
        _bufFillPos += vespalib::compress::Integer::compressPositive(n, _bufFillPos);
    }
    void    appendCompressedNumber(int64_t n) {
        ensureSize(vespalib::compress::Integer::compressedLength(n));
        _bufFillPos += vespalib::compress::Integer::compress(n, _bufFillPos);
    }
    size_t      GetFreeLen() const { return _bufEnd - _bufFillPos; }
    const char *GetDrainPos() const { return _bufDrainPos; }
    char *      GetWritableFillPos(size_t len) { preAlloc(len); return _bufFillPos; }
    void    preAlloc(size_t len);   // Ensure room for 'len' more bytes.
    void    reset() { _bufDrainPos = _bufFillPos = _bufStart; }
    size_t  GetUsedLen() const { return _bufFillPos - _bufDrainPos; }
    void    Fill(size_t len) { _bufFillPos += len; }

    void ensureSize(size_t size) {
        if (static_cast<size_t>(_bufEnd - _bufFillPos) < size) {
            ensureSizeInternal(size);
        }
    }

    void Put64ToInet(uint64_t src) {
        ensureSize(8);
        _bufFillPos = reinterpret_cast<char *>(ToInet(src,reinterpret_cast<unsigned char*>(_bufFillPos)));
    };


};

}