Automated rollback of commit 281f00e5cd.

PiperOrigin-RevId: 532954746
pull/12842/head
Protobuf Team Bot 2 years ago committed by Copybara-Service
parent 281f00e5cd
commit b55b834d5a
  1. 1
      src/google/protobuf/lite_unittest.cc
  2. 17
      src/google/protobuf/message.h
  3. 9
      src/google/protobuf/message_lite.h
  4. 34
      src/google/protobuf/text_format.cc
  5. 5
      src/google/protobuf/text_format.h
  6. 99
      src/google/protobuf/text_format_unittest.cc
  7. 16
      src/google/protobuf/unittest.proto

@ -36,7 +36,6 @@
#include <string>
#include <utility>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "absl/log/absl_check.h"
#include "absl/strings/match.h"

@ -181,10 +181,10 @@ class CelMapReflectionFriend; // field_backed_map_impl.cc
}
namespace internal {
PROTOBUF_EXPORT enum class Option { None, Short, UTF8 };
class MapFieldPrinterHelper; // text_format.cc
PROTOBUF_EXPORT std::string StringifyMessage(const Message& message,
Option option); // text_format.cc
PROTOBUF_EXPORT void PerformAbslStringify(
const Message& message,
absl::FunctionRef<void(absl::string_view)> append); // text_format.cc
} // namespace internal
namespace util {
class MessageDifferencer;
@ -211,14 +211,6 @@ struct Metadata {
const Reflection* reflection;
};
inline std::string ShortFormat(const Message& message) {
return internal::StringifyMessage(message, internal::Option::Short);
}
inline std::string Utf8Format(const Message& message) {
return internal::StringifyMessage(message, internal::Option::UTF8);
}
namespace internal {
template <class To>
inline To* GetPointerAtOffset(void* message, uint32_t offset) {
@ -348,7 +340,8 @@ class PROTOBUF_EXPORT Message : public MessageLite {
// Do not rely on exact format.
template <typename Sink>
friend void AbslStringify(Sink& sink, const google::protobuf::Message& message) {
sink.Append(StringifyMessage(message, internal::Option::None));
internal::PerformAbslStringify(
message, [&](absl::string_view content) { sink.Append(content); });
}
// Reflection-based methods ----------------------------------------

@ -617,15 +617,6 @@ T* OnShutdownDelete(T* p) {
}
} // namespace internal
inline std::string ShortFormat(const MessageLite& message_lite) {
return message_lite.DebugString();
}
inline std::string Utf8Format(const MessageLite& message_lite) {
return message_lite.DebugString();
}
} // namespace protobuf
} // namespace google

@ -99,13 +99,6 @@ inline void IncrementRedactedFieldCounter() {
num_redacted_field.fetch_add(1, std::memory_order_relaxed);
}
inline void TrimTrailingSpace(std::string& debug_string) {
// Single line mode currently might have an extra space at the end.
if (!debug_string.empty() && debug_string.back() == ' ') {
debug_string.pop_back();
}
}
} // namespace
namespace internal {
@ -147,7 +140,10 @@ std::string Message::ShortDebugString() const {
std::memory_order_relaxed));
printer.PrintToString(*this, &debug_string);
TrimTrailingSpace(debug_string);
// Single line mode currently might have an extra space at the end.
if (!debug_string.empty() && debug_string[debug_string.size() - 1] == ' ') {
debug_string.resize(debug_string.size() - 1);
}
return debug_string;
}
@ -172,34 +168,20 @@ void Message::PrintDebugString() const { printf("%s", DebugString().c_str()); }
namespace internal {
PROTOBUF_EXPORT std::string StringifyMessage(const Message& message,
Option option) {
PROTOBUF_EXPORT void PerformAbslStringify(
const Message& message, absl::FunctionRef<void(absl::string_view)> append) {
// Indicate all scoped reflection calls are from DebugString function.
ScopedReflectionMode scope(ReflectionMode::kDebugString);
// TODO(b/249835002): consider using the single line version for short
TextFormat::Printer printer;
switch (option) {
case Option::Short:
printer.SetSingleLineMode(true);
break;
case Option::UTF8:
printer.SetUseUtf8StringEscaping(true);
break;
case Option::None:
break;
}
printer.SetExpandAny(true);
printer.SetRedactDebugString(true);
printer.SetRandomizeDebugString(true);
printer.SetRootMessageFullName(message.GetDescriptor()->full_name());
std::string result;
printer.PrintToString(message, &result);
if (option == Option::Short) {
TrimTrailingSpace(result);
}
return result;
append(result);
}
} // namespace internal

@ -421,8 +421,9 @@ class PROTOBUF_EXPORT TextFormat {
friend std::string Message::DebugString() const;
friend std::string Message::ShortDebugString() const;
friend std::string Message::Utf8DebugString() const;
friend std::string internal::StringifyMessage(const Message& message,
internal::Option option);
friend void internal::PerformAbslStringify(
const Message& message,
absl::FunctionRef<void(absl::string_view)> append);
// Sets whether silent markers will be inserted.
void SetInsertSilentMarker(bool v) { insert_silent_marker_ = v; }

@ -163,105 +163,6 @@ TEST_F(TextFormatTest, ShortDebugString) {
}
TEST_F(TextFormatTest, ShortFormat) {
unittest::RedactedFields proto;
unittest::TestNestedMessageRedaction redacted_nested_proto;
unittest::TestNestedMessageRedaction unredacted_nested_proto;
redacted_nested_proto.set_optional_nested_string("hello");
unredacted_nested_proto.set_optional_nested_string("world");
proto.set_optional_redacted_string("foo");
proto.set_optional_unredacted_string("bar");
proto.add_repeated_redacted_string("1");
proto.add_repeated_redacted_string("2");
proto.add_repeated_unredacted_string("3");
proto.add_repeated_unredacted_string("4");
*proto.mutable_optional_redacted_message() = redacted_nested_proto;
*proto.mutable_optional_unredacted_message() = unredacted_nested_proto;
unittest::TestNestedMessageRedaction* redacted_message_1 =
proto.add_repeated_redacted_message();
unittest::TestNestedMessageRedaction* redacted_message_2 =
proto.add_repeated_redacted_message();
unittest::TestNestedMessageRedaction* unredacted_message_1 =
proto.add_repeated_unredacted_message();
unittest::TestNestedMessageRedaction* unredacted_message_2 =
proto.add_repeated_unredacted_message();
redacted_message_1->set_optional_nested_string("5");
redacted_message_2->set_optional_nested_string("6");
unredacted_message_1->set_optional_nested_string("7");
unredacted_message_2->set_optional_nested_string("8");
(*proto.mutable_map_redacted_string())["abc"] = "def";
(*proto.mutable_map_unredacted_string())["ghi"] = "jkl";
EXPECT_THAT(
google::protobuf::ShortFormat(proto),
testing::MatchesRegex(
"optional_redacted_string: \\[REDACTED\\] "
"optional_unredacted_string: \"bar\" "
"repeated_redacted_string: \\[REDACTED\\] "
"repeated_redacted_string: \\[REDACTED\\] "
"repeated_unredacted_string: \"3\" "
"repeated_unredacted_string: \"4\" "
"optional_redacted_message: \\[REDACTED\\] "
"optional_unredacted_message \\{ "
"optional_nested_string: \"world\" \\} "
"repeated_redacted_message: \\[REDACTED\\] "
"repeated_unredacted_message \\{ optional_nested_string: \"7\" \\} "
"repeated_unredacted_message \\{ optional_nested_string: \"8\" \\} "
"map_redacted_string: \\[REDACTED\\] "
"map_unredacted_string \\{ key: \"ghi\" value: \"jkl\" \\}"));
}
TEST_F(TextFormatTest, Utf8Format) {
unittest::RedactedFields proto;
unittest::TestNestedMessageRedaction redacted_nested_proto;
unittest::TestNestedMessageRedaction unredacted_nested_proto;
redacted_nested_proto.set_optional_nested_string("\350\260\267\346\255\214");
unredacted_nested_proto.set_optional_nested_string(
"\350\260\267\346\255\214");
proto.set_optional_redacted_string("foo");
proto.set_optional_unredacted_string("bar");
proto.add_repeated_redacted_string("1");
proto.add_repeated_redacted_string("2");
proto.add_repeated_unredacted_string("3");
proto.add_repeated_unredacted_string("4");
*proto.mutable_optional_redacted_message() = redacted_nested_proto;
*proto.mutable_optional_unredacted_message() = unredacted_nested_proto;
unittest::TestNestedMessageRedaction* redacted_message_1 =
proto.add_repeated_redacted_message();
unittest::TestNestedMessageRedaction* redacted_message_2 =
proto.add_repeated_redacted_message();
unittest::TestNestedMessageRedaction* unredacted_message_1 =
proto.add_repeated_unredacted_message();
unittest::TestNestedMessageRedaction* unredacted_message_2 =
proto.add_repeated_unredacted_message();
redacted_message_1->set_optional_nested_string("5");
redacted_message_2->set_optional_nested_string("6");
unredacted_message_1->set_optional_nested_string("7");
unredacted_message_2->set_optional_nested_string("8");
(*proto.mutable_map_redacted_string())["abc"] = "def";
(*proto.mutable_map_unredacted_string())["ghi"] = "jkl";
EXPECT_THAT(google::protobuf::Utf8Format(proto),
testing::MatchesRegex(
"optional_redacted_string: \\[REDACTED\\]\n"
"optional_unredacted_string: \"bar\"\n"
"repeated_redacted_string: \\[REDACTED\\]\n"
"repeated_redacted_string: \\[REDACTED\\]\n"
"repeated_unredacted_string: \"3\"\n"
"repeated_unredacted_string: \"4\"\n"
"optional_redacted_message: \\[REDACTED\\]\n"
"optional_unredacted_message \\{\n "
"optional_nested_string: \"\xE8\xB0\xB7\xE6\xAD\x8C\"\n\\}\n"
"repeated_redacted_message: \\[REDACTED\\]\n"
"repeated_unredacted_message \\{\n "
"optional_nested_string: \"7\"\n\\}\n"
"repeated_unredacted_message \\{\n "
"optional_nested_string: \"8\"\n\\}\n"
"map_redacted_string: \\[REDACTED\\]\n"
"map_unredacted_string \\{\n "
"key: \"ghi\"\n value: \"jkl\"\n\\}\n"));
}
TEST_F(TextFormatTest, ShortPrimitiveRepeateds) {
proto_.set_optional_int32(123);
proto_.add_repeated_int32(456);

@ -1663,22 +1663,8 @@ message BadFieldNames{
optional int32 for = 2;
}
message TestNestedMessageRedaction {
optional string optional_nested_string = 1;
}
message RedactedFields {
message RedactedFields{
optional string optional_redacted_string = 1 [debug_redact = true];
optional string optional_unredacted_string = 2;
repeated string repeated_redacted_string = 3 [debug_redact = true];
repeated string repeated_unredacted_string = 4;
optional TestNestedMessageRedaction optional_redacted_message = 5 [debug_redact = true];
optional TestNestedMessageRedaction optional_unredacted_message = 6;
repeated TestNestedMessageRedaction repeated_redacted_message = 7
[debug_redact = true];
repeated TestNestedMessageRedaction repeated_unredacted_message = 8;
map<string, string> map_redacted_string = 9 [debug_redact = true];
map<string, string> map_unredacted_string = 10;
}
message TestCord{

Loading…
Cancel
Save