Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
// 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); |
|
|
|
} // namespace protobuf |
|
} // namespace google::hpb_generator |
|
|
|
#endif // PROTOBUF_COMPILER_HBP_GEN_UTILS_H_
|
|
|