aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/common/ConfigProcessors.java
blob: d53bf23b233f9e4bea33ec603a9f6dd63b3d0d11 (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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
/*-
 * ============LICENSE_START=======================================================
 * PROJECT
 * ================================================================================
 * Copyright (C) 2017,2023 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.dcae.common;

import org.json.JSONArray;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.text.DecimalFormat;

public class ConfigProcessors {

    private static final Logger log = LoggerFactory.getLogger(ConfigProcessors.class);
    private static final String FIELD = "field";
    private static final String OLD_FIELD = "oldField";
    private static final String FILTER = "filter";
    private static final String VALUE = "value";
    private static final String REGEX = "\\[\\]";
    private static final String OBJECT_NOT_FOUND = "ObjectNotFound";
    private static final String FILTER_NOT_MET = "Filter not met";
    private static final String MAP_TYPE = "mapType";
    private static final String COMP_FALSE = "==false";

    private final JSONObject event;

    public ConfigProcessors(JSONObject eventJson) {
        event = eventJson;
    }

    public void getValue(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {
            getEventObjectVal(field);
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    public void setValue(JSONObject jsonObject) {
        final String field = jsonObject.getString(FIELD);
        final String value = jsonObject.getString(VALUE);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        if (filter == null || isFilterMet(filter)) {
            setEventObjectVal(field, value);
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    String evaluate(String str) {
        String value = str;
        if (str.startsWith("$")) {
            value = (String) getEventObjectVal(str.substring(1));

        }
        return value;
    }


    public void suppressEvent(JSONObject jsonObject) {
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {
            setEventObjectVal("suppressEvent", "true");
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    public void addAttribute(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final String value = evaluate(jsonObject.getString(VALUE));
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        final String fieldType = jsonObject.optString("fieldType", "string").toLowerCase();

        if (filter == null || isFilterMet(filter)) {
            setEventObjectVal(field, value, fieldType);
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    public void updateAttribute(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final String value = evaluate(jsonObject.getString(VALUE));
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        if (filter == null || isFilterMet(filter)) {
            setEventObjectVal(field, value);
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    public void removeAttribute(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {
            removeEventKey(field);
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    void renameArrayInArray(JSONObject jsonObject) // map
    {
        log.info("renameArrayInArray");
        final String field = jsonObject.getString(FIELD);
        final String oldField = jsonObject.getString(OLD_FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {

            final String[] fsplit = field.split(REGEX, field.length());
            final String[] oldfsplit = oldField.split(REGEX, oldField.length());

            final String oldValue = getEventObjectVal(oldfsplit[0]).toString();
            if (!oldValue.equals(OBJECT_NOT_FOUND)) {
                final String oldArrayName = oldfsplit[1].substring(1);
                final String newArrayName = fsplit[1].substring(1);
                final String value = oldValue.replaceAll(oldArrayName, newArrayName);

                log.info("oldValue ==" + oldValue);
                log.info("value ==" + value);
                JSONArray ja = new JSONArray(value);
                removeEventKey(oldfsplit[0]);
                setEventObjectVal(fsplit[0], ja);
            }
        } else {
            log.info(FILTER_NOT_MET);
        }
    }

    private void renameObject(JSONObject jsonObject) // map
    {
        log.info("renameArrayInArray");
        final String field = jsonObject.getString(FIELD);
        final String oldField = jsonObject.getString(OLD_FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {

            final JSONObject oldValue = (JSONObject) getEventObjectVal(oldField);
            if (!oldValue.toString().equals(OBJECT_NOT_FOUND)) {
                setEventObjectVal(field, oldValue);
                removeEventKey(oldField);
            }
        } else {
            log.info(FILTER_NOT_MET);
        }
    }

    public void map(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final String mapType = jsonObject.optString(MAP_TYPE, "");
        if (field.contains("[]")) {
            if (field.matches(".*\\[\\]\\..*\\[\\]")) {
                renameArrayInArray(jsonObject);
            } else {
                mapToJArray(jsonObject);
            }
        } else if ("hashmapToNameValueArray".equals(mapType)) {
            mapHashmapToNameValueArray(jsonObject);
        } else if ("nameValueArrayToHashmap".equals(mapType)) {
            mapNameValueArrayToHashmap(jsonObject);
        } else if ("renameObject".equals(mapType)) {
            renameObject(jsonObject);
        } else {
            mapAttribute(jsonObject);
        }
    }

    String performOperation(String operation, String value) {
        log.info("performOperation");
        if ("convertMBtoKB".equals(operation)) {
            float kbValue = Float.parseFloat(value) * 1024;
            value = String.valueOf(kbValue);
        }
        return value;
    }


    public void mapAttribute(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final String oldField = jsonObject.getString(OLD_FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        final String operation = jsonObject.optString("operation");
        String value;
        if (filter == null || isFilterMet(filter)) {

            value = getEventObjectVal(oldField).toString();
            if (!value.equals(OBJECT_NOT_FOUND)) {
                if (operation != null && !operation.isEmpty()) {
                    value = performOperation(operation, value);
                }

                setEventObjectVal(field, value);

                removeEventKey(oldField);
            }
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    private void mapToJArray(JSONObject jsonObject) {
        log.info("mapToJArray");
        String field = jsonObject.getString(FIELD);
        String oldField = jsonObject.getString(OLD_FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        final JSONObject attrMap = jsonObject.optJSONObject("attrMap");
        oldField = oldField.replaceAll(REGEX, "");
        field = field.replaceAll(REGEX, "");

        if (filter == null || isFilterMet(filter)) {

            String value = getEventObjectVal(oldField).toString();
            if (!value.equals(OBJECT_NOT_FOUND)) {
                log.info("old value ==" + value);
                // update old value based on attrMap
                if (attrMap != null) {
                    // loop thru attrMap and update attribute name to new name
                    for (String key : attrMap.keySet()) {
                        value = value.replaceAll(key, attrMap.getString(key));
                    }
                }

                log.info("new value ==" + value);
                char c = value.charAt(0);
                if (c != '[') {
                    // oldfield is JsonObject
                    JSONObject valueJO = new JSONObject(value);
                    // if the array already exists
                    String existingValue = getEventObjectVal(field).toString();
                    if (!existingValue.equals(OBJECT_NOT_FOUND)) {
                        JSONArray ja = new JSONArray(existingValue);
                        JSONObject jo = ja.optJSONObject(0);
                        if (jo != null) {
                            for (String key : valueJO.keySet()) {
                                jo.put(key, valueJO.get(key));

                            }
                            ja.put(0, jo);

                            setEventObjectVal(field, ja);
                        }
                    } else // if new array
                    {
                        setEventObjectVal(field + "[0]", new JSONObject(value), "JArray");
                    }
                } else // oldfield is jsonArray
                {
                    setEventObjectVal(field, new JSONArray(value));
                }

                removeEventKey(oldField);
            }
        } else {
            log.info(FILTER_NOT_MET);
        }
    }

    // this method is to support the mapping 5.x to VES7.x format for additionalInformation field
    private void mapNameValueArrayToHashmap(JSONObject jsonObject) {
        log.info("mapNameValueArrayToHashmap");
        String field = jsonObject.getString(FIELD);
        String oldField = jsonObject.getString(FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {
            JSONObject newHashMap = new JSONObject(); // this will hold the newly mapped hashmap elements
            JSONArray arrayValue = (JSONArray) getEventObjectVal(oldField); // old Array structure value
            JSONObject tempJObj;
            String tempName;
            String tempValue;
            if (!arrayValue.toString().equals(OBJECT_NOT_FOUND)) {
                log.info("old value ==" + arrayValue.toString());
                // Loop thru the JSONArray, get the name:value pair and write to new JSONObject as hashmap elements
                for (int i = 0; i < arrayValue.length(); i++) {

                    tempJObj = arrayValue.getJSONObject(i);
                    if (tempJObj != null) {
                        tempName = tempJObj.get("name").toString();
                        tempValue = tempJObj.get(VALUE).toString();
                        newHashMap.put(tempName, tempValue);
                    }
                }
                // remove the old Array structure
                removeEventKey(oldField);
                //Add the new Hashmap 
                setEventObjectVal(field, newHashMap);
            }
        } else {
            log.info(FILTER_NOT_MET);
        }
    }

    // this method is to support the mapping 7.x to VES5.x format for additionalInformation field
    private void mapHashmapToNameValueArray(JSONObject jsonObject) {
        log.info("mapHashmapToNameValueArray");
        System.out.println("mapHashmapToNameValueArray");
        String field = jsonObject.getString(FIELD);
        String oldField = jsonObject.getString(FIELD);
        final JSONObject filter = jsonObject.optJSONObject(FILTER);

        if (filter == null || isFilterMet(filter)) {
            JSONArray newArray = new JSONArray(); // this will hold the new name:value JSONObject
            JSONObject nameValJObj;
            System.out.println("object ==" + getEventObjectVal(oldField).toString());
            if (!getEventObjectVal(oldField).toString().equals(OBJECT_NOT_FOUND)) {

                JSONObject hashMap = (JSONObject) getEventObjectVal(oldField); // old hashmap structure value
                if (hashMap != null) {
                    log.info("old value ==" + hashMap.toString());
                    // Loop thru the hashMap JSONObject, get the hashmap elements add them as name:value JsonObject into the newArray
                    for (String key : hashMap.keySet()) {
                        nameValJObj = new JSONObject(); //create new object so not to overwrite in memory for Array insertion
                        nameValJObj.put("name", key);
                        nameValJObj.put("value", hashMap.get(key));
                        newArray.put(nameValJObj);
                    }
                    // remove the old hashMap structure
                    removeEventKey(oldField);
                    //Add the newArray containing the name:value Object
                    setEventObjectVal(field, newArray);
                }
            }
        } else {
            log.info(FILTER_NOT_MET);
        }
    }

    /**
     * example - { "functionName": "concatenateValue", "args":{ "filter":
     * {"event.commonEventHeader.event":"heartbeat"},
     * FIELD:"event.commonEventHeader.eventName", "concatenate":
     * ["event.commonEventHeader.domain","event.commonEventHeader.eventType","event.commonEventHeader.alarmCondition"],
     * "delimiter":"_" } }
     **/
    public void concatenateValue(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final String delimiter = jsonObject.getString("delimiter");
        final JSONArray values = jsonObject.getJSONArray("concatenate");
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        if (filter == null || isFilterMet(filter)) {
            StringBuilder value = new StringBuilder();
            for (int i = 0; i < values.length(); i++) {

                String tempVal = evaluate(values.getString(i));
                if (!tempVal.equals(OBJECT_NOT_FOUND)) {
                    if (i == 0) {
                        value.append(tempVal);
                    } else {
                        value.append(delimiter).append(tempVal);
                    }
                }
            }

            setEventObjectVal(field, value.toString());
        } else {
            log.info(FILTER_NOT_MET);
        }
    }

    public void subtractValue(JSONObject jsonObject) {

        final String field = jsonObject.getString(FIELD);
        final JSONArray values = jsonObject.getJSONArray("subtract");
        final JSONObject filter = jsonObject.optJSONObject(FILTER);
        if (filter == null || isFilterMet(filter)) {
            float value = 0;
            for (int i = 0; i < values.length(); i++) {
                log.info(values.getString(i));
                String tempVal = evaluate(values.getString(i));
                log.info("tempVal==" + tempVal);
                if (!tempVal.equals(OBJECT_NOT_FOUND)) {
                    if (i == 0) {
                        value = value + Float.parseFloat(tempVal);
                    } else {
                        value = value - Float.parseFloat(tempVal);
                    }
                }
            }
            log.info("value ==" + value);
            setEventObjectVal(field, value, "number");
        } else {
            log.info(FILTER_NOT_MET);
        }
    }


    private void removeEventKey(String field) {
        String[] keySet = field.split("\\.", field.length());
        JSONObject keySeries = event;
        for (int i = 0; i < (keySet.length - 1); i++) {

            keySeries = keySeries.getJSONObject(keySet[i]);
        }

        keySeries.remove(keySet[keySet.length - 1]);
    }


    boolean checkFilter(JSONObject jo, String key, String logicKey) {
        String filterValue = jo.getString(key);
        if (filterValue.contains(":")) {
            String[] splitVal = filterValue.split(":");
            if ("matches".equals(splitVal[0])) {
                if ("not".equals(logicKey)) {
                    if (getEventObjectVal(key).toString().matches(splitVal[1])) {
                        log.info(filterValue + "==" + key + "==" + getEventObjectVal(key) + COMP_FALSE);
                        return false;
                    }
                } else {
                    if (!(getEventObjectVal(key).toString().matches(splitVal[1]))) {
                        log.info(filterValue + "==" + key + "==" + getEventObjectVal(key) + COMP_FALSE);
                        return false;
                    }
                }

            }
            if ("contains".equals(splitVal[0])) {          
                if ("not".equals(logicKey)) {
                    if (getEventObjectVal(key).toString().contains(splitVal[1])) {
                        log.info(filterValue + "==" + key + "==" + getEventObjectVal(key) + COMP_FALSE);
                        return false;
                    }
                } else {
                    if (!(getEventObjectVal(key).toString().contains(splitVal[1]))) {
                        log.info(filterValue + "==" + key + "==" + getEventObjectVal(key) + COMP_FALSE);
                        return false;
                    }
                }

            }
        } else {
            if ("not".equals(logicKey)) {
                if (getEventObjectVal(key).toString().equals(filterValue)) {
                    log.info(filterValue + "==" + key + "==" + getEventObjectVal(key) + COMP_FALSE);
                    return false;
                }
            } else {
                if (!(getEventObjectVal(key).toString().equals(filterValue))) {
                    log.info(filterValue + "==" + key + "==" + getEventObjectVal(key) + COMP_FALSE);
                    return false;
                }
            }
        }
        return true;
    }


    public boolean isFilterMet(JSONObject jo) {
        for (String key : jo.keySet()) {
            if ("not".equals(key)) {
                JSONObject njo = jo.getJSONObject(key);
                for (String njoKey : njo.keySet()) {
                    if (!checkFilter(njo, njoKey, key)) {
                        return false;
                    }
                }
            } else {
                if (!checkFilter(jo, key, key)) {
                    return false;
                }
            }
        }
        return true;
    }

    /**
     * returns a string or JSONObject or JSONArray
     **/
    public Object getEventObjectVal(String keySeriesStr) {
        keySeriesStr = keySeriesStr.replaceAll("\\[", ".");
        keySeriesStr = keySeriesStr.replaceAll("\\]", ".");
        if (keySeriesStr.contains("..")) {
            keySeriesStr = keySeriesStr.replaceAll("\\.\\.", ".");
        }

        if (keySeriesStr.lastIndexOf(".") == keySeriesStr.length() - 1) {
            keySeriesStr = keySeriesStr.substring(0, keySeriesStr.length() - 1);
        }
        String[] keySet = keySeriesStr.split("\\.", keySeriesStr.length());
        Object keySeriesObj = event;
        for (String aKeySet : keySet) {
            if (keySeriesObj != null) {
                if (keySeriesObj instanceof String) {

                    log.info("STRING==" + keySeriesObj);
                } else if (keySeriesObj instanceof JSONArray) {
                    keySeriesObj = ((JSONArray) keySeriesObj).optJSONObject(Integer.parseInt(aKeySet));

                } else if (keySeriesObj instanceof JSONObject) {
                    keySeriesObj = ((JSONObject) keySeriesObj).opt(aKeySet);

                } else {
                    log.info("unknown object==" + keySeriesObj);
                }
            }
        }

        if (keySeriesObj == null) {
            return OBJECT_NOT_FOUND;
        }
        return keySeriesObj;
    }

    public void setEventObjectVal(String keySeriesStr, Object value) {
        setEventObjectVal(keySeriesStr, value, "string");
    }

    /**
     * returns a string or JSONObject or JSONArray
     **/
    public void setEventObjectVal(String keySeriesStr, Object value, String fieldType) {
        keySeriesStr = keySeriesStr.replaceAll("\\[", ".");
        keySeriesStr = keySeriesStr.replaceAll("\\]", ".");
        if (keySeriesStr.contains("..")) {
            keySeriesStr = keySeriesStr.replaceAll("\\.\\.", ".");
        }
        log.info("fieldType==" + fieldType);

        if (keySeriesStr.lastIndexOf(".") == keySeriesStr.length() - 1) {
            keySeriesStr = keySeriesStr.substring(0, keySeriesStr.length() - 1);
        }
        String[] keySet = keySeriesStr.split("\\.", keySeriesStr.length());
        Object keySeriesObj = event;
        for (int i = 0; i < (keySet.length - 1); i++) {

            if (keySeriesObj instanceof JSONArray) {

                if (((JSONArray) keySeriesObj).optJSONObject(Integer.parseInt(keySet[i])) == null) // if
                // the
                // object
                // is
                // not
                // there
                // then
                // add
                // it
                {
                    log.info("Object is null, must add it");
                    if (keySet[i + 1].matches("[0-9]*")) // if index then array
                    {
                        ((JSONArray) keySeriesObj).put(Integer.parseInt(keySet[i]), new JSONArray());
                    } else {
                        ((JSONArray) keySeriesObj).put(Integer.parseInt(keySet[i]), new JSONObject());
                    }
                }
                keySeriesObj = ((JSONArray) keySeriesObj).optJSONObject(Integer.parseInt(keySet[i]));

            } else if (keySeriesObj instanceof JSONObject) {
                if (((JSONObject) keySeriesObj).opt(keySet[i]) == null) // if
                // the
                // object
                // is
                // not
                // there
                // then
                // add
                // it
                {
                    if (keySet[i + 1].matches("[0-9]*")) // if index then array
                    {
                        ((JSONObject) keySeriesObj).put(keySet[i], new JSONArray());
                    } else {
                        ((JSONObject) keySeriesObj).put(keySet[i], new JSONObject());
                    }
                    log.info("Object is null, must add it");
                }
                keySeriesObj = ((JSONObject) keySeriesObj).opt(keySet[i]);
            } else {
                log.info("unknown object==" + keySeriesObj);
            }
        }
        if ("number".equals(fieldType)) {
            DecimalFormat df = new DecimalFormat("#.0");
            if (value instanceof String) {
                ((JSONObject) keySeriesObj).put(keySet[keySet.length - 1],
                        Float.valueOf(df.format(Float.valueOf((String) value))));
            } else {
                ((JSONObject) keySeriesObj).put(keySet[keySet.length - 1], Float.valueOf(df.format(value)));
            }
        } else if ("integer".equals(fieldType) && value instanceof String) {
            ((JSONObject) keySeriesObj).put(keySet[keySet.length - 1], Integer.valueOf((String) value));
        } else if ("JArray".equals(fieldType)) {
            assert keySeriesObj instanceof JSONArray;
            ((JSONArray) keySeriesObj).put(value);
        } else {
            ((JSONObject) keySeriesObj).put(keySet[keySet.length - 1], value);
        }

    }
}