aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/docstore/chunk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/docstore/chunk.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/docstore/chunk.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/searchlib/src/vespa/searchlib/docstore/chunk.cpp b/searchlib/src/vespa/searchlib/docstore/chunk.cpp
index 60255af3521..d7a93f3a31a 100644
--- a/searchlib/src/vespa/searchlib/docstore/chunk.cpp
+++ b/searchlib/src/vespa/searchlib/docstore/chunk.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "chunk.h"
#include "chunkformats.h"
@@ -8,15 +8,16 @@
namespace search {
LidMeta
-Chunk::append(uint32_t lid, const void * buffer, size_t len)
+Chunk::append(uint32_t lid, ConstBufferRef data)
{
vespalib::nbostream & os = getData();
size_t oldSz(os.size());
+ uint32_t len = data.size();
std::lock_guard guard(_lock);
- os << lid << static_cast<uint32_t>(len);
- os.write(buffer, len);
+ os << lid << len;
+ os.write(data.c_str(), len);
_lids.emplace_back(lid, len, oldSz);
- return LidMeta(lid, len);
+ return {lid, len};
}
ssize_t