blob: 86c678722ab9829e5d4c0ec1b4c5b6d55075480e [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.datamodel.exceptions.DataModelException;
23import org.onosproject.yangutils.translator.exception.TranslatorException;
janani bde4ffab2016-04-15 16:18:30 +053024import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053025
26import static org.onosproject.yangutils.translator.tojava.TraversalType.CHILD;
27import static org.onosproject.yangutils.translator.tojava.TraversalType.PARENT;
28import static org.onosproject.yangutils.translator.tojava.TraversalType.ROOT;
29import static org.onosproject.yangutils.translator.tojava.TraversalType.SIBILING;
Vinod Kumar S38046502016-03-23 15:30:27 +053030
31/**
Vidyashree Rama74453712016-04-18 12:29:39 +053032 * Representation of java code generator based on application schema.
Vinod Kumar S38046502016-03-23 15:30:27 +053033 */
34public final class JavaCodeGeneratorUtil {
35
36 /**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053037 * Current YANG node.
38 */
39 private static YangNode curNode;
40
41 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053042 * Creates a java code generator utility object.
Vinod Kumar S38046502016-03-23 15:30:27 +053043 */
44 private JavaCodeGeneratorUtil() {
45 }
46
47 /**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053048 * Returns current YANG node.
49 *
50 * @return current YANG node
51 */
52 public static YangNode getCurNode() {
53 return curNode;
54 }
55
56 /**
57 * Sets current YANG node.
58 *
59 * @param node current YANG node
60 */
Bharat saraswal6ef0b762016-04-05 12:45:45 +053061 public static void setCurNode(YangNode node) {
62 curNode = node;
63 }
64
65 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053066 * Generates Java code files corresponding to the YANG schema.
Vinod Kumar S38046502016-03-23 15:30:27 +053067 *
68 * @param rootNode root node of the data model tree
janani bde4ffab2016-04-15 16:18:30 +053069 * @param yangPlugin YANG plugin config
Vinod Kumar S38046502016-03-23 15:30:27 +053070 * @throws IOException 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 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053073 public static void generateJavaCode(YangNode rootNode, YangPluginConfig yangPlugin)
74 throws IOException {
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);
83 generateCodeEntry(codeGenNode, yangPlugin);
84 } 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) {
103 generateCodeExit(codeGenNode);
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 {
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530107 generateCodeExit(codeGenNode);
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
Vinod Kumar S38046502016-03-23 15:30:27 +0530120 * @throws IOException IO operation exception
121 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530122 private static void generateCodeEntry(YangNode codeGenNode, YangPluginConfig yangPlugin)
123 throws IOException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530124
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530125 if (codeGenNode instanceof JavaCodeGenerator) {
126 ((JavaCodeGenerator) codeGenNode).generateCodeEntry(yangPlugin);
Vinod Kumar S38046502016-03-23 15:30:27 +0530127 } else {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530128 throw new TranslatorException(
129 "Generated data model node cannot be translated to target language code");
Vinod Kumar S38046502016-03-23 15:30:27 +0530130 }
131 }
132
133 /**
134 * Generates the current nodes code target code from the snippet.
135 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530136 * @param codeGenNode current data model node for which the code needs to be
137 * generated
Vinod Kumar S38046502016-03-23 15:30:27 +0530138 * @throws IOException IO operation exception
139 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530140 private static void generateCodeExit(YangNode codeGenNode)
141 throws IOException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530142
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530143 if (codeGenNode instanceof JavaCodeGenerator) {
144 ((JavaCodeGenerator) codeGenNode).generateCodeExit();
Vinod Kumar S38046502016-03-23 15:30:27 +0530145 } else {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530146 throw new TranslatorException(
147 "Generated data model node cannot be translated to target language code");
148 }
149 }
150
151 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530152 * Free other YANG nodes of data-model tree when error occurs while file
153 * generation of current node.
154 *
155 * @throws DataModelException when fails to do datamodel operations
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530156 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530157 private static void freeRestResources()
158 throws DataModelException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530159
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530160 YangNode freedNode = getCurNode();
161 YangNode tempNode = freedNode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530162 TraversalType curTraversal = ROOT;
163
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530164 while (freedNode != tempNode.getParent()) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530165
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530166 if (curTraversal != PARENT && freedNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530167 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530168 freedNode = freedNode.getChild();
169 } else if (freedNode.getNextSibling() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530170 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530171 if (freedNode != tempNode) {
172 free(freedNode);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530173 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530174 freedNode = freedNode.getNextSibling();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530175 } else {
176 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530177 if (freedNode != tempNode) {
178 free(freedNode);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530179 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530180 freedNode = freedNode.getParent();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530181 }
182 }
183 }
184
185 /**
186 * Free the current node.
187 *
188 * @param node YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530189 */
Vidyashree Rama74453712016-04-18 12:29:39 +0530190 private static void free(YangNode node) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530191
192 YangNode parent = node.getParent();
193 parent.setChild(null);
Bharat saraswald9822e92016-04-05 15:13:44 +0530194
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530195 if (node.getNextSibling() != null) {
196 parent.setChild(node.getNextSibling());
197 } else if (node.getPreviousSibling() != null) {
198 parent.setChild(node.getPreviousSibling());
199 }
200 node = null;
201 }
202
203 /**
204 * Delete Java code files corresponding to the YANG schema.
205 *
206 * @param rootNode root node of data-model tree
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530207 * @throws IOException when fails to delete java code file the current node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530208 * @throws DataModelException when fails to do datamodel operations
209 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530210 public static void translatorErrorHandler(YangNode rootNode)
211 throws IOException, DataModelException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530212
213 /**
214 * Free other resources where translator has failed.
215 */
216 freeRestResources();
217
218 /**
219 * Start removing all open files.
220 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530221 YangNode tempNode = rootNode;
222 setCurNode(tempNode.getChild());
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530223 TraversalType curTraversal = ROOT;
224
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530225 while (tempNode != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530226
227 if (curTraversal != PARENT) {
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530228 close(tempNode);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530229 }
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530230 if (curTraversal != PARENT && tempNode.getChild() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530231 curTraversal = CHILD;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530232 tempNode = tempNode.getChild();
233 } else if (tempNode.getNextSibling() != null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530234 curTraversal = SIBILING;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530235 tempNode = tempNode.getNextSibling();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530236 } else {
237 curTraversal = PARENT;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530238 tempNode = tempNode.getParent();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530239 }
240 }
241
242 freeRestResources();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530243 }
244
245 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530246 * Closes all the current open file handles of node and delete all generated
247 * files.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530248 *
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530249 * @param node current YANG node
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530250 * @throws IOException when fails to do IO operations
251 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530252 private static void close(YangNode node)
253 throws IOException {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530254
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530255 if (((TempJavaCodeFragmentFilesContainer) node).getTempJavaCodeFragmentFiles() != null) {
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530256 ((TempJavaCodeFragmentFilesContainer) node).getTempJavaCodeFragmentFiles().freeTemporaryResources(true);
Vinod Kumar S38046502016-03-23 15:30:27 +0530257 }
258 }
259}