1e4750d2cf7bf88e9edfac81fc8f19bae1ab0fa5
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / DSLNode.java
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.so.client.graphinventory.entities;
22
23 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.List;
26
27 import org.onap.so.client.aai.entities.QueryStep;
28 import org.onap.so.client.graphinventory.GraphInventoryObjectName;
29
30 public class DSLNode implements QueryStep {
31
32         private final String nodeName;
33         private final List<DSLNodeKey> nodeKeys;
34         private final StringBuilder query = new StringBuilder();
35         private boolean output = false;
36         
37         public DSLNode() {
38                 this.nodeName = "";
39                 this.nodeKeys = new ArrayList<>();
40                 
41         }
42         public DSLNode(GraphInventoryObjectName name) {
43                 this.nodeName = name.typeName();
44                 this.nodeKeys = new ArrayList<>();
45                 query.append(nodeName);
46         }
47         public DSLNode(GraphInventoryObjectName name, DSLNodeKey... key) {
48                 this.nodeName = name.typeName();
49                 this.nodeKeys = Arrays.asList(key);
50                 query.append(nodeName);
51         }
52         
53         public DSLNode output() {
54                 this.output = true;
55                 
56                 return this;
57         }
58
59         public DSLNode and(DSLNodeKey... key) {
60                 this.nodeKeys.addAll(Arrays.asList(key));
61                 
62                 return this;
63         }
64         
65         @Override
66         public String build() {
67                 StringBuilder result = new StringBuilder(query);
68                 if (output) {
69                         result.append("*");
70                 }
71                 for (DSLNodeKey key : nodeKeys) {
72                         result.append(key.build());
73                 }
74                 
75                 return result.toString();
76         }
77 }