Improve BindingRuntimeContext.getAugmentationDefinition()
[mdsal.git] / binding / mdsal-binding-runtime-api / src / main / java / org / opendaylight / mdsal / binding / runtime / api / BindingRuntimeContext.java
1 /*
2  * Copyright (c) 2014 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.runtime.api;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.collect.ImmutableMap;
12 import java.util.Map;
13 import java.util.Map.Entry;
14 import java.util.Optional;
15 import java.util.Set;
16 import org.eclipse.jdt.annotation.NonNull;
17 import org.eclipse.jdt.annotation.Nullable;
18 import org.opendaylight.mdsal.binding.model.api.GeneratedType;
19 import org.opendaylight.mdsal.binding.model.api.Type;
20 import org.opendaylight.yangtools.concepts.Immutable;
21 import org.opendaylight.yangtools.yang.binding.Action;
22 import org.opendaylight.yangtools.yang.binding.Augmentation;
23 import org.opendaylight.yangtools.yang.common.QName;
24 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
25 import org.opendaylight.yangtools.yang.model.api.ActionDefinition;
26 import org.opendaylight.yangtools.yang.model.api.AugmentationSchemaNode;
27 import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode;
28 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
29 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
30 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
31 import org.opendaylight.yangtools.yang.model.api.DocumentedNode.WithStatus;
32 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
33 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContextProvider;
34 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
35 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
36 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute;
37
38 /**
39  * Runtime Context for Java YANG Binding classes. It provides information derived from the backing effective model,
40  * which is not captured in generated classes (and hence cannot be obtained from {@code BindingReflections}.
41  *
42  * <p>Some of this information are for example list of all available children for cases
43  * {@link #getChoiceCaseChildren(DataNodeContainer)}, since choices are augmentable and new choices may be introduced
44  * by additional models. Same goes for all possible augmentations.
45  */
46 @Beta
47 public interface BindingRuntimeContext extends EffectiveModelContextProvider, Immutable {
48     @NonNull BindingRuntimeTypes getTypes();
49
50     @NonNull <T> Class<T> loadClass(Type type) throws ClassNotFoundException;
51
52     @Override
53     default EffectiveModelContext getEffectiveModelContext() {
54         return getTypes().getEffectiveModelContext();
55     }
56
57     /**
58      * Returns schema of augmentation.
59      *
60      * <p>Returned schema is schema definition from which augmentation class was generated.
61      * This schema is isolated from other augmentations. This means it contains
62      * augmentation definition as was present in original YANG module.
63      *
64      * <p>Children of returned schema does not contain any additional augmentations,
65      * which may be present in runtime for them, thus returned schema is unsuitable
66      * for use for validation of data.
67      *
68      * <p>For retrieving {@link AugmentationSchemaNode}, which will contains
69      * full model for child nodes, you should use method
70      * {@link #getResolvedAugmentationSchema(DataNodeContainer, Class)}
71      * which will return augmentation schema derived from supplied augmentation target
72      * schema.
73      *
74      * @param augClass Augmentation class
75      * @return Schema of augmentation or null if augmentation is not known in this context
76      */
77     <T extends Augmentation<?>> @Nullable AugmentationSchemaNode getAugmentationDefinition(Class<T> augClass);
78
79     /**
80      * Returns defining {@link DataSchemaNode} for supplied class.
81      *
82      * <p>Returned schema is schema definition from which class was generated.
83      * This schema may be isolated from augmentations, if supplied class
84      * represent node, which was child of grouping or augmentation.
85      *
86      * <p>For getting augmentation schema from augmentation class use
87      * {@link #getAugmentationDefinition(Class)} instead.
88      *
89      * @param cls Class which represents list, container, choice or case.
90      * @return Schema node, from which class was generated.
91      */
92     @Nullable DataSchemaNode getSchemaDefinition(Class<?> cls);
93
94     @Nullable ActionDefinition getActionDefinition(Class<? extends Action<?, ?, ?>> cls);
95
96     @Nullable Absolute getActionIdentifier(Class<? extends Action<?, ?, ?>> cls);
97
98     @NonNull Entry<AugmentationIdentifier, AugmentationSchemaNode> getResolvedAugmentationSchema(
99             DataNodeContainer target, Class<? extends Augmentation<?>> aug);
100
101     /**
102      * Returns resolved case schema for supplied class.
103      *
104      * @param schema Resolved parent choice schema
105      * @param childClass Class representing case.
106      * @return Optionally a resolved case schema,.empty if the choice is not legal in
107      *         the given context.
108      * @throws IllegalArgumentException If supplied class does not represent case.
109      */
110     @NonNull Optional<CaseSchemaNode> getCaseSchemaDefinition(ChoiceSchemaNode schema, Class<?> childClass);
111
112     /**
113      * Returns schema ({@link DataSchemaNode}, {@link AugmentationSchemaNode} or {@link TypeDefinition})
114      * from which supplied class was generated. Returned schema may be augmented with
115      * additional information, which was not available at compile type
116      * (e.g. third party augmentations).
117      *
118      * @param type Binding Class for which schema should be retrieved.
119      * @return Instance of generated type (definition of Java API), along with
120      *     {@link DataSchemaNode}, {@link AugmentationSchemaNode} or {@link TypeDefinition}
121      *     which was used to generate supplied class.
122      */
123     @NonNull Entry<GeneratedType, WithStatus> getTypeWithSchema(Class<?> type);
124
125     @NonNull Map<Type, Entry<Type, Type>> getChoiceCaseChildren(DataNodeContainer schema);
126
127     @NonNull Set<Class<?>> getCases(Class<?> choice);
128
129     @NonNull Class<?> getClassForSchema(SchemaNode childSchema);
130
131     @NonNull ImmutableMap<AugmentationIdentifier, Type> getAvailableAugmentationTypes(DataNodeContainer container);
132
133     @NonNull Class<?> getIdentityClass(QName input);
134 }