blob: 154824776eefafa77a25250889f2aa09d0a8b6df [file] [log] [blame]
// 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 <string>
#include <vector>
#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<const protobuf::EnumDescriptor*> SortedEnums(
const protobuf::FileDescriptor* file);
std::vector<const protobuf::Descriptor*> SortedMessages(
const protobuf::FileDescriptor* file);
std::vector<const protobuf::FieldDescriptor*> SortedExtensions(
const protobuf::FileDescriptor* file);
std::vector<const protobuf::FieldDescriptor*> FieldNumberOrder(
const protobuf::Descriptor* message);
std::string ToCamelCase(absl::string_view input, bool lower_first);
std::string DefaultValue(const FieldDescriptor* field);
} // namespace protobuf
} // namespace google::hpb_generator
#endif // PROTOBUF_COMPILER_HBP_GEN_UTILS_H_