187c593838177ccd21ba20a59d5e77d245804100
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / RpcEffectiveStatementImpl.java
1 /**
2  * Copyright (c) 2015 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.stmt.rfc6020.effective;
9
10 import com.google.common.collect.ImmutableSet;
11 import java.util.Collection;
12 import java.util.HashSet;
13 import java.util.Objects;
14 import java.util.Set;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
17 import org.opendaylight.yangtools.yang.model.api.GroupingDefinition;
18 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
19 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
20 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
21 import org.opendaylight.yangtools.yang.model.api.stmt.RpcStatement;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
23
24 public class RpcEffectiveStatementImpl extends AbstractEffectiveSchemaNode<RpcStatement> implements RpcDefinition {
25     private final ContainerSchemaNode input;
26     private final ContainerSchemaNode output;
27     private final Set<TypeDefinition<?>> typeDefinitions;
28     private final Set<GroupingDefinition> groupings;
29
30     public RpcEffectiveStatementImpl(final StmtContext<QName, RpcStatement, EffectiveStatement<QName, RpcStatement>> ctx) {
31         super(ctx);
32         this.input = firstEffective(InputEffectiveStatementImpl.class);
33         this.output = firstEffective(OutputEffectiveStatementImpl.class);
34
35         // initSubstatements
36         Collection<? extends EffectiveStatement<?, ?>> effectiveSubstatements = effectiveSubstatements();
37         Set<GroupingDefinition> groupingsInit = new HashSet<>();
38         Set<TypeDefinition<?>> typeDefinitionsInit = new HashSet<>();
39         for (EffectiveStatement<?, ?> effectiveStatement : effectiveSubstatements) {
40             if (effectiveStatement instanceof GroupingDefinition) {
41                 GroupingDefinition groupingDefinition = (GroupingDefinition) effectiveStatement;
42                 groupingsInit.add(groupingDefinition);
43             }
44             if (effectiveStatement instanceof TypeDefinition) {
45                 TypeDefinition<?> typeDefinition = (TypeDefinition<?>) effectiveStatement;
46                 typeDefinitionsInit.add(typeDefinition);
47             }
48         }
49         this.groupings = ImmutableSet.copyOf(groupingsInit);
50         this.typeDefinitions = ImmutableSet.copyOf(typeDefinitionsInit);
51     }
52
53     @Override
54     public ContainerSchemaNode getInput() {
55         return input;
56     }
57
58     @Override
59     public ContainerSchemaNode getOutput() {
60         return output;
61     }
62
63     @Override
64     public Set<TypeDefinition<?>> getTypeDefinitions() {
65         return typeDefinitions;
66     }
67
68     @Override
69     public Set<GroupingDefinition> getGroupings() {
70         return groupings;
71     }
72
73     @Override
74     public int hashCode() {
75         final int prime = 31;
76         int result = 1;
77         result = prime * result + Objects.hashCode(getQName());
78         result = prime * result + Objects.hashCode(getPath());
79         return result;
80     }
81
82     @Override
83     public boolean equals(final Object obj) {
84         if (this == obj) {
85             return true;
86         }
87         if (obj == null) {
88             return false;
89         }
90         if (getClass() != obj.getClass()) {
91             return false;
92         }
93         final RpcEffectiveStatementImpl other = (RpcEffectiveStatementImpl) obj;
94         return Objects.equals(getQName(), other.getQName()) && Objects.equals(getPath(), other.getPath());
95     }
96
97     @Override
98     public String toString() {
99         StringBuilder sb = new StringBuilder(RpcEffectiveStatementImpl.class.getSimpleName());
100         sb.append("[");
101         sb.append("qname=");
102         sb.append(getQName());
103         sb.append(", path=");
104         sb.append(getPath());
105         sb.append(", input=");
106         sb.append(input);
107         sb.append(", output=");
108         sb.append(output);
109         sb.append("]");
110         return sb.toString();
111     }
112 }