Split out CodecContextFactory
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / AugmentationCodecPrototype.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 static java.util.Objects.requireNonNull;
11
12 import com.google.common.collect.ImmutableSet;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.mdsal.binding.runtime.api.AugmentRuntimeType;
15 import org.opendaylight.yangtools.yang.binding.DataObject;
16 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier.Item;
17 import org.opendaylight.yangtools.yang.common.QNameModule;
18 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
19
20 final class AugmentationCodecPrototype extends DataContainerCodecPrototype<AugmentRuntimeType> {
21     private final @NonNull ImmutableSet<NodeIdentifier> childArgs;
22
23     @SuppressWarnings("unchecked")
24     AugmentationCodecPrototype(final Class<?> cls, final QNameModule namespace, final AugmentRuntimeType type,
25             final CodecContextFactory factory, final ImmutableSet<NodeIdentifier> childArgs) {
26         super(Item.of((Class<? extends DataObject>) cls), namespace, type, factory);
27         this.childArgs = requireNonNull(childArgs);
28     }
29
30     @Override
31     NodeIdentifier getYangArg() {
32         throw new UnsupportedOperationException("Augmentation does not have PathArgument address");
33     }
34
35     @Override
36     AugmentationNodeContext<?> createInstance() {
37         return new AugmentationNodeContext<>(this);
38     }
39
40     // Guaranteed to be non-empty
41     @NonNull ImmutableSet<NodeIdentifier> getChildArgs() {
42         return childArgs;
43     }
44 }