Bump upstreams
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / DataObjectCodecContext.java
index 43ea4752bdcee36cd71e7a80bd1a95c094b3acb9..b63befcbe96f7ef77125fe1664cbf69ff309e555 100644 (file)
 package org.opendaylight.mdsal.binding.dom.codec.impl;
 
 import static com.google.common.base.Preconditions.checkArgument;
-import static com.google.common.base.Verify.verify;
-import static com.google.common.base.Verify.verifyNotNull;
-import static java.util.Objects.requireNonNull;
 
-import com.google.common.base.Throwables;
-import com.google.common.collect.ImmutableList;
+import com.google.common.annotations.Beta;
+import com.google.common.collect.ImmutableCollection;
 import com.google.common.collect.ImmutableMap;
-import com.google.common.collect.ImmutableMap.Builder;
-import com.google.common.collect.ImmutableSortedMap;
-import java.lang.invoke.MethodHandle;
+import com.google.common.collect.ImmutableSet;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.lang.invoke.MethodHandles;
-import java.lang.invoke.MethodType;
-import java.lang.reflect.InvocationHandler;
+import java.lang.invoke.VarHandle;
 import java.lang.reflect.Method;
-import java.lang.reflect.Proxy;
-import java.util.Collection;
-import java.util.Comparator;
 import java.util.HashMap;
-import java.util.Iterator;
-import java.util.List;
 import java.util.Map;
-import java.util.Map.Entry;
-import java.util.Optional;
-import java.util.SortedMap;
-import java.util.TreeMap;
-import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
-import java.util.function.Function;
 import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.jdt.annotation.Nullable;
-import org.opendaylight.mdsal.binding.generator.api.ClassLoadingStrategy;
-import org.opendaylight.mdsal.binding.model.api.JavaTypeName;
+import org.opendaylight.mdsal.binding.dom.codec.api.BindingDataObjectCodecTreeNode;
+import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeCachingCodec;
+import org.opendaylight.mdsal.binding.model.api.GeneratedType;
 import org.opendaylight.mdsal.binding.model.api.Type;
-import org.opendaylight.mdsal.binding.spec.reflect.BindingReflections;
-import org.opendaylight.yangtools.concepts.Immutable;
-import org.opendaylight.yangtools.util.ClassLoaderUtils;
-import org.opendaylight.yangtools.yang.binding.Augmentable;
+import org.opendaylight.mdsal.binding.runtime.api.AugmentRuntimeType;
+import org.opendaylight.mdsal.binding.runtime.api.BindingRuntimeContext;
+import org.opendaylight.mdsal.binding.runtime.api.CompositeRuntimeType;
 import org.opendaylight.yangtools.yang.binding.Augmentation;
-import org.opendaylight.yangtools.yang.binding.AugmentationHolder;
+import org.opendaylight.yangtools.yang.binding.BindingObject;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier.Item;
 import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
-import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
+import org.opendaylight.yangtools.yang.data.api.schema.DataContainerNode;
 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
