blob: bd98f9bc2cec92955aa0a35f3ec42d6b559b9e34 [file] [log] [blame]
Bharat saraswald72411a2016-04-19 01:00:16 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
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.javamodel;
18
19import java.io.IOException;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053020
Bharat saraswald72411a2016-04-19 01:00:16 +053021import org.onosproject.yangutils.datamodel.YangEnumeration;
22import org.onosproject.yangutils.translator.exception.TranslatorException;
23import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
24import org.onosproject.yangutils.translator.tojava.JavaFileInfo;
Bharat saraswald72411a2016-04-19 01:00:16 +053025import org.onosproject.yangutils.translator.tojava.TempJavaCodeFragmentFiles;
26import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
27
28import static org.onosproject.yangutils.translator.tojava.GeneratedJavaFileType.GENERATE_ENUM_CLASS;
Gaurav Agrawal56527662016-04-20 15:49:17 +053029import static org.onosproject.yangutils.translator.tojava.utils.YangJavaModelUtils.generateCodeOfNode;
Bharat saraswald72411a2016-04-19 01:00:16 +053030
31/**
32 * Represents YANG java enumeration information extended to support java code generation.
33 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053034public class YangJavaEnumeration
35 extends YangEnumeration
36 implements JavaCodeGenerator, JavaCodeGeneratorInfo {
Bharat saraswald72411a2016-04-19 01:00:16 +053037
38 /**
39 * Contains the information of the java file being generated.
40 */
41 private JavaFileInfo javaFileInfo;
42
43 /**
Bharat saraswald72411a2016-04-19 01:00:16 +053044 * File handle to maintain temporary java code fragments as per the code
45 * snippet types.
46 */
47 private TempJavaCodeFragmentFiles tempFileHandle;
48
49 /**
50 * Creates YANG java enumeration object.
51 */
52 public YangJavaEnumeration() {
53 super();
54 setJavaFileInfo(new JavaFileInfo());
Bharat saraswald72411a2016-04-19 01:00:16 +053055 getJavaFileInfo().setGeneratedFileTypes(GENERATE_ENUM_CLASS);
56 }
57
58 /**
59 * Returns the generated java file information.
60 *
61 * @return generated java file information
62 */
63 @Override
64 public JavaFileInfo getJavaFileInfo() {
65
66 if (javaFileInfo == null) {
67 throw new TranslatorException("Missing java info in java datamodel node");
68 }
69 return javaFileInfo;
70 }
71
72 /**
73 * Sets the java file info object.
74 *
75 * @param javaInfo java file info object
76 */
77 @Override
78 public void setJavaFileInfo(JavaFileInfo javaInfo) {
Bharat saraswald72411a2016-04-19 01:00:16 +053079 javaFileInfo = javaInfo;
80 }
81
82 /**
Bharat saraswald72411a2016-04-19 01:00:16 +053083 * Returns the temporary file handle.
84 *
85 * @return temporary file handle
86 */
87 @Override
88 public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
Bharat saraswald72411a2016-04-19 01:00:16 +053089 return tempFileHandle;
90 }
91
92 /**
93 * Sets temporary file handle.
94 *
95 * @param fileHandle temporary file handle
96 */
97 @Override
98 public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
Bharat saraswald72411a2016-04-19 01:00:16 +053099 tempFileHandle = fileHandle;
100 }
101
102 /**
103 * Prepare the information for java code generation corresponding to YANG
104 * enumeration info.
105 *
106 * @param yangPlugin YANG plugin config
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530107 * @throws TranslatorException translator operations fails
Bharat saraswald72411a2016-04-19 01:00:16 +0530108 */
109 @Override
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530110 public void generateCodeEntry(YangPluginConfig yangPlugin) throws TranslatorException {
111 try {
112 generateCodeOfNode(this, yangPlugin);
113 } catch (IOException e) {
114 throw new TranslatorException(
115 "Failed to prepare generate code entry for enumeration node " + this.getName());
116 }
Bharat saraswald72411a2016-04-19 01:00:16 +0530117 }
118
119 /**
120 * Creates a java file using the YANG enumeration info.
121 *
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530122 * @throws TranslatorException translator operation fail
Bharat saraswald72411a2016-04-19 01:00:16 +0530123 */
124 @Override
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530125 public void generateCodeExit() throws TranslatorException {
126 try {
127 getTempJavaCodeFragmentFiles().generateJavaFile(GENERATE_ENUM_CLASS, this);
128 } catch (IOException e) {
129 throw new TranslatorException("Failed to generate code for enumeration node " + this.getName());
130 }
Bharat saraswald72411a2016-04-19 01:00:16 +0530131 }
132
133}