Bump yangtools to 5.0.0-SNAPSHOT
[mdsal.git] / binding / mdsal-binding-generator-impl / src / main / java / org / opendaylight / mdsal / binding / yang / types / GroupingDefinitionDependencySort.java
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.mdsal.binding.yang.types;
9
10 import java.util.ArrayList;
11 import java.util.Collection;
12 import java.util.HashMap;
13 import java.util.HashSet;
14 import java.util.List;
15 import java.util.Map;
16 import java.util.Set;
17 import org.opendaylight.yangtools.util.TopologicalSort;
18 import org.opendaylight.yangtools.util.TopologicalSort.Node;
19 import org.opendaylight.yangtools.yang.model.api.ActionDefinition;
20 import org.opendaylight.yangtools.yang.model.api.ActionNodeContainer;
21 import org.opendaylight.yangtools.yang.model.api.AugmentationSchemaNode;
22 import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode;
23 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
24 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
25 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
26 import org.opendaylight.yangtools.yang.model.api.GroupingDefinition;
27 import org.opendaylight.yangtools.yang.model.api.NotificationDefinition;
28 import org.opendaylight.yangtools.yang.model.api.NotificationNodeContainer;
29 import org.opendaylight.yangtools.yang.model.api.UsesNode;
30
31 public class GroupingDefinitionDependencySort {
32     /**
33      * Sorts set {@code groupingDefinitions} according to the mutual dependencies.<br>
34      * Elements of {@code groupingDefinitions} are firstly transformed to {@link Node} interfaces and then are
35      * sorted by {@link TopologicalSort#sort(Set) sort()} method of {@code TopologicalSort}.<br>
36      *
37      * <i>Definition of dependency relation:<br>
38      * The first {@code GroupingDefinition} object (in this context) depends on second {@code GroupingDefinition} object
39      * if the first one contains in its set of {@code UsesNode} (obtained through {@link DataNodeContainer#getUses()})
40      * a reference to the second one.
41      * </i>
42      *
43      * @param groupingDefinitions set of grouping definition which should be sorted according to mutual dependencies
44      * @return list of grouping definitions which are sorted by mutual dependencies
45      * @throws IllegalArgumentException if {@code groupingDefinitions}
46      *
47      */
48     public List<GroupingDefinition> sort(final Collection<? extends GroupingDefinition> groupingDefinitions) {
49         if (groupingDefinitions == null) {
50             throw new IllegalArgumentException("Set of Type Definitions cannot be NULL!");
51         }
52
53         final List<GroupingDefinition> resultGroupingDefinitions = new ArrayList<>();
54         final Set<Node> unsorted = groupingDefinitionsToNodes(groupingDefinitions);
55         final List<Node> sortedNodes = TopologicalSort.sort(unsorted);
56         for (Node node : sortedNodes) {
57             NodeWrappedType nodeWrappedType = (NodeWrappedType) node;
58             resultGroupingDefinitions.add((GroupingDefinition) nodeWrappedType.getWrappedType());
59         }
60         return resultGroupingDefinitions;
61     }
62
63     /**
64      * Wraps every grouping definition to node type and adds to every node information about dependencies. The map
65      * with mapping from schema path (represents grouping definition) to node is created. For every created node
66      * (next <i>nodeFrom</i>) is for its wrapped grouping definition passed the set of its <i>uses nodes</i> through.
67      * For every uses node is found its wrapping node (next as <i>nodeTo</i>). This dependency relationship between
68      * nodeFrom and all found nodesTo is modeled with creating of one edge from nodeFrom to nodeTo.
69      *
70      * @param groupingDefinitions set of goruping definition which will be wrapped to nodes
71      * @return set of nodes where every one contains wrapped grouping definition
72      */
73     private Set<Node> groupingDefinitionsToNodes(final Collection<? extends GroupingDefinition> groupingDefinitions) {
74         final Map<GroupingDefinition, Node> nodeMap = new HashMap<>();
75         final Set<Node> resultNodes = new HashSet<>();
76
77         for (final GroupingDefinition groupingDefinition : groupingDefinitions) {
78             final Node node = new NodeWrappedType(groupingDefinition);
79             nodeMap.put(groupingDefinition, node);
80             resultNodes.add(node);
81         }
82
83         for (final Node node : resultNodes) {
84             final NodeWrappedType nodeWrappedType = (NodeWrappedType) node;
85             final GroupingDefinition groupingDefinition = (GroupingDefinition) nodeWrappedType.getWrappedType();
86
87             Set<UsesNode> usesNodes = getAllUsesNodes(groupingDefinition);
88
89             for (UsesNode usesNode : usesNodes) {
90                 Node nodeTo = nodeMap.get(usesNode.getSourceGrouping());
91                 if (nodeTo != null) {
92                     nodeWrappedType.addEdge(nodeTo);
93                 }
94             }
95         }
96
97         return resultNodes;
98     }
99
100     /**
101      * Returns the set of the uses nodes which are get from uses in <code>container</code>, from uses in groupings
102      * inside <code>container</code> and from uses inside child nodes of the <code>container</code>.
103      *
104      * @param container data node container which can contain some uses of grouping
105      * @return set of uses nodes which were find in <code>container</code>.
106      */
107     private Set<UsesNode> getAllUsesNodes(final DataNodeContainer container) {
108         Set<UsesNode> ret = new HashSet<>();
109         Collection<? extends UsesNode> usesNodes = container.getUses();
110         ret.addAll(usesNodes);
111
112         for (UsesNode usesNode : usesNodes) {
113             for (AugmentationSchemaNode augment : usesNode.getAugmentations()) {
114                 ret.addAll(getAllUsesNodes(augment));
115             }
116         }
117         for (GroupingDefinition groupingDefinition : container.getGroupings()) {
118             ret.addAll(getAllUsesNodes(groupingDefinition));
119         }
120         for (DataSchemaNode childNode : container.getChildNodes()) {
121             if (childNode instanceof DataNodeContainer) {
122                 ret.addAll(getAllUsesNodes((DataNodeContainer) childNode));
123             } else if (childNode instanceof ChoiceSchemaNode) {
124                 for (CaseSchemaNode choiceCaseNode : ((ChoiceSchemaNode) childNode).getCases()) {
125                     ret.addAll(getAllUsesNodes(choiceCaseNode));
126                 }
127             }
128         }
129         if (container instanceof ActionNodeContainer) {
130             for (ActionDefinition action : ((ActionNodeContainer) container).getActions()) {
131                 ret.addAll(getAllUsesNodes(action.getInput()));
132                 ret.addAll(getAllUsesNodes(action.getOutput()));
133             }
134         }
135         if (container instanceof NotificationNodeContainer) {
136             for (NotificationDefinition notification : ((NotificationNodeContainer) container).getNotifications()) {
137                 ret.addAll(getAllUsesNodes(notification));
138             }
139         }
140
141         return ret;
142     }
143 }