blob: 7e32f08850f0a7aef4c6b94be560e89d2172e004 [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
Bharat saraswale2d51d62016-03-23 19:40:35 +053018import java.io.IOException;
Vinod Kumar S38046502016-03-23 15:30:27 +053019import org.onosproject.yangutils.datamodel.YangTypeDef;
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;
Bharat saraswale2d51d62016-03-23 19:40:35 +053024import 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
Bharat saraswale2d51d62016-03-23 19:40:35 +053027import static org.onosproject.yangutils.translator.tojava.GeneratedJavaFileType.GENERATE_TYPEDEF_CLASS;
Gaurav Agrawal338735b2016-04-18 18:53:11 +053028import static org.onosproject.yangutils.translator.tojava.utils.YangJavaModelUtils.generateCodeOfType;
Vinod Kumar S38046502016-03-23 15:30:27 +053029
30/**
Bharat saraswald9822e92016-04-05 15:13:44 +053031 * Represents type define information extended to support java code generation.
Vinod Kumar S38046502016-03-23 15:30:27 +053032 */
Gaurav Agrawal338735b2016-04-18 18:53:11 +053033public class YangJavaTypeDef extends YangTypeDef 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 /**
Bharat saraswale2d51d62016-03-23 19:40:35 +053047 * 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 a YANG java typedef object.
Vinod Kumar S38046502016-03-23 15:30:27 +053054 */
55 public YangJavaTypeDef() {
56 super();
57 setJavaFileInfo(new JavaFileInfo());
58 setJavaImportData(new JavaImportData());
Bharat saraswale2d51d62016-03-23 19:40:35 +053059 getJavaFileInfo().setGeneratedFileTypes(GENERATE_TYPEDEF_CLASS);
Vinod Kumar S38046502016-03-23 15:30:27 +053060 }
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() {
Bharat saraswale2d51d62016-03-23 19:40:35 +053069
Vinod Kumar S38046502016-03-23 15:30:27 +053070 if (javaFileInfo == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053071 throw new TranslatorException("Missing java info in java datamodel node");
Vinod Kumar S38046502016-03-23 15:30:27 +053072 }
73 return javaFileInfo;
74 }
75
76 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053077 * Sets the java file info object.
Vinod Kumar S38046502016-03-23 15:30:27 +053078 *
79 * @param javaInfo java file info object
80 */
81 @Override
82 public void setJavaFileInfo(JavaFileInfo javaInfo) {
83 javaFileInfo = javaInfo;
84 }
85
86 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053087 * Returns the data of java imports to be included in generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053088 *
89 * @return data of java imports to be included in generated file
90 */
91 @Override
92 public JavaImportData getJavaImportData() {
93 return javaImportData;
94 }
95
96 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053097 * Sets the data of java imports to be included in generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053098 *
99 * @param javaImportData data of java imports to be included in generated
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530100 * file
Vinod Kumar S38046502016-03-23 15:30:27 +0530101 */
102 @Override
103 public void setJavaImportData(JavaImportData javaImportData) {
104 this.javaImportData = javaImportData;
105 }
106
107 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530108 * Returns the temporary file handle.
Bharat saraswale2d51d62016-03-23 19:40:35 +0530109 *
110 * @return temporary file handle
111 */
112 @Override
113 public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
Bharat saraswale2d51d62016-03-23 19:40:35 +0530114 return tempFileHandle;
115 }
116
117 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530118 * Sets temporary file handle.
Bharat saraswale2d51d62016-03-23 19:40:35 +0530119 *
120 * @param fileHandle temporary file handle
121 */
122 @Override
123 public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
Bharat saraswale2d51d62016-03-23 19:40:35 +0530124 tempFileHandle = fileHandle;
125 }
126
127 /**
Vinod Kumar S38046502016-03-23 15:30:27 +0530128 * Prepare the information for java code generation corresponding to YANG
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530129 * typedef info.
Vinod Kumar S38046502016-03-23 15:30:27 +0530130 *
janani bde4ffab2016-04-15 16:18:30 +0530131 * @param yangPlugin YANG plugin config
Bharat saraswale2d51d62016-03-23 19:40:35 +0530132 * @throws IOException IO operations fails
Vinod Kumar S38046502016-03-23 15:30:27 +0530133 */
134 @Override
janani bde4ffab2016-04-15 16:18:30 +0530135 public void generateCodeEntry(YangPluginConfig yangPlugin) throws IOException {
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530136 generateCodeOfType(this, yangPlugin, false);
Vinod Kumar S38046502016-03-23 15:30:27 +0530137 }
138
139 /**
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530140 * Create a java file using the YANG typedef info.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530141 *
Bharat saraswale2d51d62016-03-23 19:40:35 +0530142 * @throws IOException IO operations fails
Vinod Kumar S38046502016-03-23 15:30:27 +0530143 */
144 @Override
Bharat saraswale2d51d62016-03-23 19:40:35 +0530145 public void generateCodeExit() throws IOException {
Bharat saraswale2d51d62016-03-23 19:40:35 +0530146 getTempJavaCodeFragmentFiles().generateJavaFile(GENERATE_TYPEDEF_CLASS, this);
Vinod Kumar S38046502016-03-23 15:30:27 +0530147 }
148
149}