blob: 6ec67e48b654b55ee7c3a6f85d3fdff43b5efb28 [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 *
67 * @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 * @param fileName YANG file name
70 * @throws TranslatorException when fails to generate java code file the current
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053071 * node
Vinod Kumar S38046502016-03-23 15:30:27 +053072 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053073 public static void generateJavaCode(YangNode rootNode, YangPluginConfig yangPlugin, String fileName)
74 throws TranslatorException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053075
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053076 YangNode codeGenNode = rootNode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053077 TraversalType curTraversal = ROOT;
Vinod Kumar S38046502016-03-23 15:30:27 +053078
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053079 while (codeGenNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053080 if (curTraversal != PARENT) {
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +053081 if (codeGenNode instanceof JavaCodeGenerator) {
82 setCurNode(codeGenNode);
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053083 generateCodeEntry(codeGenNode, yangPlugin, fileName);
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +053084 } else {
85 /*
86 * For grouping and uses, there is no code generation, skip the generation for the child.
87 */
88 if (codeGenNode.getNextSibling() != null) {
89 curTraversal = SIBILING;
90 codeGenNode = codeGenNode.getNextSibling();
91 } else {
92 curTraversal = PARENT;
93 codeGenNode = codeGenNode.getParent();
94 }
95 continue;
96 }
97
Vinod Kumar S38046502016-03-23 15:30:27 +053098 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053099 if (curTraversal != PARENT && codeGenNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530100 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530101 codeGenNode = codeGenNode.getChild();
102 } else if (codeGenNode.getNextSibling() != null) {
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530103 generateCodeExit(codeGenNode, fileName);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530104 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530105 codeGenNode = codeGenNode.getNextSibling();
Vinod Kumar S38046502016-03-23 15:30:27 +0530106 } else {
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530107 generateCodeExit(codeGenNode, fileName);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530108 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530109 codeGenNode = codeGenNode.getParent();
Vinod Kumar S38046502016-03-23 15:30:27 +0530110 }
111 }
112 }
113
114 /**
115 * Generates the current nodes code snippet.
116 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530117 * @param codeGenNode current data model node for which the code needs to be
118 * generated
janani bde4ffab2016-04-15 16:18:30 +0530119 * @param yangPlugin YANG plugin config
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530120 * @param fileName YANG file name
121 * @throws TranslatorException when fails to generate java code file the current
122 * node
Vinod Kumar S38046502016-03-23 15:30:27 +0530123 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530124 private static void generateCodeEntry(YangNode codeGenNode, YangPluginConfig yangPlugin, String fileName)
125 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 saraswalab4c6ba2016-05-17 14:19:38 +0530130 TranslatorException ex = new TranslatorException(
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530131 "Generated data model node cannot be translated to target language code");
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530132 ex.setFileName(fileName);
133 throw ex;
Vinod Kumar S38046502016-03-23 15:30:27 +0530134 }
135 }
136
137 /**
138 * Generates the current nodes code target code from the snippet.
139 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530140 * @param codeGenNode current data model node for which the code needs to be
141 * generated
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530142 * @param fileName YANG file name
143 * @throws TranslatorException when fails to generate java code file the current
144 * node
Vinod Kumar S38046502016-03-23 15:30:27 +0530145 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530146 private static void generateCodeExit(YangNode codeGenNode, String fileName) throws TranslatorException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530147
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530148 if (codeGenNode instanceof JavaCodeGenerator) {
149 ((JavaCodeGenerator) codeGenNode).generateCodeExit();
Vinod Kumar S38046502016-03-23 15:30:27 +0530150 } else {
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530151 TranslatorException ex = new TranslatorException(
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530152 "Generated data model node cannot be translated to target language code");
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530153 ex.setFileName(fileName);
154 throw ex;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530155 }
156 }
157
158 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530159 * Free other YANG nodes of data-model tree when error occurs while file
160 * generation of current node.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530161 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530162 private static void freeRestResources() {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530163
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530164 YangNode freedNode = getCurNode();
165 YangNode tempNode = freedNode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530166 TraversalType curTraversal = ROOT;
167
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530168 while (freedNode != tempNode.getParent()) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530169
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530170 if (curTraversal != PARENT && freedNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530171 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530172 freedNode = freedNode.getChild();
173 } else if (freedNode.getNextSibling() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530174 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530175 if (freedNode != tempNode) {
176 free(freedNode);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530177 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530178 freedNode = freedNode.getNextSibling();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530179 } else {
180 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530181 if (freedNode != tempNode) {
182 free(freedNode);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530183 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530184 freedNode = freedNode.getParent();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530185 }
186 }
187 }
188
189 /**
190 * Free the current node.
191 *
192 * @param node YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530193 */
Vidyashree Rama74453712016-04-18 12:29:39 +0530194 private static void free(YangNode node) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530195
196 YangNode parent = node.getParent();
197 parent.setChild(null);
Bharat saraswald9822e92016-04-05 15:13:44 +0530198
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530199 if (node.getNextSibling() != null) {
200 parent.setChild(node.getNextSibling());
201 } else if (node.getPreviousSibling() != null) {
202 parent.setChild(node.getPreviousSibling());
203 }
204 node = null;
205 }
206
207 /**
208 * Delete Java code files corresponding to the YANG schema.
209 *
210 * @param rootNode root node of data-model tree
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530211 * @throws IOException when fails to delete java code file the current node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530212 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530213 public static void translatorErrorHandler(YangNode rootNode)
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530214 throws IOException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530215
216 /**
217 * Free other resources where translator has failed.
218 */
219 freeRestResources();
220
221 /**
222 * Start removing all open files.
223 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530224 YangNode tempNode = rootNode;
225 setCurNode(tempNode.getChild());
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530226 TraversalType curTraversal = ROOT;
227
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530228 while (tempNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530229
230 if (curTraversal != PARENT) {
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530231 close(tempNode);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530232 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530233 if (curTraversal != PARENT && tempNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530234 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530235 tempNode = tempNode.getChild();
236 } else if (tempNode.getNextSibling() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530237 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530238 tempNode = tempNode.getNextSibling();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530239 } else {
240 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530241 tempNode = tempNode.getParent();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530242 }
243 }
244
245 freeRestResources();
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 {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530257
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530258 if (((TempJavaCodeFragmentFilesContainer) node).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}