Switch to Objects.requireNonNull
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / InstanceIdentifierCodec.java
1 /*
2  * Copyright (c) 2015 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 static java.util.Objects.requireNonNull;
11
12 import com.google.common.collect.Iterables;
13 import java.util.ArrayList;
14 import java.util.List;
15 import org.opendaylight.yangtools.concepts.Codec;
16 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
18 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
19
20 final class InstanceIdentifierCodec implements Codec<YangInstanceIdentifier, InstanceIdentifier<?>> {
21     private final BindingCodecContext context;
22
23     InstanceIdentifierCodec(final BindingCodecContext context) {
24         this.context = requireNonNull(context);
25     }
26
27     @Override
28     public YangInstanceIdentifier serialize(final InstanceIdentifier<?> input) {
29         final List<PathArgument> domArgs = new ArrayList<>();
30         context.getCodecContextNode(input, domArgs);
31         return YangInstanceIdentifier.create(domArgs);
32     }
33
34     @Override
35     public InstanceIdentifier<?> deserialize(final YangInstanceIdentifier input) {
36         final List<InstanceIdentifier.PathArgument> builder = new ArrayList<>();
37         final NodeCodecContext<?> codec = context.getCodecContextNode(input, builder);
38         if (codec == null) {
39             return null;
40         }
41         if (codec instanceof ListNodeCodecContext && Iterables.getLast(builder) instanceof InstanceIdentifier.Item) {
42             // We ended up in list, but without key, which means it represent list as a whole,
43             // which is not binding representable.
44             return null;
45         }
46         return InstanceIdentifier.create(builder);
47     }
48 }