Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / mapper / MapperRequestSender.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.vesagent.mapper;
20
21 import java.util.concurrent.Future;
22
23 import org.commscope.tr069adapter.acs.common.DeviceRPCRequest;
24 import org.commscope.tr069adapter.acs.common.DeviceRPCResponse;
25 import org.commscope.tr069adapter.vesagent.VesConfiguration;
26 import org.commscope.tr069adapter.vesagent.async.WaitForNotifications;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.scheduling.annotation.Async;
31 import org.springframework.scheduling.annotation.AsyncResult;
32 import org.springframework.stereotype.Component;
33 import org.springframework.web.client.RestTemplate;
34
35 @Component
36 // @EnableAsync
37 public class MapperRequestSender {
38   private static final Logger LOG = LoggerFactory.getLogger(MapperRequestSender.class);
39   private RestTemplate restTemplate = new RestTemplate();
40
41   @Autowired
42   VesConfiguration config;
43
44   @Autowired
45   WaitForNotifications waitForNotifications;
46
47   @Async("threadPoolTaskExecutor2")
48   public Future<DeviceRPCResponse> sendRequest(DeviceRPCRequest deviceRPCRequest) {
49     LOG.info("Sending device connectivity request to ACS for device {}",
50         deviceRPCRequest.getDeviceDetails().getDeviceId());
51     DeviceRPCResponse response = restTemplate.postForObject(config.getMapperPath(),
52         deviceRPCRequest, DeviceRPCResponse.class);
53
54     waitForNotifications.notifyResult(response);
55
56     return new AsyncResult<>(response);
57   }
58
59 }