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>
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 
61  public:
63  virtual ~ServiceGenerator();
64 
65  virtual void Generate(io::Printer* printer) = 0;
66 
69 
70  protected:
72 
73  private:
75 };
76 
78  public:
80  Context* context);
82 
83  virtual void Generate(io::Printer* printer);
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 
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: java_service.cc:443
google::protobuf::compiler::java::ServiceGenerator
Definition: java_service.h:60
google::protobuf::compiler::java::ServiceGenerator::IS_ABSTRACT
@ IS_ABSTRACT
Definition: java_service.h:68
google::protobuf::compiler::java::ImmutableServiceGenerator::GetOutput
std::string GetOutput(const MethodDescriptor *method)
Definition: java_service.cc:187
google::protobuf::compiler::java::ImmutableServiceGenerator::name_resolver_
ClassNameResolver * name_resolver_
Definition: java_service.h:130
google::protobuf::compiler::java::Context
Definition: java_context.h:65
google::protobuf::compiler::java::ServiceGenerator::ServiceGenerator
ServiceGenerator(const ServiceDescriptor *descriptor)
Definition: java_service.cc:50
google::protobuf::compiler::java::ImmutableServiceGenerator::context_
Context * context_
Definition: java_service.h:129
string
GLsizei const GLchar *const * string
Definition: glcorearb.h:3083
descriptor
Descriptor * descriptor
Definition: php/ext/google/protobuf/protobuf.h:936
google::protobuf::compiler::java::ServiceGenerator::~ServiceGenerator
virtual ~ServiceGenerator()
Definition: java_service.cc:53
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateNewReflectiveBlockingServiceMethod
void GenerateNewReflectiveBlockingServiceMethod(io::Printer *printer)
Definition: java_service.cc:157
google::protobuf::ServiceDescriptor
Definition: src/google/protobuf/descriptor.h:1152
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateGetPrototype
void GenerateGetPrototype(RequestOrResponse which, io::Printer *printer)
Definition: java_service.cc:282
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateCallBlockingMethod
void GenerateCallBlockingMethod(io::Printer *printer)
Definition: java_service.cc:239
google::protobuf::compiler::java::ServiceGenerator::RESPONSE
@ RESPONSE
Definition: java_service.h:67
google::protobuf::compiler::java::ServiceGenerator::descriptor_
const ServiceDescriptor * descriptor_
Definition: java_service.h:71
google::protobuf::compiler::java::ServiceGenerator::GOOGLE_DISALLOW_EVIL_CONSTRUCTORS
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator)
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateInterface
void GenerateInterface(io::Printer *printer)
Definition: java_service.cc:122
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateNewReflectiveServiceMethod
void GenerateNewReflectiveServiceMethod(io::Printer *printer)
Definition: java_service.cc:130
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateBlockingMethodSignature
void GenerateBlockingMethodSignature(io::Printer *printer, const MethodDescriptor *method)
Definition: java_service.cc:458
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateBlockingStub
void GenerateBlockingStub(io::Printer *printer)
Definition: java_service.cc:383
google::protobuf::MethodDescriptor
Definition: src/google/protobuf/descriptor.h:1234
google::protobuf::compiler::java::ImmutableServiceGenerator
Definition: java_service.h:77
google::protobuf::io::Printer
Definition: printer.h:181
java
google::protobuf::compiler::java::ServiceGenerator::RequestOrResponse
RequestOrResponse
Definition: java_service.h:67
which
int which
Definition: cJSON.h:253
google::protobuf::compiler::java::ImmutableServiceGenerator::Generate
virtual void Generate(io::Printer *printer)
Definition: java_service.cc:64
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateCallMethod
void GenerateCallMethod(io::Printer *printer)
Definition: java_service.cc:192
google::protobuf::compiler::java::ImmutableServiceGenerator::ImmutableServiceGenerator
ImmutableServiceGenerator(const ServiceDescriptor *descriptor, Context *context)
Definition: java_service.cc:56
google::protobuf::compiler::java::ServiceGenerator::REQUEST
@ REQUEST
Definition: java_service.h:67
descriptor.h
google::protobuf::compiler::java::ServiceGenerator::IS_CONCRETE
@ IS_CONCRETE
Definition: java_service.h:68
google::protobuf::compiler::java::ImmutableServiceGenerator::GOOGLE_DISALLOW_EVIL_CONSTRUCTORS
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ImmutableServiceGenerator)
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateGetDescriptorForType
void GenerateGetDescriptorForType(io::Printer *printer)
Definition: java_service.cc:113
google::protobuf::compiler::java::ClassNameResolver
Definition: java_name_resolver.h:56
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateAbstractMethods
void GenerateAbstractMethods(io::Printer *printer)
Definition: java_service.cc:178
google::protobuf::compiler::java::ServiceGenerator::Generate
virtual void Generate(io::Printer *printer)=0
google::protobuf::compiler::java::ServiceGenerator::IsAbstract
IsAbstract
Definition: java_service.h:68
compiler
Definition: plugin.pb.cc:22
google
Definition: data_proto2_to_proto3_util.h:11
google::protobuf::compiler::java::ImmutableServiceGenerator::~ImmutableServiceGenerator
virtual ~ImmutableServiceGenerator()
Definition: java_service.cc:62
google::protobuf::method
const Descriptor::ReservedRange const EnumValueDescriptor method
Definition: src/google/protobuf/descriptor.h:1973
google::protobuf::compiler::java::ImmutableServiceGenerator::GenerateStub
void GenerateStub(io::Printer *printer)
Definition: java_service.cc:328


libaditof
Author(s):
autogenerated on Wed May 21 2025 02:06:55