blob: 0f6febeb8e2f79e851d1e467e9aa85b389c12965 [file] [log] [blame]
Vinod Kumar S7a004de2016-02-05 16:15:09 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S7a004de2016-02-05 16:15:09 +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 */
16
17package org.onosproject.yangutils.plugin.manager;
18
Bharat saraswal6ef0b762016-04-05 12:45:45 +053019import java.io.IOException;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053020import java.util.HashSet;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053021import java.util.Iterator;
22import java.util.List;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053023import java.util.Set;
Bharat saraswal33dfa012016-05-17 19:59:16 +053024
Vinod Kumar S7a004de2016-02-05 16:15:09 +053025import org.apache.maven.plugin.AbstractMojo;
26import org.apache.maven.plugin.MojoExecutionException;
27import org.apache.maven.plugin.MojoFailureException;
Bharat saraswal870c56f2016-02-20 21:57:16 +053028import org.apache.maven.plugins.annotations.Component;
Vinod Kumar S7a004de2016-02-05 16:15:09 +053029import org.apache.maven.plugins.annotations.Mojo;
Bharat saraswal870c56f2016-02-20 21:57:16 +053030import org.apache.maven.plugins.annotations.Parameter;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053031import org.apache.maven.project.MavenProject;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053032import org.onosproject.yangutils.datamodel.YangNode;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053033import org.onosproject.yangutils.linker.YangLinker;
34import org.onosproject.yangutils.linker.exceptions.LinkerException;
35import org.onosproject.yangutils.linker.impl.YangLinkerManager;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053036import org.onosproject.yangutils.parser.YangUtilsParser;
37import org.onosproject.yangutils.parser.exceptions.ParserException;
Bharat saraswal870c56f2016-02-20 21:57:16 +053038import org.onosproject.yangutils.parser.impl.YangUtilsParserManager;
janani bde4ffab2016-04-15 16:18:30 +053039import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
40import org.onosproject.yangutils.translator.tojava.utils.YangToJavaNamingConflictUtil;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053041import org.onosproject.yangutils.utils.io.impl.YangFileScanner;
Bharat saraswal870c56f2016-02-20 21:57:16 +053042import org.sonatype.plexus.build.incremental.BuildContext;
Vinod Kumar S7a004de2016-02-05 16:15:09 +053043
Bharat saraswale2d51d62016-03-23 19:40:35 +053044import static org.apache.maven.plugins.annotations.LifecyclePhase.GENERATE_SOURCES;
45import static org.apache.maven.plugins.annotations.ResolutionScope.COMPILE;
Vinod Kumar S38046502016-03-23 15:30:27 +053046import static org.onosproject.yangutils.translator.tojava.JavaCodeGeneratorUtil.generateJavaCode;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053047import static org.onosproject.yangutils.translator.tojava.JavaCodeGeneratorUtil.translatorErrorHandler;
Bharat saraswal2f11f652016-03-25 18:19:46 +053048import static org.onosproject.yangutils.translator.tojava.utils.JavaIdentifierSyntax.getPackageDirPathFromJavaJPackage;
Bharat saraswale2d51d62016-03-23 19:40:35 +053049import static org.onosproject.yangutils.utils.UtilConstants.DEFAULT_BASE_PKG;
50import static org.onosproject.yangutils.utils.UtilConstants.NEW_LINE;
51import static org.onosproject.yangutils.utils.UtilConstants.SLASH;
Vinod Kumar S38046502016-03-23 15:30:27 +053052import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.addToSource;
Vinod Kumar S38046502016-03-23 15:30:27 +053053import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.copyYangFilesToTarget;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053054import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.deleteDirectory;
Vinod Kumar S38046502016-03-23 15:30:27 +053055import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.getDirectory;
56
Vinod Kumar S7a004de2016-02-05 16:15:09 +053057/**
Bharat saraswald9822e92016-04-05 15:13:44 +053058 * Represents ONOS YANG utility maven plugin.
Bharat saraswalef2e6392016-04-19 19:50:32 +053059 * Goal of plugin is yang2java.
60 * Execution phase is generate-sources.
61 * requiresDependencyResolution at compile time.
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053062 */
Bharat saraswale2d51d62016-03-23 19:40:35 +053063@Mojo(name = "yang2java", defaultPhase = GENERATE_SOURCES, requiresDependencyResolution = COMPILE,
64 requiresProject = true)
Vinod Kumar S7a004de2016-02-05 16:15:09 +053065public class YangUtilManager extends AbstractMojo {
66
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053067 private YangNode rootNode;
68 // YANG file information set.
69 private Set<YangFileInfo> yangFileInfoSet = new HashSet<>();
70 private YangUtilsParser yangUtilsParser = new YangUtilsParserManager();
71 private YangLinker yangLinker = new YangLinkerManager();
Bharat saraswal33dfa012016-05-17 19:59:16 +053072 private YangFileInfo curYangFileInfo = new YangFileInfo();
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053073
74 private static final String DEFAULT_PKG = SLASH + getPackageDirPathFromJavaJPackage(DEFAULT_BASE_PKG);
75
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053076 /**
77 * Source directory for YANG files.
78 */
79 @Parameter(property = "yangFilesDir", defaultValue = "src/main/yang")
80 private String yangFilesDir;
81
82 /**
Bharat saraswal8f2a6c52016-03-09 18:34:56 +053083 * Source directory for generated files.
84 */
85 @Parameter(property = "genFilesDir", defaultValue = "src/main/java")
86 private String genFilesDir;
87
88 /**
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053089 * Base directory for project.
90 */
91 @Parameter(property = "basedir", defaultValue = "${basedir}")
92 private String baseDir;
93
94 /**
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053095 * Output directory.
96 */
97 @Parameter(property = "project.build.outputDirectory", required = true, defaultValue = "target/classes")
Vinod Kumar S38046502016-03-23 15:30:27 +053098 private String outputDirectory;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +053099
100 /**
101 * Current maven project.
102 */
103 @Parameter(property = "project", required = true, readonly = true, defaultValue = "${project}")
104 private MavenProject project;
105
106 /**
janani bde4ffab2016-04-15 16:18:30 +0530107 * Replacement required for period special character in the identifier.
108 */
109 @Parameter(property = "replacementForPeriod")
110 private String replacementForPeriod;
111
112 /**
113 * Replacement required for underscore special character in the identifier.
114 */
115 @Parameter(property = "replacementForUnderscore")
116 private String replacementForUnderscore;
117
118 /**
119 * Replacement required for hyphen special character in the identifier.
120 */
121 @Parameter(property = "replacementForHyphen")
122 private String replacementForHyphen;
123
124 /**
janani bdd1314f2016-05-19 17:39:50 +0530125 * Prefix which is required for adding with the identifier.
126 */
127 @Parameter(property = "prefixForIdentifier")
128 private String prefixForIdentifier;
129
130 /**
Bharat saraswalec4ef7c2016-02-11 22:00:49 +0530131 * Build context.
132 */
133 @Component
134 private BuildContext context;
135
Vinod Kumar S7a004de2016-02-05 16:15:09 +0530136 @Override
137 public void execute() throws MojoExecutionException, MojoFailureException {
Bharat saraswalec4ef7c2016-02-11 22:00:49 +0530138
139 try {
Bharat saraswal870c56f2016-02-20 21:57:16 +0530140
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530141 /*
Bharat saraswal870c56f2016-02-20 21:57:16 +0530142 * For deleting the generated code in previous build.
143 */
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530144 deleteDirectory(getDirectory(baseDir, genFilesDir) + DEFAULT_PKG);
145 deleteDirectory(getDirectory(baseDir, outputDirectory));
Bharat saraswal870c56f2016-02-20 21:57:16 +0530146
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530147 String searchDir = getDirectory(baseDir, yangFilesDir);
148 String codeGenDir = getDirectory(baseDir, genFilesDir) + SLASH;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530149
150 // Creates conflict resolver and set values to it.
janani bde4ffab2016-04-15 16:18:30 +0530151 YangToJavaNamingConflictUtil conflictResolver = new YangToJavaNamingConflictUtil();
152 conflictResolver.setReplacementForPeriod(replacementForPeriod);
153 conflictResolver.setReplacementForHyphen(replacementForHyphen);
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530154 conflictResolver.setReplacementForUnderscore(replacementForUnderscore);
janani bdd1314f2016-05-19 17:39:50 +0530155 conflictResolver.setPrefixForIdentifier(prefixForIdentifier);
janani bde4ffab2016-04-15 16:18:30 +0530156 YangPluginConfig yangPlugin = new YangPluginConfig();
157 yangPlugin.setCodeGenDir(codeGenDir);
158 yangPlugin.setConflictResolver(conflictResolver);
Vidyashree Rama1db15562016-05-17 16:16:15 +0530159
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530160 /*
161 * Obtain the YANG files at a path mentioned in plugin and creates
162 * YANG file information set.
163 */
164 createYangFileInfoSet(YangFileScanner.getYangFiles(searchDir));
Bharat saraswal870c56f2016-02-20 21:57:16 +0530165
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530166 // Check if there are any file to translate, if not return.
167 if (getYangFileInfoSet() == null || getYangFileInfoSet().isEmpty()) {
168 // No files to translate
169 return;
Bharat saraswalec4ef7c2016-02-11 22:00:49 +0530170 }
Bharat saraswal870c56f2016-02-20 21:57:16 +0530171
Bharat saraswal33dfa012016-05-17 19:59:16 +0530172 // Carry out the parsing for all the YANG files.
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530173 parseYangFileInfoSet();
Vidyashree Rama1db15562016-05-17 16:16:15 +0530174
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530175 // Resolve dependencies using linker.
176 resolveDependenciesUsingLinker();
177
178 // Perform translation to JAVA.
179 translateToJava(getYangFileInfoSet(), yangPlugin);
Vidyashree Rama1db15562016-05-17 16:16:15 +0530180
Bharat saraswal33dfa012016-05-17 19:59:16 +0530181 addToSource(getDirectory(baseDir, genFilesDir), project, context);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530182
183 copyYangFilesToTarget(getYangFileInfoSet(), getDirectory(baseDir, outputDirectory), project);
janani bdd1314f2016-05-19 17:39:50 +0530184 } catch (IOException | ParserException e) {
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530185 String fileName = "";
Bharat saraswal33dfa012016-05-17 19:59:16 +0530186 if (getCurYangFileInfo() != null) {
187 fileName = getCurYangFileInfo().getYangFileName();
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530188 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530189 try {
190 translatorErrorHandler(getRootNode());
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530191 deleteDirectory(getDirectory(baseDir, genFilesDir) + DEFAULT_PKG);
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530192 } catch (IOException ex) {
193 throw new MojoExecutionException(
194 "Error handler failed to delete files for data model node.");
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530195 }
Bharat saraswalab4c6ba2016-05-17 14:19:38 +0530196 throw new MojoExecutionException(
197 "Exception occured due to " + e.getLocalizedMessage() + " in " + fileName
198 + " YANG file.");
Bharat saraswalec4ef7c2016-02-11 22:00:49 +0530199 }
Vinod Kumar S7a004de2016-02-05 16:15:09 +0530200 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530201
202 /**
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530203 * Links all the provided with the YANG file info set.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530204 *
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530205 * @throws MojoExecutionException a violation in mojo excecution
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530206 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530207 public void resolveDependenciesUsingLinker() throws MojoExecutionException {
208 for (YangFileInfo yangFileInfo : getYangFileInfoSet()) {
Bharat saraswal33dfa012016-05-17 19:59:16 +0530209 setCurYangFileInfo(yangFileInfo);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530210 try {
211 yangLinker.resolveDependencies(getYangFileInfoSet());
212 } catch (LinkerException e) {
213 throw new MojoExecutionException(e.getMessage());
214 }
215 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530216 }
217
218 /**
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530219 * Parses all the provided YANG files and generates YANG data model tree.
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530220 *
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530221 * @throws IOException a violation in IO
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530222 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530223 public void parseYangFileInfoSet() throws IOException {
224 for (YangFileInfo yangFileInfo : getYangFileInfoSet()) {
Bharat saraswal33dfa012016-05-17 19:59:16 +0530225 setCurYangFileInfo(yangFileInfo);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530226 try {
227 YangNode yangNode = yangUtilsParser.getDataModel(yangFileInfo.getYangFileName());
228 yangFileInfo.setRootNode(yangNode);
229 setRootNode(yangNode);
230 } catch (ParserException e) {
231 String logInfo = "Error in file: " + e.getFileName();
232 if (e.getLineNumber() != 0) {
233 logInfo = logInfo + " at line: " + e.getLineNumber() + " at position: "
234 + e.getCharPositionInLine();
235
236 }
237 if (e.getMessage() != null) {
238 logInfo = logInfo + NEW_LINE + e.getMessage();
239 }
240 getLog().info(logInfo);
241 throw e;
242 }
243 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530244 }
245
246 /**
247 * Returns current root YANG node of data-model tree.
248 *
249 * @return current root YANG node of data-model tree
250 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530251 private YangNode getRootNode() {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530252 return rootNode;
253 }
254
255 /**
256 * Sets current root YANG node of data-model tree.
257 *
258 * @param rootNode current root YANG node of data-model tree
259 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530260 private void setRootNode(YangNode rootNode) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530261 this.rootNode = rootNode;
262 }
263
Vidyashree Rama1db15562016-05-17 16:16:15 +0530264 /**
265 * Translates to java code corresponding to the YANG schema.
266 *
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530267 * @param yangFileInfoSet YANG file information
268 * @param yangPlugin YANG plugin config
Vidyashree Rama1db15562016-05-17 16:16:15 +0530269 * @throws IOException when fails to generate java code file the current
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530270 * node
Vidyashree Rama1db15562016-05-17 16:16:15 +0530271 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530272 public void translateToJava(Set<YangFileInfo> yangFileInfoSet, YangPluginConfig yangPlugin)
Vidyashree Rama1db15562016-05-17 16:16:15 +0530273 throws IOException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530274 Iterator<YangFileInfo> yangFileIterator = yangFileInfoSet.iterator();
Vidyashree Rama1db15562016-05-17 16:16:15 +0530275 while (yangFileIterator.hasNext()) {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530276 YangFileInfo yangFileInfo = yangFileIterator.next();
Bharat saraswal33dfa012016-05-17 19:59:16 +0530277 setCurYangFileInfo(yangFileInfo);
278 generateJavaCode(yangFileInfo.getRootNode(), yangPlugin);
Vidyashree Rama1db15562016-05-17 16:16:15 +0530279 }
280 }
281
282 /**
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530283 * Creates a YANG file info set.
Vidyashree Rama1db15562016-05-17 16:16:15 +0530284 *
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530285 * @param yangFileList YANG files list
Vidyashree Rama1db15562016-05-17 16:16:15 +0530286 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530287 public void createYangFileInfoSet(List<String> yangFileList) {
288 for (String yangFile : yangFileList) {
289 YangFileInfo yangFileInfo = new YangFileInfo();
290 yangFileInfo.setYangFileName(yangFile);
291 getYangFileInfoSet().add(yangFileInfo);
Vidyashree Rama1db15562016-05-17 16:16:15 +0530292 }
293 }
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530294
295 /**
296 * Returns the YANG file info set.
297 *
298 * @return the YANG file info set
299 */
300 public Set<YangFileInfo> getYangFileInfoSet() {
301 return yangFileInfoSet;
302 }
303
304 /**
305 * Sets the YANG file info set.
306 *
307 * @param yangFileInfoSet the YANG file info set
308 */
309 public void setYangFileInfoSet(Set<YangFileInfo> yangFileInfoSet) {
310 this.yangFileInfoSet = yangFileInfoSet;
311 }
Bharat saraswal33dfa012016-05-17 19:59:16 +0530312
313 /**
314 * Returns current YANG file's info.
315 *
316 * @return the yangFileInfo
317 */
318 public YangFileInfo getCurYangFileInfo() {
319 return curYangFileInfo;
320 }
321
322 /**
323 * Sets current YANG file's info.
324 *
325 * @param yangFileInfo the yangFileInfo to set
326 */
327 public void setCurYangFileInfo(YangFileInfo yangFileInfo) {
328 this.curYangFileInfo = yangFileInfo;
329 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530330}