3c327ac2d0
Summary: Closes https://github.com/facebook/rocksdb/pull/2589 Differential Revision: D5431502 Pulled By: siying fbshipit-source-id: 8ebf8c87883daa9daa54b2303d11ce01ab1f6f75
121 lines
3.2 KiB
C++
121 lines
3.2 KiB
C++
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
// 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).
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
#include <assert.h>
|
|
#include <limits>
|
|
#include <stdint.h>
|
|
#include "rocksdb/utilities/json_document.h"
|
|
#include "third-party/fbson/FbsonWriter.h"
|
|
|
|
namespace rocksdb {
|
|
JSONDocumentBuilder::JSONDocumentBuilder()
|
|
: writer_(new fbson::FbsonWriter()) {
|
|
}
|
|
|
|
JSONDocumentBuilder::JSONDocumentBuilder(fbson::FbsonOutStream* out)
|
|
: writer_(new fbson::FbsonWriter(*out)) {
|
|
}
|
|
|
|
void JSONDocumentBuilder::Reset() {
|
|
writer_->reset();
|
|
}
|
|
|
|
bool JSONDocumentBuilder::WriteStartArray() {
|
|
return writer_->writeStartArray();
|
|
}
|
|
|
|
bool JSONDocumentBuilder::WriteEndArray() {
|
|
return writer_->writeEndArray();
|
|
}
|
|
|
|
bool JSONDocumentBuilder::WriteStartObject() {
|
|
return writer_->writeStartObject();
|
|
}
|
|
|
|
bool JSONDocumentBuilder::WriteEndObject() {
|
|
return writer_->writeEndObject();
|
|
}
|
|
|
|
bool JSONDocumentBuilder::WriteKeyValue(const std::string& key,
|
|
const JSONDocument& value) {
|
|
assert(key.size() <= std::numeric_limits<uint8_t>::max());
|
|
size_t bytesWritten = writer_->writeKey(key.c_str(),
|
|
static_cast<uint8_t>(key.size()));
|
|
if (bytesWritten == 0) {
|
|
return false;
|
|
}
|
|
return WriteJSONDocument(value);
|
|
}
|
|
|
|
bool JSONDocumentBuilder::WriteJSONDocument(const JSONDocument& value) {
|
|
switch (value.type()) {
|
|
case JSONDocument::kNull:
|
|
return writer_->writeNull() != 0;
|
|
case JSONDocument::kInt64:
|
|
return writer_->writeInt64(value.GetInt64());
|
|
case JSONDocument::kDouble:
|
|
return writer_->writeDouble(value.GetDouble());
|
|
case JSONDocument::kBool:
|
|
return writer_->writeBool(value.GetBool());
|
|
case JSONDocument::kString:
|
|
{
|
|
bool res = writer_->writeStartString();
|
|
if (!res) {
|
|
return false;
|
|
}
|
|
const std::string& str = value.GetString();
|
|
res = writer_->writeString(str.c_str(),
|
|
static_cast<uint32_t>(str.size()));
|
|
if (!res) {
|
|
return false;
|
|
}
|
|
return writer_->writeEndString();
|
|
}
|
|
case JSONDocument::kArray:
|
|
{
|
|
bool res = WriteStartArray();
|
|
if (!res) {
|
|
return false;
|
|
}
|
|
for (size_t i = 0; i < value.Count(); ++i) {
|
|
res = WriteJSONDocument(value[i]);
|
|
if (!res) {
|
|
return false;
|
|
}
|
|
}
|
|
return WriteEndArray();
|
|
}
|
|
case JSONDocument::kObject:
|
|
{
|
|
bool res = WriteStartObject();
|
|
if (!res) {
|
|
return false;
|
|
}
|
|
for (auto keyValue : value.Items()) {
|
|
WriteKeyValue(keyValue.first, keyValue.second);
|
|
}
|
|
return WriteEndObject();
|
|
}
|
|
default:
|
|
assert(false);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
JSONDocument JSONDocumentBuilder::GetJSONDocument() {
|
|
fbson::FbsonValue* value =
|
|
fbson::FbsonDocument::createValue(writer_->getOutput()->getBuffer(),
|
|
static_cast<uint32_t>(writer_->getOutput()->getSize()));
|
|
return JSONDocument(value, true);
|
|
}
|
|
|
|
JSONDocumentBuilder::~JSONDocumentBuilder() {
|
|
}
|
|
|
|
} // namespace rocksdb
|
|
|
|
#endif // ROCKSDB_LITE
|