Re-implement model type value for Resource Mapping
[aai/babel.git] / src / main / java / org / onap / aai / babel / xml / generator / model / Widget.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright (c) 2017-2019 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.aai.babel.xml.generator.model;
23
24 import java.util.Collection;
25 import java.util.Collections;
26 import java.util.HashSet;
27 import java.util.Properties;
28 import java.util.Set;
29 import org.onap.aai.babel.xml.generator.XmlArtifactGenerationException;
30 import org.onap.aai.babel.xml.generator.data.ArtifactType;
31 import org.onap.aai.babel.xml.generator.data.WidgetConfigurationUtil;
32 import org.onap.aai.babel.xml.generator.error.IllegalAccessException;
33 import org.onap.aai.babel.xml.generator.types.ModelType;
34
35 public class Widget extends Model {
36
37     public static final String GENERATOR_AAI_CONFIGLPROP_NOT_FOUND =
38             "Cannot generate artifacts. Widget configuration not found for %s";
39
40     public enum Type {
41         SERVICE, VF, VFC, VSERVER, VOLUME, FLAVOR, TENANT, VOLUME_GROUP, LINT, L3_NET, VFMODULE, IMAGE, OAM_NETWORK, ALLOTTED_RESOURCE, TUNNEL_XCONNECT, CONFIGURATION, CR, INSTANCE_GROUP;
42     }
43
44     private Set<String> keys = new HashSet<>();
45
46     protected String name;
47     protected Type type;
48     protected boolean deleteFlag = false;
49
50     public Widget(Type widgetType, String name, boolean deleteFlag) {
51         type = widgetType;
52         this.name = name;
53         this.deleteFlag = deleteFlag;
54     }
55
56     /**
57      * Copy Constructor.
58      * 
59      * @param baseWidget
60      * @throws XmlArtifactGenerationException
61      */
62     public Widget(Widget baseWidget) throws XmlArtifactGenerationException {
63         this(baseWidget.getWidgetType(), baseWidget.getName(), baseWidget.getDeleteFlag());
64         if (type == Type.VSERVER) {
65             widgets.add(getWidget(Type.FLAVOR));
66             widgets.add(getWidget(Type.IMAGE));
67             widgets.add(getWidget(Type.TENANT));
68             widgets.add(getWidget(Type.VFC));
69         }
70     }
71
72     /**
73      * Gets widget.
74      *
75      * @param type
76      *            the type
77      * @return a new widget of the specified type
78      * @throws XmlArtifactGenerationException
79      *             if there is no configuration defined for the specified type
80      */
81     public static Widget getWidget(Type type) throws XmlArtifactGenerationException {
82         Widget widget = WidgetConfigurationUtil.createWidgetFromType(type);
83         if (widget == null) {
84             throw new XmlArtifactGenerationException("No widget type is defined for " + type);
85         }
86         return widget;
87     }
88
89     public String getId() {
90         String id = WidgetConfigurationUtil.getConfig()
91                 .getProperty(ArtifactType.AAI.name() + ".model-version-id." + getName());
92         if (id == null) {
93             throw new IllegalArgumentException(String.format(GENERATOR_AAI_CONFIGLPROP_NOT_FOUND,
94                     ArtifactType.AAI.name() + ".model-version-id." + getName()));
95         }
96         return id;
97     }
98
99     public ModelType getType() {
100         return ModelType.WIDGET;
101     }
102
103     public String getName() {
104         return name;
105     }
106
107     /**
108      * Get Widget Id from properties file.
109      *
110      * @return - Widget Id
111      */
112     @Override
113     public String getWidgetId() {
114         Properties properties = WidgetConfigurationUtil.getConfig();
115         String id = properties.getProperty(ArtifactType.AAI.name() + ".model-invariant-id." + getName());
116         if (id == null) {
117             throw new IllegalArgumentException(String.format(GENERATOR_AAI_CONFIGLPROP_NOT_FOUND,
118                     ArtifactType.AAI.name() + ".model-invariant-id." + getName()));
119         }
120         return id;
121     }
122
123     @Override
124     public int hashCode() {
125         return getId().hashCode();
126     }
127
128     @Override
129     public Type getWidgetType() {
130         return type;
131     }
132
133     /**
134      * Equals method that compares Widget IDs.
135      *
136      * @param obj
137      *            the Widget object to compare
138      * @return whether or not obj is equal to this Widget
139      */
140     @Override
141     public boolean equals(Object obj) {
142         boolean isEqual = false;
143         if (obj instanceof Widget) {
144             Widget other = (Widget) obj;
145             if (getId().equals(other.getId())) {
146                 other.keys.addAll(this.keys);
147                 isEqual = true;
148             }
149         }
150         return isEqual;
151     }
152
153     public void addKey(String key) {
154         this.keys.add(key);
155     }
156
157     /**
158      * Determine whether one or more keys belonging to this Widget appear in the specified Collection.
159      *
160      * @param keys
161      *            the keys
162      * @return the boolean
163      */
164     public boolean memberOf(Collection<String> keys) {
165         if (keys == null) {
166             return false;
167         }
168         return !Collections.disjoint(this.keys, keys);
169     }
170
171     @Override
172     public boolean addResource(Resource resource) {
173         throw new IllegalAccessException(Model.GENERATOR_AAI_ERROR_UNSUPPORTED_WIDGET_OPERATION);
174     }
175
176     @Override
177     public boolean addWidget(Widget widget) {
178         if (getWidgetType() == Type.VSERVER) {
179             return widgets.add(widget);
180         }
181         return true;
182     }
183
184     @Override
185     public String toString() {
186         return getName() + " Widget keys=" + keys + ", resources=" + resources + ", widgets=" + widgets;
187     }
188
189     @Override
190     public boolean getDeleteFlag() {
191         return deleteFlag;
192     }
193
194     @Override
195     public String getModelTypeName() {
196         throw new IllegalAccessException(GENERATOR_AAI_ERROR_UNSUPPORTED_WIDGET_OPERATION);
197     }
198
199     @Override
200     public String getModelId() {
201         throw new IllegalAccessException(GENERATOR_AAI_ERROR_UNSUPPORTED_WIDGET_OPERATION);
202     }
203
204     @Override
205     public String getModelNameVersionId() {
206         throw new IllegalAccessException(GENERATOR_AAI_ERROR_UNSUPPORTED_WIDGET_OPERATION);
207     }
208
209 }