-import org.opendaylight.yangtools.yang.model.api.AugmentationSchemaNode;
-import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
-import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
-import org.opendaylight.yangtools.yang.model.api.DocumentedNode.WithStatus;
-import org.opendaylight.yangtools.yang.model.util.SchemaNodeUtils;
+import org.opendaylight.yangtools.yang.data.api.schema.builder.DataContainerNodeBuilder;
+import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
+import org.opendaylight.yangtools.yang.model.api.stmt.SchemaTreeEffectiveStatement;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-abstract class DataObjectCodecContext<D extends DataObject, T extends DataNodeContainer & WithStatus>
-        extends DataContainerCodecContext<D, T> {
-    private static final class Augmentations implements Immutable {
-        final ImmutableMap<YangInstanceIdentifier.PathArgument, DataContainerCodecPrototype<?>> byYang;
-        final ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> byStream;
-
-        Augmentations(final ImmutableMap<YangInstanceIdentifier.PathArgument, DataContainerCodecPrototype<?>> byYang,
-            final ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> byStream) {
-            this.byYang = requireNonNull(byYang);
-            this.byStream = requireNonNull(byStream);
-        }
-    }
-
+/**
+ * This class is an implementation detail. It is public only due to technical reasons and may change at any time.
+ */
+@Beta
+public abstract sealed class DataObjectCodecContext<D extends DataObject, T extends CompositeRuntimeType>
+        extends AbstractDataObjectCodecContext<D, T> implements BindingDataObjectCodecTreeNode<D>
+        permits CaseCodecContext, ContainerLikeCodecContext, ListCodecContext, NotificationCodecContext {
     private static final Logger LOG = LoggerFactory.getLogger(DataObjectCodecContext.class);
-    private static final MethodType CONSTRUCTOR_TYPE = MethodType.methodType(void.class, InvocationHandler.class);
-    private static final MethodType DATAOBJECT_TYPE = MethodType.methodType(DataObject.class, InvocationHandler.class);
-    private static final Comparator<Method> METHOD_BY_ALPHABET = Comparator.comparing(Method::getName);
-    private static final Augmentations EMPTY_AUGMENTATIONS = new Augmentations(ImmutableMap.of(), ImmutableMap.of());
-
-    private final ImmutableMap<String, LeafNodeCodecContext<?>> leafChild;
-    private final ImmutableMap<YangInstanceIdentifier.PathArgument, NodeContextSupplier> byYang;
-    private final ImmutableSortedMap<Method, NodeContextSupplier> byMethod;
-    private final ImmutableMap<Method, NodeContextSupplier> nonnullMethods;
-    private final ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> byStreamClass;
-    private final ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> byBindingArgClass;
-    private final ImmutableMap<AugmentationIdentifier, Type> possibleAugmentations;
-    private final MethodHandle proxyConstructor;
-
-    @SuppressWarnings("rawtypes")
-    private static final AtomicReferenceFieldUpdater<DataObjectCodecContext, Augmentations>
-        AUGMENTATIONS_UPDATER = AtomicReferenceFieldUpdater.newUpdater(DataObjectCodecContext.class,
-            Augmentations.class, "augmentations");
-    private volatile Augmentations augmentations = EMPTY_AUGMENTATIONS;
-
-    private volatile ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> mismatchedAugmented = ImmutableMap.of();
-
-    DataObjectCodecContext(final DataContainerCodecPrototype<T> prototype) {
-        super(prototype);
-
-        final Class<D> bindingClass = getBindingClass();
-        this.leafChild = factory().getLeafNodes(bindingClass, getSchema());
-
-        final Map<Class<?>, Method> clsToMethod = BindingReflections.getChildrenClassToMethod(bindingClass);
-
-        final Map<YangInstanceIdentifier.PathArgument, NodeContextSupplier> byYangBuilder = new HashMap<>();
-        final SortedMap<Method, NodeContextSupplier> byMethodBuilder = new TreeMap<>(METHOD_BY_ALPHABET);
-        final Map<Class<?>, DataContainerCodecPrototype<?>> byStreamClassBuilder = new HashMap<>();
-        final Map<Class<?>, DataContainerCodecPrototype<?>> byBindingArgClassBuilder = new HashMap<>();
-
-        // Adds leaves to mapping
-        for (final LeafNodeCodecContext<?> leaf : leafChild.values()) {
-            byMethodBuilder.put(leaf.getGetter(), leaf);
-            byYangBuilder.put(leaf.getDomPathArgument(), leaf);
-        }
 
-        for (final Entry<Class<?>, Method> childDataObj : clsToMethod.entrySet()) {
-            final Method method = childDataObj.getValue();
-            verify(!method.isDefault(), "Unexpected default method %s in %s", method, bindingClass);
-            final DataContainerCodecPrototype<?> childProto = loadChildPrototype(childDataObj.getKey());
-            byMethodBuilder.put(method, childProto);
-            byStreamClassBuilder.put(childProto.getBindingClass(), childProto);
-            byYangBuilder.put(childProto.getYangArg(), childProto);
-            if (childProto.isChoice()) {
-                final ChoiceNodeCodecContext<?> choice = (ChoiceNodeCodecContext<?>) childProto.get();
-                for (final Class<?> cazeChild : choice.getCaseChildrenClasses()) {
-                    byBindingArgClassBuilder.put(cazeChild, childProto);
-                }
-            }
-        }
-        this.byMethod = ImmutableSortedMap.copyOfSorted(byMethodBuilder);
-        this.byYang = ImmutableMap.copyOf(byYangBuilder);
-        this.byStreamClass = ImmutableMap.copyOf(byStreamClassBuilder);
-        byBindingArgClassBuilder.putAll(byStreamClass);
-        this.byBindingArgClass = ImmutableMap.copyOf(byBindingArgClassBuilder);
-
-        final Map<Class<?>, Method> clsToNonnull = BindingReflections.getChildrenClassToNonnullMethod(bindingClass);
-        final Map<Method, NodeContextSupplier> nonnullMethodsBuilder = new HashMap<>();
-        for (final Entry<Class<?>, Method> entry : clsToNonnull.entrySet()) {
-            final Method method = entry.getValue();
-            if (!method.isDefault()) {
-                LOG.warn("Ignoring non-default method {} in {}", method, bindingClass);
-                continue;
-            }
-            final DataContainerCodecPrototype<?> supplier = byStreamClass.get(entry.getKey());
-            if (supplier != null) {
-                nonnullMethodsBuilder.put(method, supplier);
-            } else {
-                LOG.warn("Failed to look up data handler for method {}", method);
-            }
-        }
-
-        nonnullMethods = ImmutableMap.copyOf(nonnullMethodsBuilder);
-
-        if (Augmentable.class.isAssignableFrom(bindingClass)) {
-            this.possibleAugmentations = factory().getRuntimeContext().getAvailableAugmentationTypes(getSchema());
-        } else {
-            this.possibleAugmentations = ImmutableMap.of();
-        }
-        reloadAllAugmentations();
+    private static final VarHandle MISMATCHED_AUGMENTED;
 
-        final Class<?> proxyClass = Proxy.getProxyClass(bindingClass.getClassLoader(), bindingClass,
-            AugmentationHolder.class);
+    static {
         try {
-            proxyConstructor = MethodHandles.publicLookup().findConstructor(proxyClass, CONSTRUCTOR_TYPE)
-                    .asType(DATAOBJECT_TYPE);
-        } catch (NoSuchMethodException | IllegalAccessException e) {
-            throw new IllegalStateException("Failed to find contructor for class " + proxyClass, e);
+            MISMATCHED_AUGMENTED = MethodHandles.lookup().findVarHandle(DataObjectCodecContext.class,
+                "mismatchedAugmented", ImmutableMap.class);
+        } catch (NoSuchFieldException | IllegalAccessException e) {
+            throw new ExceptionInInitializerError(e);
         }
     }
 
-    // This method could be synchronized, but that would mean that concurrent attempts to load an invalid augmentation
-    // would end up being unnecessarily contended -- blocking real progress and not being able to run concurrently
-    // while producing no effect. We therefore use optimistic read + CAS.
-    private void reloadAllAugmentations() {
-        // Load current values
-        Augmentations oldAugmentations = augmentations;
+    private final ImmutableMap<Class<?>, AugmentationCodecPrototype> augmentToPrototype;
+    private final ImmutableMap<NodeIdentifier, Class<?>> yangToAugmentClass;
+    private final @NonNull Class<? extends CodecDataObject<?>> generatedClass;
 
-        // FIXME: can we detect when we have both maps fully populated and skip all of this?
+    // Note this the content of this field depends only of invariants expressed as this class's fields or
+    // BindingRuntimeContext. It is only accessed via MISMATCHED_AUGMENTED above.
+    @SuppressWarnings("unused")
+    @SuppressFBWarnings(value = "URF_UNREAD_FIELD", justification = "https://github.com/spotbugs/spotbugs/issues/2749")
+    private volatile ImmutableMap<Class<?>, CommonDataObjectCodecPrototype<?>> mismatchedAugmented = ImmutableMap.of();
 
-        // Scratch space for additions
-        final Map<PathArgument, DataContainerCodecPrototype<?>> addByYang = new HashMap<>();
-        final Map<Class<?>, DataContainerCodecPrototype<?>> addByStream = new HashMap<>();
-
-        // Iterate over all possibilities, checking for modifications.
-        for (final Type augment : possibleAugmentations.values()) {
-            final DataContainerCodecPrototype<?> augProto = getAugmentationPrototype(augment);
-            if (augProto != null) {
-                final PathArgument yangArg = augProto.getYangArg();
-                final Class<?> bindingClass = augProto.getBindingClass();
-                if (!oldAugmentations.byYang.containsKey(yangArg)) {
-                    if (addByYang.putIfAbsent(yangArg, augProto) == null) {
-                        LOG.trace("Discovered new YANG mapping {} -> {} in {}", yangArg, augProto, this);
-                    }
-                }
-                if (!oldAugmentations.byStream.containsKey(bindingClass)) {
-                    if (addByStream.putIfAbsent(bindingClass, augProto) == null) {
-                        LOG.trace("Discovered new class mapping {} -> {} in {}", bindingClass, augProto, this);
-                    }
-                }
-            }
-        }
-
-        while (true) {
-            if (addByYang.isEmpty() && addByStream.isEmpty()) {
-                LOG.trace("No new augmentations discovered in {}", this);
-                return;
-            }
-
-            // We have some additions, propagate them out
-            final Augmentations newAugmentations = new Augmentations(concatMaps(oldAugmentations.byYang, addByYang),
-                concatMaps(oldAugmentations.byStream, addByStream));
-            if (AUGMENTATIONS_UPDATER.compareAndSet(this, oldAugmentations, newAugmentations)) {
-                // Success, we are done
-                return;
-            }
-
-            // We have raced installing new augmentations, read them again, remove everything present in the installed
-            // once and try again. This may mean that we end up not doing anything, but that's fine.
-            oldAugmentations = augmentations;
-
-            // We could use Map.removeAll(oldAugmentations.byYang.keySet()), but that forces the augmentation's keyset
-            // to be materialized, which we otherwise do not need. Hence we do this the other way around, instantiating
-            // our temporary maps' keySets and iterating over them. That's fine as we'll be throwing those maps away.
-            removeMapKeys(addByYang, oldAugmentations.byYang);
-            removeMapKeys(addByStream, oldAugmentations.byStream);
-        }
+    DataObjectCodecContext(final CommonDataObjectCodecPrototype<T> prototype) {
+        this(prototype, CodecItemFactory.of());
     }
 
-    private static <K, V> ImmutableMap<K, V> concatMaps(final ImmutableMap<K, V> old, final Map<K, V> add) {
-        if (add.isEmpty()) {
-            return old;
-        }
-
-        final Builder<K, V> builder = ImmutableMap.builderWithExpectedSize(old.size() + add.size());
-        builder.putAll(old);
-        builder.putAll(add);
-        return builder.build();
+    DataObjectCodecContext(final CommonDataObjectCodecPrototype<T> prototype, final CodecItemFactory itemFactory) {
+        this(prototype, new CodecDataObjectAnalysis<>(prototype, itemFactory, null));
     }
 
-    private static <K, V> void removeMapKeys(final Map<K, V> removeFrom, final ImmutableMap<K, V> map) {
-        final Iterator<K> it = removeFrom.keySet().iterator();
-        while (it.hasNext()) {
-            if (map.containsKey(it.next())) {
-                it.remove();
-            }
-        }
+    DataObjectCodecContext(final CommonDataObjectCodecPrototype<T> prototype, final Method keyMethod) {
+        this(prototype, new CodecDataObjectAnalysis<>(prototype, CodecItemFactory.of(), keyMethod));
     }
 
-    @SuppressWarnings("unchecked")
-    @Override
-    public <C extends DataObject> DataContainerCodecContext<C, ?> streamChild(final Class<C> childClass) {
-        final DataContainerCodecPrototype<?> childProto = streamChildPrototype(childClass);
-        return (DataContainerCodecContext<C, ?>) childNonNull(childProto, childClass, " Child %s is not valid child.",
-                childClass).get();
-    }
+    private DataObjectCodecContext(final CommonDataObjectCodecPrototype<T> prototype,
+            final CodecDataObjectAnalysis<T> analysis) {
+        super(prototype, analysis);
 
-    private DataContainerCodecPrototype<?> streamChildPrototype(final Class<?> childClass) {
-        final DataContainerCodecPrototype<?> childProto = byStreamClass.get(childClass);
-        if (childProto != null) {
-            return childProto;
-        }
-        if (Augmentation.class.isAssignableFrom(childClass)) {
-            return augmentationByClass(childClass);
-        }
-        return null;
-    }
+        // Inherit analysis stuff
+        generatedClass = analysis.generatedClass;
 
-    @SuppressWarnings("unchecked")
-    @Override
-    public <C extends DataObject> Optional<DataContainerCodecContext<C, ?>> possibleStreamChild(
-            final Class<C> childClass) {
-        final DataContainerCodecPrototype<?> childProto = streamChildPrototype(childClass);
-        if (childProto != null) {
-            return Optional.of((DataContainerCodecContext<C, ?>) childProto.get());
+        // Deal with augmentations, which are not something we analysis provides
+        final var augPathToBinding = new HashMap<NodeIdentifier, Class<?>>();
+        final var augClassToProto = new HashMap<Class<?>, AugmentationCodecPrototype>();
+        for (var augment : analysis.possibleAugmentations) {
+            final var augProto = loadAugmentPrototype(augment);
+            if (augProto != null) {
+                final var augBindingClass = augProto.getBindingClass();
+                for (var childPath : augProto.getChildArgs()) {
+                    augPathToBinding.putIfAbsent(childPath, augBindingClass);
+                }
+                augClassToProto.putIfAbsent(augBindingClass, augProto);
+            }
         }
-        return Optional.empty();
+        yangToAugmentClass = ImmutableMap.copyOf(augPathToBinding);
+        augmentToPrototype = ImmutableMap.copyOf(augClassToProto);
     }
 
     @Override
-    public DataContainerCodecContext<?,?> bindingPathArgumentChild(final InstanceIdentifier.PathArgument arg,
-            final List<YangInstanceIdentifier.PathArgument> builder) {
-
-        final Class<? extends DataObject> argType = arg.getType();
-        DataContainerCodecPrototype<?> ctxProto = byBindingArgClass.get(argType);
-        if (ctxProto == null && Augmentation.class.isAssignableFrom(argType)) {
-            ctxProto = augmentationByClass(argType);
-        }
-        final DataContainerCodecContext<?, ?> context =
-                childNonNull(ctxProto, argType, "Class %s is not valid child of %s", argType, getBindingClass()).get();
-        if (context instanceof ChoiceNodeCodecContext) {
-            final ChoiceNodeCodecContext<?> choice = (ChoiceNodeCodecContext<?>) context;
-            choice.addYangPathArgument(arg, builder);
-
-            final Optional<? extends Class<? extends DataObject>> caseType = arg.getCaseType();
-            final Class<? extends DataObject> type = arg.getType();
-            final DataContainerCodecContext<?, ?> caze;
-            if (caseType.isPresent()) {
-                // Non-ambiguous addressing this should not pose any problems
-                caze = choice.streamChild(caseType.get());
-            } else {
-                caze = choice.getCaseByChildClass(type);
-            }
-
-            caze.addYangPathArgument(arg, builder);
-            return caze.bindingPathArgumentChild(arg, builder);
-        }
-        context.addYangPathArgument(arg, builder);
-        return context;
+    final CommonDataObjectCodecPrototype<?> pathChildPrototype(final Class<? extends DataObject> argType) {
+        final var child = super.pathChildPrototype(argType);
+        return child != null ? child : augmentToPrototype.get(argType);
     }
 
-    @SuppressWarnings("unchecked")
     @Override
-    public NodeCodecContext<D> yangPathArgumentChild(final YangInstanceIdentifier.PathArgument arg) {
-        final NodeContextSupplier childSupplier;
-        if (arg instanceof NodeIdentifierWithPredicates) {
-            childSupplier = byYang.get(new NodeIdentifier(arg.getNodeType()));
-        } else if (arg instanceof AugmentationIdentifier) {
-            childSupplier = yangAugmentationChild((AugmentationIdentifier) arg);
-        } else {
-            childSupplier = byYang.get(arg);
+    final CommonDataObjectCodecPrototype<?> streamChildPrototype(final Class<?> childClass) {
+        final var child = super.streamChildPrototype(childClass);
+        if (child == null && Augmentation.class.isAssignableFrom(childClass)) {
+            return getAugmentationProtoByClass(childClass);
         }
-
-        return (NodeCodecContext<D>) childNonNull(childSupplier, arg,
-            "Argument %s is not valid child of %s", arg, getSchema()).get();
-    }
-
-    protected final LeafNodeCodecContext<?> getLeafChild(final String name) {
-        final LeafNodeCodecContext<?> value = leafChild.get(name);
-        return IncorrectNestingException.checkNonNull(value, "Leaf %s is not valid for %s", name, getBindingClass());
+        return child;
     }
 
-    private DataContainerCodecPrototype<?> loadChildPrototype(final Class<?> childClass) {
-        final DataSchemaNode origDef = factory().getRuntimeContext().getSchemaDefinition(childClass);
-        // Direct instantiation or use in same module in which grouping
-        // was defined.
-        DataSchemaNode sameName;
-        try {
-            sameName = getSchema().getDataChildByName(origDef.getQName());
-        } catch (final IllegalArgumentException e) {
-            sameName = null;
-        }
-        final DataSchemaNode childSchema;
-        if (sameName != null) {
-            // Exactly same schema node
-            if (origDef.equals(sameName)) {
-                childSchema = sameName;
-                // We check if instantiated node was added via uses
-                // statement and is instantiation of same grouping
-            } else if (origDef.equals(SchemaNodeUtils.getRootOriginalIfPossible(sameName))) {
-                childSchema = sameName;
-            } else {
-                // Node has same name, but clearly is different
-                childSchema = null;
-            }
-        } else {
-            // We are looking for instantiation via uses in other module
-            final QName instantiedName = origDef.getQName().withModule(namespace());
-            final DataSchemaNode potential = getSchema().getDataChildByName(instantiedName);
-            // We check if it is really instantiated from same
-            // definition as class was derived
-            if (potential != null && origDef.equals(SchemaNodeUtils.getRootOriginalIfPossible(potential))) {
-                childSchema = potential;
-            } else {
-                childSchema = null;
+    @Override
+    final CodecContextSupplier yangChildSupplier(final NodeIdentifier arg) {
+        final var child = super.yangChildSupplier(arg);
+        if (child == null) {
+            final var augClass = yangToAugmentClass.get(arg);
+            if (augClass != null) {
+                return augmentToPrototype.get(augClass);
             }
         }
-        final DataSchemaNode nonNullChild =
-                childNonNull(childSchema, childClass, "Node %s does not have child named %s", getSchema(), childClass);
-        return DataContainerCodecPrototype.from(createBindingArg(childClass, nonNullChild), nonNullChild, factory());
-    }
-
-    @SuppressWarnings("unchecked")
-    Item<?> createBindingArg(final Class<?> childClass, final DataSchemaNode childSchema) {
-        return Item.of((Class<? extends DataObject>) childClass);
-    }
-
-    private DataContainerCodecPrototype<?> yangAugmentationChild(final AugmentationIdentifier arg) {
-        final DataContainerCodecPrototype<?> firstTry = augmentations.byYang.get(arg);
-        if (firstTry != null) {
-            return firstTry;
-        }
-        if (possibleAugmentations.containsKey(arg)) {
-            // Try to load augmentations, which will potentially update knownAugmentations, hence we re-load that field
-            // again.
-            reloadAllAugmentations();
-            return augmentations.byYang.get(arg);
-        }
-        return null;
-    }
-
-    private @Nullable DataContainerCodecPrototype<?> augmentationByClass(final @NonNull Class<?> childClass) {
-        DataContainerCodecPrototype<?> lookup = augmentationByClassOrEquivalentClass(childClass);
-        if (lookup != null || !isPotentialAugmentation(childClass)) {
-            return lookup;
-        }
-
-        // Attempt to reload all augmentations using TCCL and lookup again
-        reloadAllAugmentations();
-        lookup = augmentationByClassOrEquivalentClass(childClass);
-        if (lookup != null) {
-            return lookup;
-        }
-
-        // Still no result, this can be caused by TCCL not being set up properly -- try the class's ClassLoader
-        // if it is present;
-        final ClassLoader loader = childClass.getClassLoader();
-        if (loader == null) {
-            return null;
-        }
-
-        LOG.debug("Class {} not loaded via TCCL, attempting to recover", childClass);
-        ClassLoaderUtils.runWithClassLoader(loader, this::reloadAllAugmentations);
-        return augmentationByClassOrEquivalentClass(childClass);
+        return child;
     }
 
-    private boolean isPotentialAugmentation(final Class<?> childClass) {
-        final JavaTypeName name = JavaTypeName.create(childClass);
-        for (Type type : possibleAugmentations.values()) {
-            if (name.equals(type.getIdentifier())) {
-                return true;
-            }
-        }
-        return false;
+    private @Nullable AugmentationCodecPrototype getAugmentationProtoByClass(final @NonNull Class<?> augmClass) {
+        final var childProto = augmentToPrototype.get(augmClass);
+        return childProto != null ? childProto : mismatchedAugmentationByClass(augmClass);
     }
 
-    private @Nullable DataContainerCodecPrototype<?> augmentationByClassOrEquivalentClass(
-            final @NonNull Class<?> childClass) {
-        // Perform a single load, so we can reuse it if we end up going to the reflection-based slow path
-        final ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> local = augmentations.byStream;
-        final DataContainerCodecPrototype<?> childProto = local.get(childClass);
-        if (childProto != null) {
-            return childProto;
-        }
-
+    private @Nullable AugmentationCodecPrototype mismatchedAugmentationByClass(final @NonNull Class<?> childClass) {
         /*
          * It is potentially mismatched valid augmentation - we look up equivalent augmentation using reflection
          * and walk all stream child and compare augmentations classes if they are equivalent. When we find a match
          * we'll cache it so we do not need to perform reflection operations again.
          */
-        final DataContainerCodecPrototype<?> mismatched = mismatchedAugmented.get(childClass);
-        if (mismatched != null) {
-            return mismatched;
-        }
+        final var local = (ImmutableMap<Class<?>, AugmentationCodecPrototype>) MISMATCHED_AUGMENTED.getAcquire(this);
+        final var mismatched = local.get(childClass);
+        return mismatched != null ? mismatched : loadMismatchedAugmentation(local, childClass);
+    }
 
+    private @Nullable AugmentationCodecPrototype loadMismatchedAugmentation(
+            final ImmutableMap<Class<?>, AugmentationCodecPrototype> oldMismatched,
+            final @NonNull Class<?> childClass) {
         @SuppressWarnings("rawtypes")
-        final Class<?> augTarget = BindingReflections.findAugmentationTarget((Class) childClass);
-        if (getBindingClass().equals(augTarget)) {
-            for (final DataContainerCodecPrototype<?> realChild : local.values()) {
+        final Class<?> augTarget = findAugmentationTarget((Class) childClass);
+        // Do not bother with proposals which are not augmentations of our class, or do not match what the runtime
+        // context would load.
+        if (getBindingClass().equals(augTarget) && belongsToRuntimeContext(childClass)) {
+            for (var realChild : augmentToPrototype.values()) {
                 if (Augmentation.class.isAssignableFrom(realChild.getBindingClass())
-                        && BindingReflections.isSubstitutionFor(childClass, realChild.getBindingClass())) {
-                    return cacheMismatched(childClass, realChild);
+                        && isSubstitutionFor(childClass, realChild.getBindingClass())) {
+                    return cacheMismatched(oldMismatched, childClass, realChild);
                 }
             }
         }
@@ -464,111 +171,125 @@ abstract class DataObjectCodecContext<D extends DataObject, T extends DataNodeCo
         return null;
     }
 
-    private synchronized DataContainerCodecPrototype<?> cacheMismatched(final Class<?> childClass,
-            final DataContainerCodecPrototype<?> prototype) {
-        // Original access was unsynchronized, we need to perform additional checking
-        final ImmutableMap<Class<?>, DataContainerCodecPrototype<?>> local = mismatchedAugmented;
-        final DataContainerCodecPrototype<?> existing = local.get(childClass);
-        if (existing != null) {
-            return existing;
-        }
-
-        final Builder<Class<?>, DataContainerCodecPrototype<?>> builder = ImmutableMap.builderWithExpectedSize(
-            local.size() + 1);
-        builder.putAll(local);
-        builder.put(childClass, prototype);
+    private @NonNull AugmentationCodecPrototype cacheMismatched(
+            final @NonNull ImmutableMap<Class<?>, AugmentationCodecPrototype> oldMismatched,
+            final @NonNull Class<?> childClass, final @NonNull AugmentationCodecPrototype prototype) {
+        var expected = oldMismatched;
+        while (true) {
+            final var newMismatched =
+                ImmutableMap.<Class<?>, CommonDataObjectCodecPrototype<?>>builderWithExpectedSize(expected.size() + 1)
+                    .putAll(expected)
+                    .put(childClass, prototype)
+                    .build();
+
+            final var witness = (ImmutableMap<Class<?>, AugmentationCodecPrototype>)
+                MISMATCHED_AUGMENTED.compareAndExchangeRelease(this, expected, newMismatched);
+            if (witness == expected) {
+                LOG.trace("Cached mismatched augmentation {} -> {} in {}", childClass, prototype, this);
+                return prototype;
+            }
 
-        mismatchedAugmented = builder.build();
-        LOG.trace("Cached mismatched augmentation {} -> {} in {}", childClass, prototype, this);
-        return prototype;
+            expected = witness;
+            final var existing = expected.get(childClass);
+            if (existing != null) {
+                LOG.trace("Using raced mismatched augmentation {} -> {} in {}", childClass, existing, this);
+                return existing;
+            }
+        }
     }
 
-    private DataContainerCodecPrototype<?> getAugmentationPrototype(final Type value) {
-        final ClassLoadingStrategy loader = factory().getRuntimeContext().getStrategy();
-        @SuppressWarnings("rawtypes")
-        final Class augClass;
+    private boolean belongsToRuntimeContext(final Class<?> cls) {
+        final BindingRuntimeContext ctx = factory().getRuntimeContext();
+        final Class<?> loaded;
         try {
-            augClass = loader.loadClass(value);
-        } catch (final ClassNotFoundException e) {
-            LOG.debug("Failed to load augmentation prototype for {}. Will be retried when needed.", value, e);
-            return null;
+            loaded = ctx.loadClass(Type.of(cls));
+        } catch (ClassNotFoundException e) {
+            LOG.debug("Proposed {} cannot be loaded in {}", cls, ctx, e);
+            return false;
         }
-
-        @SuppressWarnings("unchecked")
-        final Entry<AugmentationIdentifier, AugmentationSchemaNode> augSchema = factory().getRuntimeContext()
-                .getResolvedAugmentationSchema(getSchema(), augClass);
-        return DataContainerCodecPrototype.from(augClass, augSchema.getKey(), augSchema.getValue(), factory());
-    }
-
-    Object getBindingChildValue(final Method method, final NormalizedNodeContainer<?, ?, ?> domData) {
-        return method.isDefault() ? getBindingChildValue(nonnullMethods, method, domData, dummy -> ImmutableList.of())
-                : getBindingChildValue(byMethod, method, domData, NodeCodecContext::defaultObject);
+        return cls.equals(loaded);
     }
 
-    @SuppressWarnings("rawtypes")
-    private static Object getBindingChildValue(final ImmutableMap<Method, NodeContextSupplier> map, final Method method,
-            final NormalizedNodeContainer domData, final Function<NodeCodecContext<?>, Object> getDefaultObject) {
-        final NodeCodecContext<?> childContext = verifyNotNull(map.get(method),
-            "Cannot find data handler for method %s", method).get();
-
-        @SuppressWarnings("unchecked")
-        final Optional<NormalizedNode<?, ?>> domChild = domData.getChild(childContext.getDomPathArgument());
+    private @Nullable AugmentationCodecPrototype loadAugmentPrototype(final AugmentRuntimeType augment) {
+        // FIXME: in face of deviations this code should be looking at declared view, i.e. all possibilities at augment
+        //        declaration site
+        final var childPaths = augment.statement()
+            .streamEffectiveSubstatements(SchemaTreeEffectiveStatement.class)
+            .map(stmt -> new NodeIdentifier((QName) stmt.argument()))
+            .collect(ImmutableSet.toImmutableSet());
 
-        // We do not want to use Optional.map() here because we do not want to invoke defaultObject() when we have
-        // normal value because defaultObject() may end up throwing an exception intentionally.
-        return domChild.isPresent() ? childContext.deserializeObject(domChild.get())
-                : getDefaultObject.apply(childContext);
-    }
+        if (childPaths.isEmpty()) {
+            return null;
+        }
 
-    @SuppressWarnings("checkstyle:illegalCatch")
-    protected final D createBindingProxy(final NormalizedNodeContainer<?, ?, ?> node) {
+        final var factory = factory();
+        final GeneratedType javaType = augment.javaType();
+        final Class<? extends Augmentation<?>> augClass;
         try {
-            return (D) proxyConstructor.invokeExact((InvocationHandler)new LazyDataObject<>(this, node));
-        } catch (final Throwable e) {
-            Throwables.throwIfUnchecked(e);
-            throw new RuntimeException(e);
+            augClass = factory.getRuntimeContext().loadClass(javaType);
+        } catch (final ClassNotFoundException e) {
+            throw new IllegalStateException(
+                "RuntimeContext references type " + javaType + " but failed to load its class", e);
         }
+        return new AugmentationCodecPrototype(augClass, augment, factory, childPaths);
     }
 
+    @Override
     @SuppressWarnings("unchecked")
-    Map<Class<? extends Augmentation<?>>, Augmentation<?>> getAllAugmentationsFrom(
-            final NormalizedNodeContainer<?, PathArgument, NormalizedNode<?, ?>> data) {
-
-        @SuppressWarnings("rawtypes")
-        final Map map = new HashMap<>();
-
-        for (final NormalizedNode<?, ?> childValue : data.getValue()) {
-            if (childValue instanceof AugmentationNode) {
-                final AugmentationNode augDomNode = (AugmentationNode) childValue;
-                final DataContainerCodecPrototype<?> codecProto = yangAugmentationChild(augDomNode.getIdentifier());
-                if (codecProto != null) {
-                    final DataContainerCodecContext<?, ?> codec = codecProto.get();
-                    map.put(codec.getBindingClass(), codec.deserializeObject(augDomNode));
-                }
+    Map<Class<? extends Augmentation<?>>, Augmentation<?>> getAllAugmentationsFrom(final DataContainerNode data) {
+        /**
+         * Due to augmentation fields are at same level as direct children the data of each augmentation needs to be
+         * aggregated into own container node, then only deserialized using associated prototype.
+         */
+        final var builders = new HashMap<Class<?>, DataContainerNodeBuilder>();
+        for (var childValue : data.body()) {
+            final var bindingClass = yangToAugmentClass.get(childValue.name());
+            if (bindingClass != null) {
+                builders.computeIfAbsent(bindingClass,
+                    key -> Builders.containerBuilder()
+                        .withNodeIdentifier(new NodeIdentifier(data.name().getNodeType())))
+                        .addChild(childValue);
             }
         }
-        for (final DataContainerCodecPrototype<?> value : augmentations.byStream.values()) {
-            final Optional<NormalizedNode<?, ?>> augData = data.getChild(value.getYangArg());
-            if (augData.isPresent()) {
-                map.put(value.getBindingClass(), value.get().deserializeObject(augData.get()));
+        @SuppressWarnings("rawtypes")
+        final var map = new HashMap();
+        for (final var entry : builders.entrySet()) {
+            final var bindingClass = entry.getKey();
+            final var codecProto = augmentToPrototype.get(bindingClass);
+            if (codecProto != null) {
+                final var bindingObj = codecProto.get().deserializeObject(entry.getValue().build());
+                if (bindingObj != null) {
+                    map.put(bindingClass, bindingObj);
+                }
             }
         }
         return map;
     }
 
-    Collection<Method> getHashCodeAndEqualsMethods() {
-        return byMethod.keySet();
+    final @NonNull Class<? extends CodecDataObject<?>> generatedClass() {
+        return generatedClass;
     }
 
     @Override
-    public InstanceIdentifier.PathArgument deserializePathArgument(final YangInstanceIdentifier.PathArgument arg) {
+    public InstanceIdentifier.PathArgument deserializePathArgument(final PathArgument arg) {
         checkArgument(getDomPathArgument().equals(arg));
         return bindingArg();
     }
 
     @Override
-    public YangInstanceIdentifier.PathArgument serializePathArgument(final InstanceIdentifier.PathArgument arg) {
+    public PathArgument serializePathArgument(final InstanceIdentifier.PathArgument arg) {
         checkArgument(bindingArg().equals(arg));
         return getDomPathArgument();
     }
+
+    @Override
+    public NormalizedNode serialize(final D data) {
+        return serializeImpl(data);
+    }
+
+    @Override
+    public final BindingNormalizedNodeCachingCodec<D> createCachingCodec(
+            final ImmutableCollection<Class<? extends BindingObject>> cacheSpecifier) {
+        return createCachingCodec(this, cacheSpecifier);
+    }
 }