blob: 4ed9967ebcbcccd1bdad07c7c0089edd81a73f49 [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 */
16package org.onosproject.yangutils.translator.tojava.javamodel;
17
18import java.io.IOException;
Vinod Kumar S38046502016-03-23 15:30:27 +053019import org.onosproject.yangutils.datamodel.YangChoice;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053020import org.onosproject.yangutils.translator.exception.TranslatorException;
Vinod Kumar S38046502016-03-23 15:30:27 +053021import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
22import org.onosproject.yangutils.translator.tojava.JavaFileInfo;
23import org.onosproject.yangutils.translator.tojava.JavaImportData;
24import org.onosproject.yangutils.translator.tojava.TempJavaCodeFragmentFiles;
janani bde4ffab2016-04-15 16:18:30 +053025import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
Vinod Kumar S38046502016-03-23 15:30:27 +053026
27import static org.onosproject.yangutils.translator.tojava.GeneratedJavaFileType.GENERATE_INTERFACE_WITH_BUILDER;
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053028import static org.onosproject.yangutils.translator.tojava.utils.YangJavaModelUtils.generateCodeOfNode;
Vinod Kumar S38046502016-03-23 15:30:27 +053029
30/**
Bharat saraswald9822e92016-04-05 15:13:44 +053031 * Represents choice information extended to support java code generation.
Vinod Kumar S38046502016-03-23 15:30:27 +053032 */
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053033public class YangJavaChoice extends YangChoice implements JavaCodeGeneratorInfo, JavaCodeGenerator {
Vinod Kumar S38046502016-03-23 15:30:27 +053034
35 /**
36 * Contains the information of the java file being generated.
37 */
38 private JavaFileInfo javaFileInfo;
39
40 /**
41 * Contains information of the imports to be inserted in the java file
42 * generated.
43 */
44 private JavaImportData javaImportData;
45
46 /**
47 * File handle to maintain temporary java code fragments as per the code
48 * snippet types.
49 */
50 private TempJavaCodeFragmentFiles tempFileHandle;
51
52 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053053 * Creates YANG java choice object.
Vinod Kumar S38046502016-03-23 15:30:27 +053054 */
55 public YangJavaChoice() {
56 super();
57 setJavaFileInfo(new JavaFileInfo());
58 setJavaImportData(new JavaImportData());
59 getJavaFileInfo().setGeneratedFileTypes(GENERATE_INTERFACE_WITH_BUILDER);
60 }
61
62 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053063 * Returns the generated java file information.
Vinod Kumar S38046502016-03-23 15:30:27 +053064 *
65 * @return generated java file information
66 */
67 @Override
68 public JavaFileInfo getJavaFileInfo() {
Vinod Kumar S38046502016-03-23 15:30:27 +053069 if (javaFileInfo == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053070 throw new TranslatorException("Missing java info in java datamodel node");
Vinod Kumar S38046502016-03-23 15:30:27 +053071 }
72 return javaFileInfo;
73 }
74
75 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053076 * Sets the java file info object.
Vinod Kumar S38046502016-03-23 15:30:27 +053077 *
78 * @param javaInfo java file info object
79 */
80 @Override
81 public void setJavaFileInfo(JavaFileInfo javaInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +053082 javaFileInfo = javaInfo;
83 }
84
85 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053086 * Returns the data of java imports to be included in generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053087 *
88 * @return data of java imports to be included in generated file
89 */
90 @Override
91 public JavaImportData getJavaImportData() {
Vinod Kumar S38046502016-03-23 15:30:27 +053092 return javaImportData;
93 }
94
95 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053096 * Sets the data of java imports to be included in generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053097 *
98 * @param javaImportData data of java imports to be included in generated
99 * file
100 */
101 @Override
102 public void setJavaImportData(JavaImportData javaImportData) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530103 this.javaImportData = javaImportData;
104 }
105
106 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530107 * Returns the temporary file handle.
Vinod Kumar S38046502016-03-23 15:30:27 +0530108 *
109 * @return temporary file handle
110 */
111 @Override
112 public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530113 return tempFileHandle;
114 }
115
116 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530117 * Sets temporary file handle.
Vinod Kumar S38046502016-03-23 15:30:27 +0530118 *
119 * @param fileHandle temporary file handle
120 */
121 @Override
122 public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530123 tempFileHandle = fileHandle;
124 }
125
126 /**
127 * Prepare the information for java code generation corresponding to YANG
128 * case info.
129 *
janani bde4ffab2016-04-15 16:18:30 +0530130 * @param yangPlugin YANG plugin config
Vinod Kumar S38046502016-03-23 15:30:27 +0530131 * @throws IOException IO operation fail
132 */
133 @Override
janani bde4ffab2016-04-15 16:18:30 +0530134 public void generateCodeEntry(YangPluginConfig yangPlugin) throws IOException {
135 generateCodeOfNode(this, yangPlugin, false);
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +0530136 // TODO:getTempJavaCodeFragmentFiles().addCurNodeLeavesInfoToTempFiles(this);
Vinod Kumar S38046502016-03-23 15:30:27 +0530137 }
138
139 /**
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +0530140 * Creates a java file using the YANG grouping info.
Vinod Kumar S38046502016-03-23 15:30:27 +0530141 */
142 @Override
143 public void generateCodeExit() {
144 // TODO Auto-generated method stub
145
146 }
147}