d8d0d8c19c570eeadba147053d5933759dfabb0d
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.plugins.context.schema.avro;
22
23 import java.nio.ByteBuffer;
24
25 import org.apache.avro.Schema;
26 import org.apache.avro.Schema.Type;
27 import org.onap.policy.apex.context.ContextRuntimeException;
28 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
29 import org.slf4j.ext.XLogger;
30 import org.slf4j.ext.XLoggerFactory;
31
32 /**
33  * This class does string mapping from the Avro BYTES type to a Java byte array.
34  *
35  * @author Liam Fallon (liam.fallon@ericsson.com)
36  */
37 public class AvroBytesObjectMapper implements AvroObjectMapper {
38     // Get a reference to the logger
39     private static final XLogger LOGGER = XLoggerFactory.getXLogger(AvroBytesObjectMapper.class);
40
41     // The user keyAvro type for direct mapping
42     private AxKey userKey;
43     private Type avroType;
44
45     // The Apex compatible class
46     private static final Class<Byte[]> schemaClass = Byte[].class;
47
48     /**
49      * {@inheritDoc}.
50      */
51     @Override
52     public Class<?> getJavaClass() {
53         return schemaClass;
54     }
55
56     /**
57      * {@inheritDoc}.
58      */
59     @Override
60     public void init(final AxKey intUserKey, final Type initAvroType) {
61         this.userKey = intUserKey;
62         this.avroType = initAvroType;
63     }
64
65     /**
66      * {@inheritDoc}.
67      */
68     @Override
69     public Object createNewInstance(final Schema avroSchema) {
70         // By default, we do not create an instance, normal Java object creation for byte arrays is
71         // sufficient
72         return null;
73     }
74
75     /**
76      * {@inheritDoc}.
77      */
78     @Override
79     public Type getAvroType() {
80         return avroType;
81     }
82
83     /**
84      * {@inheritDoc}.
85      */
86     @Override
87     public Object mapFromAvro(final Object avroObject) {
88         // The Avro object should be a Utf8 object
89         if (!(avroObject instanceof ByteBuffer)) {
90             final String returnString =
91                     userKey.getId() + ": object \"" + avroObject + "\" of class \"" + avroObject.getClass()
92                             + "\" cannot be decoded to an object of class \"" + schemaClass.getCanonicalName() + "\"";
93             LOGGER.warn(returnString);
94             throw new ContextRuntimeException(returnString);
95         }
96
97         // Cast the byte buffer object so we get access to its methods
98         final ByteBuffer byteBufferAvroObject = (ByteBuffer) avroObject;
99
100         // read the byte buffer into a byte array
101         final byte[] byteArray = new byte[byteBufferAvroObject.remaining()];
102         byteBufferAvroObject.get(byteArray);
103
104         return byteArray;
105     }
106
107     /**
108      * {@inheritDoc}.
109      */
110     @Override
111     public Object mapToAvro(final Object object) {
112         if (object == null) {
113             final String returnString = userKey.getId() + ": cannot encode a null object of class \""
114                     + schemaClass.getCanonicalName() + "\"";
115             LOGGER.warn(returnString);
116             throw new ContextRuntimeException(returnString);
117         }
118
119         // The incoming object should be a byte array
120         if (!(object instanceof byte[])) {
121             final String returnString = userKey.getId() + ": object \"" + object + "\" of class \"" + object.getClass()
122                     + "\" cannot be decoded to an object of class \"" + schemaClass.getCanonicalName() + "\"";
123             LOGGER.warn(returnString);
124             throw new ContextRuntimeException(returnString);
125         }
126
127         // Create a ByteBuffer object to serialize the bytes
128         return ByteBuffer.wrap((byte[]) object);
129     }
130 }