012f7de34f9f00aa5fd208ad78a51d1ace5921f0
[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 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
27 import lombok.Builder;
28 import lombok.Data;
29 import lombok.NonNull;
30
31 import org.onap.policy.models.base.PfObjectFilter;
32
33 /**
34  * Filter class for searches for {@link ToscaPolicy} instances. If any fields are null, they are ignored.
35  *
36  * @author Liam Fallon (liam.fallon@est.tech)
37  */
38 @Builder
39 @Data
40 public class ToscaPolicyFilter implements PfObjectFilter<ToscaPolicy> {
41     public static final String LATEST_VERSION = "LATEST";
42
43     // Exact expression
44     private String name;
45
46     // Exact match, set to LATEST_VERSION to get the latest version
47     private String version;
48
49     // version prefix
50     private String versionPrefix;
51
52     // Exact expression
53     private String type;
54
55     // Exact Expression, set to LATEST_VERSION to get the latest version
56     private String typeVersion;
57
58     @Override
59     public List<ToscaPolicy> filter(@NonNull final List<ToscaPolicy> originalList) {
60
61         // @formatter:off
62         List<ToscaPolicy> returnList = originalList.stream()
63                 .filter(filterStringPred(name, ToscaPolicy::getName))
64                 .filter(filterStringPred((LATEST_VERSION.equals(version) ? null : version), ToscaPolicy::getVersion))
65                 .filter(filterPrefixPred(versionPrefix, ToscaPolicy::getVersion))
66                 .filter(filterStringPred(type, ToscaPolicy::getType))
67                 .filter(filterStringPred(typeVersion, ToscaPolicy::getTypeVersion))
68                 .collect(Collectors.toList());
69         // @formatter:off
70
71         if (LATEST_VERSION.equals(version)) {
72             return this.latestVersionFilter(returnList);
73         }
74         else {
75             return returnList;
76         }
77     }
78 }