aa0031104f9ae656dd7cf7a722c58e7484295cbb
[vid.git] / vid-app-common / src / main / java / org / onap / vid / services / InstantiationTemplatesService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.services;
22
23 import static java.util.Collections.emptyMap;
24 import static java.util.Objects.requireNonNull;
25
26 import java.util.Map;
27 import java.util.UUID;
28 import javax.inject.Inject;
29 import org.onap.vid.dal.AsyncInstantiationRepository;
30 import org.onap.vid.model.ModelUtil;
31 import org.onap.vid.model.serviceInstantiation.BaseResource;
32 import org.onap.vid.model.serviceInstantiation.ServiceInstantiation;
33 import org.onap.vid.model.serviceInstantiation.ServiceInstantiationTemplate;
34 import org.springframework.stereotype.Component;
35
36 @Component
37 public class InstantiationTemplatesService {
38
39     private final ModelUtil modelUtil;
40     private final AsyncInstantiationRepository asyncInstantiationRepository;
41
42     @Inject
43     public InstantiationTemplatesService(ModelUtil modelUtil,
44         AsyncInstantiationRepository asyncInstantiationRepository) {
45         this.modelUtil = modelUtil;
46         this.asyncInstantiationRepository = asyncInstantiationRepository;
47     }
48
49     public ServiceInstantiationTemplate getJobRequestAsTemplate(UUID jobId) {
50         ServiceInstantiation jobRequest = requireNonNull(asyncInstantiationRepository.getJobRequest(jobId));
51
52         return new ServiceInstantiationTemplate(
53             jobRequest,
54             counterMap(jobRequest.getVnfs()),
55             counterMap(jobRequest.getNetworks()),
56             counterMap(jobRequest.getVnfGroups()),
57             emptyMap() // model info for VRF is not stored
58         );
59     }
60
61     private <T extends BaseResource> Map<String, Long> counterMap(Map<String, T> nodesToCount) {
62         return modelUtil.getExistingCounterMap(
63             nodesToCount, BaseResource::getModelInfo
64         );
65     }
66
67 }