blob: 0498cd74bf4370f506e291faf2899534fbd3c313 [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.YangAugment;
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 augment 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 YangJavaAugment extends YangAugment 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 a YANG java augment object.
Vinod Kumar S38046502016-03-23 15:30:27 +053054 */
55 public YangJavaAugment() {
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() {
69
70 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) {
Vinod Kumar S38046502016-03-23 15:30:27 +053083 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() {
Vinod Kumar S38046502016-03-23 15:30:27 +053093 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
100 * file
101 */
102 @Override
103 public void setJavaImportData(JavaImportData javaImportData) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530104 this.javaImportData = javaImportData;
105 }
106
107 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530108 * Returns the temporary file handle.
Vinod Kumar S38046502016-03-23 15:30:27 +0530109 *
110 * @return temporary file handle
111 */
112 @Override
113 public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
Vinod Kumar S38046502016-03-23 15:30:27 +0530114 return tempFileHandle;
115 }
116
117 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530118 * Sets temporary file handle.
Vinod Kumar S38046502016-03-23 15:30:27 +0530119 *
120 * @param fileHandle temporary file handle
121 */
122 @Override
123 public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530124 tempFileHandle = fileHandle;
125 }
126
127 /**
128 * Prepare the information for java code generation corresponding to YANG
129 * augment info.
130 *
janani bde4ffab2016-04-15 16:18:30 +0530131 * @param yangPlugin YANG plugin config
Vinod Kumar S38046502016-03-23 15:30:27 +0530132 * @throws IOException IO operation fail
133 */
134 @Override
janani bde4ffab2016-04-15 16:18:30 +0530135 public void generateCodeEntry(YangPluginConfig yangPlugin) throws IOException {
136 generateCodeOfNode(this, yangPlugin, false);
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}