forked from rabbitmq/rabbitmq-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codegen.py
593 lines (507 loc) · 23.3 KB
/
codegen.py
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
## The contents of this file are subject to the Mozilla Public License
## Version 1.1 (the "License"); you may not use this file except in
## compliance with the License. You may obtain a copy of the License
## at http://www.mozilla.org/MPL/
##
## Software distributed under the License is distributed on an "AS IS"
## basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
## the License for the specific language governing rights and
## limitations under the License.
##
## The Original Code is RabbitMQ.
##
## The Initial Developer of the Original Code is GoPivotal, Inc.
## Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
##
from __future__ import nested_scopes
import re
import sys
sys.path.append("../rabbitmq-codegen") # in case we're next to an experimental revision
sys.path.append("codegen") # in case we're building from a distribution package
from amqp_codegen import *
class BogusDefaultValue(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
def java_constant_name(c):
return '_'.join(re.split('[- ]', c.upper()))
javaTypeMap = {
'octet': 'int',
'shortstr': 'String',
'longstr': 'LongString',
'short': 'int',
'long': 'int',
'longlong': 'long',
'bit': 'boolean',
'table': 'Map<String,Object>',
'timestamp': 'Date'
}
javaTypesToCheckForNull = set([
'String',
'LongString',
'Date'
])
# the scalar types in the range of javaTypeMap must be in javaScalarTypes
javaScalarTypes = set([
'int',
'long',
'boolean'
])
# the javaScalarTypes must be in the domain of javaBoxedTypeMap
javaBoxedTypeMap = {
'int': 'Integer',
'long': 'Long',
'boolean': 'Boolean'
}
def java_boxed_type(jtype):
if jtype in javaScalarTypes:
return javaBoxedTypeMap[jtype]
else:
return jtype
def java_type(spec, domain):
return javaTypeMap[spec.resolveDomain(domain)]
def java_name(upperNext, name):
out = ''
for c in name:
if not c.isalnum():
upperNext = True
elif upperNext:
out += c.upper()
upperNext = False
else:
out += c
return out
def java_class_name(name):
return java_name(True, name)
def java_getter_name(name):
return java_name(False, 'get-' + name)
def java_field_name(name):
return java_name(False, name)
def java_field_type(spec, domain):
return javaTypeMap[spec.resolveDomain(domain)]
def java_field_default_value(jtype, value):
if jtype == 'int':
return value
elif jtype == 'boolean':
return ('%s'% (value)).lower()
elif jtype == 'String':
return '"%s"' % (value)
elif jtype == 'LongString':
return 'LongStringHelper.asLongString("%s")' % (value)
elif jtype == 'long':
return '%sL' % (value)
elif jtype == 'Map<String,Object>':
return "null"
else:
raise BogusDefaultValue("JSON provided default value %s for suspicious type %s" % (value, jtype))
def typeNameDefault(spec, a):
fieldType = java_field_type(spec, a.domain)
defaultVal = java_field_default_value(fieldType, a.defaultvalue)
return (fieldType, java_field_name(a.name), defaultVal)
def nullCheckedFields(spec, m):
fieldsToNullCheck = set([])
for a in m.arguments:
(jfType, jfName, jfDefault) = typeNameDefault(spec,a)
if jfType in javaTypesToCheckForNull:
fieldsToNullCheck.add(jfName)
return fieldsToNullCheck
#---------------------------------------------------------------------------
def printFileHeader():
print """// NOTE: This -*- java -*- source code is autogenerated from the AMQP
// specification!
//
// The contents of this file are subject to the Mozilla Public License
// Version 1.1 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License
// at http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
// the License for the specific language governing rights and
// limitations under the License.
//
// The Original Code is RabbitMQ.
//
// The Initial Developer of the Original Code is GoPivotal, Inc.
// Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
//
"""
def genJavaApi(spec):
def printHeader():
printFileHeader()
print "package com.rabbitmq.client;"
print
print "import java.io.DataInputStream;"
print "import java.io.IOException;"
print "import java.util.Collections;"
print "import java.util.HashMap;"
print "import java.util.Map;"
print "import java.util.Date;"
print
print "import com.rabbitmq.client.impl.ContentHeaderPropertyWriter;"
print "import com.rabbitmq.client.impl.ContentHeaderPropertyReader;"
print "import com.rabbitmq.client.impl.LongStringHelper;"
def printProtocolClass():
print
print " public static class PROTOCOL {"
print " public static final int MAJOR = %i;" % spec.major
print " public static final int MINOR = %i;" % spec.minor
print " public static final int REVISION = %i;" % spec.revision
print " public static final int PORT = %i;" % spec.port
print " }"
def printConstants():
print
for (c,v,cls) in spec.constants: print " public static final int %s = %i;" % (java_constant_name(c), v)
def builder(c,m):
def ctorCall(c,m):
ctor_call = "com.rabbitmq.client.impl.AMQImpl.%s.%s" % (java_class_name(c.name),java_class_name(m.name))
ctor_arg_list = [ java_field_name(a.name) for a in m.arguments ]
print " return new %s(%s);" % (ctor_call, ", ".join(ctor_arg_list))
def genFields(spec, m):
for a in m.arguments:
(jfType, jfName, jfDefault) = typeNameDefault(spec, a)
if a.defaultvalue != None:
print " private %s %s = %s;" % (jfType, jfName, jfDefault)
else:
print " private %s %s;" % (jfType, jfName)
def genArgMethods(spec, m):
for a in m.arguments:
(jfType, jfName, jfDefault) = typeNameDefault(spec, a)
print " public Builder %s(%s %s)" % (jfName, jfType, jfName)
print " { this.%s = %s; return this; }" % (jfName, jfName)
if jfType == "boolean":
print " public Builder %s()" % (jfName)
print " { return this.%s(true); }" % (jfName)
elif jfType == "LongString":
print " public Builder %s(String %s)" % (jfName, jfName)
print " { return this.%s(LongStringHelper.asLongString(%s)); }" % (jfName, jfName)
def genBuildMethod(c,m):
print " public %s build() {" % (java_class_name(m.name))
ctorCall(c,m)
print " }"
print
print " // Builder for instances of %s.%s" % (java_class_name(c.name), java_class_name(m.name))
print " public static final class Builder"
print " {"
genFields(spec, m)
print
print " public Builder() { }"
print
genArgMethods(spec, m)
genBuildMethod(c,m)
print " }"
def printClassInterfaces():
for c in spec.classes:
print
print " public static class %s {" % (java_class_name(c.name))
for m in c.allMethods():
print " public interface %s extends Method {" % ((java_class_name(m.name)))
for a in m.arguments:
print " %s %s();" % (java_field_type(spec, a.domain), java_getter_name(a.name))
builder(c,m)
print " }"
print " }"
def printReadProperties(c):
if c.fields:
for f in c.fields:
print " boolean %s_present = reader.readPresence();" % (java_field_name(f.name))
print
print " reader.finishPresence();"
if c.fields:
print
for f in c.fields:
(jfName, jfClass) = (java_field_name(f.name), java_class_name(f.domain))
print " this.%s = %s_present ? reader.read%s() : null;" % (jfName, jfName, jfClass)
def printWritePropertiesTo(c):
print
print " public void writePropertiesTo(ContentHeaderPropertyWriter writer)"
print " throws IOException"
print " {"
if c.fields:
for f in c.fields:
print " writer.writePresence(this.%s != null);" % (java_field_name(f.name))
print
print " writer.finishPresence();"
if c.fields:
print
for f in c.fields:
(jfName, jfClass) = (java_field_name(f.name), java_class_name(f.domain))
print " if (this.%s != null) writer.write%s(this.%s);" % (jfName, jfClass, jfName)
print " }"
def printAppendPropertyDebugStringTo(c):
appendList = [ "%s=\")\n .append(this.%s)\n .append(\""
% (f.name, java_field_name(f.name))
for f in c.fields ]
print
print " public void appendPropertyDebugStringTo(StringBuilder acc) {"
print " acc.append(\"(%s)\");" % (", ".join(appendList))
print " }"
def printPropertiesBuilderClass(c):
def printBuilderSetter(fieldType, fieldName):
print " public Builder %s(%s %s)" % (fieldName, java_boxed_type(fieldType), fieldName)
print " { this.%s = %s; return this; }" % (fieldName, fieldName)
if fieldType == "boolean":
print " public Builder %s()" % (fieldName)
print " { return this.%s(true); }" % (fieldName)
elif fieldType == "LongString":
print " public Builder %s(String %s)" % (fieldName, fieldName)
print " { return this.%s(LongStringHelper.asLongString(%s)); }" % (fieldName, fieldName)
print
print " public static final class Builder {"
# fields
for f in c.fields:
(fType, fName) = (java_field_type(spec, f.domain), java_field_name(f.name))
print " private %s %s;" % (java_boxed_type(fType), fName)
# ctor
print
print " public Builder() {};"
# setters
print
for f in c.fields:
printBuilderSetter(java_field_type(spec, f.domain), java_field_name(f.name))
print
jClassName = java_class_name(c.name)
# build()
objName = "%sProperties" % (jClassName)
ctor_parm_list = [ java_field_name(f.name) for f in c.fields ]
print " public %s build() {" % (objName)
print " return new %s" % (objName)
print " ( %s" % ("\n , ".join(ctor_parm_list))
print " );"
print " }"
print " }"
def printPropertiesBuilder(c):
print
print " public Builder builder() {"
print " Builder builder = new Builder()"
setFieldList = [ "%s(%s)" % (fn, fn)
for fn in [ java_field_name(f.name) for f in c.fields ]
]
print " .%s;" % ("\n .".join(setFieldList))
print " return builder;"
print " }"
def printPropertiesClass(c):
def printGetter(fieldType, fieldName):
capFieldName = fieldName[0].upper() + fieldName[1:]
print " public %s get%s() { return this.%s; }" % (java_boxed_type(fieldType), capFieldName, fieldName)
def printSetter(fieldType, fieldName):
capFieldName = fieldName[0].upper() + fieldName[1:]
print " @Deprecated"
if fieldType == "Map<String,Object>":
print " public void set%s(%s %s)" % (capFieldName, fieldType, fieldName)
print " { this.%s = %s==null ? null : Collections.unmodifiableMap(new HashMap<String,Object>(%s)); }" % (fieldName, fieldName, fieldName)
else:
print " public void set%s(%s %s) { this.%s = %s; }" % (capFieldName, java_boxed_type(fieldType), fieldName, fieldName, fieldName)
jClassName = java_class_name(c.name)
print
print " public static class %sProperties extends com.rabbitmq.client.impl.AMQ%sProperties {" % (jClassName, jClassName)
#property fields
for f in c.fields:
(fType, fName) = (java_boxed_type(java_field_type(spec, f.domain)), java_field_name(f.name))
print " private %s %s;" % (fType, fName)
#explicit constructor
if c.fields:
print
consParmList = [ "%s %s" % (java_boxed_type(java_field_type(spec,f.domain)), java_field_name(f.name))
for f in c.fields ]
print " public %sProperties(" % (jClassName)
print " %s)" % (",\n ".join(consParmList))
print " {"
for f in c.fields:
(fType, fName) = (java_field_type(spec, f.domain), java_field_name(f.name))
if fType == "Map<String,Object>":
print " this.%s = %s==null ? null : Collections.unmodifiableMap(new HashMap<String,Object>(%s));" % (fName, fName, fName)
else:
print " this.%s = %s;" % (fName, fName)
print " }"
#datainputstream constructor
print
print " public %sProperties(DataInputStream in) throws IOException {" % (jClassName)
print " super(in);"
print " ContentHeaderPropertyReader reader = new ContentHeaderPropertyReader(in);"
printReadProperties(c)
print " }"
# default constructor
print " public %sProperties() {}" % (jClassName)
#class properties
print " public int getClassId() { return %i; }" % (c.index)
print " public String getClassName() { return \"%s\"; }" % (c.name)
printPropertiesBuilder(c)
#accessor methods
print
for f in c.fields:
(jType, jName) = (java_field_type(spec, f.domain), java_field_name(f.name))
printGetter(jType, jName)
printSetter(jType, jName)
printWritePropertiesTo(c)
printAppendPropertyDebugStringTo(c)
printPropertiesBuilderClass(c)
print " }"
def printPropertiesClasses():
for c in spec.classes:
if c.hasContentProperties:
printPropertiesClass(c)
printHeader()
print
print "public interface AMQP {"
printProtocolClass()
printConstants()
printClassInterfaces()
printPropertiesClasses()
print "}"
#--------------------------------------------------------------------------------
def genJavaImpl(spec):
def printHeader():
printFileHeader()
print "package com.rabbitmq.client.impl;"
print
print "import java.io.IOException;"
print "import java.io.DataInputStream;"
print "import java.util.Collections;"
print "import java.util.HashMap;"
print "import java.util.Map;"
print
print "import com.rabbitmq.client.AMQP;"
print "import com.rabbitmq.client.LongString;"
print "import com.rabbitmq.client.UnknownClassOrMethodId;"
print "import com.rabbitmq.client.UnexpectedMethodError;"
def printClassMethods(spec, c):
print
print " public static class %s {" % (java_class_name(c.name))
print " public static final int INDEX = %s;" % (c.index)
for m in c.allMethods():
def getters():
if m.arguments:
print
for a in m.arguments:
print " public %s %s() { return %s; }" % (java_field_type(spec,a.domain), java_getter_name(a.name), java_field_name(a.name))
def constructors():
print
argList = [ "%s %s" % (java_field_type(spec,a.domain),java_field_name(a.name)) for a in m.arguments ]
print " public %s(%s) {" % (java_class_name(m.name), ", ".join(argList))
fieldsToNullCheckInCons = nullCheckedFields(spec, m)
for f in fieldsToNullCheckInCons:
print " if (%s == null)" % (f)
print " throw new IllegalStateException(\"Invalid configuration: '%s' must be non-null.\");" % (f)
for a in m.arguments:
(jfType, jfName) = (java_field_type(spec, a.domain), java_field_name(a.name))
if jfType == "Map<String,Object>":
print " this.%s = %s==null ? null : Collections.unmodifiableMap(new HashMap<String,Object>(%s));" % (jfName, jfName, jfName)
else:
print " this.%s = %s;" % (jfName, jfName)
print " }"
consArgs = [ "rdr.read%s()" % (java_class_name(spec.resolveDomain(a.domain))) for a in m.arguments ]
print " public %s(MethodArgumentReader rdr) throws IOException {" % (java_class_name(m.name))
print " this(%s);" % (", ".join(consArgs))
print " }"
def others():
print
print " public int protocolClassId() { return %s; }" % (c.index)
print " public int protocolMethodId() { return %s; }" % (m.index)
print " public String protocolMethodName() { return \"%s.%s\";}" % (c.name, m.name)
print
print " public boolean hasContent() { return %s; }" % (trueOrFalse(m.hasContent))
print
print " public Object visit(MethodVisitor visitor) throws IOException"
print " { return visitor.visit(this); }"
def trueOrFalse(truthVal):
if truthVal:
return "true"
else:
return "false"
def argument_debug_string():
appendList = [ "%s=\")\n .append(this.%s)\n .append(\""
% (a.name, java_field_name(a.name))
for a in m.arguments ]
print
print " public void appendArgumentDebugStringTo(StringBuilder acc) {"
print " acc.append(\"(%s)\");" % ", ".join(appendList)
print " }"
def write_arguments():
print
print " public void writeArgumentsTo(MethodArgumentWriter writer)"
print " throws IOException"
print " {"
for a in m.arguments:
print " writer.write%s(this.%s);" % (java_class_name(spec.resolveDomain(a.domain)), java_field_name(a.name))
print " }"
#start
print
print " public static class %s" % (java_class_name(m.name),)
print " extends Method"
print " implements com.rabbitmq.client.AMQP.%s.%s" % (java_class_name(c.name), java_class_name(m.name))
print " {"
print " public static final int INDEX = %s;" % (m.index)
print
for a in m.arguments:
print " private final %s %s;" % (java_field_type(spec, a.domain), java_field_name(a.name))
getters()
constructors()
others()
argument_debug_string()
write_arguments()
print " }"
print " }"
def printMethodVisitor():
print
print " public interface MethodVisitor {"
for c in spec.allClasses():
for m in c.allMethods():
print " Object visit(%s.%s x) throws IOException;" % (java_class_name(c.name), java_class_name(m.name))
print " }"
#default method visitor
print
print " public static class DefaultMethodVisitor implements MethodVisitor {"
for c in spec.allClasses():
for m in c.allMethods():
print " public Object visit(%s.%s x) throws IOException { throw new UnexpectedMethodError(x); }" % (java_class_name(c.name), java_class_name(m.name))
print " }"
def printMethodArgumentReader():
print
print " public static Method readMethodFrom(DataInputStream in) throws IOException {"
print " int classId = in.readShort();"
print " int methodId = in.readShort();"
print " switch (classId) {"
for c in spec.allClasses():
print " case %s:" % (c.index)
print " switch (methodId) {"
for m in c.allMethods():
fq_name = java_class_name(c.name) + '.' + java_class_name(m.name)
print " case %s: {" % (m.index)
print " return new %s(new MethodArgumentReader(new ValueReader(in)));" % (fq_name)
print " }"
print " default: break;"
print " } break;"
print " }"
print
print " throw new UnknownClassOrMethodId(classId, methodId);"
print " }"
def printContentHeaderReader():
print
print " public static AMQContentHeader readContentHeaderFrom(DataInputStream in) throws IOException {"
print " int classId = in.readShort();"
print " switch (classId) {"
for c in spec.allClasses():
if c.fields:
print " case %s: return new %sProperties(in);" %(c.index, (java_class_name(c.name)))
print " default: break;"
print " }"
print
print " throw new UnknownClassOrMethodId(classId);"
print " }"
printHeader()
print
print "public class AMQImpl implements AMQP {"
for c in spec.allClasses(): printClassMethods(spec,c)
printMethodVisitor()
printMethodArgumentReader()
printContentHeaderReader()
print "}"
#--------------------------------------------------------------------------------
def generateJavaApi(specPath):
genJavaApi(AmqpSpec(specPath))
def generateJavaImpl(specPath):
genJavaImpl(AmqpSpec(specPath))
if __name__ == "__main__":
do_main(generateJavaApi, generateJavaImpl)