File indexing completed on 2026-07-13 08:23:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef GOOGLE_PROTOBUF_COMPILER_KOTLIN_GENERATOR_H__
0011 #define GOOGLE_PROTOBUF_COMPILER_KOTLIN_GENERATOR_H__
0012
0013 #include <cstdint>
0014 #include <string>
0015 #include <vector>
0016
0017 #include "google/protobuf/compiler/java/java_features.pb.h"
0018 #include "google/protobuf/compiler/code_generator.h"
0019 #include "google/protobuf/descriptor.pb.h"
0020
0021
0022 #include "google/protobuf/port_def.inc"
0023
0024 namespace google {
0025 namespace protobuf {
0026 namespace compiler {
0027 namespace kotlin {
0028
0029
0030
0031
0032
0033 class PROTOC_EXPORT KotlinGenerator : public CodeGenerator {
0034 public:
0035 KotlinGenerator();
0036 KotlinGenerator(const KotlinGenerator&) = delete;
0037 KotlinGenerator& operator=(const KotlinGenerator&) = delete;
0038 ~KotlinGenerator() override;
0039
0040
0041 bool Generate(const FileDescriptor* file, const std::string& parameter,
0042 GeneratorContext* context, std::string* error) const override;
0043
0044 uint64_t GetSupportedFeatures() const override;
0045
0046 Edition GetMinimumEdition() const override { return Edition::EDITION_PROTO2; }
0047 Edition GetMaximumEdition() const override {
0048 return Edition::EDITION_2024;
0049 }
0050
0051 std::vector<const FieldDescriptor*> GetFeatureExtensions() const override {
0052 return {GetExtensionReflection(pb::java)};
0053 }
0054
0055 using CodeGenerator::GetResolvedSourceFeatures;
0056 };
0057
0058 }
0059 }
0060 }
0061 }
0062
0063 #include "google/protobuf/port_undef.inc"
0064
0065 #endif