75 lines
2.7 KiB
C
75 lines
2.7 KiB
C
|
// Protocol Buffers - Google's data interchange format
|
||
|
// Copyright 2008 Google Inc. 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 GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_MESSAGE_FIELD_H__
|
||
|
#define GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_MESSAGE_FIELD_H__
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "absl/container/btree_set.h"
|
||
|
#include "absl/container/flat_hash_set.h"
|
||
|
#include "google/protobuf/compiler/objectivec/field.h"
|
||
|
#include "google/protobuf/compiler/objectivec/options.h"
|
||
|
#include "google/protobuf/descriptor.h"
|
||
|
|
||
|
namespace google {
|
||
|
namespace protobuf {
|
||
|
namespace compiler {
|
||
|
namespace objectivec {
|
||
|
|
||
|
class MessageFieldGenerator : public ObjCObjFieldGenerator {
|
||
|
friend FieldGenerator* FieldGenerator::Make(
|
||
|
const FieldDescriptor* field,
|
||
|
const GenerationOptions& generation_options);
|
||
|
|
||
|
protected:
|
||
|
MessageFieldGenerator(const FieldDescriptor* descriptor,
|
||
|
const GenerationOptions& generation_options);
|
||
|
~MessageFieldGenerator() override = default;
|
||
|
|
||
|
MessageFieldGenerator(const MessageFieldGenerator&) = delete;
|
||
|
MessageFieldGenerator& operator=(const MessageFieldGenerator&) = delete;
|
||
|
|
||
|
public:
|
||
|
void DetermineForwardDeclarations(absl::btree_set<std::string>* fwd_decls,
|
||
|
bool include_external_types) const override;
|
||
|
void DetermineObjectiveCClassDefinitions(
|
||
|
absl::btree_set<std::string>* fwd_decls) const override;
|
||
|
void DetermineNeededFiles(
|
||
|
absl::flat_hash_set<const FileDescriptor*>* deps) const override;
|
||
|
};
|
||
|
|
||
|
class RepeatedMessageFieldGenerator : public RepeatedFieldGenerator {
|
||
|
friend FieldGenerator* FieldGenerator::Make(
|
||
|
const FieldDescriptor* field,
|
||
|
const GenerationOptions& generation_options);
|
||
|
|
||
|
protected:
|
||
|
RepeatedMessageFieldGenerator(const FieldDescriptor* descriptor,
|
||
|
const GenerationOptions& generation_options);
|
||
|
~RepeatedMessageFieldGenerator() override = default;
|
||
|
|
||
|
RepeatedMessageFieldGenerator(const RepeatedMessageFieldGenerator&) = delete;
|
||
|
RepeatedMessageFieldGenerator operator=(
|
||
|
const RepeatedMessageFieldGenerator&) = delete;
|
||
|
|
||
|
public:
|
||
|
void DetermineForwardDeclarations(absl::btree_set<std::string>* fwd_decls,
|
||
|
bool include_external_types) const override;
|
||
|
void DetermineObjectiveCClassDefinitions(
|
||
|
absl::btree_set<std::string>* fwd_decls) const override;
|
||
|
void DetermineNeededFiles(
|
||
|
absl::flat_hash_set<const FileDescriptor*>* deps) const override;
|
||
|
};
|
||
|
|
||
|
} // namespace objectivec
|
||
|
} // namespace compiler
|
||
|
} // namespace protobuf
|
||
|
} // namespace google
|
||
|
|
||
|
#endif // GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_MESSAGE_FIELD_H__
|