10f18e796d0753b10f3b5e4864d7db06a2aac0bd
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.dataprovider.yangtools.serialize;
23
24 import com.fasterxml.jackson.core.JsonParser;
25 import com.fasterxml.jackson.core.JsonProcessingException;
26 import com.fasterxml.jackson.databind.DeserializationContext;
27 import com.fasterxml.jackson.databind.JsonDeserializer;
28 import java.io.IOException;
29 import org.onap.ccsdk.features.sdnr.wt.dataprovider.yangtools.YangToolsMapperHelper;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 public class BaseIdentityDeserializer<T> extends JsonDeserializer<T> {
34
35     private static final Logger LOG = LoggerFactory.getLogger(BaseIdentityDeserializer.class);
36     private final JsonDeserializer<?> deser;
37
38     public BaseIdentityDeserializer(final JsonDeserializer<?> deser) {
39         this.deser = deser;
40     }
41
42     @SuppressWarnings("unchecked")
43     @Override
44     public T deserialize(JsonParser parser, DeserializationContext ctxt) throws IOException, JsonProcessingException {
45         LOG.debug("BaseIdentityDeserializer class for '{}'",parser.getValueAsString());
46         String clazzToSearch = parser.getValueAsString();
47         // clazz from Elasticsearch is full qualified
48         int lastDot = clazzToSearch.lastIndexOf(".");
49         if (lastDot > -1) {
50             clazzToSearch = clazzToSearch.substring(lastDot+1);
51         } else {
52             clazzToSearch = clazzToSearch.substring(0, 1).toUpperCase() + clazzToSearch.substring(1);
53         }
54         Class<?> clazz;
55         try {
56             clazz = YangToolsMapperHelper.findClass(clazzToSearch);
57             if (clazz != null)
58                 return (T)clazz;
59         } catch (ClassNotFoundException e) {
60             LOG.warn("BaseIdentityDeserializer class not found for '"+parser.getValueAsString()+"'",e);
61         }
62         return (T) deser.deserialize(parser, ctxt);
63     }
64 }