mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
7671a1af3c
Summary: Pull Request resolved: https://github.com/facebook/osquery/pull/5545 This is a JSON serializing formatter for schemer. It represents C++ object as JSON object according to defined in C++ class schema. The implementation based on rapidjson library. It is very simple - just print all key:value pairs directly to rapidjson stream (it could be files stream or string stream). The second method of formatter converts C++ objects directly to JSON in string. Two methods with the same name: `osquery::schemer::toJson` Reviewed By: SAlexandru Differential Revision: D14663996 fbshipit-source-id: 7a902b0777c9094faf39ee3111bbc09d8c3c7a55
30 lines
1011 B
Python
30 lines
1011 B
Python
# Copyright (c) 2014-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed in accordance with the terms specified in
|
|
# the LICENSE file found in the root directory of this source tree.
|
|
|
|
load("//tools/build_defs/oss/osquery:cxx.bzl", "osquery_cxx_library")
|
|
load("//tools/build_defs/oss/osquery:native.bzl", "osquery_target")
|
|
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_target")
|
|
|
|
osquery_cxx_library(
|
|
name = "schemer_json",
|
|
header_namespace = "osquery/utils/schemer/json",
|
|
exported_headers = [
|
|
"schemer_json.h",
|
|
"schemer_json_error.h",
|
|
"schemer_json_impl.h",
|
|
],
|
|
tests = [
|
|
osquery_target("osquery/utils/schemer/json/tests:schemer_json_tests"),
|
|
],
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
osquery_target("osquery/utils/expected:expected"),
|
|
osquery_target("osquery/utils/json:json"),
|
|
osquery_target("osquery/utils/schemer:schemer"),
|
|
osquery_tp_target("rapidjson"),
|
|
],
|
|
)
|