blob: 9425e40cb7b421731e64ff10b7d7cdd6291d9ac5 [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;
Bharat saraswalcc1cdab2016-04-16 02:28:25 +053019
Vinod Kumar S38046502016-03-23 15:30:27 +053020import org.onosproject.yangutils.datamodel.YangAugment;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053021import org.onosproject.yangutils.translator.exception.TranslatorException;
Vinod Kumar S38046502016-03-23 15:30:27 +053022import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
23import org.onosproject.yangutils.translator.tojava.JavaFileInfo;
24import org.onosproject.yangutils.translator.tojava.JavaImportData;
25import org.onosproject.yangutils.translator.tojava.TempJavaCodeFragmentFiles;
janani bde4ffab2016-04-15 16:18:30 +053026import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
Vinod Kumar S38046502016-03-23 15:30:27 +053027
28import static org.onosproject.yangutils.translator.tojava.GeneratedJavaFileType.GENERATE_INTERFACE_WITH_BUILDER;
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053029import static org.onosproject.yangutils.translator.tojava.utils.YangJavaModelUtils.generateCodeOfNode;
Vinod Kumar S38046502016-03-23 15:30:27 +053030
31/**
Bharat saraswald9822e92016-04-05 15:13:44 +053032 * Represents augment information extended to support java code generation.
Vinod Kumar S38046502016-03-23 15:30:27 +053033 */
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053034public class YangJavaAugment extends YangAugment implements JavaCodeGeneratorInfo, JavaCodeGenerator {
Vinod Kumar S38046502016-03-23 15:30:27 +053035
36 /**
37 * Contains the information of the java file being generated.
38 */
39 private JavaFileInfo javaFileInfo;
40
41 /**
42 * Contains information of the imports to be inserted in the java file
43 * generated.
44 */
45 private JavaImportData javaImportData;
46
47 /**
48 * File handle to maintain temporary java code fragments as per the code
49 * snippet types.
50 */
51 private TempJavaCodeFragmentFiles tempFileHandle;
52
53 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053054 * Creates a YANG java augment object.
Vinod Kumar S38046502016-03-23 15:30:27 +053055 */
56 public YangJavaAugment() {
57 super();
58 setJavaFileInfo(new JavaFileInfo());
59 setJavaImportData(new JavaImportData());
60 getJavaFileInfo().setGeneratedFileTypes(GENERATE_INTERFACE_WITH_BUILDER);
61 }
62
63 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053064 * Returns the generated java file information.
Vinod Kumar S38046502016-03-23 15:30:27 +053065 *
66 * @return generated java file information
67 */
68 @Override
69 public JavaFileInfo getJavaFileInfo() {
70
71 if (javaFileInfo == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053072 throw new TranslatorException("Missing java info in java datamodel node");
Vinod Kumar S38046502016-03-23 15:30:27 +053073 }
74 return javaFileInfo;
75 }
76
77 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053078 * Sets the java file info object.
Vinod Kumar S38046502016-03-23 15:30:27 +053079 *
80 * @param javaInfo java file info object
81 */
82 @Override
83 public void setJavaFileInfo(JavaFileInfo javaInfo) {
Vinod Kumar S38046502016-03-23 15:30:27 +053084 javaFileInfo = javaInfo;
85 }
86
87 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053088 * Returns the data of java imports to be included in generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053089 *
90 * @return data of java imports to be included in generated file
91 */
92 @Override
93 public JavaImportData getJavaImportData() {
Vinod Kumar S38046502016-03-23 15:30:27 +053094 return javaImportData;
95 }
96
97 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053098 * Sets the data of java imports to be included in generated file.
Vinod Kumar S38046502016-03-23 15:30:27 +053099 *
100 * @param javaImportData data of java imports to be included in generated
101 * file
102 */
103 @Override
104 public void setJavaImportData(JavaImportData javaImportData) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530105 this.javaImportData = javaImportData;
106 }
107
108 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530109 * Returns the temporary file handle.
Vinod Kumar S38046502016-03-23 15:30:27 +0530110 *
111 * @return temporary file handle
112 */
113 @Override
114 public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530115 return tempFileHandle;
116 }
117
118 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530119 * Sets temporary file handle.
Vinod Kumar S38046502016-03-23 15:30:27 +0530120 *
121 * @param fileHandle temporary file handle
122 */
123 @Override
124 public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530125 tempFileHandle = fileHandle;
126 }
127
128 /**
129 * Prepare the information for java code generation corresponding to YANG
130 * augment info.
131 *
janani bde4ffab2016-04-15 16:18:30 +0530132 * @param yangPlugin YANG plugin config
Vinod Kumar S38046502016-03-23 15:30:27 +0530133 * @throws IOException IO operation fail
134 */
135 @Override
janani bde4ffab2016-04-15 16:18:30 +0530136 public void generateCodeEntry(YangPluginConfig yangPlugin) throws IOException {
137 generateCodeOfNode(this, yangPlugin, false);
Vinod Kumar S38046502016-03-23 15:30:27 +0530138 }
139
140 /**
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530141 * Create a java file using the YANG augment info.
142 *
143 * @throws IOException when failed to do IO operations
Vinod Kumar S38046502016-03-23 15:30:27 +0530144 */
145 @Override
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530146 public void generateCodeExit() throws IOException {
147 getTempJavaCodeFragmentFiles().generateJavaFile(GENERATE_INTERFACE_WITH_BUILDER, this);
Vinod Kumar S38046502016-03-23 15:30:27 +0530148 }
149}