blob: 5d4e2d52405d9c7482b18e8bf5aacb0c3d4eac0a [file] [log] [blame]
Vidyashree Rama506cbe12016-03-28 11:59:27 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vidyashree Rama506cbe12016-03-28 11:59: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 */
16
17package org.onosproject.yangutils.translator.tojava.javamodel;
18
19import java.io.IOException;
Bharat saraswald9822e92016-04-05 15:13:44 +053020
Vidyashree Rama506cbe12016-03-28 11:59:27 +053021import org.onosproject.yangutils.datamodel.YangNotification;
Bharat saraswald9822e92016-04-05 15:13:44 +053022import org.onosproject.yangutils.translator.exception.TranslatorException;
Vidyashree Rama506cbe12016-03-28 11:59:27 +053023import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
24import org.onosproject.yangutils.translator.tojava.JavaFileInfo;
Vidyashree Rama506cbe12016-03-28 11:59:27 +053025import org.onosproject.yangutils.translator.tojava.TempJavaCodeFragmentFiles;
janani bde4ffab2016-04-15 16:18:30 +053026import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
Vidyashree Rama506cbe12016-03-28 11:59:27 +053027
28import static org.onosproject.yangutils.translator.tojava.GeneratedJavaFileType.GENERATE_INTERFACE_WITH_BUILDER;
Vidyashree Rama506cbe12016-03-28 11:59:27 +053029
30/**
Bharat saraswald9822e92016-04-05 15:13:44 +053031 * Represents notification information extended to support java code generation.
Vidyashree Rama506cbe12016-03-28 11:59:27 +053032 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053033public class YangJavaNotification
34 extends YangNotification
35 implements JavaCodeGenerator, JavaCodeGeneratorInfo {
Vidyashree Rama506cbe12016-03-28 11:59:27 +053036
37 /**
38 * Contains information of the java file being generated.
39 */
40 private JavaFileInfo javaFileInfo;
41
42 /**
Vidyashree Rama506cbe12016-03-28 11:59:27 +053043 * File handle to maintain temporary java code fragments as per the code
44 * snippet types.
45 */
46 private TempJavaCodeFragmentFiles tempFileHandle;
47
48 /**
49 * Creates an instance of java Notification.
50 */
51 public YangJavaNotification() {
52 super();
53 setJavaFileInfo(new JavaFileInfo());
Vidyashree Rama506cbe12016-03-28 11:59:27 +053054 getJavaFileInfo().setGeneratedFileTypes(GENERATE_INTERFACE_WITH_BUILDER);
55 }
56
57 /**
58 * Returns the generated java file information.
59 *
60 * @return generated java file information
61 */
62 @Override
63 public JavaFileInfo getJavaFileInfo() {
64
65 if (javaFileInfo == null) {
Bharat saraswal6ef0b762016-04-05 12:45:45 +053066 throw new TranslatorException("Missing java info in java datamodel node");
Vidyashree Rama506cbe12016-03-28 11:59:27 +053067 }
68 return javaFileInfo;
69 }
70
71 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053072 * Sets the java file info object.
Vidyashree Rama506cbe12016-03-28 11:59:27 +053073 *
74 * @param javaInfo java file info object
75 */
76 @Override
77 public void setJavaFileInfo(JavaFileInfo javaInfo) {
Vidyashree Rama506cbe12016-03-28 11:59:27 +053078 javaFileInfo = javaInfo;
79 }
80
81 /**
Vidyashree Rama506cbe12016-03-28 11:59:27 +053082 * Returns the temporary file handle.
83 *
84 * @return temporary file handle
85 */
86 @Override
87 public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
Vidyashree Rama506cbe12016-03-28 11:59:27 +053088 return tempFileHandle;
89 }
90
91 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053092 * Sets temporary file handle.
Vidyashree Rama506cbe12016-03-28 11:59:27 +053093 *
94 * @param fileHandle temporary file handle
95 */
96 @Override
97 public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
Vidyashree Rama506cbe12016-03-28 11:59:27 +053098 tempFileHandle = fileHandle;
99 }
100
101 /**
102 * Prepare the information for java code generation corresponding to YANG
103 * notification info.
104 *
janani bde4ffab2016-04-15 16:18:30 +0530105 * @param yangPlugin YANG plugin config
Vidyashree Rama506cbe12016-03-28 11:59:27 +0530106 * @throws IOException IO operation fail
107 */
108 @Override
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530109 public void generateCodeEntry(YangPluginConfig yangPlugin)
110 throws IOException {
Vidyashree Rama506cbe12016-03-28 11:59:27 +0530111
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530112 //TODO: implement the event listener for notifications.
Vidyashree Rama506cbe12016-03-28 11:59:27 +0530113 }
114
115 /**
Bharat saraswalcc1cdab2016-04-16 02:28:25 +0530116 * Creates a java file using the YANG notification info.
Vidyashree Rama506cbe12016-03-28 11:59:27 +0530117 */
118 @Override
119 public void generateCodeExit() {
120 // TODO Auto-generated method stub
121
122 }
123}