Unify streamChild() implementations
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / AbstractDataObjectCodecContext.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech, s.r.o. 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.dom.codec.impl;
9
10 import com.google.common.base.Throwables;
11 import com.google.common.collect.ImmutableMap;
12 import com.google.common.collect.ImmutableSet;
13 import java.lang.invoke.MethodHandle;
14 import java.util.List;
15 import java.util.Map;
16 import org.eclipse.jdt.annotation.NonNull;
17 import org.eclipse.jdt.annotation.Nullable;
18 import org.opendaylight.mdsal.binding.dom.codec.api.IncorrectNestingException;
19 import org.opendaylight.mdsal.binding.runtime.api.CompositeRuntimeType;
20 import org.opendaylight.yangtools.yang.binding.Augmentation;
21 import org.opendaylight.yangtools.yang.binding.DataObject;
22 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
23 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
24 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
25 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
26 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerNode;
27 import org.opendaylight.yangtools.yang.model.api.DocumentedNode.WithStatus;
28
29 /**
30  * Abstract base for {@link DataObjectCodecContext} and {@link AugmentationCodecContext}. They share most of their
31  * mechanics, but notably:
32  * <ol>
33  *   <li>DataObjectCodecContext has an exact DistinctNodeContainer and YangInstanceIdentifier mapping and can be the
34  *       target of augmentations (i.e. can implement Augmentable contract)</li>
35  *   <li>AugmentationNodeContext has neither of those traits and really is just a filter of its parent
36  *       DistinctNodeContainer</li>
37  * </ol>
38  *
39  * <p>
40  * Unfortunately {@code Augmentation} is a also a {@link DataObject}, so things get a bit messy.
41  *
42  * <p>
43  * While this class is public, it not part of API surface and is an implementation detail. The only reason for it being
44  * public is that it needs to be accessible by code generated at runtime.
45  */
46 public abstract sealed class AbstractDataObjectCodecContext<D extends DataObject, T extends CompositeRuntimeType>
47         extends CommonDataObjectCodecContext<D, T>
48         permits AugmentationCodecContext, DataObjectCodecContext {
49     private final ImmutableMap<Class<?>, CommonDataObjectCodecPrototype<?>> byBindingArgClass;
50     private final ImmutableMap<Class<?>, CommonDataObjectCodecPrototype<?>> byStreamClass;
51     private final ImmutableMap<NodeIdentifier, CodecContextSupplier> byYang;
52     private final ImmutableMap<String, ValueNodeCodecContext> leafChild;
53     private final MethodHandle proxyConstructor;
54
55     AbstractDataObjectCodecContext(final CommonDataObjectCodecPrototype<T> prototype,
56             final CodecDataObjectAnalysis<T> analysis) {
57         super(prototype);
58         byBindingArgClass = analysis.byBindingArgClass;
59         byStreamClass = analysis.byStreamClass;
60         byYang = analysis.byYang;
61         leafChild = analysis.leafNodes;
62         proxyConstructor = analysis.proxyConstructor;
63     }
64
65     @Override
66     public final WithStatus getSchema() {
67         // FIXME: Bad cast, we should be returning an EffectiveStatement perhaps?
68         return (WithStatus) type().statement();
69     }
70
71     @Override
72     CommonDataObjectCodecPrototype<?> streamChildPrototype(final Class<?> childClass) {
73         return byStreamClass.get(childClass);
74     }
75
76     @Override
77     public final CommonDataObjectCodecContext<?, ?> bindingPathArgumentChild(final InstanceIdentifier.PathArgument arg,
78             final List<PathArgument> builder) {
79         final var argType = arg.getType();
80         final var context = childNonNull(pathChildPrototype(argType), argType,
81             "Class %s is not valid child of %s", argType, getBindingClass())
82             .get();
83         if (context instanceof ChoiceCodecContext<?> choice) {
84             choice.addYangPathArgument(arg, builder);
85
86             final var caseType = arg.getCaseType();
87             final var type = arg.getType();
88             final DataContainerCodecContext<?, ?> caze;
89             if (caseType.isPresent()) {
90                 // Non-ambiguous addressing this should not pose any problems
91                 caze = choice.getStreamChild(caseType.orElseThrow());
92             } else {
93                 caze = choice.getCaseByChildClass(type);
94             }
95
96             caze.addYangPathArgument(arg, builder);
97             return caze.bindingPathArgumentChild(arg, builder);
98         }
99         context.addYangPathArgument(arg, builder);
100         return context;
101     }
102
103     @Nullable CommonDataObjectCodecPrototype<?> pathChildPrototype(final @NonNull Class<? extends DataObject> argType) {
104         return byBindingArgClass.get(argType);
105     }
106
107     @Override
108     public final CodecContext yangPathArgumentChild(final PathArgument arg) {
109         CodecContextSupplier supplier;
110         if (arg instanceof NodeIdentifier nodeId) {
111             supplier = yangChildSupplier(nodeId);
112         } else if (arg instanceof NodeIdentifierWithPredicates nip) {
113             supplier = yangChildSupplier(new NodeIdentifier(nip.getNodeType()));
114         } else {
115             supplier = null;
116         }
117         return childNonNull(supplier, arg, "Argument %s is not valid child of %s", arg, getSchema()).get();
118     }
119
120     @Nullable CodecContextSupplier yangChildSupplier(final @NonNull NodeIdentifier arg) {
121         return byYang.get(arg);
122     }
123
124     @SuppressWarnings("checkstyle:illegalCatch")
125     final @NonNull D createBindingProxy(final DataContainerNode node) {
126         try {
127             return (D) proxyConstructor.invokeExact(this, node);
128         } catch (final Throwable e) {
129             Throwables.throwIfUnchecked(e);
130             throw new IllegalStateException(e);
131         }
132     }
133
134     final ValueNodeCodecContext getLeafChild(final String name) {
135         final ValueNodeCodecContext value = leafChild.get(name);
136         if (value == null) {
137             throw new IncorrectNestingException("Leaf %s is not valid for %s", name, getBindingClass());
138         }
139         return value;
140     }
141
142     final @NonNull ImmutableSet<NodeIdentifier> byYangKeySet() {
143         return byYang.keySet();
144     }
145
146     abstract @NonNull Map<Class<? extends Augmentation<?>>, Augmentation<?>> getAllAugmentationsFrom(
147         DataContainerNode data);
148 }