Second part of onap rename
[appc.git] / appc-config / appc-config-audit / provider / src / main / java / org / onap / sdnc / config / audit / node / CompareJsonData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdnc.config.audit.node;
22
23 import java.io.IOException;
24 import java.util.Map;
25
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import com.fasterxml.jackson.core.JsonParseException;
30 import com.fasterxml.jackson.databind.JsonMappingException;
31 import com.fasterxml.jackson.databind.ObjectMapper;
32
33
34 public class CompareJsonData implements CompareDataInterface {
35
36     private static final EELFLogger log = EELFManager.getInstance().getLogger(CompareJsonData.class);
37
38     String payloadX;
39     String payloadY;
40
41     public CompareJsonData(String payloadX, String payloadY)
42     {
43         this.payloadX = payloadX;
44         this.payloadY = payloadY;
45     }
46
47     @Override
48     public boolean compare() throws Exception
49     {
50
51         ObjectMapper dataMapper = new ObjectMapper();
52         boolean match = false;
53         try
54         {
55             Map<String, Object> controlData = (Map<String, Object>)(dataMapper.readValue(payloadX, Map.class));
56             Map<String, Object>  testData = (Map<String, Object>)(dataMapper.readValue(payloadY, Map.class));
57
58             log.debug("Control Data :" + controlData);
59             log.debug("testData Data :" + testData);
60
61            if(controlData.equals(testData))
62                match=true;
63         }
64         catch(JsonParseException e)
65         {
66             throw new Exception(e.getMessage());
67         }
68         catch(JsonMappingException e)
69         {
70             throw new Exception(e.getMessage());
71         }
72         catch(IOException ioe)
73         {
74             throw new Exception(ioe.getMessage());
75         }
76
77         return match;
78     }
79
80
81
82 }