Speed up DataObjectCodecContext instantiation
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / KeyedListNodeCodecContext.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.dom.codec.impl;
9
10 import java.lang.reflect.Method;
11 import java.util.List;
12 import org.opendaylight.mdsal.binding.spec.naming.BindingMapping;
13 import org.opendaylight.yangtools.concepts.Codec;
14 import org.opendaylight.yangtools.yang.binding.DataObject;
15 import org.opendaylight.yangtools.yang.binding.Identifiable;
16 import org.opendaylight.yangtools.yang.binding.Identifier;
17 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
18 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier.IdentifiableItem;
19 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
20 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
21 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
22 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
23 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
24
25 final class KeyedListNodeCodecContext<D extends DataObject & Identifiable<?>> extends ListNodeCodecContext<D> {
26     private final Codec<NodeIdentifierWithPredicates, IdentifiableItem<?, ?>> codec;
27     private final Method keyGetter;
28
29     KeyedListNodeCodecContext(final DataContainerCodecPrototype<ListSchemaNode> prototype) {
30         super(prototype);
31
32         final Class<D> bindingClass = getBindingClass();
33         this.codec = factory().getPathArgumentCodec(bindingClass, getSchema());
34         try {
35             this.keyGetter = bindingClass.getMethod(BindingMapping.IDENTIFIABLE_KEY_NAME);
36         } catch (NoSuchMethodException e) {
37             throw new IllegalStateException("Required method not available", e);
38         }
39     }
40
41     @Override
42     protected void addYangPathArgument(final InstanceIdentifier.PathArgument arg,
43             final List<YangInstanceIdentifier.PathArgument> builder) {
44         /*
45          * DOM Instance Identifier for list is always represent by two entries one for map and one for children. This
46          * is also true for wildcarded instance identifiers
47          */
48         if (builder == null) {
49             return;
50         }
51
52         super.addYangPathArgument(arg, builder);
53         if (arg instanceof IdentifiableItem) {
54             builder.add(codec.serialize((IdentifiableItem<?, ?>) arg));
55         } else {
56             // Adding wildcarded
57             super.addYangPathArgument(arg, builder);
58         }
59     }
60
61     @Override
62     @SuppressWarnings("rawtypes")
63     Object getBindingChildValue(final Method method, final NormalizedNodeContainer dom) {
64         if (dom instanceof MapEntryNode && keyGetter.equals(method)) {
65             NodeIdentifierWithPredicates identifier = ((MapEntryNode) dom).getIdentifier();
66             return codec.deserialize(identifier).getKey();
67         }
68         return super.getBindingChildValue(method, dom);
69     }
70
71     @Override
72     protected InstanceIdentifier.PathArgument getBindingPathArgument(final YangInstanceIdentifier.PathArgument domArg) {
73         if (domArg instanceof NodeIdentifierWithPredicates) {
74             return codec.deserialize((NodeIdentifierWithPredicates) domArg);
75         }
76         return super.getBindingPathArgument(domArg);
77     }
78
79     @SuppressWarnings({ "rawtypes", "unchecked" })
80     NodeIdentifierWithPredicates serialize(final Identifier<?> key) {
81         return codec.serialize(IdentifiableItem.of((Class)getBindingClass(), (Identifier)key));
82     }
83
84     @Override
85     public YangInstanceIdentifier.PathArgument serializePathArgument(final InstanceIdentifier.PathArgument arg) {
86         if (arg instanceof IdentifiableItem) {
87             return codec.serialize((IdentifiableItem<?, ?>) arg);
88         }
89         return super.serializePathArgument(arg);
90     }
91
92     @Override
93     public InstanceIdentifier.PathArgument deserializePathArgument(final YangInstanceIdentifier.PathArgument arg) {
94         if (arg instanceof NodeIdentifierWithPredicates) {
95             return codec.deserialize((NodeIdentifierWithPredicates) arg);
96         }
97         return super.deserializePathArgument(arg);
98     }
99 }