blob: a6eb9d71321fd965342bb02c7957c8d4bd834f0f [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;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053022import org.onosproject.yangutils.translator.exception.TranslatorException;
janani bde4ffab2016-04-15 16:18:30 +053023import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053024
25import static org.onosproject.yangutils.translator.tojava.TraversalType.CHILD;
26import static org.onosproject.yangutils.translator.tojava.TraversalType.PARENT;
27import static org.onosproject.yangutils.translator.tojava.TraversalType.ROOT;
28import static org.onosproject.yangutils.translator.tojava.TraversalType.SIBILING;
Vinod Kumar S38046502016-03-23 15:30:27 +053029
30/**
Vidyashree Rama74453712016-04-18 12:29:39 +053031 * Representation of java code generator based on application schema.
Vinod Kumar S38046502016-03-23 15:30:27 +053032 */
33public final class JavaCodeGeneratorUtil {
34
35 /**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053036 * Current YANG node.
37 */
38 private static YangNode curNode;
39
40 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053041 * Creates a java code generator utility object.
Vinod Kumar S38046502016-03-23 15:30:27 +053042 */
43 private JavaCodeGeneratorUtil() {
44 }
45
46 /**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053047 * Returns current YANG node.
48 *
49 * @return current YANG node
50 */
51 public static YangNode getCurNode() {
52 return curNode;
53 }
54
55 /**
56 * Sets current YANG node.
57 *
58 * @param node current YANG node
59 */
Bharat saraswal6ef0b762016-04-05 12:45:45 +053060 public static void setCurNode(YangNode node) {
61 curNode = node;
62 }
63
64 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053065 * Generates Java code files corresponding to the YANG schema.
Vinod Kumar S38046502016-03-23 15:30:27 +053066 *
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053067 * @param rootNode root node of the data model tree
janani bde4ffab2016-04-15 16:18:30 +053068 * @param yangPlugin YANG plugin config
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053069 * @throws TranslatorException when fails to generate java code file the current
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053070 * node
Vinod Kumar S38046502016-03-23 15:30:27 +053071 */
Bharat saraswal33dfa012016-05-17 19:59:16 +053072 public static void generateJavaCode(YangNode rootNode, YangPluginConfig yangPlugin)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053073 throws TranslatorException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053074
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053075 YangNode codeGenNode = rootNode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053076 TraversalType curTraversal = ROOT;
Vinod Kumar S38046502016-03-23 15:30:27 +053077
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053078 while (codeGenNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053079 if (curTraversal != PARENT) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053080 if (!(codeGenNode instanceof JavaCodeGenerator)) {
81 throw new TranslatorException("Unsupported node to generate code");
82 }
83
Bharat saraswalcad0e652016-05-26 23:48:38 +053084 setCurNode(codeGenNode);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053085 try {
86 generateCodeEntry(codeGenNode, yangPlugin);
87 } catch (Exception e) {
88 throw new TranslatorException(e.getMessage());
89 }
90
Vinod Kumar S38046502016-03-23 15:30:27 +053091 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053092 if (curTraversal != PARENT && codeGenNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053093 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053094 codeGenNode = codeGenNode.getChild();
95 } else if (codeGenNode.getNextSibling() != null) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053096 try {
97 generateCodeExit(codeGenNode);
98 } catch (Exception e) {
99 throw new TranslatorException(e.getMessage());
100 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530101 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530102 codeGenNode = codeGenNode.getNextSibling();
Vinod Kumar S38046502016-03-23 15:30:27 +0530103 } else {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530104 try {
105 generateCodeExit(codeGenNode);
106 } catch (Exception e) {
107 throw new TranslatorException(e.getMessage());
108 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530109 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530110 codeGenNode = codeGenNode.getParent();
Vinod Kumar S38046502016-03-23 15:30:27 +0530111 }
112 }
113 }
114
115 /**
116 * Generates the current nodes code snippet.
117 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530118 * @param codeGenNode current data model node for which the code needs to be
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530119 * generated
120 * @param yangPlugin YANG plugin config
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530121 * @throws TranslatorException when fails to generate java code file the current
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530122 * node
Vinod Kumar S38046502016-03-23 15:30:27 +0530123 */
Bharat saraswal33dfa012016-05-17 19:59:16 +0530124 private static void generateCodeEntry(YangNode codeGenNode, YangPluginConfig yangPlugin)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530125 throws TranslatorException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530126
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530127 if (codeGenNode instanceof JavaCodeGenerator) {
128 ((JavaCodeGenerator) codeGenNode).generateCodeEntry(yangPlugin);
Vinod Kumar S38046502016-03-23 15:30:27 +0530129 } else {
Bharat saraswal33dfa012016-05-17 19:59:16 +0530130 throw new TranslatorException(
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530131 "Generated data model node cannot be translated to target language code");
Vinod Kumar S38046502016-03-23 15:30:27 +0530132 }
133 }
134
135 /**
136 * Generates the current nodes code target code from the snippet.
137 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530138 * @param codeGenNode current data model node for which the code needs to be
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530139 * generated
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530140 * @throws TranslatorException when fails to generate java code file the current
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530141 * node
Vinod Kumar S38046502016-03-23 15:30:27 +0530142 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530143 private static void generateCodeExit(YangNode codeGenNode)
144 throws TranslatorException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530145
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530146 if (codeGenNode instanceof JavaCodeGenerator) {
147 ((JavaCodeGenerator) codeGenNode).generateCodeExit();
Vinod Kumar S38046502016-03-23 15:30:27 +0530148 } else {
Bharat saraswal33dfa012016-05-17 19:59:16 +0530149 throw new TranslatorException(
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530150 "Generated data model node cannot be translated to target language code");
151 }
152 }
153
154 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530155 * Free other YANG nodes of data-model tree when error occurs while file
156 * generation of current node.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530157 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530158 private static void freeRestResources() {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530159
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530160 YangNode freedNode = getCurNode();
Bharat saraswal33dfa012016-05-17 19:59:16 +0530161 if (getCurNode() != null) {
162 YangNode tempNode = freedNode;
163 TraversalType curTraversal = ROOT;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530164
Bharat saraswal33dfa012016-05-17 19:59:16 +0530165 while (freedNode != tempNode.getParent()) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530166
Bharat saraswal33dfa012016-05-17 19:59:16 +0530167 if (curTraversal != PARENT && freedNode.getChild() != null) {
168 curTraversal = CHILD;
169 freedNode = freedNode.getChild();
170 } else if (freedNode.getNextSibling() != null) {
171 curTraversal = SIBILING;
172 if (freedNode != tempNode) {
173 free(freedNode);
174 }
175 freedNode = freedNode.getNextSibling();
176 } else {
177 curTraversal = PARENT;
178 if (freedNode != tempNode) {
179 free(freedNode);
180 }
181 freedNode = freedNode.getParent();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530182 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530183 }
184 }
185 }
186
187 /**
188 * Free the current node.
189 *
190 * @param node YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530191 */
Vidyashree Rama74453712016-04-18 12:29:39 +0530192 private static void free(YangNode node) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530193
194 YangNode parent = node.getParent();
195 parent.setChild(null);
Bharat saraswald9822e92016-04-05 15:13:44 +0530196
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530197 if (node.getNextSibling() != null) {
198 parent.setChild(node.getNextSibling());
199 } else if (node.getPreviousSibling() != null) {
200 parent.setChild(node.getPreviousSibling());
201 }
202 node = null;
203 }
204
205 /**
206 * Delete Java code files corresponding to the YANG schema.
207 *
208 * @param rootNode root node of data-model tree
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530209 * @throws IOException when fails to delete java code file the current node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530210 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530211 public static void translatorErrorHandler(YangNode rootNode)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530212 throws IOException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530213
Bharat saraswal33dfa012016-05-17 19:59:16 +0530214 if (rootNode != null) {
215 /**
216 * Free other resources where translator has failed.
217 */
218 freeRestResources();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530219
Bharat saraswal33dfa012016-05-17 19:59:16 +0530220 /**
221 * Start removing all open files.
222 */
223 YangNode tempNode = rootNode;
224 setCurNode(tempNode.getChild());
225 TraversalType curTraversal = ROOT;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530226
Bharat saraswal33dfa012016-05-17 19:59:16 +0530227 while (tempNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530228
Bharat saraswal33dfa012016-05-17 19:59:16 +0530229 if (curTraversal != PARENT) {
230 close(tempNode);
231 }
232 if (curTraversal != PARENT && tempNode.getChild() != null) {
233 curTraversal = CHILD;
234 tempNode = tempNode.getChild();
235 } else if (tempNode.getNextSibling() != null) {
236 curTraversal = SIBILING;
237 tempNode = tempNode.getNextSibling();
238 } else {
239 curTraversal = PARENT;
240 tempNode = tempNode.getParent();
241 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530242 }
Bharat saraswal33dfa012016-05-17 19:59:16 +0530243
244 freeRestResources();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530245 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530246 }
247
248 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530249 * Closes all the current open file handles of node and delete all generated
250 * files.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530251 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530252 * @param node current YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530253 * @throws IOException when fails to do IO operations
254 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530255 private static void close(YangNode node)
256 throws IOException {
Vidyashree Rama210c01d2016-05-20 16:29:25 +0530257 if (node instanceof JavaCodeGenerator && ((TempJavaCodeFragmentFilesContainer) node)
258 .getTempJavaCodeFragmentFiles() != null) {
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530259 ((TempJavaCodeFragmentFilesContainer) node).getTempJavaCodeFragmentFiles().freeTemporaryResources(true);
Vinod Kumar S38046502016-03-23 15:30:27 +0530260 }
261 }
262}