blob: f2b8198ac8ae0a6198a6d0a3ec5928fb8b1127eb [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
Bharat saraswal96dfef02016-06-16 00:29:12 +053019import java.io.Serializable;
Vinod Kumar S38046502016-03-23 15:30:27 +053020import java.util.Objects;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053021
Vinod Kumar S38046502016-03-23 15:30:27 +053022import org.onosproject.yangutils.datamodel.YangNode;
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053023import org.onosproject.yangutils.datamodel.javadatamodel.JavaQualifiedTypeInfo;
24import org.onosproject.yangutils.datamodel.javadatamodel.YangToJavaNamingConflictUtil;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053025import org.onosproject.yangutils.translator.exception.TranslatorException;
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053026import org.onosproject.yangutils.translator.tojava.javamodel.AttributesJavaDataType;
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053027import org.onosproject.yangutils.translator.tojava.javamodel.JavaLeafInfoContainer;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053028
Vinod Kumar S38046502016-03-23 15:30:27 +053029import com.google.common.base.MoreObjects;
30
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053031import static org.onosproject.yangutils.translator.tojava.javamodel.AttributesJavaDataType.getJavaImportClass;
32import static org.onosproject.yangutils.translator.tojava.javamodel.AttributesJavaDataType.getJavaImportPackage;
Gaurav Agrawal338735b2016-04-18 18:53:11 +053033
Vinod Kumar S38046502016-03-23 15:30:27 +053034/**
Bharat saraswald9822e92016-04-05 15:13:44 +053035 * Represents the information about individual imports in the generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053036 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053037public class JavaQualifiedTypeInfoTranslator extends JavaQualifiedTypeInfo
38 implements Comparable<JavaQualifiedTypeInfoTranslator>, Serializable {
Bharat saraswal96dfef02016-06-16 00:29:12 +053039
40 private static final long serialVersionUID = 806201634L;
41
Vinod Kumar S38046502016-03-23 15:30:27 +053042 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053043 * Creates a java qualified type info object.
Vinod Kumar S38046502016-03-23 15:30:27 +053044 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053045 public JavaQualifiedTypeInfoTranslator() {
Vinod Kumar S38046502016-03-23 15:30:27 +053046 }
47
48 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053049 * Returns the imported package info.
Vinod Kumar S38046502016-03-23 15:30:27 +053050 *
51 * @return the imported package info
52 */
53 public String getPkgInfo() {
Vinod Kumar S38046502016-03-23 15:30:27 +053054 return pkgInfo;
55 }
56
57 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053058 * Sets the imported package info.
Vinod Kumar S38046502016-03-23 15:30:27 +053059 *
60 * @param pkgInfo the imported package info
61 */
62 public void setPkgInfo(String pkgInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +053063 this.pkgInfo = pkgInfo;
64 }
65
66 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053067 * Returns the imported class/interface info.
Vinod Kumar S38046502016-03-23 15:30:27 +053068 *
69 * @return the imported class/interface info
70 */
71 public String getClassInfo() {
Vinod Kumar S38046502016-03-23 15:30:27 +053072 return classInfo;
73 }
74
75 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053076 * Sets the imported class/interface info.
Vinod Kumar S38046502016-03-23 15:30:27 +053077 *
78 * @param classInfo the imported class/interface info
79 */
80 public void setClassInfo(String classInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +053081 this.classInfo = classInfo;
82 }
83
84 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053085 * Updates the leaf's java information.
Vinod Kumar S38046502016-03-23 15:30:27 +053086 *
Bharat saraswal33dfa012016-05-17 19:59:16 +053087 * @param leaf leaf whose java information is being updated
Vinod Kumar S38046502016-03-23 15:30:27 +053088 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053089 public static void updateLeavesJavaQualifiedInfo(JavaLeafInfoContainer leaf) {
Vinod Kumar S38046502016-03-23 15:30:27 +053090
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053091 JavaQualifiedTypeInfoTranslator importInfo = leaf.getJavaQualifiedInfo();
Vinod Kumar S38046502016-03-23 15:30:27 +053092
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053093 if (leaf.getDataType() == null) {
94 throw new TranslatorException("missing data type of leaf " + leaf.getName());
Vinod Kumar S38046502016-03-23 15:30:27 +053095 }
96
97 /*
98 * Current leaves holder is adding a leaf info as a attribute to the
99 * current class.
100 */
janani bdd1314f2016-05-19 17:39:50 +0530101 String className = AttributesJavaDataType.getJavaImportClass(leaf.getDataType(), leaf.isLeafList(),
102 leaf.getConflictResolveConfig());
Vinod Kumar S38046502016-03-23 15:30:27 +0530103 if (className != null) {
104 /*
105 * Corresponding to the attribute type a class needs to be imported,
106 * since it can be a derived type or a usage of wrapper classes.
107 */
108 importInfo.setClassInfo(className);
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530109 String classPkg = AttributesJavaDataType.getJavaImportPackage(leaf.getDataType(),
Bharat saraswalcad0e652016-05-26 23:48:38 +0530110 leaf.isLeafList(), leaf.getConflictResolveConfig());
Vinod Kumar S38046502016-03-23 15:30:27 +0530111 if (classPkg == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530112 throw new TranslatorException("import package cannot be null when the class is used");
Vinod Kumar S38046502016-03-23 15:30:27 +0530113 }
114 importInfo.setPkgInfo(classPkg);
115 } else {
116 /*
117 * The attribute does not need a class to be imported, for example
118 * built in java types.
119 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530120 String dataTypeName = AttributesJavaDataType.getJavaDataType(leaf.getDataType());
Vinod Kumar S38046502016-03-23 15:30:27 +0530121 if (dataTypeName == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530122 throw new TranslatorException("not supported data type");
Vinod Kumar S38046502016-03-23 15:30:27 +0530123 }
124 importInfo.setClassInfo(dataTypeName);
125 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530126 }
127
128 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530129 * Returns the import info for an attribute, which needs to be used for code
Vinod Kumar S38046502016-03-23 15:30:27 +0530130 * generation for import or for qualified access.
131 *
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530132 * @param curNode current data model node for which the java file is being
133 * generated
Vinod Kumar S38046502016-03-23 15:30:27 +0530134 * @param attributeName name of the attribute being added, it will used in
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530135 * import info for child class
Vinod Kumar S38046502016-03-23 15:30:27 +0530136 * @return return the import info for this attribute
137 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530138 public static JavaQualifiedTypeInfoTranslator getQualifiedTypeInfoOfCurNode(YangNode curNode,
139 String attributeName) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530140
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530141 JavaQualifiedTypeInfoTranslator importInfo = new JavaQualifiedTypeInfoTranslator();
Vinod Kumar S38046502016-03-23 15:30:27 +0530142
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530143 if (!(curNode instanceof JavaFileInfoContainer)) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530144 throw new TranslatorException("missing java file information to get the package details "
Vinod Kumar S38046502016-03-23 15:30:27 +0530145 + "of attribute corresponding to child node");
146 }
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530147
Vinod Kumar S38046502016-03-23 15:30:27 +0530148 importInfo.setClassInfo(attributeName);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530149 importInfo.setPkgInfo(((JavaFileInfoContainer) curNode)
150 .getJavaFileInfo().getPackage());
Vinod Kumar S38046502016-03-23 15:30:27 +0530151
152 return importInfo;
153 }
154
155 /**
Gaurav Agrawal56527662016-04-20 15:49:17 +0530156 * Returns the java qualified type information for the wrapper classes.
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530157 *
158 * @param referredTypesAttrInfo attribute of referred type
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530159 * @param conflictResolver plugin configurations
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530160 * @return return the import info for this attribute
161 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530162 static JavaQualifiedTypeInfoTranslator getQualifiedInfoOfFromString(JavaAttributeInfo referredTypesAttrInfo,
163 YangToJavaNamingConflictUtil conflictResolver) {
Bharat saraswalc0e04842016-05-12 13:16:57 +0530164
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530165 /*
166 * Get the java qualified type information for the wrapper classes and
167 * set it in new java attribute information.
168 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530169 JavaQualifiedTypeInfoTranslator qualifiedInfoOfFromString = new JavaQualifiedTypeInfoTranslator();
Bharat saraswal33dfa012016-05-17 19:59:16 +0530170
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530171 qualifiedInfoOfFromString.setClassInfo(
janani bdd1314f2016-05-19 17:39:50 +0530172 getJavaImportClass(referredTypesAttrInfo.getAttributeType(), true, conflictResolver));
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530173 qualifiedInfoOfFromString.setPkgInfo(
Bharat saraswalcad0e652016-05-26 23:48:38 +0530174 getJavaImportPackage(referredTypesAttrInfo.getAttributeType(), true, conflictResolver));
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530175 return qualifiedInfoOfFromString;
176 }
177
Vinod Kumar S38046502016-03-23 15:30:27 +0530178 @Override
179 public int hashCode() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530180 return Objects.hash(pkgInfo, classInfo);
181 }
182
183 @Override
184 public boolean equals(Object obj) {
185
186 if (this == obj) {
187 return true;
188 }
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530189 if (obj instanceof JavaQualifiedTypeInfoTranslator) {
190 JavaQualifiedTypeInfoTranslator other = (JavaQualifiedTypeInfoTranslator) obj;
Vinod Kumar S38046502016-03-23 15:30:27 +0530191 return Objects.equals(pkgInfo, other.pkgInfo) &&
192 Objects.equals(classInfo, other.classInfo);
193 }
194 return false;
195 }
196
197 /**
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530198 * Checks if the import info matches.
Vinod Kumar S38046502016-03-23 15:30:27 +0530199 *
200 * @param importInfo matched import
201 * @return if equal or not
202 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530203 public boolean exactMatch(JavaQualifiedTypeInfoTranslator importInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530204 return equals(importInfo)
205 && Objects.equals(pkgInfo, importInfo.getPkgInfo())
206 && Objects.equals(classInfo, importInfo.getClassInfo());
207 }
208
209 @Override
210 public String toString() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530211 return MoreObjects.toStringHelper(getClass())
212 .add("pkgInfo", pkgInfo)
213 .add("classInfo", classInfo).toString();
214 }
215
216 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530217 * Checks that there is no 2 objects with the same class name.
Vinod Kumar S38046502016-03-23 15:30:27 +0530218 *
219 * @param other compared import info.
220 */
221 @Override
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +0530222 public int compareTo(JavaQualifiedTypeInfoTranslator other) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530223 return getClassInfo().compareTo(other.getClassInfo());
224 }
225
226}