7cf9733607674d4643ea9253d97e64041dfd224b
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / ValueTypeCodec.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 com.google.common.cache.Cache;
11 import com.google.common.cache.CacheBuilder;
12 import java.util.concurrent.Callable;
13 import java.util.concurrent.ExecutionException;
14 import org.opendaylight.mdsal.binding.spec.reflect.BindingReflections;
15 import org.opendaylight.yangtools.concepts.Codec;
16 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
17 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition;
18 import org.opendaylight.yangtools.yang.model.api.type.EnumTypeDefinition;
19
20 /**
21  * Value codec, which serializes / deserializes values from DOM simple values.
22  */
23 abstract class ValueTypeCodec implements Codec<Object, Object> {
24
25     private static final Cache<Class<?>, SchemaUnawareCodec> STATIC_CODECS = CacheBuilder.newBuilder().weakKeys()
26             .build();
27
28     /**
29      * Marker interface for codecs, which functionality will not be affected by schema change (introduction of new YANG
30      * modules) they may have one static instance generated when first time needed.
31      */
32     interface SchemaUnawareCodec extends Codec<Object,Object> {
33
34     }
35
36     /**
37      * No-op Codec, Java YANG Binding uses same types as NormalizedNode model for base YANG types, representing numbers,
38      * binary, strings and empty.
39      */
40     public static final SchemaUnawareCodec NOOP_CODEC = new SchemaUnawareCodec() {
41
42         @Override
43         public Object serialize(final Object input) {
44             return input;
45         }
46
47         @Override
48         public Object deserialize(final Object input) {
49             return input;
50         }
51     };
52
53     public static SchemaUnawareCodec getCodecFor(final Class<?> typeClz, final TypeDefinition<?> def) {
54         if (BindingReflections.isBindingClass(typeClz)) {
55             return getCachedSchemaUnawareCodec(typeClz, getCodecLoader(typeClz, def));
56         }
57         return NOOP_CODEC;
58     }
59
60     private static SchemaUnawareCodec getCachedSchemaUnawareCodec(final Class<?> typeClz,
61             final Callable<? extends SchemaUnawareCodec> loader) {
62         try {
63             return STATIC_CODECS.get(typeClz, loader);
64         } catch (ExecutionException e) {
65             throw new IllegalStateException(e);
66         }
67     }
68
69     private static Callable<? extends SchemaUnawareCodec> getCodecLoader(final Class<?> typeClz,
70             final TypeDefinition<?> def) {
71
72         TypeDefinition<?> rootType = def;
73         while (rootType.getBaseType() != null) {
74             rootType = rootType.getBaseType();
75         }
76         if (rootType instanceof EnumTypeDefinition) {
77             return EnumerationCodec.loader(typeClz, (EnumTypeDefinition) rootType);
78         } else if (rootType instanceof BitsTypeDefinition) {
79             return BitsCodec.loader(typeClz, (BitsTypeDefinition) rootType);
80         }
81         return EncapsulatedValueCodec.loader(typeClz, def);
82     }
83
84     @SuppressWarnings("rawtypes")
85     static ValueTypeCodec encapsulatedValueCodecFor(final Class<?> typeClz, final TypeDefinition<?> typeDef,
86              final Codec delegate) {
87         SchemaUnawareCodec extractor = getCachedSchemaUnawareCodec(typeClz,
88             EncapsulatedValueCodec.loader(typeClz, typeDef));
89         return new CompositeValueCodec(extractor, delegate);
90     }
91
92 }