Add extra authorative TOSCA concepts
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaPolicyFilter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.authorative.concepts;
23
24 import java.util.List;
25 import java.util.stream.Collectors;
26 import lombok.Builder;
27 import lombok.Data;
28 import lombok.NonNull;
29 import org.onap.policy.models.base.PfObjectFilter;
30
31 /**
32  * Filter class for searches for {@link ToscaPolicy} instances. If any fields are null, they are ignored.
33  *
34  * @author Liam Fallon (liam.fallon@est.tech)
35  */
36 @Builder
37 @Data
38 public class ToscaPolicyFilter implements PfObjectFilter<ToscaPolicy> {
39     public static final String LATEST_VERSION = "LATEST";
40
41     // Exact expression
42     private String name;
43
44     // Exact match, set to LATEST_VERSION to get the latest version
45     private String version;
46
47     // version prefix
48     private String versionPrefix;
49
50     // Exact expression
51     private String type;
52
53     // Exact Expression, set to LATEST_VERSION to get the latest version
54     private String typeVersion;
55
56     @Override
57     public List<ToscaPolicy> filter(@NonNull final List<ToscaPolicy> originalList) {
58
59         // @formatter:off
60         List<ToscaPolicy> returnList = originalList.stream()
61                 .filter(filterStringPred(name, ToscaPolicy::getName))
62                 .filter(filterStringPred((LATEST_VERSION.equals(version) ? null : version), ToscaPolicy::getVersion))
63                 .filter(filterPrefixPred(versionPrefix, ToscaPolicy::getVersion))
64                 .filter(filterStringPred(type, ToscaPolicy::getType))
65                 .filter(filterStringPred(typeVersion, ToscaPolicy::getTypeVersion))
66                 .collect(Collectors.toList());
67         // @formatter:off
68
69         if (LATEST_VERSION.equals(version)) {
70             return this.latestVersionFilter(returnList, new ToscaPolicyComparator());
71         } else  {
72             return returnList;
73         }
74     }
75 }