aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/migration/1702_to_1707_zusammen/src/main/java/org/openecomp/core/migration/convertors/FeatureGroupConvertor.java
blob: eac5ce64ea0580b31445804ae9d1767030b64816 (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
package org.openecomp.core.migration.convertors;

import com.amdocs.zusammen.datatypes.item.ElementContext;
import com.amdocs.zusammen.datatypes.item.Info;
import com.amdocs.zusammen.datatypes.item.Relation;
import com.amdocs.zusammen.plugin.statestore.cassandra.dao.types.ElementEntityContext;
import com.amdocs.zusammen.sdk.collaboration.types.CollaborationElement;
import org.openecomp.core.migration.store.ElementHandler;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.RelationType;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.StructureElement;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.VlmZusammenUtil;
import org.openecomp.sdc.vendorlicense.dao.types.FeatureGroupEntity;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * Created by ayalaben on 4/25/2017
 */
public class FeatureGroupConvertor {

    private static Logger logger = LoggerFactory.getLogger(FeatureGroupConvertor.class);
    private static Set<String> FeatureGroupsLoaded = new HashSet<>();

    public static ElementEntityContext convertFeatureGroupToElementContext(FeatureGroupEntity featureGroupEntity) {

        return new ElementEntityContext("GLOBAL_USER", new
                ElementContext(featureGroupEntity.getVendorLicenseModelId(), featureGroupEntity.getVersion().toString()));
    }

    public static CollaborationElement[] convertFeatureGroupToElement(FeatureGroupEntity featureGroupEntity) {
//        printMessage(logger, "source FeatureGroupEntity -> " + featureGroupEntity.toString());
        CollaborationElement[] elements;
        List<String> featureGroupNamespace = getFeatureGroupNamespace(featureGroupEntity);

        int index = 0;
        String featureGroupsEntityId = StructureElement.FeatureGroups.name();
        String uniqueId = featureGroupEntity.getVendorLicenseModelId() + "_" + featureGroupEntity.getVersion().toString();

        if (FeatureGroupsLoaded.contains(uniqueId)) {
            elements = new CollaborationElement[1];
        } else {
            FeatureGroupsLoaded.add(uniqueId);
            elements = new CollaborationElement[2];
            elements[index] = ElementHandler.getElementEntity(
                    featureGroupEntity.getVendorLicenseModelId(), featureGroupEntity.getVersion().toString(),
                    featureGroupsEntityId, featureGroupNamespace,
                    ElementHandler.getStructuralElementInfo(StructureElement.FeatureGroups.name()),
                    null, null, null);
            index++;
        }

        featureGroupNamespace.add(featureGroupsEntityId);

        elements[index] = ElementHandler.getElementEntity(
                featureGroupEntity.getVendorLicenseModelId(), featureGroupEntity.getVersion().toString(),
                featureGroupEntity.getId(), featureGroupNamespace, getFeatureGroupInfo(featureGroupEntity),
                getAllFeatureGroupRelations(featureGroupEntity), null, null);

        return elements;
    }

    private static Collection<Relation> getAllFeatureGroupRelations(FeatureGroupEntity featureGroup) {
        Collection<Relation> relations = new ArrayList<>();

        relations.addAll(featureGroup.getEntitlementPoolIds().stream().map(rel ->
                VlmZusammenUtil.createRelation( RelationType.FeatureGroupToEntitlmentPool, rel))
                .collect(Collectors.toList()));

        relations.addAll(featureGroup.getLicenseKeyGroupIds().stream().map(rel ->
                VlmZusammenUtil.createRelation( RelationType.FeatureGroupToLicenseKeyGroup, rel))
                .collect(Collectors.toList()));

        relations.addAll(featureGroup.getReferencingLicenseAgreements().stream().map(rel ->
                VlmZusammenUtil.createRelation( RelationType.FeatureGroupToReferencingLicenseAgreement,
                        rel)).collect(Collectors.toList()));

        return relations;
    }

    private static Info getFeatureGroupInfo(FeatureGroupEntity featureGroup) {

        Info info = new Info();
        info.setName(featureGroup.getName());
        info.setDescription(featureGroup.getDescription());
        info.addProperty("partNumber", featureGroup.getPartNumber());
        info.addProperty("manufacturerReferenceNumber", featureGroup.getManufacturerReferenceNumber());

        return info;
    }


    private static List<String> getFeatureGroupNamespace(FeatureGroupEntity featureGroupEntity) {
        return ElementHandler.getElementPath("");
    }
}