summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/aai/datarouter/entity/AaiEventEntity.java
blob: 70fd6e4ef97ad1510b54d6a6b32881fb795315d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017-2018 Amdocs
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.aai.datarouter.entity;

import java.io.IOException;
import java.io.Serializable;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;

import javax.json.Json;
import javax.json.JsonObject;

import org.onap.aai.datarouter.util.NodeUtils;

/**
 * Note: AAIEventEntity is a port forward of IndexDocument Has been renamed here to move forward
 * with abstraction of document store technology.
 */
public class AaiEventEntity implements DocumentStoreDataEntity, Serializable {

  private static final long serialVersionUID = -5188479658230319058L;

  protected String entityType;
  protected String entityPrimaryKeyName;
  protected String entityPrimaryKeyValue;
  protected ArrayList<String> searchTagCollection = new ArrayList<>();
  protected ArrayList<String> searchTagIdCollection = new ArrayList<>();
  protected ArrayList<String> crossEntityReferenceCollection = new ArrayList<>();
  protected String lastmodTimestamp;
  protected String link;

  private static final String TIMESTAMP_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
  /*
   * Generated fields, leave the settings for junit overrides
   */

  // generated, SHA-256 digest
  protected String id;

  /*
   * generated based on searchTagCollection values
   */
  protected String searchTags;
  protected String searchTagIds;
  protected String crossReferenceEntityValues;


  private static String convertBytesToHexString(byte[] bytesToConvert) {
    StringBuilder hexString = new StringBuilder();
    for (int i = 0; i < bytesToConvert.length; i++) {
      hexString.append(Integer.toHexString(0xFF & bytesToConvert[i]));
    }
    return hexString.toString();
  }

  private static String concatArray(List<String> list, char delimiter) {

    if (list == null || list.isEmpty()) {
      return "";
    }

    StringBuilder result = new StringBuilder(64);

    boolean firstValue = true;

    for (String item : list) {

      if (firstValue) {
        result.append(item);
        firstValue = false;
      } else {
        result.append(delimiter).append(item);
      }

    }

    return result.toString();

  }

  public AaiEventEntity() {
    SimpleDateFormat dateFormat = new SimpleDateFormat(TIMESTAMP_FORMAT);
    Timestamp timestamp = new Timestamp(System.currentTimeMillis());
    String currentFormattedTimeStamp = dateFormat.format(timestamp);
    this.lastmodTimestamp = currentFormattedTimeStamp;
  }

  public void deriveFields() throws NoSuchAlgorithmException {
    this.id = NodeUtils.generateUniqueShaDigest(link);
    this.searchTags = concatArray(searchTagCollection, ';');
    this.searchTagIds = concatArray(searchTagIdCollection, ';');
    this.crossReferenceEntityValues = concatArray(crossEntityReferenceCollection, ';');
  }


  /*
   * (non-Javadoc)
   * 
   * @see org.onap.aai.datarouter.entity.AAIEventEntity#getAsJson()
   */
  @Override
  public String getAsJson() throws IOException {

    JsonObject obj = Json.createObjectBuilder().add("entityType", entityType)
        .add("entityPrimaryKeyValue", entityPrimaryKeyValue).add("searchTagIDs", searchTagIds)
        .add("searchTags", searchTags).add("crossEntityReferenceValues", crossReferenceEntityValues)
        .add("lastmodTimestamp", lastmodTimestamp).add("link", link).build();

    return obj.toString();
  }


  public void addSearchTagWithKey(String searchTag, String key) {
    searchTagIdCollection.add(key);
    searchTagCollection.add(searchTag);
  }

  public void addCrossEntityReferenceValue(String crossEntityReferenceValue) {
    if (!crossEntityReferenceCollection.contains(crossEntityReferenceValue)) {
      crossEntityReferenceCollection.add(crossEntityReferenceValue);
    }
  }

  public String getEntityType() {
    return entityType;
  }

