1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef GOOGLE_PROTOBUF_COMPILER_PHP_GENERATOR_H__
- #define GOOGLE_PROTOBUF_COMPILER_PHP_GENERATOR_H__
- #include <google/protobuf/compiler/code_generator.h>
- #include <google/protobuf/descriptor.h>
- #include <string>
- #include <google/protobuf/port_def.inc>
- namespace google {
- namespace protobuf {
- namespace compiler {
- namespace php {
- struct Options;
- class PROTOC_EXPORT Generator : public CodeGenerator {
- public:
- virtual bool Generate(
- const FileDescriptor* file,
- const std::string& parameter,
- GeneratorContext* generator_context,
- std::string* error) const override;
- bool GenerateAll(const std::vector<const FileDescriptor*>& files,
- const std::string& parameter,
- GeneratorContext* generator_context,
- std::string* error) const override;
- uint64_t GetSupportedFeatures() const override {
- return FEATURE_PROTO3_OPTIONAL;
- }
- private:
- bool Generate(
- const FileDescriptor* file,
- const Options& options,
- GeneratorContext* generator_context,
- std::string* error) const;
- };
- PROTOC_EXPORT std::string GeneratedClassName(const Descriptor* desc);
- PROTOC_EXPORT std::string GeneratedClassName(const EnumDescriptor* desc);
- PROTOC_EXPORT std::string GeneratedClassName(const ServiceDescriptor* desc);
- inline bool IsWrapperType(const FieldDescriptor* descriptor) {
- return descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE &&
- descriptor->message_type()->file()->name() == "google/protobuf/wrappers.proto";
- }
- }
- }
- }
- }
- #include <google/protobuf/port_undef.inc>
- #endif
|