Fixed resolving of schema path and qname for nodes added by augmentation.
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / util / ParserUtils.xtend
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.util;
9
10 import java.util.ArrayList;
11 import java.util.Arrays;
12 import java.util.Date;
13 import java.util.List;
14 import java.util.Map;
15 import java.util.TreeMap;
16
17 import org.opendaylight.yangtools.yang.common.QName;
18 import org.opendaylight.yangtools.yang.model.api.ChoiceNode;
19 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
20 import org.opendaylight.yangtools.yang.model.api.Module;
21 import org.opendaylight.yangtools.yang.model.api.ModuleImport;
22 import org.opendaylight.yangtools.yang.model.api.NotificationDefinition;
23 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
24 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
25 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
26 import org.opendaylight.yangtools.yang.parser.builder.api.AugmentationSchemaBuilder;
27 import org.opendaylight.yangtools.yang.parser.builder.api.AugmentationTargetBuilder;
28 import org.opendaylight.yangtools.yang.parser.builder.api.Builder;
29 import org.opendaylight.yangtools.yang.parser.builder.api.DataNodeContainerBuilder;
30 import org.opendaylight.yangtools.yang.parser.builder.api.DataSchemaNodeBuilder;
31 import org.opendaylight.yangtools.yang.parser.builder.api.SchemaNodeBuilder;
32 import org.opendaylight.yangtools.yang.parser.builder.api.UsesNodeBuilder;
33 import org.opendaylight.yangtools.yang.parser.builder.impl.ChoiceBuilder;
34 import org.opendaylight.yangtools.yang.parser.builder.impl.ChoiceBuilder.ChoiceNodeImpl;
35 import org.opendaylight.yangtools.yang.parser.builder.impl.ChoiceCaseBuilder;
36 import org.opendaylight.yangtools.yang.parser.builder.impl.ChoiceCaseBuilder.ChoiceCaseNodeImpl;
37 import org.opendaylight.yangtools.yang.parser.builder.impl.ContainerSchemaNodeBuilder.ContainerSchemaNodeImpl;
38 import org.opendaylight.yangtools.yang.parser.builder.impl.IdentityrefTypeBuilder;
39 import org.opendaylight.yangtools.yang.parser.builder.impl.ListSchemaNodeBuilder.ListSchemaNodeImpl;
40 import org.opendaylight.yangtools.yang.parser.builder.impl.ModuleBuilder;
41 import org.opendaylight.yangtools.yang.parser.builder.impl.NotificationBuilder.NotificationDefinitionImpl;
42 import org.opendaylight.yangtools.yang.model.api.AugmentationTarget
43
44
45 public final class ParserUtils {
46
47     private new() {
48     }
49
50     /**
51      * Create new SchemaPath from given path and qname.
52      *
53      * @param schemaPath
54      * @param qname
55      * @return
56      */
57     public static def SchemaPath createSchemaPath(SchemaPath schemaPath, QName... qname) {
58         val path = new ArrayList<QName>(schemaPath.getPath());
59         path.addAll(Arrays.asList(qname));
60         return new SchemaPath(path, schemaPath.isAbsolute());
61     }
62
63     /**
64      * Get module import referenced by given prefix.
65      *
66      * @param builder
67      *            module to search
68      * @param prefix
69      *            prefix associated with import
70      * @return ModuleImport based on given prefix
71      */
72     public static def ModuleImport getModuleImport(ModuleBuilder builder, String prefix) {
73         for (ModuleImport mi : builder.getModuleImports()) {
74             if (mi.getPrefix().equals(prefix)) {
75                 return mi;
76
77             }
78         }
79         return null;
80     }
81
82     /**
83      * Find dependent module based on given prefix
84      *
85      * @param modules
86      *            all available modules
87      * @param module
88      *            current module
89      * @param prefix
90      *            target module prefix
91      * @param line
92      *            current line in yang model
93      * @return module builder if found, null otherwise
94      */
95     public static def ModuleBuilder findDependentModuleBuilder(Map<String, TreeMap<Date, ModuleBuilder>> modules,
96         ModuleBuilder module, String prefix, int line) {
97         var ModuleBuilder dependentModule = null;
98         var Date dependentModuleRevision = null;
99
100         if (prefix.equals(module.getPrefix())) {
101             dependentModule = module;
102         } else {
103             val ModuleImport dependentModuleImport = getModuleImport(module, prefix);
104             if (dependentModuleImport === null) {
105                 throw new YangParseException(module.getName(), line, "No import found with prefix '" + prefix + "'.");
106             }
107             val String dependentModuleName = dependentModuleImport.getModuleName();
108             dependentModuleRevision = dependentModuleImport.getRevision();
109
110             val TreeMap<Date, ModuleBuilder> moduleBuildersByRevision = modules.get(dependentModuleName);
111             if (moduleBuildersByRevision === null) {
112                 return null;
113             }
114             if (dependentModuleRevision === null) {
115                 dependentModule = moduleBuildersByRevision.lastEntry().getValue();
116             } else {
117                 dependentModule = moduleBuildersByRevision.get(dependentModuleRevision);
118             }
119         }
120         return dependentModule;
121     }
122
123     /**
124      * Find module from context based on prefix.
125      *
126      * @param context
127      *            schema context
128      * @param currentModule
129      *            current module
130      * @param prefix
131      *            current prefix used to reference dependent module
132      * @param line
133      *            current line in yang model
134      * @return module based on given prefix if found in context, null otherwise
135      */
136     public static def Module findModuleFromContext(SchemaContext context, ModuleBuilder currentModule,
137         String prefix, int line) {
138         val modulesByRevision = new TreeMap<Date, Module>();
139
140         val dependentModuleImport = ParserUtils.getModuleImport(currentModule, prefix);
141         if (dependentModuleImport === null) {
142             throw new YangParseException(currentModule.getName(), line, "No import found with prefix '" + prefix + "'.");
143         }
144         val dependentModuleName = dependentModuleImport.getModuleName();
145         val dependentModuleRevision = dependentModuleImport.getRevision();
146
147         for (Module contextModule : context.getModules()) {
148             if (contextModule.getName().equals(dependentModuleName)) {
149                 var revision = contextModule.getRevision();
150                 if (revision === null) {
151                     revision = new Date(0L);
152                 }
153                 modulesByRevision.put(revision, contextModule);
154             }
155         }
156
157         var Module result = null;
158         if (dependentModuleRevision === null) {
159             result = modulesByRevision.get(modulesByRevision.firstKey());
160         } else {
161             result = modulesByRevision.get(dependentModuleRevision);
162         }
163         return result;
164     }
165
166     /**
167      * Parse XPath string.
168      *
169      * @param xpathString
170      *            as String
171      * @return SchemaPath from given String
172      */
173     public static def SchemaPath parseXPathString(String xpathString) {
174         val absolute = xpathString.startsWith("/");
175         val String[] splittedPath = xpathString.split("/");
176         val path = new ArrayList<QName>();
177         var QName name;
178         for (String pathElement : splittedPath) {
179             if (pathElement.length() > 0) {
180                 val String[] splittedElement = pathElement.split(":");
181                 if (splittedElement.length == 1) {
182                     name = new QName(null, null, null, splittedElement.get(0));
183                 } else {
184                     name = new QName(null, null, splittedElement.get(0), splittedElement.get(1));
185                 }
186                 path.add(name);
187             }
188         }
189         return new SchemaPath(path, absolute);
190     }
191
192     /**
193      * Add all augment's child nodes to given target.
194      *
195      * @param augment
196      *            builder of augment statement
197      * @param target
198      *            augmentation target node
199      */
200     public static def void fillAugmentTarget(AugmentationSchemaBuilder augment, DataNodeContainerBuilder target) {
201         for (DataSchemaNodeBuilder child : augment.getChildNodeBuilders()) {
202             val childCopy = CopyUtils.copy(child, target, false);
203             childCopy.setAugmenting(true);
204             correctNodePath(child, target.getPath());
205             correctNodePath(childCopy, target.getPath());
206             try {
207                 target.addChildNode(childCopy);
208             } catch (YangParseException e) {
209
210                 // more descriptive message
211                 throw new YangParseException(augment.getModuleName(), augment.getLine(),
212                     "Failed to perform augmentation: " + e.getMessage());
213             }
214
215         }
216         for (UsesNodeBuilder usesNode : augment.getUsesNodes()) {
217             val copy = CopyUtils.copyUses(usesNode, target);
218             target.addUsesNode(copy);
219         }
220     }
221
222     /**
223      * Add all augment's child nodes to given target.
224      *
225      * @param augment
226      *            builder of augment statement
227      * @param target
228      *            augmentation target choice node
229      */
230     public static def void fillAugmentTarget(AugmentationSchemaBuilder augment, ChoiceBuilder target) {
231         for (DataSchemaNodeBuilder builder : augment.getChildNodeBuilders()) {
232             val childCopy = CopyUtils.copy(builder, target, false);
233             childCopy.setAugmenting(true);
234             correctNodePath(builder, target.getPath());
235             correctNodePath(childCopy, target.getPath());
236             target.addCase(childCopy);
237         }
238         for (UsesNodeBuilder usesNode : augment.getUsesNodes()) {
239             if (usesNode !== null) {
240                 throw new YangParseException(augment.getModuleName(), augment.getLine(),
241                     "Error in augment parsing: cannot augment uses to choice");
242             }
243         }
244     }
245
246     /**
247      * Create new schema path of node based on parent node schema path.
248      *
249      * @param node
250      *            node to correct
251      * @param parentSchemaPath
252      *            schema path of node parent
253      */
254     static def void correctNodePath(SchemaNodeBuilder node, SchemaPath parentSchemaPath) {
255
256         // set correct path
257         val targetNodePath = new ArrayList<QName>(parentSchemaPath.getPath());
258         targetNodePath.add(node.getQName());
259         node.setPath(new SchemaPath(targetNodePath, true));
260
261         // set correct path for all child nodes
262         if (node instanceof DataNodeContainerBuilder) {
263             val dataNodeContainer = node as DataNodeContainerBuilder;
264             for (DataSchemaNodeBuilder child : dataNodeContainer.getChildNodeBuilders()) {
265                 correctNodePath(child, node.getPath());
266             }
267         }
268
269         // set correct path for all cases
270         if (node instanceof ChoiceBuilder) {
271             val choiceBuilder = node as ChoiceBuilder;
272             for (ChoiceCaseBuilder choiceCaseBuilder : choiceBuilder.getCases()) {
273                 correctNodePath(choiceCaseBuilder, node.getPath());
274             }
275         }
276     }
277
278
279
280     private static def Builder findNode(Builder firstNodeParent, List<QName> path, String moduleName, int line) {
281         var currentName = "";
282         var currentParent = firstNodeParent;
283
284         val max = path.size();
285         var i = 0;
286         while(i < max) {
287             var qname = path.get(i);
288
289             currentName = qname.getLocalName();
290             if (currentParent instanceof DataNodeContainerBuilder) {
291                 var dataNodeContainerParent = currentParent as DataNodeContainerBuilder;
292                 var nodeFound = dataNodeContainerParent.getDataChildByName(currentName);
293                 // if not found as regular child, search in uses
294                 if (nodeFound == null) {
295                     var found = searchUses(dataNodeContainerParent, currentName);
296                     if(found == null) {
297                         return null;
298                     } else {
299                         currentParent = found;
300                     }
301                 } else {
302                     currentParent = nodeFound;
303                 }
304             } else if (currentParent instanceof ChoiceBuilder) {
305                 val choiceParent = currentParent as ChoiceBuilder;
306                 currentParent = choiceParent.getCaseNodeByName(currentName);
307             } else {
308                 throw new YangParseException(moduleName, line,
309                         "Error in augment parsing: failed to find node " + currentName);
310             }
311
312             // if node in path not found, return null
313             if (currentParent == null) {
314                 return null;
315             }
316             i = i + 1; 
317         }
318         return currentParent;
319     }
320     
321     private static def searchUses(DataNodeContainerBuilder dataNodeContainerParent, String name) {
322         var currentName = name;
323         for (unb : dataNodeContainerParent.usesNodes) {
324             val result = findNodeInUses(currentName, unb);
325             if (result != null) {
326                 var copy = CopyUtils.copy(result, unb.getParent(), true);
327                 unb.getTargetChildren().add(copy);
328                 return copy;
329             }
330         }
331         return null;
332     }
333     
334     public static def getRpc(ModuleBuilder module,String name) {
335         for(rpc : module.rpcs) {
336             if(name == rpc.QName.localName) {
337                 return rpc;
338             }
339         }
340         return null;
341     }
342     
343     public static def getNotification(ModuleBuilder module,String name) {
344         for(notification : module.notifications) {
345             if(name == notification.QName.localName) {
346                 return notification;
347             }
348         }
349     }
350     
351     private static def nextLevel(List<QName> path){
352         return path.subList(1,path.size)
353     }
354     
355     /**
356      * Find augment target node and perform augmentation.
357      *
358      * @param augment
359      * @param firstNodeParent
360      *            parent of first node in path
361      * @param path
362      *            path to augment target
363      * @return true if augmentation process succeed, false otherwise
364      */
365     public static def boolean processAugmentation(AugmentationSchemaBuilder augment, Builder firstNodeParent,
366         List<QName> path) {
367
368             // traverse augment target path and try to reach target node
369             val currentParent = findNode(firstNodeParent,path,augment.moduleName,augment.line);
370             if (currentParent === null) return false;
371             
372             if ((currentParent instanceof DataNodeContainerBuilder)) {
373                 fillAugmentTarget(augment, currentParent as DataNodeContainerBuilder);
374             } else if (currentParent instanceof ChoiceBuilder) {
375                 fillAugmentTarget(augment, currentParent as ChoiceBuilder);
376             } else {
377                 throw new YangParseException(augment.getModuleName(), augment.getLine(),
378                     "Error in augment parsing: The target node MUST be either a container, list, choice, case, input, output, or notification node.");
379             }
380             (currentParent as AugmentationTargetBuilder).addAugmentation(augment);
381             augment.setResolved(true);
382             return true;
383         }
384
385         /**
386      * Find node with given name in uses target.
387      *
388      * @param localName
389      *            name of node to find
390      * @param uses
391      *            uses node which target grouping should be searched
392      * @return node with given name if found, null otherwise
393      */
394     private static def DataSchemaNodeBuilder findNodeInUses(String localName, UsesNodeBuilder uses) {
395         for(child : uses.targetChildren) {
396             if (child.getQName().getLocalName().equals(localName)) {
397                 return child;
398             }
399         }
400
401         val target = uses.groupingBuilder;
402         for (child : target.childNodeBuilders) {
403             if (child.getQName().getLocalName().equals(localName)) {
404                 return child;
405             }
406         }
407         for (usesNode : target.usesNodes) {
408             val result = findNodeInUses(localName, usesNode);
409             if (result != null) {
410                 return result;
411             }
412         }
413         return null;
414     }
415
416         /**
417      * Find augment target node in given context and perform augmentation.
418      *
419      * @param augment
420      * @param path
421      *            path to augment target
422      * @param module
423      *            current module
424      * @param prefix
425      *            current prefix of target module
426      * @param context
427      *            SchemaContext containing already resolved modules
428      * @return true if augment process succeed, false otherwise
429      */
430         public static def boolean processAugmentationOnContext(AugmentationSchemaBuilder augment, List<QName> path,
431             ModuleBuilder module, String prefix, SchemaContext context) {
432             val int line = augment.getLine();
433             val Module dependentModule = findModuleFromContext(context, module, prefix, line);
434             if (dependentModule === null) {
435                 throw new YangParseException(module.getName(), line,
436                     "Error in augment parsing: failed to find module with prefix " + prefix + ".");
437             }
438
439             var currentName = path.get(0).getLocalName();
440             var SchemaNode currentParent = dependentModule.getDataChildByName(currentName);
441             if (currentParent === null) {
442                 val notifications = dependentModule.getNotifications();
443                 for (NotificationDefinition ntf : notifications) {
444                     if (ntf.getQName().getLocalName().equals(currentName)) {
445                         currentParent = ntf;
446                     }
447                 }
448             }
449             if (currentParent === null) {
450                 throw new YangParseException(module.getName(), line,
451                     "Error in augment parsing: failed to find node " + currentName + ".");
452             }
453
454             for (qname : path.nextLevel) {
455                 currentName = qname.getLocalName();
456                 if (currentParent instanceof DataNodeContainer) {
457                     currentParent = (currentParent as DataNodeContainer).getDataChildByName(currentName);
458                 } else if (currentParent instanceof ChoiceNode) {
459                     currentParent = (currentParent as ChoiceNode).getCaseNodeByName(currentName);
460                 } else {
461                     throw new YangParseException(augment.getModuleName(), line,
462                         "Error in augment parsing: failed to find node " + currentName);
463                 }
464
465                 // if node in path not found, return false
466                 if (currentParent === null) {
467                     throw new YangParseException(module.getName(), line,
468                         "Error in augment parsing: failed to find node " + currentName + ".");
469                 }
470             }
471
472             val oldPath = currentParent.path;
473
474             if (!(currentParent instanceof AugmentationTarget)) {
475                 throw new YangParseException(module.getName(), line,
476                     "Target of type " + currentParent.class + " cannot be augmented.");
477             }
478
479             switch (currentParent) {
480                 case (currentParent instanceof ContainerSchemaNodeImpl): {
481
482                     // includes container, input and output statement
483                     val c = currentParent as ContainerSchemaNodeImpl;
484                     val cb = c.toBuilder();
485                     fillAugmentTarget(augment, cb);
486                     (cb as AugmentationTargetBuilder ).addAugmentation(augment);
487                     cb.rebuild();
488                 }
489                 case (currentParent instanceof ListSchemaNodeImpl): {
490                     val l = currentParent as ListSchemaNodeImpl;
491                     val lb = l.toBuilder();
492                     fillAugmentTarget(augment, lb);
493                     (lb as AugmentationTargetBuilder ).addAugmentation(augment);
494                     lb.rebuild();
495                     augment.setTargetPath(new SchemaPath(oldPath.getPath(), oldPath.isAbsolute()));
496                     augment.setResolved(true);
497                 }
498                 case (currentParent instanceof ChoiceNodeImpl): {
499                     val ch = currentParent as ChoiceNodeImpl;
500                     val chb = ch.toBuilder();
501                     fillAugmentTarget(augment, chb);
502                     (chb as AugmentationTargetBuilder ).addAugmentation(augment);
503                     chb.rebuild();
504                     augment.setTargetPath(new SchemaPath(oldPath.getPath(), oldPath.isAbsolute()));
505                     augment.setResolved(true);
506                 }
507                 case (currentParent instanceof ChoiceCaseNodeImpl): {
508                     val chc = currentParent as ChoiceCaseNodeImpl;
509                     val chcb = chc.toBuilder();
510                     fillAugmentTarget(augment, chcb);
511                     (chcb as AugmentationTargetBuilder ).addAugmentation(augment);
512                     chcb.rebuild();
513                     augment.setTargetPath(new SchemaPath(oldPath.getPath(), oldPath.isAbsolute()));
514                     augment.setResolved(true);
515                 }
516                 case (currentParent instanceof NotificationDefinitionImpl): {
517                     val nd = currentParent as NotificationDefinitionImpl;
518                     val nb = nd.toBuilder();
519                     fillAugmentTarget(augment, nb);
520                     (nb as AugmentationTargetBuilder ).addAugmentation(augment);
521                     nb.rebuild();
522                     augment.setTargetPath(new SchemaPath(oldPath.getPath(), oldPath.isAbsolute()));
523                     augment.setResolved(true);
524                 }
525             }
526             augment.setTargetPath(new SchemaPath(oldPath.getPath(), oldPath.isAbsolute()));
527             augment.setResolved(true);
528             return true;
529         }
530
531         public static def QName findFullQName(Map<String, TreeMap<Date, ModuleBuilder>> modules,
532             ModuleBuilder module, IdentityrefTypeBuilder idref) {
533             var QName result = null;
534             val String baseString = idref.getBaseString();
535             if (baseString.contains(":")) {
536                 val String[] splittedBase = baseString.split(":");
537                 if (splittedBase.length > 2) {
538                     throw new YangParseException(module.getName(), idref.getLine(),
539                         "Failed to parse identityref base: " + baseString);
540                 }
541                 val prefix = splittedBase.get(0);
542                 val name = splittedBase.get(1);
543                 val dependentModule = findDependentModuleBuilder(modules, module, prefix, idref.getLine());
544                 result = new QName(dependentModule.getNamespace(), dependentModule.getRevision(), prefix, name);
545             } else {
546                 result = new QName(module.getNamespace(), module.getRevision(), module.getPrefix(), baseString);
547             }
548             return result;
549         }
550
551         /**
552      * Get module in which this node is defined.
553      *
554      * @param node
555      * @return builder of module where this node is defined
556      */
557         public static def ModuleBuilder getParentModule(Builder node) {
558             if (node instanceof ModuleBuilder) {
559                 return node as ModuleBuilder;
560             }
561             var parent = node.getParent();
562             while (!(parent instanceof ModuleBuilder)) {
563                 parent = parent.getParent();
564             }
565             return parent as ModuleBuilder;
566         }
567     }
568