Merge "Fix Blocker/Critical sonar issues"
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / synchronizer / task / StoreDocumentTask.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.synchronizer.task;
24
25 import java.util.Map;
26 import java.util.function.Supplier;
27
28 import org.onap.aai.sparky.dal.NetworkTransaction;
29 import org.onap.aai.sparky.dal.rest.OperationResult;
30 import org.onap.aai.sparky.dal.rest.RestDataProvider;
31 import org.onap.aai.sparky.synchronizer.entity.IndexDocument;
32 import org.slf4j.MDC;
33
34 /**
35  * The Class StoreDocumentTask.
36  */
37 public class StoreDocumentTask implements Supplier<NetworkTransaction> {
38
39   private IndexDocument doc;
40
41   private NetworkTransaction txn;
42
43   private RestDataProvider esDataProvider;
44   private Map<String, String> contextMap;
45
46   /**
47    * Instantiates a new store document task.
48    *
49    * @param doc the doc
50    * @param txn the txn
51    * @param esDataProvider the es data provider
52    */
53   public StoreDocumentTask(IndexDocument doc, NetworkTransaction txn,
54       RestDataProvider esDataProvider) {
55     this.doc = doc;
56     this.txn = txn;
57     this.esDataProvider = esDataProvider;
58     this.contextMap = MDC.getCopyOfContextMap();
59   }
60
61   /* (non-Javadoc)
62    * @see java.util.function.Supplier#get()
63    */
64   @Override
65   public NetworkTransaction get() {
66     txn.setTaskAgeInMs();
67
68     long startTimeInMs = System.currentTimeMillis();
69     MDC.setContextMap(contextMap);
70     OperationResult or =
71         esDataProvider.doPut(txn.getLink(), doc.getIndexDocumentJson(), "application/json");
72     or.setResponseTimeInMs(System.currentTimeMillis() - startTimeInMs);
73
74     txn.setOperationResult(or);
75
76     return txn;
77   }
78
79 }