1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.devtools.generators; |
17 | |
|
18 | |
import com.sun.codemodel.ClassType; |
19 | |
import com.sun.codemodel.JAnnotationArrayMember; |
20 | |
import com.sun.codemodel.JAnnotationUse; |
21 | |
import com.sun.codemodel.JBlock; |
22 | |
import com.sun.codemodel.JClass; |
23 | |
import com.sun.codemodel.JCodeModel; |
24 | |
import com.sun.codemodel.JConditional; |
25 | |
import com.sun.codemodel.JDefinedClass; |
26 | |
import com.sun.codemodel.JDocComment; |
27 | |
import com.sun.codemodel.JExpr; |
28 | |
import com.sun.codemodel.JFieldRef; |
29 | |
import com.sun.codemodel.JFieldVar; |
30 | |
import com.sun.codemodel.JInvocation; |
31 | |
import com.sun.codemodel.JMethod; |
32 | |
import com.sun.codemodel.JMod; |
33 | |
import com.sun.codemodel.JType; |
34 | |
import com.sun.codemodel.JVar; |
35 | |
import com.sun.codemodel.writer.SingleStreamCodeWriter; |
36 | |
import org.apache.commons.lang.builder.EqualsBuilder; |
37 | |
import org.apache.commons.lang.builder.HashCodeBuilder; |
38 | |
import org.apache.commons.lang.builder.ToStringBuilder; |
39 | |
import org.kuali.rice.core.api.CoreConstants; |
40 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
41 | |
import org.kuali.rice.core.api.mo.ModelBuilder; |
42 | |
|
43 | |
import javax.xml.bind.annotation.XmlAccessType; |
44 | |
import javax.xml.bind.annotation.XmlAccessorType; |
45 | |
import javax.xml.bind.annotation.XmlAnyElement; |
46 | |
import javax.xml.bind.annotation.XmlElement; |
47 | |
import javax.xml.bind.annotation.XmlRootElement; |
48 | |
import javax.xml.bind.annotation.XmlType; |
49 | |
import java.io.ByteArrayOutputStream; |
50 | |
import java.io.Serializable; |
51 | |
import java.lang.reflect.Method; |
52 | |
import java.util.ArrayList; |
53 | |
import java.util.List; |
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | 0 | public class ImmutableJaxbGenerator { |
62 | |
|
63 | |
public static void main(String[] args) throws Exception { |
64 | |
|
65 | 0 | if (args.length > 2 || args.length < 1) { |
66 | 0 | System.err.println("There should be two arguments defined as follows:\n" + |
67 | |
" 1. Fully qualified class name of a 'contract' interface\n" + |
68 | |
" 2. [Optional] Fully qualified class name of the class to generate. If not specified, will use the name of the contract interface class and remove \"Contract\" from the end of it.\n"); |
69 | 0 | System.exit(1); |
70 | |
} |
71 | |
|
72 | |
|
73 | 0 | String contractInterfaceName = args[0]; |
74 | |
|
75 | 0 | String className = null; |
76 | |
|
77 | 0 | if (args.length == 2) { |
78 | 0 | className = args[1]; |
79 | |
} else { |
80 | 0 | if (!contractInterfaceName.endsWith("Contract")) { |
81 | 0 | throw new IllegalArgumentException("If not explicitly specifying target classname, then contract class name must end with 'Contract'"); |
82 | |
} |
83 | 0 | className = contractInterfaceName.substring(0, contractInterfaceName.lastIndexOf("Contract")); |
84 | |
} |
85 | |
|
86 | 0 | Generator generator = new Generator(contractInterfaceName, className); |
87 | 0 | generator.generate(); |
88 | 0 | } |
89 | |
|
90 | |
public static class Generator { |
91 | |
|
92 | |
private final String contractInterfaceName; |
93 | |
private final String className; |
94 | |
private final JCodeModel codeModel; |
95 | |
|
96 | 0 | public Generator(String contractInterfaceName, String className) { |
97 | 0 | this.contractInterfaceName = contractInterfaceName; |
98 | 0 | this.className = className; |
99 | 0 | this.codeModel = new JCodeModel(); |
100 | 0 | } |
101 | |
|
102 | |
public void generate() throws Exception { |
103 | 0 | byte[] javaCode = generateJava(); |
104 | 0 | System.out.println(new String(javaCode)); |
105 | 0 | } |
106 | |
|
107 | |
private byte[] generateJava() throws Exception { |
108 | |
|
109 | 0 | JDefinedClass classModel = codeModel._class(JMod.PUBLIC | JMod.FINAL, className, ClassType.CLASS); |
110 | 0 | Class<?> contractInterface = Class.forName(contractInterfaceName); |
111 | 0 | classModel._implements(contractInterface); |
112 | 0 | classModel._extends(AbstractDataTransferObject.class); |
113 | |
|
114 | 0 | List<FieldModel> fields = determineFields(contractInterface); |
115 | |
|
116 | 0 | renderConstantsClass(classModel); |
117 | 0 | renderElementsClass(classModel, fields); |
118 | 0 | renderClassLevelAnnotations(classModel, fields); |
119 | 0 | renderFields(classModel, fields); |
120 | 0 | renderFutureElementsField(classModel); |
121 | 0 | renderPrivateJaxbConstructor(classModel, fields); |
122 | 0 | renderBuilderConstructor(classModel, fields); |
123 | 0 | renderGetters(classModel, fields); |
124 | 0 | renderBuilderClass(classModel, fields, contractInterface); |
125 | |
|
126 | |
|
127 | 0 | ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
128 | 0 | codeModel.build(new SingleStreamCodeWriter(outputStream)); |
129 | 0 | return outputStream.toByteArray(); |
130 | |
|
131 | |
} |
132 | |
|
133 | |
private List<FieldModel> determineFields(Class<?> contractInterface) throws Exception { |
134 | 0 | List<FieldModel> fieldModels = new ArrayList<FieldModel>(); |
135 | |
|
136 | 0 | Method[] methods = contractInterface.getMethods(); |
137 | 0 | for (Method method : methods) { |
138 | 0 | String methodName = method.getName(); |
139 | 0 | String fieldName = null; |
140 | 0 | if (method.getReturnType() != Void.class && method.getParameterTypes().length == 0) { |
141 | 0 | if (methodName.startsWith("get")) { |
142 | 0 | fieldName = Util.toLowerCaseFirstLetter(methodName.substring(3)); |
143 | 0 | } else if (methodName.startsWith("is")) { |
144 | 0 | fieldName = Util.toLowerCaseFirstLetter(methodName.substring(2)); |
145 | |
} else { |
146 | |
continue; |
147 | |
} |
148 | 0 | fieldModels.add(new FieldModel(fieldName, method.getReturnType())); |
149 | |
} |
150 | |
} |
151 | |
|
152 | 0 | return fieldModels; |
153 | |
} |
154 | |
|
155 | |
private void renderConstantsClass(JDefinedClass classModel) throws Exception { |
156 | |
|
157 | |
|
158 | 0 | JDefinedClass constantsClass = classModel._class(JMod.STATIC, Util.CONSTANTS_CLASS_NAME); |
159 | |
|
160 | |
|
161 | 0 | JDocComment javadoc = constantsClass.javadoc(); |
162 | 0 | javadoc.append(Util.CONSTANTS_CLASS_JAVADOC); |
163 | |
|
164 | |
|
165 | 0 | JFieldVar rootElementField = constantsClass.field(JMod.FINAL | JMod.STATIC, String.class, Util.ROOT_ELEMENT_NAME_FIELD); |
166 | 0 | rootElementField.init(JExpr.lit(Util.toLowerCaseFirstLetter(classModel.name()))); |
167 | |
|
168 | |
|
169 | 0 | JFieldVar typeNameField = constantsClass.field(JMod.FINAL | JMod.STATIC, String.class, Util.TYPE_NAME_FIELD); |
170 | 0 | typeNameField.init(JExpr.lit(classModel.name() + Util.TYPE_NAME_SUFFIX)); |
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
|
179 | |
|
180 | 0 | } |
181 | |
|
182 | |
private void renderElementsClass(JDefinedClass classModel, List<FieldModel> fields) throws Exception { |
183 | |
|
184 | |
|
185 | 0 | JDefinedClass elementsClass = classModel._class(JMod.STATIC, Util.ELEMENTS_CLASS_NAME); |
186 | |
|
187 | |
|
188 | 0 | JDocComment javadoc = elementsClass.javadoc(); |
189 | 0 | javadoc.append(Util.ELEMENTS_CLASS_JAVADOC); |
190 | |
|
191 | |
|
192 | 0 | for (FieldModel fieldModel : fields) { |
193 | 0 | if (Util.isCommonElement(fieldModel.fieldName)) { |
194 | 0 | continue; |
195 | |
} |
196 | 0 | JFieldVar elementFieldVar = elementsClass.field(JMod.FINAL | JMod.STATIC, String.class, Util.toConstantsVariable(fieldModel.fieldName)); |
197 | 0 | elementFieldVar.init(JExpr.lit(fieldModel.fieldName)); |
198 | 0 | } |
199 | 0 | } |
200 | |
|
201 | |
private void renderClassLevelAnnotations(JDefinedClass classModel, List<FieldModel> fields) throws Exception { |
202 | 0 | JFieldRef constantsClass = classModel.staticRef(Util.CONSTANTS_CLASS_NAME); |
203 | 0 | JFieldRef elementsClass = classModel.staticRef(Util.ELEMENTS_CLASS_NAME); |
204 | 0 | JClass coreConstants = codeModel.ref(CoreConstants.class); |
205 | 0 | JFieldRef commonElementsRef = coreConstants.staticRef("CommonElements"); |
206 | |
|
207 | |
|
208 | 0 | JAnnotationUse rootElementAnnotation = classModel.annotate(XmlRootElement.class); |
209 | 0 | rootElementAnnotation.param("name", constantsClass.ref(Util.ROOT_ELEMENT_NAME_FIELD)); |
210 | |
|
211 | |
|
212 | 0 | JAnnotationUse xmlAccessorTypeAnnotation = classModel.annotate(XmlAccessorType.class); |
213 | 0 | xmlAccessorTypeAnnotation.param("value", XmlAccessType.NONE); |
214 | |
|
215 | |
|
216 | 0 | JAnnotationUse xmlTypeAnnotation = classModel.annotate(XmlType.class); |
217 | 0 | xmlTypeAnnotation.param("name", constantsClass.ref(Util.TYPE_NAME_FIELD)); |
218 | 0 | JAnnotationArrayMember propOrderMember = xmlTypeAnnotation.paramArray("propOrder"); |
219 | 0 | for (FieldModel field : fields) { |
220 | 0 | if (Util.isCommonElement(field.fieldName)) { |
221 | 0 | propOrderMember.param(commonElementsRef.ref(Util.toConstantsVariable(field.fieldName))); |
222 | |
} else { |
223 | 0 | propOrderMember.param(elementsClass.ref(Util.toConstantsVariable(field.fieldName))); |
224 | |
} |
225 | |
} |
226 | 0 | propOrderMember.param(commonElementsRef.ref("FUTURE_ELEMENTS")); |
227 | 0 | } |
228 | |
|
229 | |
private void renderFields(JDefinedClass classModel, List<FieldModel> fields) { |
230 | 0 | for (FieldModel fieldModel : fields) { |
231 | 0 | renderField(classModel, fieldModel); |
232 | |
} |
233 | 0 | } |
234 | |
|
235 | |
private void renderField(JDefinedClass classModel, FieldModel fieldModel) { |
236 | 0 | JFieldVar field = classModel.field(JMod.PRIVATE | JMod.FINAL, fieldModel.fieldType, fieldModel.fieldName); |
237 | 0 | JAnnotationUse annotation = field.annotate(XmlElement.class); |
238 | 0 | if (Util.isCommonElement(fieldModel.fieldName)) { |
239 | 0 | JClass coreConstants = codeModel.ref(CoreConstants.class); |
240 | 0 | JFieldRef commonElementsRef = coreConstants.staticRef("CommonElements"); |
241 | 0 | annotation.param("name", commonElementsRef.ref(Util.toConstantsVariable(fieldModel.fieldName))); |
242 | 0 | } else { |
243 | 0 | JClass elementsClass = codeModel.ref(Util.ELEMENTS_CLASS_NAME); |
244 | 0 | JFieldRef fieldXmlNameRef = elementsClass.staticRef(Util.toConstantsVariable(fieldModel.fieldName)); |
245 | 0 | annotation.param("name", fieldXmlNameRef); |
246 | |
} |
247 | 0 | annotation.param("required", false); |
248 | 0 | } |
249 | |
|
250 | |
private void renderFutureElementsField(JDefinedClass classModel) throws Exception { |
251 | 0 | JType collectionType = codeModel.parseType("java.util.Collection<org.w3c.dom.Element>"); |
252 | 0 | JFieldVar field = classModel.field(JMod.PRIVATE | JMod.FINAL, collectionType, "_futureElements"); |
253 | 0 | field.init(JExpr._null()); |
254 | 0 | JAnnotationUse annotation = field.annotate(SuppressWarnings.class); |
255 | 0 | annotation.param("value", "unused"); |
256 | 0 | field.annotate(XmlAnyElement.class); |
257 | 0 | } |
258 | |
|
259 | |
private void renderPrivateJaxbConstructor(JDefinedClass classModel, List<FieldModel> fields) { |
260 | 0 | JMethod method = classModel.constructor(JMod.PRIVATE); |
261 | 0 | JBlock body = method.body(); |
262 | 0 | for (FieldModel fieldModel : fields) { |
263 | 0 | body.directStatement("this." + fieldModel.fieldName + " = " + getInitString(fieldModel.fieldType) + ";"); |
264 | |
} |
265 | 0 | method.javadoc().add("Private constructor used only by JAXB."); |
266 | 0 | } |
267 | |
|
268 | |
private String getInitString(Class<?> clazz) { |
269 | 0 | if (clazz == Boolean.TYPE) { |
270 | 0 | return "false"; |
271 | 0 | } else if (clazz == Character.TYPE) { |
272 | 0 | return "'\\\\u0000'"; |
273 | 0 | } else if (clazz == Long.TYPE) { |
274 | 0 | return "0L"; |
275 | 0 | } else if (clazz == Float.TYPE) { |
276 | 0 | return "0.0F"; |
277 | 0 | } else if (clazz == Double.TYPE) { |
278 | 0 | return "0.0D"; |
279 | 0 | } else if (clazz == Byte.TYPE || clazz == Short.TYPE || clazz == Integer.TYPE) { |
280 | 0 | return "0"; |
281 | |
} else { |
282 | 0 | return "null"; |
283 | |
} |
284 | |
} |
285 | |
|
286 | |
private void renderBuilderConstructor(JDefinedClass classModel, List<FieldModel> fields) { |
287 | 0 | JMethod method = classModel.constructor(JMod.PRIVATE); |
288 | 0 | method.param(codeModel.ref("Builder"), "builder"); |
289 | 0 | JBlock body = method.body(); |
290 | 0 | for (FieldModel fieldModel : fields) { |
291 | 0 | body.directStatement("this." + fieldModel.fieldName + " = builder." + Util.generateGetter(fieldModel.fieldName, isBoolean(fieldModel.fieldType)) + ";"); |
292 | |
} |
293 | 0 | } |
294 | |
|
295 | |
private void renderGetters(JDefinedClass classModel, List<FieldModel> fields) { |
296 | 0 | for (FieldModel fieldModel : fields) { |
297 | 0 | JMethod getterMethod = classModel.method(JMod.PUBLIC, fieldModel.fieldType, Util.generateGetterName(fieldModel.fieldName, isBoolean(fieldModel.fieldType))); |
298 | 0 | JBlock methodBody = getterMethod.body(); |
299 | 0 | methodBody.directStatement("return this." + fieldModel.fieldName + ";"); |
300 | 0 | getterMethod.annotate(Override.class); |
301 | 0 | } |
302 | 0 | } |
303 | |
|
304 | |
private boolean isBoolean(Class<?> clazz) { |
305 | 0 | return clazz == Boolean.TYPE || clazz == Boolean.class; |
306 | |
} |
307 | |
|
308 | |
private void renderBuilderClass(JDefinedClass classModel, List<FieldModel> fields, Class<?> contractInterface) throws Exception { |
309 | |
|
310 | |
|
311 | 0 | JDefinedClass builderClass = classModel._class(JMod.PUBLIC | JMod.STATIC | JMod.FINAL, Util.BUILDER_CLASS_NAME); |
312 | |
|
313 | |
|
314 | 0 | JClass literalBuilderClass = codeModel.ref("Builder"); |
315 | |
|
316 | |
|
317 | 0 | JDocComment javadoc = builderClass.javadoc(); |
318 | 0 | javadoc.append(Util.generateBuilderJavadoc(classModel.name(), contractInterface.getSimpleName())); |
319 | |
|
320 | 0 | builderClass._implements(contractInterface); |
321 | 0 | builderClass._implements(ModelBuilder.class); |
322 | 0 | builderClass._implements(Serializable.class); |
323 | |
|
324 | |
|
325 | 0 | for (FieldModel fieldModel : fields) { |
326 | 0 | builderClass.field(JMod.PRIVATE, fieldModel.fieldType, fieldModel.fieldName); |
327 | |
} |
328 | |
|
329 | |
|
330 | 0 | JMethod constructor = builderClass.constructor(JMod.PRIVATE); |
331 | 0 | constructor.body().directStatement("// TODO modify this constructor as needed to pass any required values and invoke the appropriate 'setter' methods"); |
332 | |
|
333 | 0 | renderBuilderDefaultCreate(builderClass, literalBuilderClass); |
334 | 0 | renderBuilderCreateContract(builderClass, literalBuilderClass, fields, contractInterface); |
335 | 0 | renderBuild(builderClass); |
336 | 0 | renderGetters(builderClass, fields); |
337 | 0 | renderSetters(builderClass, fields); |
338 | 0 | } |
339 | |
|
340 | |
private void renderBuilderDefaultCreate(JDefinedClass builderClass, JClass literalBuilderClass) { |
341 | 0 | JMethod createMethod = builderClass.method(JMod.PUBLIC | JMod.STATIC, literalBuilderClass, "create"); |
342 | 0 | JBlock createMethodBody = createMethod.body(); |
343 | 0 | createMethodBody.directStatement("// TODO modify as needed to pass any required values and add them to the signature of the 'create' method"); |
344 | 0 | createMethodBody.directStatement("return new Builder();"); |
345 | 0 | } |
346 | |
|
347 | |
private void renderBuilderCreateContract(JDefinedClass builderClass, JClass literalBuilderClass, List<FieldModel> fields, Class<?> contractInterface) { |
348 | 0 | JMethod createContractMethod = builderClass.method(JMod.PUBLIC | JMod.STATIC, literalBuilderClass, "create"); |
349 | 0 | JVar contractParam = createContractMethod.param(contractInterface, "contract"); |
350 | 0 | JBlock body = createContractMethod.body(); |
351 | 0 | JConditional nullContractCheck = body._if(contractParam.eq(JExpr._null())); |
352 | 0 | nullContractCheck._then().directStatement("throw new IllegalArgumentException(\"contract was null\");"); |
353 | 0 | body.directStatement("// TODO if create() is modified to accept required parameters, this will need to be modified"); |
354 | 0 | body.directStatement("Builder builder = create();"); |
355 | 0 | for (FieldModel fieldModel : fields) { |
356 | 0 | String fieldName = fieldModel.fieldName; |
357 | 0 | body.directStatement("builder." + Util.generateSetter(fieldName, "contract." + Util.generateGetter(fieldName, isBoolean(fieldModel.fieldType))) + ";"); |
358 | 0 | } |
359 | 0 | body.directStatement("return builder;"); |
360 | 0 | } |
361 | |
|
362 | |
private void renderBuild(JDefinedClass builderClass) { |
363 | 0 | JMethod buildMethod = builderClass.method(JMod.PUBLIC, builderClass.outer(), "build"); |
364 | 0 | buildMethod.body().directStatement("return new " + builderClass.outer().name() + "(this);"); |
365 | 0 | } |
366 | |
|
367 | |
private void renderSetters(JDefinedClass builderClass, List<FieldModel> fields) { |
368 | 0 | for (FieldModel fieldModel : fields) { |
369 | 0 | String fieldName = fieldModel.fieldName; |
370 | 0 | JMethod setterMethod = builderClass.method(JMod.PUBLIC, codeModel.VOID, Util.generateSetterName(fieldName)); |
371 | 0 | setterMethod.param(fieldModel.fieldType, fieldName); |
372 | 0 | setterMethod.body().directStatement("// TODO add validation of input value if required and throw IllegalArgumentException if needed"); |
373 | 0 | setterMethod.body().directStatement("this." + fieldName + " = " + fieldName + ";"); |
374 | 0 | } |
375 | 0 | } |
376 | |
|
377 | |
|
378 | |
|
379 | |
|
380 | |
private void renderStandardObjectMethods(JDefinedClass classModel) { |
381 | |
|
382 | 0 | JClass constantsClass = codeModel.ref(Util.CONSTANTS_CLASS_NAME); |
383 | 0 | JFieldRef hashCodeEqualsExcludes = constantsClass.staticRef(Util.HASH_CODE_EQUALS_EXCLUDE_FIELD); |
384 | |
|
385 | |
|
386 | 0 | JMethod hashCodeMethod = classModel.method(JMod.PUBLIC, codeModel.INT, "hashCode"); |
387 | 0 | JInvocation hcInvoke = codeModel.ref(HashCodeBuilder.class).staticInvoke("reflectionHashCode"); |
388 | 0 | hcInvoke.arg(JExpr._this()); |
389 | 0 | hcInvoke.arg(hashCodeEqualsExcludes); |
390 | 0 | hashCodeMethod.body()._return(hcInvoke); |
391 | 0 | hashCodeMethod.annotate(Override.class); |
392 | |
|
393 | |
|
394 | 0 | JMethod equalsMethod = classModel.method(JMod.PUBLIC, codeModel.BOOLEAN, "equals"); |
395 | 0 | JVar objectParam = equalsMethod.param(Object.class, "object"); |
396 | 0 | JInvocation equalsInvoke = codeModel.ref(EqualsBuilder.class).staticInvoke("reflectionEquals"); |
397 | 0 | equalsInvoke.arg(objectParam); |
398 | 0 | equalsInvoke.arg(JExpr._this()); |
399 | 0 | equalsInvoke.arg(hashCodeEqualsExcludes); |
400 | 0 | equalsMethod.body()._return(equalsInvoke); |
401 | 0 | equalsMethod.annotate(Override.class); |
402 | |
|
403 | |
|
404 | 0 | JMethod toStringMethod = classModel.method(JMod.PUBLIC, String.class, "toString"); |
405 | 0 | JInvocation toStringInvoke = codeModel.ref(ToStringBuilder.class).staticInvoke("reflectionToString"); |
406 | 0 | toStringInvoke.arg(JExpr._this()); |
407 | 0 | toStringMethod.body()._return(toStringInvoke); |
408 | 0 | toStringMethod.annotate(Override.class); |
409 | |
|
410 | |
|
411 | 0 | } |
412 | |
|
413 | |
} |
414 | |
|
415 | 0 | private static class FieldModel { |
416 | |
|
417 | |
private final String fieldName; |
418 | |
private final Class<?> fieldType; |
419 | |
|
420 | 0 | private FieldModel(String fieldName, Class<?> fieldType) { |
421 | 0 | this.fieldName = fieldName; |
422 | 0 | this.fieldType = fieldType; |
423 | 0 | } |
424 | |
|
425 | |
} |
426 | |
|
427 | |
} |