PiperOrigin-RevId: 541016462pull/13171/head
parent
ee24ef2300
commit
ba500734c3
9 changed files with 95 additions and 146 deletions
@ -0,0 +1,84 @@ |
||||
# TODO(haberman): describe this package. |
||||
|
||||
load( |
||||
"//bazel:build_defs.bzl", |
||||
"UPB_DEFAULT_COPTS", |
||||
) |
||||
load( |
||||
"//bazel:upb_proto_library.bzl", |
||||
"upb_proto_library", |
||||
"upb_proto_reflection_library", |
||||
) |
||||
|
||||
cc_library( |
||||
name = "json", |
||||
srcs = [ |
||||
"decode.c", |
||||
"encode.c", |
||||
], |
||||
hdrs = [ |
||||
"decode.h", |
||||
"encode.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
"//:collections", |
||||
"//:lex", |
||||
"//:port", |
||||
"//:reflection", |
||||
"//:upb", |
||||
], |
||||
) |
||||
|
||||
cc_test( |
||||
name = "encode_test", |
||||
srcs = ["encode_test.cc"], |
||||
deps = [ |
||||
":json", |
||||
":json_test_upb_proto", |
||||
":json_test_upb_proto_reflection", |
||||
":struct_upb_proto", |
||||
"//:reflection", |
||||
"//:upb", |
||||
"@com_google_googletest//:gtest_main", |
||||
], |
||||
) |
||||
|
||||
proto_library( |
||||
name = "json_test_proto", |
||||
testonly = 1, |
||||
srcs = ["test.proto"], |
||||
deps = ["@com_google_protobuf//:struct_proto"], |
||||
) |
||||
|
||||
upb_proto_library( |
||||
name = "json_test_upb_proto", |
||||
testonly = 1, |
||||
deps = [":json_test_proto"], |
||||
) |
||||
|
||||
upb_proto_reflection_library( |
||||
name = "json_test_upb_proto_reflection", |
||||
testonly = 1, |
||||
deps = [":json_test_proto"], |
||||
) |
||||
|
||||
cc_test( |
||||
name = "json_decode_test", |
||||
srcs = ["decode_test.cc"], |
||||
deps = [ |
||||
":json", |
||||
":json_test_upb_proto", |
||||
":json_test_upb_proto_reflection", |
||||
":struct_upb_proto", |
||||
"//:reflection", |
||||
"//:upb", |
||||
"@com_google_googletest//:gtest_main", |
||||
], |
||||
) |
||||
|
||||
upb_proto_library( |
||||
name = "struct_upb_proto", |
||||
deps = ["@com_google_protobuf//:struct_proto"], |
||||
) |
@ -1,36 +0,0 @@ |
||||
/*
|
||||
* Copyright (c) 2009-2021, Google LLC |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* * Neither the name of Google LLC nor the |
||||
* names of its contributors may be used to endorse or promote products |
||||
* derived from this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY DIRECT, |
||||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
|
||||
// This header is deprecated, use upb/json/decode.h instead
|
||||
// IWYU pragma: private, include "upb/json/decode.h"
|
||||
|
||||
#ifndef UPB_JSONDECODE_H_ |
||||
#define UPB_JSONDECODE_H_ |
||||
|
||||
#include "upb/json/decode.h" |
||||
|
||||
#endif /* UPB_JSONDECODE_H_ */ |
@ -1,36 +0,0 @@ |
||||
/*
|
||||
* Copyright (c) 2009-2021, Google LLC |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* * Neither the name of Google LLC nor the |
||||
* names of its contributors may be used to endorse or promote products |
||||
* derived from this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY DIRECT, |
||||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
|
||||
// This header is deprecated, use upb/json/encode.h instead
|
||||
// IWYU pragma: private, include "upb/json/encode.h"
|
||||
|
||||
#ifndef UPB_JSONENCODE_H_ |
||||
#define UPB_JSONENCODE_H_ |
||||
|
||||
#include "upb/json/encode.h" |
||||
|
||||
#endif /* UPB_JSONENCODE_H_ */ |
Loading…
Reference in new issue