aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/raw_buffer_store_writer.cpp
blob: 96c97c4043c2db1f09d3644144155492a756c8f5 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "raw_buffer_store_writer.h"
#include "raw_buffer_store.h"
#include <vespa/searchlib/util/bufferwriter.h>

using vespalib::datastore::EntryRef;

namespace search::attribute {

RawBufferStoreWriter::RawBufferStoreWriter(const RawBufferStore& store, BufferWriter& writer)
    : _store(store),
      _writer(writer)
{
}

RawBufferStoreWriter::~RawBufferStoreWriter() = default;

void
RawBufferStoreWriter::write(EntryRef ref)
{
    if (ref.valid()) {
        auto raw = _store.get(ref);
        uint32_t size = raw.size();
        _writer.write(&size, sizeof(size));
        _writer.write(raw.data(), raw.size());
    } else {
        uint32_t size = 0;
        _writer.write(&size, sizeof(size));
    }
}

}