Dependency management update
[policy/drools-pdp.git] / feature-pooling-dmaap / src / main / java / org / onap / policy / drools / pooling / Serializer.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.drools.pooling;
22
23 import java.io.IOException;
24 import java.util.Map;
25 import org.onap.policy.drools.pooling.message.Message;
26 import com.fasterxml.jackson.core.JsonProcessingException;
27 import com.fasterxml.jackson.databind.ObjectMapper;
28
29 /**
30  * Serialization helper functions.
31  */
32 public class Serializer {
33
34     /**
35      * Used to encode & decode JSON messages sent & received, respectively, on
36      * the internal DMaaP topic.
37      */
38     private final ObjectMapper mapper = new ObjectMapper();
39
40     /**
41      * 
42      */
43     public Serializer() {
44         super();
45     }
46
47     /**
48      * Encodes a filter.
49      * 
50      * @param filter filter to be encoded
51      * @return the filter, serialized as a JSON string
52      * @throws JsonProcessingException if it cannot be serialized
53      */
54     public String encodeFilter(Map<String, Object> filter) throws JsonProcessingException {
55         return mapper.writeValueAsString(filter);
56     }
57
58     /**
59      * Encodes a message.
60      * 
61      * @param msg message to be encoded
62      * @return the message, serialized as a JSON string
63      * @throws JsonProcessingException if it cannot be serialized
64      */
65     public String encodeMsg(Message msg) throws JsonProcessingException {
66         return mapper.writeValueAsString(msg);
67     }
68
69     /**
70      * Decodes a JSON string into a Message.
71      * 
72      * @param msg JSON string representing the message
73      * @return the message
74      * @throws IOException if it cannot be serialized
75      */
76     public Message decodeMsg(String msg) throws IOException {
77         return mapper.readValue(msg, Message.class);
78     }
79 }