  public String getEntityPrimaryKeyName() {
    return entityPrimaryKeyName;
  }

  public String getEntityPrimaryKeyValue() {
    return entityPrimaryKeyValue;
  }


  /*
   * (non-Javadoc)
   * 
   * @see org.onap.aai.datarouter.entity.AAIEventEntity#getId()
   */
  @Override
  public String getId() {
    return id;
  }

  public ArrayList<String> getSearchTagCollection() {
    return searchTagCollection;
  }

  public String getSearchTags() {
    return searchTags;
  }

  public String getSearchTagIDs() {
    return searchTagIds;
  }

  public void setSearchTagIDs(String searchTagIDs) {
    this.searchTagIds = searchTagIDs;
  }

  public void setEntityType(String entityType) {
    this.entityType = entityType;
  }

  public void setId(String id) {
    this.id = id;
  }

  public void setSearchTagCollection(ArrayList<String> searchTagCollection) {
    this.searchTagCollection = searchTagCollection;
  }

  public void setSearchTags(String searchTags) {
    this.searchTags = searchTags;
  }

  public ArrayList<String> getSearchTagIdCollection() {
    return searchTagIdCollection;
  }

  public void setSearchTagIdCollection(ArrayList<String> searchTagIdCollection) {
    this.searchTagIdCollection = searchTagIdCollection;
  }

  public String getLastmodTimestamp() {
    return lastmodTimestamp;
  }

  public void setLastmodTimestamp(String lastmodTimestamp) {
    this.lastmodTimestamp = lastmodTimestamp;
  }

  public void setEntityPrimaryKeyName(String entityPrimaryKeyName) {
    this.entityPrimaryKeyName = entityPrimaryKeyName;
  }

  public void setEntityPrimaryKeyValue(String entityPrimaryKeyValue) {
    this.entityPrimaryKeyValue = entityPrimaryKeyValue;
  }
  
  public String getLink() {
    return link;
  }
  
  public void setLink(String link) {
    this.link = link;
  }

  /*
   * public void mergeEntity(AAIEventEntity entityToMergeIn) {
   * 
   * if ( entityToMergeIn == null ) { return; }
   * 
   * if ( !entityToMergeIn.getEntityType().equals( entityType )) { entityType =
   * entityToMergeIn.getEntityType(); }
   * 
   * if ( !entityToMergeIn.getEntityType().equals( entityType )) { entityType =
   * entityToMergeIn.getEntityType(); }
   * 
   * }
   */

  public String getCrossReferenceEntityValues() {
    return crossReferenceEntityValues;
  }

  public void setCrossReferenceEntityValues(String crossReferenceEntityValues) {
    this.crossReferenceEntityValues = crossReferenceEntityValues;
  }

  @Override
  public String toString() {
    return "AAIEventEntity [" + (entityType != null ? "entityType=" + entityType + ", " : "")
        + (entityPrimaryKeyName != null ? "entityPrimaryKeyName=" + entityPrimaryKeyName + ", "
            : "")
        + (entityPrimaryKeyValue != null ? "entityPrimaryKeyValue=" + entityPrimaryKeyValue + ", "
            : "")
        + (searchTagCollection != null ? "searchTagCollection=" + searchTagCollection + ", " : "")
        + (searchTagIdCollection != null ? "searchTagIDCollection=" + searchTagIdCollection + ", "
            : "")
        + (crossEntityReferenceCollection != null
            ? "crossEntityReferenceCollection=" + crossEntityReferenceCollection + ", " : "")
        + "lastmodTimestamp=" + lastmodTimestamp + ", " + (id != null ? "id=" + id + ", " : "")
        + (searchTags != null ? "searchTags=" + searchTags + ", " : "")
        + (searchTagIds != null ? "searchTagIDs=" + searchTagIds + ", " : "")
        + (crossReferenceEntityValues != null
            ? "crossReferenceEntityValues=" + crossReferenceEntityValues : "")
        + "]";
  }

}