aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src/main/java/org/onap/aai/serialization/queryformats/ChangesFormat.java
blob: bbaed36063a1d01331e067687f038e69ac4baf02 (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
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 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.aai.serialization.queryformats;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import org.apache.tinkerpop.gremlin.structure.Direction;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.onap.aai.config.SpringContextAware;
import org.onap.aai.db.props.AAIProperties;
import org.onap.aai.serialization.queryformats.exceptions.AAIFormatVertexException;

import java.util.*;
import java.util.concurrent.TimeUnit;

public class ChangesFormat extends MultiFormatMapper {

    private Long startTs = 0L;

    public void startTs(String startTime) {
        /*
         * StartTs = truncate time
         */
        if (startTime == null || startTime.isEmpty() || "now".equals(startTime) || "0".equals(startTime) || "-1".equals(startTime)){
           String historyTruncateDays = SpringContextAware.getApplicationContext().getEnvironment().getProperty("history.truncate.window.days", "365");
           this.startTs = System.currentTimeMillis() - TimeUnit.DAYS.toMillis(Long.parseLong(historyTruncateDays));
        } else {
            this.startTs = Long.parseLong(startTime);
        }
    }

    @Override
    protected Optional<JsonObject> getJsonFromVertex(Vertex v) {
        JsonObject json = new JsonObject();
        if (!v.properties(AAIProperties.RESOURCE_VERSION).hasNext() ||
            !v.properties(AAIProperties.NODE_TYPE).hasNext() ||
            !v.properties(AAIProperties.AAI_URI).hasNext()) {
            return Optional.empty();
        }
        json.addProperty("node-type", v.<String>value(AAIProperties.NODE_TYPE));
        json.addProperty("uri", v.<String>value(AAIProperties.AAI_URI));

        final Set<Long> changes = new HashSet<>();
        v.properties(AAIProperties.RESOURCE_VERSION).forEachRemaining(o->
            o.properties(AAIProperties.START_TS, AAIProperties.END_TS)
            .forEachRemaining(p -> {
                Long val = (Long) p.value();
                if(val >= startTs) {
                    changes.add(val);
                }
            }
            ));
        v.edges(Direction.BOTH).forEachRemaining(e -> {
            if(e.property(AAIProperties.START_TS).isPresent() && (Long)e.property(AAIProperties.START_TS).value() >= startTs) {
                changes.add((Long) e.property(AAIProperties.START_TS).value());
            }
            if(e.property(AAIProperties.END_TS).isPresent() && (Long)e.property(AAIProperties.END_TS).value() >= startTs) {
                changes.add((Long) e.property(AAIProperties.END_TS).value());
            }
        });

        List<Long> sortedList = new ArrayList<>(changes);
        sortedList.sort(Comparator.naturalOrder());
        JsonArray jsonArray = new JsonArray();
        sortedList.forEach(jsonArray::add);

        json.add("changes", jsonArray);

        return Optional.of(json);
    }

    @Override
    protected Optional<JsonObject> getJsonFromVertex(Vertex input, Map<String, List<String>> properties) throws AAIFormatVertexException {
        return Optional.empty();
    }

}