blob: 52df25918917c6ddd59268ed5a333aafd432edb9 [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 */
Bharat saraswal33dfa012016-05-17 19:59:16 +0530106 String className =
107 AttributesJavaDataType.getJavaImportClass(leaf.getDataType(), leaf.isLeafList(),
108 leaf.getConflictResolveConfig());
Vinod Kumar S38046502016-03-23 15:30:27 +0530109 if (className != null) {
110 /*
111 * Corresponding to the attribute type a class needs to be imported,
112 * since it can be a derived type or a usage of wrapper classes.
113 */
114 importInfo.setClassInfo(className);
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530115 String classPkg = AttributesJavaDataType.getJavaImportPackage(leaf.getDataType(),
116 leaf.isLeafList(), className);
Vinod Kumar S38046502016-03-23 15:30:27 +0530117 if (classPkg == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530118 throw new TranslatorException("import package cannot be null when the class is used");
Vinod Kumar S38046502016-03-23 15:30:27 +0530119 }
120 importInfo.setPkgInfo(classPkg);
121 } else {
122 /*
123 * The attribute does not need a class to be imported, for example
124 * built in java types.
125 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530126 String dataTypeName = AttributesJavaDataType.getJavaDataType(leaf.getDataType());
Vinod Kumar S38046502016-03-23 15:30:27 +0530127 if (dataTypeName == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530128 throw new TranslatorException("not supported data type");
Vinod Kumar S38046502016-03-23 15:30:27 +0530129 }
130 importInfo.setClassInfo(dataTypeName);
131 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530132 }
133
134 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530135 * Returns the import info for an attribute, which needs to be used for code
Vinod Kumar S38046502016-03-23 15:30:27 +0530136 * generation for import or for qualified access.
137 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530138 * @param curNode current data model node for which the java file is being
139 * generated
Vinod Kumar S38046502016-03-23 15:30:27 +0530140 * @param attributeName name of the attribute being added, it will used in
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530141 * import info for child class
Vinod Kumar S38046502016-03-23 15:30:27 +0530142 * @return return the import info for this attribute
143 */
144 public static JavaQualifiedTypeInfo getQualifiedTypeInfoOfCurNode(YangNode curNode,
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530145 String attributeName) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530146
147 JavaQualifiedTypeInfo importInfo = new JavaQualifiedTypeInfo();
148
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530149 if (!(curNode instanceof JavaFileInfoContainer)) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530150 throw new TranslatorException("missing java file information to get the package details "
Vinod Kumar S38046502016-03-23 15:30:27 +0530151 + "of attribute corresponding to child node");
152 }
153 /*
154 * The scenario when we need to add the child class as an attribute in
155 * the current class. The child class is in the package of the current
156 * classes package with current classes name.
157 */
158 importInfo.setClassInfo(attributeName);
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530159 importInfo.setPkgInfo((((JavaFileInfoContainer) curNode).getJavaFileInfo().getPackage() + "."
160 + ((JavaFileInfoContainer) curNode).getJavaFileInfo().getJavaName()).toLowerCase());
Vinod Kumar S38046502016-03-23 15:30:27 +0530161
162 return importInfo;
163 }
164
165 /**
Gaurav Agrawal56527662016-04-20 15:49:17 +0530166 * Returns the java qualified type information for the wrapper classes.
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530167 *
168 * @param referredTypesAttrInfo attribute of referred type
Bharat saraswal33dfa012016-05-17 19:59:16 +0530169 * @param confilictResolver plugin configurations
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530170 * @return return the import info for this attribute
171 */
Bharat saraswal33dfa012016-05-17 19:59:16 +0530172 public static JavaQualifiedTypeInfo getQualifiedInfoOfFromString(JavaAttributeInfo referredTypesAttrInfo,
173 YangToJavaNamingConflictUtil confilictResolver) {
Bharat saraswalc0e04842016-05-12 13:16:57 +0530174
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530175 /*
176 * Get the java qualified type information for the wrapper classes and
177 * set it in new java attribute information.
178 */
179 JavaQualifiedTypeInfo qualifiedInfoOfFromString = new JavaQualifiedTypeInfo();
Bharat saraswal33dfa012016-05-17 19:59:16 +0530180
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530181 qualifiedInfoOfFromString.setClassInfo(
Bharat saraswal33dfa012016-05-17 19:59:16 +0530182 getJavaImportClass(referredTypesAttrInfo.getAttributeType(), true, confilictResolver));
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530183 qualifiedInfoOfFromString.setPkgInfo(
184 getJavaImportPackage(referredTypesAttrInfo.getAttributeType(), true, null));
185 return qualifiedInfoOfFromString;
186 }
187
Vinod Kumar S38046502016-03-23 15:30:27 +0530188 @Override
189 public int hashCode() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530190 return Objects.hash(pkgInfo, classInfo);
191 }
192
193 @Override
194 public boolean equals(Object obj) {
195
196 if (this == obj) {
197 return true;
198 }
199 if (obj instanceof JavaQualifiedTypeInfo) {
200 JavaQualifiedTypeInfo other = (JavaQualifiedTypeInfo) obj;
201 return Objects.equals(pkgInfo, other.pkgInfo) &&
202 Objects.equals(classInfo, other.classInfo);
203 }
204 return false;
205 }
206
207 /**
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530208 * Checks if the import info matches.
Vinod Kumar S38046502016-03-23 15:30:27 +0530209 *
210 * @param importInfo matched import
211 * @return if equal or not
212 */
213 public boolean exactMatch(JavaQualifiedTypeInfo importInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530214 return equals(importInfo)
215 && Objects.equals(pkgInfo, importInfo.getPkgInfo())
216 && Objects.equals(classInfo, importInfo.getClassInfo());
217 }
218
219 @Override
220 public String toString() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530221 return MoreObjects.toStringHelper(getClass())
222 .add("pkgInfo", pkgInfo)
223 .add("classInfo", classInfo).toString();
224 }
225
226 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530227 * Checks that there is no 2 objects with the same class name.
Vinod Kumar S38046502016-03-23 15:30:27 +0530228 *
229 * @param other compared import info.
230 */
231 @Override
232 public int compareTo(JavaQualifiedTypeInfo other) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530233 return getClassInfo().compareTo(other.getClassInfo());
234 }
235
236}