YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/common/json_util.h
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#ifndef YB_COMMON_JSON_UTIL_H
15
#define YB_COMMON_JSON_UTIL_H
16
17
#include <rapidjson/document.h>
18
19
#include "yb/util/status.h"
20
21
namespace yb {
22
23
class QLValuePB;
24
25
namespace common {
26
27
CHECKED_STATUS ConvertQLValuePBToRapidJson(const QLValuePB& value_pb,
28
                                           rapidjson::Value* value,
29
                                           rapidjson::Document::AllocatorType* alloc);
30
31
inline CHECKED_STATUS ConvertQLValuePBToRapidJson(const QLValuePB& value_pb,
32
110
                                                  rapidjson::Document* document) {
33
110
  return ConvertQLValuePBToRapidJson(value_pb, document, &document->GetAllocator());
34
110
}
35
36
std::string WriteRapidJsonToString(const rapidjson::Value& value);
37
std::string PrettyWriteRapidJsonToString(const rapidjson::Value& document);
38
39
} // namespace common
40
} // namespace yb
41
42
#endif // YB_COMMON_JSON_UTIL_H