blob: 334a92d6a0f3abc56961c26cbeb62a428009d1e5 [file] [log] [blame]
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * 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, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17package org.onosproject.yangutils.linker.impl;
18
Vidyashree Rama35e989c2016-07-12 20:52:48 +053019import java.util.Collections;
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053020import java.util.HashSet;
Vidyashree Rama35e989c2016-07-12 20:52:48 +053021import java.util.LinkedList;
22import java.util.List;
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053023import java.util.Set;
VinodKumarS-Huawei3b4cce02016-08-20 21:32:17 +053024
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053025import org.onosproject.yangutils.datamodel.ResolvableType;
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053026import org.onosproject.yangutils.datamodel.YangNode;
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053027import org.onosproject.yangutils.datamodel.YangReferenceResolver;
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053028import org.onosproject.yangutils.datamodel.YangSubModule;
29import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
30import org.onosproject.yangutils.linker.YangLinker;
31import org.onosproject.yangutils.linker.exceptions.LinkerException;
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053032
Bharat saraswal039f59c2016-07-14 21:57:13 +053033import static org.onosproject.yangutils.linker.impl.YangLinkerUtils.updateFilePriority;
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053034import static org.onosproject.yangutils.utils.UtilConstants.NEW_LINE;
35
36/**
37 * Representation of entity which provides linking service of YANG files.
38 */
VinodKumarS-Huaweid81eccb2016-06-01 14:30:22 +053039public class YangLinkerManager
40 implements YangLinker {
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053041
42 /*
43 * Set of all the YANG nodes, corresponding to the YANG files parsed by
44 * parser.
45 */
46 Set<YangNode> yangNodeSet = new HashSet<>();
47
48 /**
49 * Returns set of YANG node.
50 *
51 * @return set of YANG node
52 */
53 public Set<YangNode> getYangNodeSet() {
54 return yangNodeSet;
55 }
56
57 /**
58 * Creates YANG nodes set.
59 *
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053060 * @param yangNodeSet YANG node information set
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053061 */
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053062 public void createYangNodeSet(Set<YangNode> yangNodeSet) {
63 getYangNodeSet().addAll(yangNodeSet);
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053064 }
65
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053066 @Override
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053067 public void resolveDependencies(Set<YangNode> yangNodeSet) {
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053068
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053069 // Create YANG node set.
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053070 createYangNodeSet(yangNodeSet);
Gaurav Agrawal58b348e2016-06-07 14:00:26 +053071
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053072 // Carry out linking of sub module with module.
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053073 linkSubModulesToParentModule(yangNodeSet);
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053074
75 // Add references to import list.
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053076 addRefToYangFilesImportList(yangNodeSet);
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053077
78 // Add reference to include list.
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053079 addRefToYangFilesIncludeList(yangNodeSet);
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053080
Vidyashree Rama35e989c2016-07-12 20:52:48 +053081 // Update the priority for all the files.
82 updateFilePriority(yangNodeSet);
83
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053084 // TODO check for circular import/include.
85
86 // Carry out inter-file linking.
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053087 processInterFileLinking(yangNodeSet);
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053088 }
89
90 /**
91 * Resolves sub-module linking by linking sub module with parent module.
92 *
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053093 * @param yangNodeSet set of YANG files info
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053094 * @throws LinkerException fails to link sub-module to parent module
95 */
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053096 public void linkSubModulesToParentModule(Set<YangNode> yangNodeSet)
VinodKumarS-Huaweid81eccb2016-06-01 14:30:22 +053097 throws LinkerException {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +053098 for (YangNode yangNode : yangNodeSet) {
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +053099 if (yangNode instanceof YangSubModule) {
100 try {
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530101 ((YangSubModule) yangNode).linkWithModule(getYangNodeSet());
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530102 } catch (DataModelException e) {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530103 String errorInfo = "YANG file error: " + yangNode.getName() + " at line: "
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530104 + e.getLineNumber() + " at position: " + e.getCharPositionInLine() + NEW_LINE
105 + e.getMessage();
106 throw new LinkerException(errorInfo);
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530107 // TODO add file path in exception message in util manager.
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530108 }
109 }
110 }
111 }
112
113 /**
114 * Adds imported node information to the import list.
115 *
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530116 * @param yangNodeSet set of YANG files info
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530117 * @throws LinkerException fails to find imported module
118 */
VinodKumarS-Huawei423dc9a2016-08-17 22:08:42 +0530119 public void addRefToYangFilesImportList(Set<YangNode> yangNodeSet)
120 throws LinkerException {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530121 for (YangNode yangNode : yangNodeSet) {
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530122 if (yangNode instanceof YangReferenceResolver) {
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530123 try {
124 ((YangReferenceResolver) yangNode).addReferencesToImportList(getYangNodeSet());
125 } catch (DataModelException e) {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530126 String errorInfo = "Error in file: " + yangNode.getName() + " at line: "
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530127 + e.getLineNumber() + " at position: " + e.getCharPositionInLine() + NEW_LINE
128 + e.getMessage();
129 throw new LinkerException(errorInfo);
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530130 // TODO add file path in exception message in util manager.
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530131 }
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530132 }
133 }
134 }
135
136 /**
137 * Adds included node information to the include list.
138 *
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530139 * @param yangNodeSet set of YANG files info
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530140 * @throws LinkerException fails to find included sub-module
141 */
VinodKumarS-Huawei423dc9a2016-08-17 22:08:42 +0530142 public void addRefToYangFilesIncludeList(Set<YangNode> yangNodeSet)
143 throws LinkerException {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530144 for (YangNode yangNode : yangNodeSet) {
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530145 if (yangNode instanceof YangReferenceResolver) {
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530146 try {
147 ((YangReferenceResolver) yangNode).addReferencesToIncludeList(getYangNodeSet());
148 } catch (DataModelException e) {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530149 String errorInfo = "Error in file: " + yangNode.getName() + " at line: "
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530150 + e.getLineNumber() + " at position: " + e.getCharPositionInLine() + NEW_LINE
151 + e.getMessage();
152 throw new LinkerException(errorInfo);
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530153 // TODO add file path in exception message in util manager.
Gaurav Agrawal58b348e2016-06-07 14:00:26 +0530154 }
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530155 }
156 }
157 }
158
159 /**
160 * Processes inter file linking for type and uses.
161 *
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530162 * @param yangNodeSet set of YANG files info
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530163 * @throws LinkerException a violation in linker execution
164 */
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530165 public void processInterFileLinking(Set<YangNode> yangNodeSet)
VinodKumarS-Huaweid81eccb2016-06-01 14:30:22 +0530166 throws LinkerException {
Vidyashree Rama35e989c2016-07-12 20:52:48 +0530167 List<YangNode> yangNodeSortedList = new LinkedList<>();
168 yangNodeSortedList.addAll(yangNodeSet);
169 Collections.sort(yangNodeSortedList);
170 for (YangNode yangNode : yangNodeSortedList) {
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530171 try {
Vidyashree Rama13b4c552016-06-20 15:12:43 +0530172 ((YangReferenceResolver) yangNode)
173 .resolveInterFileLinking(ResolvableType.YANG_IF_FEATURE);
Shankara-Huawei234cd092016-07-14 11:35:34 +0530174 ((YangReferenceResolver) yangNode)
175 .resolveInterFileLinking(ResolvableType.YANG_USES);
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530176 ((YangReferenceResolver) yangNode)
Vidyashree Rama918f1622016-07-28 17:33:15 +0530177 .resolveInterFileLinking(ResolvableType.YANG_AUGMENT);
Bharat saraswald14cbe82016-07-14 13:26:18 +0530178 ((YangReferenceResolver) yangNode)
VinodKumarS-Huaweid81eccb2016-06-01 14:30:22 +0530179 .resolveInterFileLinking(ResolvableType.YANG_DERIVED_DATA_TYPE);
janani b0e4e8ae2016-07-13 21:06:41 +0530180 ((YangReferenceResolver) yangNode)
Shankara-Huawei234cd092016-07-14 11:35:34 +0530181 .resolveInterFileLinking(ResolvableType.YANG_BASE);
182 ((YangReferenceResolver) yangNode)
183 .resolveInterFileLinking(ResolvableType.YANG_IDENTITYREF);
janani bebb143d2016-07-14 19:35:22 +0530184 ((YangReferenceResolver) yangNode)
185 .resolveInterFileLinking(ResolvableType.YANG_LEAFREF);
Vidyashree Ramab3670472016-08-06 15:49:56 +0530186 ((YangReferenceResolver) yangNode)
187 .resolveInterFileLinking(ResolvableType.YANG_COMPILER_ANNOTATION);
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530188 } catch (DataModelException e) {
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530189 String errorInfo = "Error in file: " + yangNode.getName() + " at line: "
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530190 + e.getLineNumber() + " at position: " + e.getCharPositionInLine() + NEW_LINE + e.getMessage();
191 throw new LinkerException(errorInfo);
Gaurav Agrawalbfce9342016-06-15 13:58:01 +0530192 // TODO add file path in exception message in util manager.
Gaurav Agrawald39a9212016-08-20 18:51:20 +0530193 } catch (LinkerException e) {
194 String errorInfo = "Error in file: " + yangNode.getName() + " at line: "
195 + e.getLineNumber() + " at position: " + e.getCharPositionInLine() + NEW_LINE + e.getMessage();
196 throw new LinkerException(errorInfo);
197 // TODO add file path in exception message in util manager.
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530198 }
199 }
200 }
Vidyashree Rama35e989c2016-07-12 20:52:48 +0530201
Gaurav Agrawalab7c4bd2016-05-17 18:06:38 +0530202}