// Protocol Buffers - Google's data interchange format // Copyright 2023 Google LLC. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #ifndef PROTOBUF_COMPILER_HBP_GEN_UTILS_H_ #define PROTOBUF_COMPILER_HBP_GEN_UTILS_H_ #include #include #include "google/protobuf/descriptor.pb.h" #include "absl/strings/string_view.h" #include "google/protobuf/compiler/code_generator.h" #include "google/protobuf/descriptor.h" namespace google::protobuf::hpb_generator { namespace protobuf = ::proto2; enum class MessageClassType { kMessage, kMessageCProxy, kMessageProxy, kMessageAccess, }; inline bool IsMapEntryMessage(const protobuf::Descriptor* descriptor) { return descriptor->options().map_entry(); } std::vector SortedEnums( const protobuf::FileDescriptor* file); std::vector SortedMessages( const protobuf::FileDescriptor* file); std::vector SortedExtensions( const protobuf::FileDescriptor* file); std::vector FieldNumberOrder( const protobuf::Descriptor* message); std::string ToCamelCase(absl::string_view input, bool lower_first); } // namespace protobuf } // namespace google::hpb_generator #endif // PROTOBUF_COMPILER_HBP_GEN_UTILS_H_