protobuf/src/google/protobuf/compiler/java/java_service.h
Go to the documentation of this file.
1 // Protocol Buffers - Google's data interchange format
2 // Copyright 2008 Google Inc. All rights reserved.
3 // https://developers.google.com/protocol-buffers/
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // * Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
11 // * Redistributions in binary form must reproduce the above
12 // copyright notice, this list of conditions and the following disclaimer
13 // in the documentation and/or other materials provided with the
14 // distribution.
15 // * Neither the name of Google Inc. nor the names of its
16 // contributors may be used to endorse or promote products derived from
17 // this software without specific prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 // Author: kenton@google.com (Kenton Varda)
32 // Based on original Protocol Buffers design by
33 // Sanjay Ghemawat, Jeff Dean, and others.
34 
35 #ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_SERVICE_H__
36 #define GOOGLE_PROTOBUF_COMPILER_JAVA_SERVICE_H__
37 
38 #include <map>
39 #include <google/protobuf/descriptor.h>
40 
41 namespace google {
42 namespace protobuf {
43 namespace compiler {
44 namespace java {
45 class Context; // context.h
46 class ClassNameResolver; // name_resolver.h
47 } // namespace java
48 } // namespace compiler
49 namespace io {
50 class Printer; // printer.h
51 }
52 } // namespace protobuf
53 } // namespace google
54 
55 namespace google {
56 namespace protobuf {
57 namespace compiler {
58 namespace java {
59 
60 class ServiceGenerator {
61  public:
63  virtual ~ServiceGenerator();
64 
65  virtual void Generate(io::Printer* printer) = 0;
66 
69 
70  protected:
72 
73  private:
75 };
76 
77 class ImmutableServiceGenerator : public ServiceGenerator {
78  public:
80  Context* context);
82 
83  void Generate(io::Printer* printer) override;
84 
85  private:
86  // Generate the getDescriptorForType() method.
88 
89  // Generate a Java interface for the service.
90  void GenerateInterface(io::Printer* printer);
91 
92  // Generate newReflectiveService() method.
94 
95  // Generate newReflectiveBlockingService() method.
97 
98  // Generate abstract method declarations for all methods.
99  void GenerateAbstractMethods(io::Printer* printer);
100 
101  // Generate the implementation of Service.callMethod().
102  void GenerateCallMethod(io::Printer* printer);
103 
104  // Generate the implementation of BlockingService.callBlockingMethod().
106 
107  // Generate the implementations of Service.get{Request,Response}Prototype().
109 
110  // Generate a stub implementation of the service.
111  void GenerateStub(io::Printer* printer);
112 
113  // Generate a method signature, possibly abstract, without body or trailing
114  // semicolon.
115  void GenerateMethodSignature(io::Printer* printer,
116  const MethodDescriptor* method,
117  IsAbstract is_abstract);
118 
119  // Generate a blocking stub interface and implementation of the service.
120  void GenerateBlockingStub(io::Printer* printer);
121 
122  // Generate the method signature for one method of a blocking stub.
124  const MethodDescriptor* method);
125 
126  // Return the output type of the method.
128 
129  Context* context_;
130  ClassNameResolver* name_resolver_;
132 };
133 
134 } // namespace java
135 } // namespace compiler
136 } // namespace protobuf
137 } // namespace google
138 
139 #endif // NET_PROTO2_COMPILER_JAVA_SERVICE_H__
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateMethodSignature
void GenerateMethodSignature(io::Printer *printer, const MethodDescriptor *method, IsAbstract is_abstract)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:442
google::protobuf::compiler::java::ServiceGenerator
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:60
google::protobuf::compiler::java::ImmutableServiceGenerator::GetOutput
std::string GetOutput(const MethodDescriptor *method)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:186
testing::internal::string
::std::string string
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:881
grpc::protobuf::io::Printer
GRPC_CUSTOM_PRINTER Printer
Definition: src/compiler/config.h:54
google::protobuf
Definition: bloaty/third_party/protobuf/benchmarks/util/data_proto2_to_proto3_util.h:12
google::protobuf::compiler::java::ServiceGenerator::ServiceGenerator
ServiceGenerator(const ServiceDescriptor *descriptor)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:49
google::protobuf::compiler::java::ServiceGenerator::IS_CONCRETE
@ IS_CONCRETE
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:68
google::protobuf::compiler::java::ServiceGenerator::REQUEST
@ REQUEST
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:67
google::protobuf::compiler::java::ServiceGenerator::~ServiceGenerator
virtual ~ServiceGenerator()
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:52
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateNewReflectiveBlockingServiceMethod
void GenerateNewReflectiveBlockingServiceMethod(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:156
google::protobuf::compiler::java::ServiceGenerator::descriptor_
const ServiceDescriptor * descriptor_
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:71
google::protobuf::ServiceDescriptor
Definition: bloaty/third_party/protobuf/src/google/protobuf/descriptor.h:1152
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateGetPrototype
void GenerateGetPrototype(RequestOrResponse which, io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:281
python_utils.jobset.which
def which(filename)
Definition: jobset.py:157
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateCallBlockingMethod
void GenerateCallBlockingMethod(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:238
google::protobuf::compiler::java::ImmutableServiceGenerator::context_
Context * context_
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:129
google::protobuf::compiler::java::ServiceGenerator::GOOGLE_DISALLOW_EVIL_CONSTRUCTORS
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator)
io
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateInterface
void GenerateInterface(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:121
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateNewReflectiveServiceMethod
void GenerateNewReflectiveServiceMethod(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:129
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateBlockingMethodSignature
void GenerateBlockingMethodSignature(io::Printer *printer, const MethodDescriptor *method)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:457
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateBlockingStub
void GenerateBlockingStub(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:382
google::protobuf::MethodDescriptor
Definition: bloaty/third_party/protobuf/src/google/protobuf/descriptor.h:1234
google::protobuf::io::Printer
Definition: bloaty/third_party/protobuf/src/google/protobuf/io/printer.h:181
java
google::protobuf::compiler::java::ServiceGenerator::RequestOrResponse
RequestOrResponse
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:67
google::protobuf::compiler::java::ImmutableServiceGenerator::Generate
virtual void Generate(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:63
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateCallMethod
void GenerateCallMethod(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:191
google::protobuf::compiler::java::ImmutableServiceGenerator::ImmutableServiceGenerator
ImmutableServiceGenerator(const ServiceDescriptor *descriptor, Context *context)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:55
google::protobuf::compiler::java::ImmutableServiceGenerator::GOOGLE_DISALLOW_EVIL_CONSTRUCTORS
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ImmutableServiceGenerator)
google::protobuf::compiler::java::ServiceGenerator::IS_ABSTRACT
@ IS_ABSTRACT
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:68
context
grpc::ClientContext context
Definition: istio_echo_server_lib.cc:61
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateGetDescriptorForType
void GenerateGetDescriptorForType(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:112
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateAbstractMethods
void GenerateAbstractMethods(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:177
google::protobuf::compiler::java::ServiceGenerator::Generate
virtual void Generate(io::Printer *printer)=0
google::protobuf::compiler::java::ServiceGenerator::IsAbstract
IsAbstract
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:68
google::protobuf::compiler::java::ImmutableServiceGenerator::name_resolver_
ClassNameResolver * name_resolver_
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:130
descriptor
static const char descriptor[1336]
Definition: certs.upbdefs.c:16
grpc::protobuf::ServiceDescriptor
GRPC_CUSTOM_SERVICEDESCRIPTOR ServiceDescriptor
Definition: include/grpcpp/impl/codegen/config_protobuf.h:88
compiler
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc:21
google
Definition: bloaty/third_party/protobuf/benchmarks/util/data_proto2_to_proto3_util.h:11
google::protobuf::compiler::java::ImmutableServiceGenerator::~ImmutableServiceGenerator
virtual ~ImmutableServiceGenerator()
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:61
google::protobuf::method
const Descriptor::ReservedRange const EnumValueDescriptor method
Definition: bloaty/third_party/protobuf/src/google/protobuf/descriptor.h:1973
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateStub
void GenerateStub(io::Printer *printer)
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc:327
google::protobuf::compiler::java::ServiceGenerator::RESPONSE
@ RESPONSE
Definition: bloaty/third_party/protobuf/src/google/protobuf/compiler/java/java_service.h:67


grpc
Author(s):
autogenerated on Fri May 16 2025 02:59:10