blob: e581bb1021d96c08ae2c859ffd84b8e19ddc8fe7 [file] [log] [blame]
Vinod Kumar S38046502016-03-23 15:30:27 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S38046502016-03-23 15:30:27 +05303 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.yangutils.translator.tojava;
18
19import java.util.Objects;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053020
Vinod Kumar S38046502016-03-23 15:30:27 +053021import org.onosproject.yangutils.datamodel.YangNode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053022import org.onosproject.yangutils.translator.exception.TranslatorException;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053023import org.onosproject.yangutils.translator.tojava.javamodel.JavaLeafInfoContainer;
Vinod Kumar S38046502016-03-23 15:30:27 +053024import org.onosproject.yangutils.translator.tojava.utils.AttributesJavaDataType;
Bharat saraswal33dfa012016-05-17 19:59:16 +053025import org.onosproject.yangutils.translator.tojava.utils.YangToJavaNamingConflictUtil;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053026
Vinod Kumar S38046502016-03-23 15:30:27 +053027import com.google.common.base.MoreObjects;
28
Gaurav Agrawal338735b2016-04-18 18:53:11 +053029import static org.onosproject.yangutils.translator.tojava.utils.AttributesJavaDataType.getJavaImportClass;
30import static org.onosproject.yangutils.translator.tojava.utils.AttributesJavaDataType.getJavaImportPackage;
31
Vinod Kumar S38046502016-03-23 15:30:27 +053032/**
Bharat saraswald9822e92016-04-05 15:13:44 +053033 * Represents the information about individual imports in the generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053034 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053035public class JavaQualifiedTypeInfo
36 implements Comparable<JavaQualifiedTypeInfo> {
Vinod Kumar S38046502016-03-23 15:30:27 +053037 /**
38 * Package location where the imported class/interface is defined.
39 */
40 private String pkgInfo;
41
42 /**
43 * Class/interface being referenced.
44 */
45 private String classInfo;
46
47 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053048 * Creates a java qualified type info object.
Vinod Kumar S38046502016-03-23 15:30:27 +053049 */
50 public JavaQualifiedTypeInfo() {
51 }
52
53 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053054 * Returns the imported package info.
Vinod Kumar S38046502016-03-23 15:30:27 +053055 *
56 * @return the imported package info
57 */
58 public String getPkgInfo() {
Vinod Kumar S38046502016-03-23 15:30:27 +053059 return pkgInfo;
60 }
61
62 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053063 * Sets the imported package info.
Vinod Kumar S38046502016-03-23 15:30:27 +053064 *
65 * @param pkgInfo the imported package info
66 */
67 public void setPkgInfo(String pkgInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +053068 this.pkgInfo = pkgInfo;
69 }
70
71 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053072 * Returns the imported class/interface info.
Vinod Kumar S38046502016-03-23 15:30:27 +053073 *
74 * @return the imported class/interface info
75 */
76 public String getClassInfo() {
Vinod Kumar S38046502016-03-23 15:30:27 +053077 return classInfo;
78 }
79
80 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053081 * Sets the imported class/interface info.
Vinod Kumar S38046502016-03-23 15:30:27 +053082 *
83 * @param classInfo the imported class/interface info
84 */
85 public void setClassInfo(String classInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +053086 this.classInfo = classInfo;
87 }
88
89 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053090 * Updates the leaf's java information.
Vinod Kumar S38046502016-03-23 15:30:27 +053091 *
Bharat saraswal33dfa012016-05-17 19:59:16 +053092 * @param leaf leaf whose java information is being updated
Vinod Kumar S38046502016-03-23 15:30:27 +053093 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053094 public static void updateLeavesJavaQualifiedInfo(JavaLeafInfoContainer leaf) {
Vinod Kumar S38046502016-03-23 15:30:27 +053095
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053096 JavaQualifiedTypeInfo importInfo = leaf.getJavaQualifiedInfo();
Vinod Kumar S38046502016-03-23 15:30:27 +053097
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053098 if (leaf.getDataType() == null) {
99 throw new TranslatorException("missing data type of leaf " + leaf.getName());
Vinod Kumar S38046502016-03-23 15:30:27 +0530100 }
101
102 /*
103 * Current leaves holder is adding a leaf info as a attribute to the
104 * current class.
105 */
janani bdd1314f2016-05-19 17:39:50 +0530106 String className = AttributesJavaDataType.getJavaImportClass(leaf.getDataType(), leaf.isLeafList(),
107 leaf.getConflictResolveConfig());
Vinod Kumar S38046502016-03-23 15:30:27 +0530108 if (className != null) {
109 /*
110 * Corresponding to the attribute type a class needs to be imported,
111 * since it can be a derived type or a usage of wrapper classes.
112 */
113 importInfo.setClassInfo(className);
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530114 String classPkg = AttributesJavaDataType.getJavaImportPackage(leaf.getDataType(),
janani bdd1314f2016-05-19 17:39:50 +0530115 leaf.isLeafList(), className, leaf.getConflictResolveConfig());
Vinod Kumar S38046502016-03-23 15:30:27 +0530116 if (classPkg == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530117 throw new TranslatorException("import package cannot be null when the class is used");
Vinod Kumar S38046502016-03-23 15:30:27 +0530118 }
119 importInfo.setPkgInfo(classPkg);
120 } else {
121 /*
122 * The attribute does not need a class to be imported, for example
123 * built in java types.
124 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530125 String dataTypeName = AttributesJavaDataType.getJavaDataType(leaf.getDataType());
Vinod Kumar S38046502016-03-23 15:30:27 +0530126 if (dataTypeName == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530127 throw new TranslatorException("not supported data type");
Vinod Kumar S38046502016-03-23 15:30:27 +0530128 }
129 importInfo.setClassInfo(dataTypeName);
130 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530131 }
132
133 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530134 * Returns the import info for an attribute, which needs to be used for code
Vinod Kumar S38046502016-03-23 15:30:27 +0530135 * generation for import or for qualified access.
136 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530137 * @param curNode current data model node for which the java file is being
138 * generated
Vinod Kumar S38046502016-03-23 15:30:27 +0530139 * @param attributeName name of the attribute being added, it will used in
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530140 * import info for child class
Vinod Kumar S38046502016-03-23 15:30:27 +0530141 * @return return the import info for this attribute
142 */
143 public static JavaQualifiedTypeInfo getQualifiedTypeInfoOfCurNode(YangNode curNode,
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530144 String attributeName) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530145
146 JavaQualifiedTypeInfo importInfo = new JavaQualifiedTypeInfo();
147
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530148 if (!(curNode instanceof JavaFileInfoContainer)) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530149 throw new TranslatorException("missing java file information to get the package details "
Vinod Kumar S38046502016-03-23 15:30:27 +0530150 + "of attribute corresponding to child node");
151 }
152 /*
153 * The scenario when we need to add the child class as an attribute in
154 * the current class. The child class is in the package of the current
155 * classes package with current classes name.
156 */
157 importInfo.setClassInfo(attributeName);
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530158 importInfo.setPkgInfo((((JavaFileInfoContainer) curNode).getJavaFileInfo().getPackage() + "."
159 + ((JavaFileInfoContainer) curNode).getJavaFileInfo().getJavaName()).toLowerCase());
Vinod Kumar S38046502016-03-23 15:30:27 +0530160
161 return importInfo;
162 }
163
164 /**
Gaurav Agrawal56527662016-04-20 15:49:17 +0530165 * Returns the java qualified type information for the wrapper classes.
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530166 *
167 * @param referredTypesAttrInfo attribute of referred type
janani bdd1314f2016-05-19 17:39:50 +0530168 * @param conflictResolver plugin configurations
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530169 * @return return the import info for this attribute
170 */
Bharat saraswal33dfa012016-05-17 19:59:16 +0530171 public static JavaQualifiedTypeInfo getQualifiedInfoOfFromString(JavaAttributeInfo referredTypesAttrInfo,
janani bdd1314f2016-05-19 17:39:50 +0530172 YangToJavaNamingConflictUtil conflictResolver) {
Bharat saraswalc0e04842016-05-12 13:16:57 +0530173
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530174 /*
175 * Get the java qualified type information for the wrapper classes and
176 * set it in new java attribute information.
177 */
178 JavaQualifiedTypeInfo qualifiedInfoOfFromString = new JavaQualifiedTypeInfo();
Bharat saraswal33dfa012016-05-17 19:59:16 +0530179
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530180 qualifiedInfoOfFromString.setClassInfo(
janani bdd1314f2016-05-19 17:39:50 +0530181 getJavaImportClass(referredTypesAttrInfo.getAttributeType(), true, conflictResolver));
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530182 qualifiedInfoOfFromString.setPkgInfo(
janani bdd1314f2016-05-19 17:39:50 +0530183 getJavaImportPackage(referredTypesAttrInfo.getAttributeType(), true, null, conflictResolver));
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530184 return qualifiedInfoOfFromString;
185 }
186
Vinod Kumar S38046502016-03-23 15:30:27 +0530187 @Override
188 public int hashCode() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530189 return Objects.hash(pkgInfo, classInfo);
190 }
191
192 @Override
193 public boolean equals(Object obj) {
194
195 if (this == obj) {
196 return true;
197 }
198 if (obj instanceof JavaQualifiedTypeInfo) {
199 JavaQualifiedTypeInfo other = (JavaQualifiedTypeInfo) obj;
200 return Objects.equals(pkgInfo, other.pkgInfo) &&
201 Objects.equals(classInfo, other.classInfo);
202 }
203 return false;
204 }
205
206 /**
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530207 * Checks if the import info matches.
Vinod Kumar S38046502016-03-23 15:30:27 +0530208 *
209 * @param importInfo matched import
210 * @return if equal or not
211 */
212 public boolean exactMatch(JavaQualifiedTypeInfo importInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530213 return equals(importInfo)
214 && Objects.equals(pkgInfo, importInfo.getPkgInfo())
215 && Objects.equals(classInfo, importInfo.getClassInfo());
216 }
217
218 @Override
219 public String toString() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530220 return MoreObjects.toStringHelper(getClass())
221 .add("pkgInfo", pkgInfo)
222 .add("classInfo", classInfo).toString();
223 }
224
225 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530226 * Checks that there is no 2 objects with the same class name.
Vinod Kumar S38046502016-03-23 15:30:27 +0530227 *
228 * @param other compared import info.
229 */
230 @Override
231 public int compareTo(JavaQualifiedTypeInfo other) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530232 return getClassInfo().compareTo(other.getClassInfo());
233 }
234
235}