c0e4ef72edc0ae61ae0ef9e3bf32584cbe4add28
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / java / api / generator / BuilderTemplate.xtend
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.java.api.generator
9
10 import static extension org.apache.commons.text.StringEscapeUtils.escapeJava
11 import static org.opendaylight.mdsal.binding.model.ri.BindingTypes.DATA_OBJECT
12 import static org.opendaylight.mdsal.binding.spec.naming.BindingMapping.AUGMENTABLE_AUGMENTATION_NAME
13 import static org.opendaylight.mdsal.binding.spec.naming.BindingMapping.AUGMENTATION_FIELD
14 import static org.opendaylight.mdsal.binding.spec.naming.BindingMapping.BINDING_CONTRACT_IMPLEMENTED_INTERFACE_NAME
15
16 import com.google.common.collect.ImmutableList
17 import com.google.common.collect.ImmutableSet
18 import com.google.common.collect.Sets
19 import java.util.ArrayList
20 import java.util.Collection
21 import java.util.HashSet
22 import java.util.List
23 import java.util.Map
24 import java.util.Set
25 import org.opendaylight.mdsal.binding.model.api.AnnotationType
26 import org.opendaylight.mdsal.binding.model.api.GeneratedProperty
27 import org.opendaylight.mdsal.binding.model.api.GeneratedTransferObject
28 import org.opendaylight.mdsal.binding.model.api.GeneratedType
29 import org.opendaylight.mdsal.binding.model.api.JavaTypeName
30 import org.opendaylight.mdsal.binding.model.api.MethodSignature;
31 import org.opendaylight.mdsal.binding.model.api.ParameterizedType
32 import org.opendaylight.mdsal.binding.model.api.Type
33 import org.opendaylight.mdsal.binding.model.ri.TypeConstants
34 import org.opendaylight.mdsal.binding.model.ri.Types
35 import org.opendaylight.mdsal.binding.spec.naming.BindingMapping
36
37 /**
38  * Template for generating JAVA builder classes.
39  */
40 class BuilderTemplate extends AbstractBuilderTemplate {
41     val BuilderImplTemplate implTemplate
42
43     /**
44      * Constructs new instance of this class.
45      * @throws IllegalArgumentException if <code>genType</code> equals <code>null</code>
46      */
47     new(GeneratedType genType, GeneratedType targetType, Type keyType) {
48         super(genType, targetType, keyType)
49         implTemplate = new BuilderImplTemplate(this, type.enclosedTypes.get(0))
50     }
51
52     override isLocalInnerClass(JavaTypeName name) {
53         // Builders do not have inner types
54         return false;
55     }
56
57     /**
58      * Template method which generates JAVA class body for builder class and for IMPL class.
59      *
60      * @return string with JAVA source code
61      */
62     override body() '''
63         «wrapToDocumentation(formatDataForJavaDoc(targetType))»
64         «targetType.annotations.generateDeprecatedAnnotation»
65         «generatedAnnotation»
66         public class «type.name» {
67
68             «generateFields(false)»
69
70             «constantsDeclarations()»
71
72             «IF augmentType !== null»
73                 «generateAugmentField()»
74             «ENDIF»
75
76             /**
77              * Construct an empty builder.
78              */
79             public «type.name»() {
80                 // No-op
81             }
82
83             «generateConstructorsFromIfcs()»
84
85             «val targetTypeName = targetType.importedName»
86             /**
87              * Construct a builder initialized with state from specified {@link «targetTypeName»}.
88              *
89              * @param base «targetTypeName» from which the builder should be initialized
90              */
91             public «generateCopyConstructor(targetType, type.enclosedTypes.get(0))»
92
93             «generateMethodFieldsFrom()»
94
95             «generateGetters(false)»
96             «IF augmentType !== null»
97
98                 «generateAugmentation()»
99             «ENDIF»
100
101             «generateSetters»
102
103             /**
104              * A new {@link «targetTypeName»} instance.
105              *
106              * @return A new {@link «targetTypeName»} instance.
107              */
108             public «targetTypeName» build() {
109                 return new «type.enclosedTypes.get(0).importedName»(this);
110             }
111
112             «implTemplate.body»
113         }
114     '''
115
116     override generateDeprecatedAnnotation(AnnotationType ann) {
117         val forRemoval = ann.getParameter("forRemoval")
118         if (forRemoval !== null) {
119             return "@" + DEPRECATED.importedName + "(forRemoval = " + forRemoval.value + ")"
120         }
121         return "@" + SUPPRESS_WARNINGS.importedName + "(\"deprecation\")"
122     }
123
124     /**
125      * Generate default constructor and constructor for every implemented interface from uses statements.
126      */
127     def private generateConstructorsFromIfcs() '''
128         «IF (!(targetType instanceof GeneratedTransferObject))»
129             «FOR impl : targetType.implements SEPARATOR "\n"»
130                 «generateConstructorFromIfc(impl)»
131             «ENDFOR»
132         «ENDIF»
133     '''
134
135     /**
136      * Generate constructor with argument of given type.
137      */
138     def private Object generateConstructorFromIfc(Type impl) '''
139         «IF (impl instanceof GeneratedType)»
140             «IF impl.hasNonDefaultMethods»
141                 «val typeName = impl.importedName»
142                 /**
143                  * Construct a new builder initialized from specified {@link «typeName»}.
144                  *
145                  * @param arg «typeName» from which the builder should be initialized
146                  */
147                 public «type.name»(«typeName» arg) {
148                     «printConstructorPropertySetter(impl)»
149                 }
150
151             «ENDIF»
152             «FOR implTypeImplement : impl.implements»
153                 «generateConstructorFromIfc(implTypeImplement)»
154             «ENDFOR»
155         «ENDIF»
156     '''
157
158     def private Object printConstructorPropertySetter(Type implementedIfc) '''
159         «IF (implementedIfc instanceof GeneratedType && !(implementedIfc instanceof GeneratedTransferObject))»
160             «val ifc = implementedIfc as GeneratedType»
161             «FOR getter : ifc.nonDefaultMethods»
162                 «IF BindingMapping.isGetterMethodName(getter.name)»
163                     «val propertyName = getter.propertyNameFromGetter»
164                     «printPropertySetter(getter, '''arg.«getter.name»()''', propertyName)»;
165                 «ENDIF»
166             «ENDFOR»
167             «FOR impl : ifc.implements»
168                 «printConstructorPropertySetter(impl, getSpecifiedGetters(ifc))»
169             «ENDFOR»
170         «ENDIF»
171     '''
172
173     def private Object printConstructorPropertySetter(Type implementedIfc, Set<MethodSignature> alreadySetProperties) '''
174         «IF (implementedIfc instanceof GeneratedType && !(implementedIfc instanceof GeneratedTransferObject))»
175             «val ifc = implementedIfc as GeneratedType»
176             «FOR getter : ifc.nonDefaultMethods»
177                 «IF BindingMapping.isGetterMethodName(getter.name) && getterByName(alreadySetProperties, getter.name).isEmpty»
178                     «val propertyName = getter.propertyNameFromGetter»
179                     «printPropertySetter(getter, '''arg.«getter.name»()''', propertyName)»;
180                 «ENDIF»
181             «ENDFOR»
182             «FOR descendant : ifc.implements»
183                 «printConstructorPropertySetter(descendant, Sets.union(alreadySetProperties, getSpecifiedGetters(ifc)))»
184             «ENDFOR»
185         «ENDIF»
186     '''
187
188     def static Set<MethodSignature> getSpecifiedGetters(GeneratedType type) {
189         val ImmutableSet.Builder<MethodSignature> setBuilder = new ImmutableSet.Builder
190         for (MethodSignature method : type.getMethodDefinitions()) {
191             if (method.hasOverrideAnnotation) {
192                 setBuilder.add(method)
193             }
194         }
195         return setBuilder.build()
196     }
197
198     /**
199      * Generate 'fieldsFrom' method to set builder properties based on type of given argument.
200      */
201     def private generateMethodFieldsFrom() '''
202         «IF (!(targetType instanceof GeneratedTransferObject))»
203             «IF targetType.hasImplementsFromUses»
204                 «val List<Type> done = targetType.getBaseIfcs»
205                 «generateMethodFieldsFromComment(targetType)»
206                 public void fieldsFrom(«DATA_OBJECT.importedName» arg) {
207                     boolean isValidArg = false;
208                     «FOR impl : targetType.getAllIfcs»
209                         «generateIfCheck(impl, done)»
210                     «ENDFOR»
211                     «CODEHELPERS.importedName».validValue(isValidArg, arg, "«targetType.getAllIfcs.toListOfNames»");
212                 }
213             «ENDIF»
214         «ENDIF»
215     '''
216
217     def private generateMethodFieldsFromComment(GeneratedType type) '''
218         /**
219          * Set fields from given grouping argument. Valid argument is instance of one of following types:
220          * <ul>
221          «FOR impl : type.getAllIfcs»
222          *   <li>{@link «impl.importedName»}</li>
223          «ENDFOR»
224          * </ul>
225          *
226          * @param arg grouping object
227          * @throws IllegalArgumentException if given argument is none of valid types or has property with incompatible value
228         */
229     '''
230
231     /**
232      * Method is used to find out if given type implements any interface from uses.
233      */
234     def boolean hasImplementsFromUses(GeneratedType type) {
235         var i = 0
236         for (impl : type.getAllIfcs) {
237             if (impl instanceof GeneratedType && (impl as GeneratedType).hasNonDefaultMethods) {
238                 i = i + 1
239             }
240         }
241         return i > 0
242     }
243
244     def private generateIfCheck(Type impl, List<Type> done) '''
245         «IF (impl instanceof GeneratedType && (impl as GeneratedType).hasNonDefaultMethods)»
246             «val implType = impl as GeneratedType»
247             if (arg instanceof «implType.importedName») {
248                 «printPropertySetter(implType)»
249                 isValidArg = true;
250             }
251         «ENDIF»
252     '''
253
254     def private printPropertySetter(Type implementedIfc) '''
255         «IF (implementedIfc instanceof GeneratedType && !(implementedIfc instanceof GeneratedTransferObject))»
256         «val ifc = implementedIfc as GeneratedType»
257         «FOR getter : ifc.nonDefaultMethods»
258             «IF BindingMapping.isGetterMethodName(getter.name) && !hasOverrideAnnotation(getter)»
259                 «printPropertySetter(getter, '''((«ifc.importedName»)arg).«getter.name»()''', getter.propertyNameFromGetter)»;
260             «ENDIF»
261         «ENDFOR»
262         «ENDIF»
263     '''
264
265     def private printPropertySetter(MethodSignature getter, String retrieveProperty, String propertyName) {
266         val ownGetter = implTemplate.findGetter(getter.name)
267         val ownGetterType = ownGetter.returnType
268         if (Types.strictTypeEquals(getter.returnType, ownGetterType)) {
269             return "this._" + propertyName + " = " + retrieveProperty
270         }
271         if (ownGetterType instanceof ParameterizedType) {
272             val itemType = ownGetterType.actualTypeArguments.get(0)
273             if (Types.isListType(ownGetterType)) {
274                 return printPropertySetter(retrieveProperty, propertyName, "checkListFieldCast", itemType.importedName)
275             }
276             if (Types.isSetType(ownGetterType)) {
277                 return printPropertySetter(retrieveProperty, propertyName, "checkSetFieldCast", itemType.importedName)
278             }
279         }
280         return printPropertySetter(retrieveProperty, propertyName, "checkFieldCast", ownGetterType.importedName)
281     }
282
283     def private printPropertySetter(String retrieveProperty, String propertyName, String checkerName, String className) '''
284             this._«propertyName» = «CODEHELPERS.importedName».«checkerName»(«className».class, "«propertyName»", «retrieveProperty»)'''
285
286     private def List<Type> getBaseIfcs(GeneratedType type) {
287         val List<Type> baseIfcs = new ArrayList();
288         for (ifc : type.implements) {
289             if (ifc instanceof GeneratedType && (ifc as GeneratedType).hasNonDefaultMethods) {
290                 baseIfcs.add(ifc)
291             }
292         }
293         return baseIfcs
294     }
295
296     private def Set<Type> getAllIfcs(Type type) {
297         val Set<Type> baseIfcs = new HashSet()
298         if (type instanceof GeneratedType && !(type instanceof GeneratedTransferObject)) {
299             val ifc = type as GeneratedType
300             for (impl : ifc.implements) {
301                 if (impl instanceof GeneratedType && (impl as GeneratedType).hasNonDefaultMethods) {
302                     baseIfcs.add(impl)
303                 }
304                 baseIfcs.addAll(impl.getAllIfcs)
305             }
306         }
307         return baseIfcs
308     }
309
310     private def List<String> toListOfNames(Collection<Type> types) {
311         val List<String> names = new ArrayList
312         for (type : types) {
313             names.add(type.importedName)
314         }
315         return names
316     }
317
318     def private constantsDeclarations() '''
319         «FOR c : type.getConstantDefinitions»
320             «IF c.getName.startsWith(TypeConstants.PATTERN_CONSTANT_NAME)»
321                 «val cValue = c.value as Map<String, String>»
322                 «val String fieldSuffix = c.getName.substring(TypeConstants.PATTERN_CONSTANT_NAME.length)»
323                 «val jurPatternRef = JUR_PATTERN.importedName»
324                 «IF cValue.size == 1»
325                    «val firstEntry = cValue.entrySet.iterator.next»
326                    private static final «jurPatternRef» «Constants.MEMBER_PATTERN_LIST»«fieldSuffix» = «jurPatternRef».compile("«firstEntry.key.escapeJava»");
327                    private static final String «Constants.MEMBER_REGEX_LIST»«fieldSuffix» = "«firstEntry.value.escapeJava»";
328                 «ELSE»
329                    private static final «jurPatternRef»[] «Constants.MEMBER_PATTERN_LIST»«fieldSuffix» = «CODEHELPERS.importedName».compilePatterns(«ImmutableList.importedName».of(
330                    «FOR v : cValue.keySet SEPARATOR ", "»"«v.escapeJava»"«ENDFOR»));
331                    private static final String[] «Constants.MEMBER_REGEX_LIST»«fieldSuffix» = { «
332                    FOR v : cValue.values SEPARATOR ", "»"«v.escapeJava»"«ENDFOR» };
333                 «ENDIF»
334             «ELSE»
335                 «emitConstant(c)»
336             «ENDIF»
337         «ENDFOR»
338     '''
339
340     def private generateSetter(GeneratedProperty field) {
341         val returnType = field.returnType
342         if (returnType instanceof ParameterizedType) {
343             if (Types.isListType(returnType) || Types.isSetType(returnType)) {
344                 val arguments = returnType.actualTypeArguments
345                 if (arguments.isEmpty) {
346                     return generateListSetter(field, Types.objectType)
347                 }
348                 return generateListSetter(field, arguments.get(0))
349             } else if (Types.isMapType(returnType)) {
350                 return generateMapSetter(field, returnType.actualTypeArguments.get(1))
351             }
352         }
353         return generateSimpleSetter(field, returnType)
354     }
355
356     def private generateListSetter(GeneratedProperty field, Type actualType) '''
357         «val restrictions = restrictionsForSetter(actualType)»
358         «IF restrictions !== null»
359             «generateCheckers(field, restrictions, actualType)»
360         «ENDIF»
361         public «type.getName» set«field.getName.toFirstUpper»(final «field.returnType.importedName» values) {
362         «IF restrictions !== null»
363             if (values != null) {
364                for («actualType.importedName» value : values) {
365                    «checkArgument(field, restrictions, actualType, "value")»
366                }
367             }
368         «ENDIF»
369             this.«field.fieldName» = values;
370             return this;
371         }
372
373     '''
374
375     def private generateMapSetter(GeneratedProperty field, Type actualType) '''
376         «val restrictions = restrictionsForSetter(actualType)»
377         «IF restrictions !== null»
378             «generateCheckers(field, restrictions, actualType)»
379         «ENDIF»
380         public «type.getName» set«field.name.toFirstUpper»(final «field.returnType.importedName» values) {
381         «IF restrictions !== null»
382             if (values != null) {
383                for («actualType.importedName» value : values.values()) {
384                    «checkArgument(field, restrictions, actualType, "value")»
385                }
386             }
387         «ENDIF»
388             this.«field.fieldName» = values;
389             return this;
390         }
391     '''
392
393     def private generateSimpleSetter(GeneratedProperty field, Type actualType) '''
394         «val restrictions = restrictionsForSetter(actualType)»
395         «IF restrictions !== null»
396
397             «generateCheckers(field, restrictions, actualType)»
398         «ENDIF»
399
400         «val setterName = "set" + field.getName.toFirstUpper»
401         public «type.getName» «setterName»(final «field.returnType.importedName» value) {
402             «IF restrictions !== null»
403                 if (value != null) {
404                     «checkArgument(field, restrictions, actualType, "value")»
405                 }
406             «ENDIF»
407             this.«field.fieldName» = value;
408             return this;
409         }
410     '''
411
412     /**
413      * Template method which generates setter methods
414      *
415      * @return string with the setter methods
416      */
417     def private generateSetters() '''
418         «IF keyType !== null»
419             public «type.getName» withKey(final «keyType.importedName» key) {
420                 this.key = key;
421                 return this;
422             }
423         «ENDIF»
424         «FOR property : properties»
425             «generateSetter(property)»
426         «ENDFOR»
427
428         «IF augmentType !== null»
429             «val augmentTypeRef = augmentType.importedName»
430             «val jlClassRef = CLASS.importedName»
431             «val hashMapRef = JU_HASHMAP.importedName»
432             /**
433               * Add an augmentation to this builder's product.
434               *
435               * @param augmentation augmentation to be added
436               * @return this builder
437               * @throws NullPointerException if {@code augmentation} is null
438               */
439             public «type.name» addAugmentation(«augmentTypeRef» augmentation) {
440                 «jlClassRef»<? extends «augmentTypeRef»> augmentationType = augmentation.«BINDING_CONTRACT_IMPLEMENTED_INTERFACE_NAME»();
441                 if (!(this.«AUGMENTATION_FIELD» instanceof «hashMapRef»)) {
442                     this.«AUGMENTATION_FIELD» = new «hashMapRef»<>();
443                 }
444
445                 this.«AUGMENTATION_FIELD».put(augmentationType, augmentation);
446                 return this;
447             }
448
449             /**
450               * Remove an augmentation from this builder's product. If this builder does not track such an augmentation
451               * type, this method does nothing.
452               *
453               * @param augmentationType augmentation type to be removed
454               * @return this builder
455               */
456             public «type.name» removeAugmentation(«jlClassRef»<? extends «augmentTypeRef»> augmentationType) {
457                 if (this.«AUGMENTATION_FIELD» instanceof «hashMapRef») {
458                     this.«AUGMENTATION_FIELD».remove(augmentationType);
459                 }
460                 return this;
461             }
462         «ENDIF»
463     '''
464
465     private def createDescription(GeneratedType targetType) {
466         val target = targetType.importedName
467         return '''
468         Class that builds {@link «target»} instances. Overall design of the class is that of a
469         <a href="https://en.wikipedia.org/wiki/Fluent_interface">fluent interface</a>, where method chaining is used.
470
471         <p>
472         In general, this class is supposed to be used like this template:
473         <pre>
474           <code>
475             «target» create«target»(int fooXyzzy, int barBaz) {
476                 return new «target»Builder()
477                     .setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
478                     .setBar(new BarBuilder().setBaz(barBaz).build())
479                     .build();
480             }
481           </code>
482         </pre>
483
484         <p>
485         This pattern is supported by the immutable nature of «target», as instances can be freely passed around without
486         worrying about synchronization issues.
487
488         <p>
489         As a side note: method chaining results in:
490         <ul>
491           <li>very efficient Java bytecode, as the method invocation result, in this case the Builder reference, is
492               on the stack, so further method invocations just need to fill method arguments for the next method
493               invocation, which is terminated by {@link #build()}, which is then returned from the method</li>
494           <li>better understanding by humans, as the scope of mutable state (the builder) is kept to a minimum and is
495               very localized</li>
496           <li>better optimization opportunities, as the object scope is minimized in terms of invocation (rather than
497               method) stack, making <a href="https://en.wikipedia.org/wiki/Escape_analysis">escape analysis</a> a lot
498               easier. Given enough compiler (JIT/AOT) prowess, the cost of th builder object can be completely
499               eliminated</li>
500         </ul>
501
502         @see «target»
503     '''
504     }
505
506     override protected String formatDataForJavaDoc(GeneratedType type) {
507         val typeDescription = createDescription(type)
508
509         return '''
510             «IF !typeDescription.nullOrEmpty»
511             «typeDescription»
512             «ENDIF»
513         '''.toString
514     }
515
516     private def generateAugmentation() '''
517         @«SUPPRESS_WARNINGS.importedName»({ "unchecked", "checkstyle:methodTypeParameterName"})
518         public <E$$ extends «augmentType.importedName»> E$$ «AUGMENTABLE_AUGMENTATION_NAME»(«CLASS.importedName»<E$$> augmentationType) {
519             return (E$$) «AUGMENTATION_FIELD».get(«JU_OBJECTS.importedName».requireNonNull(augmentationType));
520         }
521     '''
522
523     override protected generateCopyKeys(List<GeneratedProperty> keyProps) '''
524         this.key = base.«BindingMapping.IDENTIFIABLE_KEY_NAME»();
525         «FOR field : keyProps»
526             this.«field.fieldName» = base.«field.getterMethodName»();
527         «ENDFOR»
528     '''
529
530     override protected CharSequence generateCopyNonKeys(Collection<BuilderGeneratedProperty> props) '''
531         «FOR field : props»
532             this.«field.fieldName» = base.«field.getterName»();
533         «ENDFOR»
534     '''
535
536     override protected generateCopyAugmentation(Type implType) {
537         val hashMapRef = JU_HASHMAP.importedName
538         val augmentTypeRef = augmentType.importedName
539         return '''
540             «JU_MAP.importedName»<«CLASS.importedName»<? extends «augmentTypeRef»>, «augmentTypeRef»> aug = base.augmentations();
541             if (!aug.isEmpty()) {
542                 this.«AUGMENTATION_FIELD» = new «hashMapRef»<>(aug);
543             }
544         '''
545     }
546 }