1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef GEN_H
#define GEN_H
#include <Slice/Parser.h>
#include <Slice/JavaUtil.h>
#include <Slice/Checksum.h>
namespace Slice
{
class JavaVisitor : public JavaGenerator, public ParserVisitor
{
public:
virtual ~JavaVisitor();
protected:
JavaVisitor(const std::string&);
//
// Compose the parameter lists for an operation.
//
std::vector<std::string> getParams(const OperationPtr&, const std::string&, bool = false);
std::vector<std::string> getParamsAsync(const OperationPtr&, const std::string&, bool);
std::vector<std::string> getParamsAsyncCB(const OperationPtr&, const std::string&);
//
// Compose the argument lists for an operation.
//
std::vector<std::string> getArgs(const OperationPtr&);
std::vector<std::string> getArgsAsync(const OperationPtr&);
std::vector<std::string> getArgsAsyncCB(const OperationPtr&);
//
// Generate a throws clause containing only non-local exceptions.
//
void writeThrowsClause(const std::string&, const ExceptionList&);
//
// Generate a throws clause for delegate operations containing only
// non-local exceptions.
//
void writeDelegateThrowsClause(const std::string&, const ExceptionList&);
//
// Generate code to compute a hash code for a type.
//
void writeHashCode(::IceUtilInternal::Output&, const TypePtr&, const std::string&, int&,
const std::list<std::string>& = std::list<std::string>());
//
// Generate dispatch and marshalling methods for a class or interface.
//
void writeDispatchAndMarshalling(::IceUtilInternal::Output&, const ClassDefPtr&, bool);
//
// Write doc comments.
//
StringList splitComment(const ContainedPtr&);
void writeDocComment(::IceUtilInternal::Output&, const ContainedPtr&, const std::string&, const std::string& = "");
void writeDocCommentOp(::IceUtilInternal::Output&, const OperationPtr&);
enum ParamDir { InParam, OutParam };
void writeDocCommentAsync(::IceUtilInternal::Output&, const OperationPtr&, ParamDir, const std::string& = "");
void writeDocCommentParam(::IceUtilInternal::Output&, const OperationPtr&, ParamDir);
};
class Gen : private ::IceUtil::noncopyable
{
public:
Gen(const std::string&,
const std::string&,
const std::vector<std::string>&,
const std::string&);
~Gen();
void generate(const UnitPtr&, bool);
void generateTie(const UnitPtr&);
void generateImpl(const UnitPtr&);
void generateImplTie(const UnitPtr&);
static void writeChecksumClass(const std::string&, const std::string&, const ChecksumMap&);
private:
std::string _base;
std::vector<std::string> _includePaths;
std::string _dir;
class OpsVisitor : public JavaVisitor
{
public:
OpsVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
private:
void writeOperations(const ClassDefPtr&, bool);
};
class TieVisitor : public JavaVisitor
{
public:
TieVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
};
class PackageVisitor : public JavaVisitor
{
public:
PackageVisitor(const std::string&);
virtual bool visitModuleStart(const ModulePtr&);
};
class TypesVisitor : public JavaVisitor
{
public:
TypesVisitor(const std::string&, bool);
virtual bool visitClassDefStart(const ClassDefPtr&);
virtual void visitClassDefEnd(const ClassDefPtr&);
virtual bool visitExceptionStart(const ExceptionPtr&);
virtual void visitExceptionEnd(const ExceptionPtr&);
virtual bool visitStructStart(const StructPtr&);
virtual void visitStructEnd(const StructPtr&);
virtual void visitDataMember(const DataMemberPtr&);
virtual void visitEnum(const EnumPtr&);
virtual void visitConst(const ConstPtr&);
private:
//
// Verifies that a getter/setter method does not conflict with an operation.
//
bool validateGetterSetter(const OperationList&, const std::string&, int, const std::string&,
const std::string&);
bool _stream;
};
class HolderVisitor : public JavaVisitor
{
public:
HolderVisitor(const std::string&, bool);
virtual bool visitClassDefStart(const ClassDefPtr&);
virtual bool visitStructStart(const StructPtr&);
virtual void visitSequence(const SequencePtr&);
virtual void visitDictionary(const DictionaryPtr&);
virtual void visitEnum(const EnumPtr&);
private:
void writeHolder(const TypePtr&);
bool _stream;
};
class HelperVisitor : public JavaVisitor
{
public:
HelperVisitor(const std::string&, bool);
virtual bool visitClassDefStart(const ClassDefPtr&);
virtual bool visitStructStart(const StructPtr&);
virtual void visitSequence(const SequencePtr&);
virtual void visitDictionary(const DictionaryPtr&);
virtual void visitEnum(const EnumPtr&);
private:
bool _stream;
};
class ProxyVisitor : public JavaVisitor
{
public:
ProxyVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
virtual void visitClassDefEnd(const ClassDefPtr&);
virtual void visitOperation(const OperationPtr&);
};
class DelegateVisitor : public JavaVisitor
{
public:
DelegateVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
};
class DelegateMVisitor : public JavaVisitor
{
public:
DelegateMVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
};
class DelegateDVisitor : public JavaVisitor
{
public:
DelegateDVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
};
class DispatcherVisitor : public JavaVisitor
{
public:
DispatcherVisitor(const std::string&, bool);
virtual bool visitClassDefStart(const ClassDefPtr&);
private:
bool _stream;
};
class BaseImplVisitor : public JavaVisitor
{
public:
BaseImplVisitor(const std::string&);
protected:
//
// Generate code to emit a local variable declaration and initialize it
// if necessary.
//
void writeDecl(::IceUtilInternal::Output&, const std::string&, const std::string&, const TypePtr&, const StringList&);
//
// Generate code to return a value.
//
void writeReturn(::IceUtilInternal::Output&, const TypePtr&);
//
// Generate an operation.
//
void writeOperation(::IceUtilInternal::Output&, const std::string&, const OperationPtr&, bool);
};
class ImplVisitor : public BaseImplVisitor
{
public:
ImplVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
};
class ImplTieVisitor : public BaseImplVisitor
{
public:
ImplTieVisitor(const std::string&);
virtual bool visitClassDefStart(const ClassDefPtr&);
};
class AsyncVisitor : public JavaVisitor
{
public:
AsyncVisitor(const std::string&);
virtual void visitOperation(const OperationPtr&);
};
};
}
#endif
|