f7a9fddba0822336a6673a709e4bcfdc1b1fe1e2
[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 package org.onap.aaiclient.client.graphinventory.entities;
22
23 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.List;
26 import org.onap.aaiclient.client.aai.entities.QueryStep;
27 import com.google.common.base.Joiner;
28
29
30 public class DSLNodeKey implements QueryStep {
31
32     private boolean not = false;
33     private final StringBuilder query = new StringBuilder();
34     private final String keyName;
35     private final List<Object> values;
36
37     public DSLNodeKey(String keyName, Object... value) {
38
39         this.keyName = keyName;
40         this.values = Arrays.asList(value);
41     }
42
43     public DSLNodeKey not() {
44
45         this.not = true;
46         return this;
47     }
48
49     @Override
50     public String build() {
51         StringBuilder result = new StringBuilder(query);
52
53         if (not) {
54             result.append(" !");
55         }
56         result.append("('").append(keyName).append("', ");
57         List<Object> temp = new ArrayList<>();
58         for (Object item : values) {
59             if ("null".equals(item)) {
60                 temp.add(String.format("' %s '", item));
61             } else if ("".equals(item)) {
62                 temp.add("' '");
63             } else {
64                 if (item instanceof String) {
65                     temp.add(String.format("'%s'", item));
66                 } else {
67                     temp.add(item);
68                 }
69             }
70         }
71         result.append(Joiner.on(", ").join(temp)).append(")");
72
73         return result.toString();
74     }
75 }