blob: 83a2999e42091201e60c3186bdf4e9b3c6c46747 [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.io.IOException;
20
21import org.onosproject.yangutils.datamodel.YangNode;
janani be18b5342016-07-13 21:06:41 +053022import org.onosproject.yangutils.datamodel.YangTypeDef;
23import org.onosproject.yangutils.datamodel.utils.builtindatatype.YangDataTypes;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053024import org.onosproject.yangutils.translator.exception.TranslatorException;
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053025import org.onosproject.yangutils.utils.io.impl.YangPluginConfig;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053026
27import static org.onosproject.yangutils.translator.tojava.TraversalType.CHILD;
28import static org.onosproject.yangutils.translator.tojava.TraversalType.PARENT;
29import static org.onosproject.yangutils.translator.tojava.TraversalType.ROOT;
30import static org.onosproject.yangutils.translator.tojava.TraversalType.SIBILING;
Vinod Kumar S38046502016-03-23 15:30:27 +053031
32/**
Vidyashree Rama74453712016-04-18 12:29:39 +053033 * Representation of java code generator based on application schema.
Vinod Kumar S38046502016-03-23 15:30:27 +053034 */
35public final class JavaCodeGeneratorUtil {
36
37 /**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053038 * Current YANG node.
39 */
40 private static YangNode curNode;
41
42 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053043 * Creates a java code generator utility object.
Vinod Kumar S38046502016-03-23 15:30:27 +053044 */
45 private JavaCodeGeneratorUtil() {
46 }
47
48 /**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053049 * Returns current YANG node.
50 *
51 * @return current YANG node
52 */
53 public static YangNode getCurNode() {
54 return curNode;
55 }
56
57 /**
58 * Sets current YANG node.
59 *
60 * @param node current YANG node
61 */
Bharat saraswal6ef0b762016-04-05 12:45:45 +053062 public static void setCurNode(YangNode node) {
63 curNode = node;
64 }
65
66 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053067 * Generates Java code files corresponding to the YANG schema.
Vinod Kumar S38046502016-03-23 15:30:27 +053068 *
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053069 * @param rootNode root node of the data model tree
janani bde4ffab2016-04-15 16:18:30 +053070 * @param yangPlugin YANG plugin config
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053071 * @throws TranslatorException when fails to generate java code file the current
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053072 * node
Vinod Kumar S38046502016-03-23 15:30:27 +053073 */
Bharat saraswal33dfa012016-05-17 19:59:16 +053074 public static void generateJavaCode(YangNode rootNode, YangPluginConfig yangPlugin)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053075 throws TranslatorException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053076
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053077 YangNode codeGenNode = rootNode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053078 TraversalType curTraversal = ROOT;
Vinod Kumar S38046502016-03-23 15:30:27 +053079
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053080 while (codeGenNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053081 if (curTraversal != PARENT) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053082 if (!(codeGenNode instanceof JavaCodeGenerator)) {
83 throw new TranslatorException("Unsupported node to generate code");
84 }
janani be18b5342016-07-13 21:06:41 +053085 if (codeGenNode instanceof YangTypeDef) {
86 YangTypeDef typeDef = (YangTypeDef) codeGenNode;
87 if (typeDef.getTypeDefBaseType().getDataType() == YangDataTypes.LEAFREF
88 || typeDef.getTypeDefBaseType().getDataType() == YangDataTypes.IDENTITYREF) {
89 if (codeGenNode.getNextSibling() != null) {
90 curTraversal = SIBILING;
91 codeGenNode = codeGenNode.getNextSibling();
92 } else {
93 curTraversal = PARENT;
94 codeGenNode = codeGenNode.getParent();
95 }
96 continue;
97 }
98 }
Bharat saraswalcad0e652016-05-26 23:48:38 +053099 setCurNode(codeGenNode);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530100 try {
101 generateCodeEntry(codeGenNode, yangPlugin);
102 } catch (Exception e) {
103 throw new TranslatorException(e.getMessage());
104 }
105
Vinod Kumar S38046502016-03-23 15:30:27 +0530106 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530107 if (curTraversal != PARENT && codeGenNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530108 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530109 codeGenNode = codeGenNode.getChild();
110 } else if (codeGenNode.getNextSibling() != null) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530111 try {
112 generateCodeExit(codeGenNode);
113 } catch (Exception e) {
114 throw new TranslatorException(e.getMessage());
115 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530116 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530117 codeGenNode = codeGenNode.getNextSibling();
Vinod Kumar S38046502016-03-23 15:30:27 +0530118 } else {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530119 try {
120 generateCodeExit(codeGenNode);
121 } catch (Exception e) {
122 throw new TranslatorException(e.getMessage());
123 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530124 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530125 codeGenNode = codeGenNode.getParent();
Vinod Kumar S38046502016-03-23 15:30:27 +0530126 }
127 }
128 }
129
130 /**
131 * Generates the current nodes code snippet.
132 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530133 * @param codeGenNode current data model node for which the code needs to be
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530134 * generated
135 * @param yangPlugin YANG plugin config
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530136 * @throws TranslatorException when fails to generate java code file the current
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530137 * node
Vinod Kumar S38046502016-03-23 15:30:27 +0530138 */
Bharat saraswal33dfa012016-05-17 19:59:16 +0530139 private static void generateCodeEntry(YangNode codeGenNode, YangPluginConfig yangPlugin)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530140 throws TranslatorException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530141
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530142 if (codeGenNode instanceof JavaCodeGenerator) {
143 ((JavaCodeGenerator) codeGenNode).generateCodeEntry(yangPlugin);
Vinod Kumar S38046502016-03-23 15:30:27 +0530144 } else {
Bharat saraswal33dfa012016-05-17 19:59:16 +0530145 throw new TranslatorException(
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530146 "Generated data model node cannot be translated to target language code");
Vinod Kumar S38046502016-03-23 15:30:27 +0530147 }
148 }
149
150 /**
151 * Generates the current nodes code target code from the snippet.
152 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530153 * @param codeGenNode current data model node for which the code needs to be
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530154 * generated
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530155 * @throws TranslatorException when fails to generate java code file the current
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530156 * node
Vinod Kumar S38046502016-03-23 15:30:27 +0530157 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530158 private static void generateCodeExit(YangNode codeGenNode)
159 throws TranslatorException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530160
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530161 if (codeGenNode instanceof JavaCodeGenerator) {
162 ((JavaCodeGenerator) codeGenNode).generateCodeExit();
Vinod Kumar S38046502016-03-23 15:30:27 +0530163 } else {
Bharat saraswal33dfa012016-05-17 19:59:16 +0530164 throw new TranslatorException(
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530165 "Generated data model node cannot be translated to target language code");
166 }
167 }
168
169 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530170 * Free other YANG nodes of data-model tree when error occurs while file
171 * generation of current node.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530172 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530173 private static void freeRestResources() {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530174
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530175 YangNode freedNode = getCurNode();
Bharat saraswal33dfa012016-05-17 19:59:16 +0530176 if (getCurNode() != null) {
177 YangNode tempNode = freedNode;
178 TraversalType curTraversal = ROOT;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530179
Bharat saraswal33dfa012016-05-17 19:59:16 +0530180 while (freedNode != tempNode.getParent()) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530181
Bharat saraswal33dfa012016-05-17 19:59:16 +0530182 if (curTraversal != PARENT && freedNode.getChild() != null) {
183 curTraversal = CHILD;
184 freedNode = freedNode.getChild();
185 } else if (freedNode.getNextSibling() != null) {
186 curTraversal = SIBILING;
187 if (freedNode != tempNode) {
188 free(freedNode);
189 }
190 freedNode = freedNode.getNextSibling();
191 } else {
192 curTraversal = PARENT;
193 if (freedNode != tempNode) {
194 free(freedNode);
195 }
196 freedNode = freedNode.getParent();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530197 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530198 }
199 }
200 }
201
202 /**
203 * Free the current node.
204 *
205 * @param node YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530206 */
Vidyashree Rama74453712016-04-18 12:29:39 +0530207 private static void free(YangNode node) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530208
209 YangNode parent = node.getParent();
210 parent.setChild(null);
Bharat saraswald9822e92016-04-05 15:13:44 +0530211
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530212 if (node.getNextSibling() != null) {
213 parent.setChild(node.getNextSibling());
214 } else if (node.getPreviousSibling() != null) {
215 parent.setChild(node.getPreviousSibling());
216 }
217 node = null;
218 }
219
220 /**
221 * Delete Java code files corresponding to the YANG schema.
222 *
223 * @param rootNode root node of data-model tree
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530224 * @throws IOException when fails to delete java code file the current node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530225 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530226 public static void translatorErrorHandler(YangNode rootNode)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530227 throws IOException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530228
Bharat saraswal33dfa012016-05-17 19:59:16 +0530229 if (rootNode != null) {
230 /**
231 * Free other resources where translator has failed.
232 */
233 freeRestResources();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530234
Bharat saraswal33dfa012016-05-17 19:59:16 +0530235 /**
236 * Start removing all open files.
237 */
238 YangNode tempNode = rootNode;
239 setCurNode(tempNode.getChild());
240 TraversalType curTraversal = ROOT;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530241
Bharat saraswal33dfa012016-05-17 19:59:16 +0530242 while (tempNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530243
Bharat saraswal33dfa012016-05-17 19:59:16 +0530244 if (curTraversal != PARENT) {
245 close(tempNode);
246 }
247 if (curTraversal != PARENT && tempNode.getChild() != null) {
248 curTraversal = CHILD;
249 tempNode = tempNode.getChild();
250 } else if (tempNode.getNextSibling() != null) {
251 curTraversal = SIBILING;
252 tempNode = tempNode.getNextSibling();
253 } else {
254 curTraversal = PARENT;
255 tempNode = tempNode.getParent();
256 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530257 }
Bharat saraswal33dfa012016-05-17 19:59:16 +0530258
259 freeRestResources();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530260 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530261 }
262
263 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530264 * Closes all the current open file handles of node and delete all generated
265 * files.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530266 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530267 * @param node current YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530268 * @throws IOException when fails to do IO operations
269 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530270 private static void close(YangNode node)
271 throws IOException {
Vidyashree Rama210c01d2016-05-20 16:29:25 +0530272 if (node instanceof JavaCodeGenerator && ((TempJavaCodeFragmentFilesContainer) node)
273 .getTempJavaCodeFragmentFiles() != null) {
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530274 ((TempJavaCodeFragmentFilesContainer) node).getTempJavaCodeFragmentFiles().freeTemporaryResources(true);
Vinod Kumar S38046502016-03-23 15:30:27 +0530275 }
276 }
277}