1505203d7cbb5f1f0d807bd9cf9b900e165288f7
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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 /*-
22  * Copyright (C) 2018 Bell Canada. All rights reserved.
23  *
24  * Licensed under the Apache License, Version 2.0 (the "License");
25  * you may not use this file except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *      http://www.apache.org/licenses/LICENSE-2.0
29  *
30  * Unless required by applicable law or agreed to in writing, software
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  */
36
37 package org.onap.so.heatbridge.openstack.api;
38
39 import java.util.List;
40 import java.util.Map;
41 import java.util.Objects;
42 import java.util.stream.Collectors;
43 import org.openstack4j.api.OSClient;
44 import org.openstack4j.model.compute.Server;
45 import org.openstack4j.model.heat.Resource;
46 import org.openstack4j.model.network.Network;
47 import org.openstack4j.model.network.Port;
48 import org.openstack4j.model.network.Subnet;
49
50 abstract class OpenstackClientImpl implements OpenstackClient {
51     @Override
52     public Server getServerById(String serverId) {
53         return getClient().compute().servers().get(serverId);
54     }
55
56     @Override
57     public Port getPortById(String portId) {
58         return getClient().networking().port().get(portId);
59     }
60
61     @Override
62     public List<Port> getAllPorts() {
63         return (List<Port>) getClient().networking().port().list();
64     }
65
66     @Override
67     public List<Resource> getStackBasedResources(String stackId, int nestingDepth) {
68         return getClient().heat().resources().list(stackId, nestingDepth).stream().filter(Objects::nonNull)
69                 .collect(Collectors.toList());
70     }
71
72     @Override
73     public Network getNetworkById(String networkId) {
74         return getClient().networking().network().get(networkId);
75     }
76
77     @Override
78     public List<Network> listNetworksByFilter(Map<String, String> filterParams) {
79         return (List<Network>) getClient().networking().network().list(filterParams);
80     }
81
82     @Override
83     public Subnet getSubnetById(String subnetId) {
84         return getClient().networking().subnet().get(subnetId);
85     }
86
87     /**
88      * Retrieves the specific client to utilize.
89      * 
90      * @return The specific client to utilize
91      */
92     protected abstract OSClient getClient();
93
94 }