blob: 235ebc5e736ba97944f3683edac62d124c027f4c [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.YangModule;
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;
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053025import org.onosproject.yangutils.translator.tojava.utils.YangJavaModelUtils;
Vinod Kumar S38046502016-03-23 15:30:27 +053026
27import static org.onosproject.yangutils.translator.tojava.GeneratedJavaFileType.GENERATE_INTERFACE_WITH_BUILDER;
Vinod Kumar S38046502016-03-23 15:30:27 +053028import static org.onosproject.yangutils.translator.tojava.utils.JavaIdentifierSyntax.getRootPackage;
Vinod Kumar S38046502016-03-23 15:30:27 +053029
30/**
Bharat saraswald9822e92016-04-05 15:13:44 +053031 * Represents module 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 YangJavaModule extends YangModule 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 /**
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053053 * Creates a YANG node of module type.
Vinod Kumar S38046502016-03-23 15:30:27 +053054 */
55 public YangJavaModule() {
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 * Generates java code for module.
128 *
129 * @param baseCodeGenDir code generation directory
130 * @throws IOException when fails to generate the source files
131 */
132 @Override
133 public void generateCodeEntry(String baseCodeGenDir) throws IOException {
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +0530134 String modulePkg = getRootPackage(getVersion(), getNameSpace().getUri(), getRevision().getRevDate());
135 YangJavaModelUtils.generateCodeOfRootNode(this, baseCodeGenDir, modulePkg);
Vinod Kumar S38046502016-03-23 15:30:27 +0530136 }
137
138 @Override
139 public void generateCodeExit() throws IOException {
Bharat saraswale2d51d62016-03-23 19:40:35 +0530140 getTempJavaCodeFragmentFiles().generateJavaFile(GENERATE_INTERFACE_WITH_BUILDER, this);
Vinod Kumar S38046502016-03-23 15:30:27 +0530141 return;
142 }
143}