mirror of https://github.com/facebook/rocksdb.git
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||
|
// This source code is licensed under both the GPLv2 (found in the
|
||
|
// COPYING file in the root directory) and Apache 2.0 License
|
||
|
// (found in the LICENSE.Apache file in the root directory).
|
||
|
|
||
|
#include "db/wide/wide_columns_helper.h"
|
||
|
|
||
|
#include "db/wide/wide_column_serialization.h"
|
||
|
|
||
|
namespace ROCKSDB_NAMESPACE {
|
||
|
void WideColumnsHelper::DumpWideColumns(const WideColumns& columns,
|
||
|
std::ostream& os, bool hex) {
|
||
|
if (columns.empty()) {
|
||
|
return;
|
||
|
}
|
||
|
if (hex) {
|
||
|
os << std::hex;
|
||
|
}
|
||
|
auto it = columns.begin();
|
||
|
os << *it;
|
||
|
for (++it; it != columns.end(); ++it) {
|
||
|
os << ' ' << *it;
|
||
|
}
|
||
|
}
|
||
|
Status WideColumnsHelper::DumpSliceAsWideColumns(const Slice& value,
|
||
|
std::ostream& oss, bool hex) {
|
||
|
WideColumns columns;
|
||
|
Slice value_copy = value;
|
||
|
const Status s = WideColumnSerialization::Deserialize(value_copy, columns);
|
||
|
if (s.ok()) {
|
||
|
DumpWideColumns(columns, oss, hex);
|
||
|
}
|
||
|
return s;
|
||
|
}
|
||
|
|
||
|
} // namespace ROCKSDB_NAMESPACE
|