2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * Modifications Copyright (C) 2019 Nordix Foundation.
5 * ================================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.model.contextmodel.concepts;
24 import java.util.List;
26 import javax.persistence.Column;
27 import javax.persistence.Convert;
28 import javax.persistence.EmbeddedId;
29 import javax.persistence.Entity;
30 import javax.persistence.Table;
31 import javax.xml.bind.annotation.XmlAccessType;
32 import javax.xml.bind.annotation.XmlAccessorType;
33 import javax.xml.bind.annotation.XmlElement;
34 import javax.xml.bind.annotation.XmlRootElement;
35 import javax.xml.bind.annotation.XmlType;
36 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
38 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
39 import org.onap.policy.apex.model.basicmodel.concepts.AxConcept;
40 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
41 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationMessage;
42 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult;
43 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult.ValidationResult;
44 import org.onap.policy.apex.model.basicmodel.dao.converters.CDataConditioner;
45 import org.onap.policy.common.utils.validation.Assertions;
48 * This class holds a data schema definition in Apex. A data schema describes the structure of a single atom of data
49 * handled by Apex. This atom of data can be a primitive type such as an integer or a string, or it can be a more
50 * complex data type such as a Java object or an object described using a data definition language such as Avro. The
51 * schema flavour defines the type of schema being defined and the schema itself defines the schema. The schema flavour
52 * is used by Apex to look up and load a plugin class that understands and interprets the schema definition and can
53 * create instances of classes for the schema.
55 * <p>An {@link AxContextSchema} is used to define each parameter in Apex events, the messages that enter, exit, and are
56 * passed internally in Apex. In addition, an Apex {@link AxContextAlbum} instances hold a map of
57 * {@link AxContextSchema} instances to represent the context being managed as an {@link AxContextAlbum}. For example,
58 * the state of all cells in a mobile network might be represented as an {@link AxContextAlbum} with its
59 * {@link AxContextSchema} being defined as @code cell} objects.
61 * <p>Validation checks that the schema key is not null. It also checks that the schema flavour is defined and matches
62 * the regular expression SCHEMA_FLAVOUR_REGEXP. Finally, validation checks that the defined schema is not a blank or
66 @Table(name = "AxContextSchema")
68 @XmlAccessorType(XmlAccessType.FIELD)
69 @XmlRootElement(name = "apexContextSchema", namespace = "http://www.onap.org/policy/apex-pdp")
70 @XmlType(name = "AxContextSchema", namespace = "http://www.onap.org/policy/apex-pdp", propOrder =
71 { "key", "schemaFlavour", "schemaDefinition" })
73 public class AxContextSchema extends AxConcept {
74 private static final String SCHEMA_FLAVOUR = "schemaFlavour";
75 private static final String WHITESPACE_REGEXP = "\\s+$";
77 private static final long serialVersionUID = -6443016863162692288L;
79 /** Regular expression that constrains what values a schema flavour can have. */
80 public static final String SCHEMA_FLAVOUR_REGEXP = "[A-Za-z0-9\\-_]+";
82 /** An undefined schema flavour has this value. */
83 public static final String SCHEMA_FLAVOUR_UNDEFINED = "UNDEFINED";
85 /** The maximum permissible size of a schema definition. */
86 public static final int MAX_SCHEMA_SIZE = 32672; // The maximum size supported by Apache Derby
89 @XmlElement(name = "key", required = true)
90 private AxArtifactKey key;
92 @Column(name = SCHEMA_FLAVOUR)
93 @XmlElement(required = true)
94 private String schemaFlavour;
96 @Column(name = "schemaDefinition", length = MAX_SCHEMA_SIZE)
97 @Convert(converter = CDataConditioner.class)
98 @XmlJavaTypeAdapter(value = CDataConditioner.class)
99 @XmlElement(name = "schemaDefinition", required = true)
100 private String schemaDefinition;
103 * The default constructor creates a context schema with a null artifact key. The flavour of the context album is
104 * set as SCHEMA_FLAVOUR_UNDEFINED and the schema itself is defined as an empty string.
106 public AxContextSchema() {
107 this(new AxArtifactKey());
108 schemaFlavour = SCHEMA_FLAVOUR_UNDEFINED;
114 * @param copyConcept the concept to copy from
116 public AxContextSchema(final AxContextSchema copyConcept) {
121 * The key constructor creates a context schema with the given artifact key. The flavour of the context album is set
122 * as SCHEMA_FLAVOUR_UNDEFINED and the schema itself is defined as an empty string.
126 public AxContextSchema(final AxArtifactKey key) {
127 this(key, SCHEMA_FLAVOUR_UNDEFINED, "");
131 * This Constructor creates a context schema with all of its fields defined.
134 * @param schemaFlavour the schema flavour
135 * @param schemaDefinition the schema definition
137 public AxContextSchema(final AxArtifactKey key, final String schemaFlavour, final String schemaDefinition) {
139 Assertions.argumentNotNull(key, "key may not be null");
140 Assertions.argumentNotNull(schemaFlavour, "schemaFlavour may not be null");
141 Assertions.argumentNotNull(schemaDefinition, "schemaDefinition may not be null");
144 this.schemaFlavour = Assertions.validateStringParameter(SCHEMA_FLAVOUR, schemaFlavour, SCHEMA_FLAVOUR_REGEXP);
145 this.schemaDefinition = schemaDefinition.replaceAll(WHITESPACE_REGEXP, "");
151 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#getKey()
154 public AxArtifactKey getKey() {
161 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#getKeys()
164 public List<AxKey> getKeys() {
165 return key.getKeys();
169 * Sets the key of the context schema.
171 * @param key the key of the context schema
173 public void setKey(final AxArtifactKey key) {
174 Assertions.argumentNotNull(key, "key may not be null");
179 * Gets the schema flavour, which defines the schema definition type being used.
181 * @return the schema flavour
183 public String getSchemaFlavour() {
184 return schemaFlavour;
188 * Sets the schema flavour, which defines the type of schema definition being used.
190 * @param schemaFlavour the schema flavour
192 public void setSchemaFlavour(final String schemaFlavour) {
193 this.schemaFlavour = Assertions.validateStringParameter(SCHEMA_FLAVOUR, schemaFlavour, SCHEMA_FLAVOUR_REGEXP);
197 * Gets the schema, which defines the structure of this data schema atom.
199 * @return the schema definition
201 public String getSchema() {
202 return schemaDefinition;
206 * Sets the schema, which defines the structure of this data schema atom.
208 * @param schema the schema definition
210 public void setSchema(final String schema) {
211 Assertions.argumentNotNull(schema, "schema may not be null");
212 this.schemaDefinition = schema.replaceAll(WHITESPACE_REGEXP, "");
218 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#validate(org.onap.policy.apex.model.
219 * basicmodel.concepts.AxValidationResult)
222 public AxValidationResult validate(final AxValidationResult resultIn) {
223 AxValidationResult result = resultIn;
225 if (key.equals(AxArtifactKey.getNullKey())) {
226 result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
227 "key is a null key"));
230 result = key.validate(result);
232 if (schemaFlavour.replaceAll(WHITESPACE_REGEXP, "").length() == 0
233 || schemaFlavour.equals(SCHEMA_FLAVOUR_UNDEFINED)) {
234 result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
235 "schema flavour is not defined"));
238 String flavourValidationResult = Assertions.getStringParameterValidationMessage(SCHEMA_FLAVOUR, schemaFlavour,
239 SCHEMA_FLAVOUR_REGEXP);
240 if (flavourValidationResult != null) {
241 result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
242 "schema flavour invalid-" + flavourValidationResult));
245 if (schemaDefinition.replaceAll(WHITESPACE_REGEXP, "").length() == 0) {
246 result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
247 "no schemaDefinition specified, schemaDefinition may not be blank"));
256 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#clean()
259 public void clean() {
261 schemaFlavour = Assertions.validateStringParameter(SCHEMA_FLAVOUR, schemaFlavour, SCHEMA_FLAVOUR_REGEXP);
262 schemaDefinition = schemaDefinition.replaceAll(WHITESPACE_REGEXP, "");
268 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#toString()
271 public String toString() {
272 final StringBuilder builder = new StringBuilder();
273 builder.append(this.getClass().getSimpleName());
274 builder.append(":(");
275 builder.append("key=");
277 builder.append(",schemaFlavour=");
278 builder.append(schemaFlavour);
279 builder.append(",schemaDefinition=");
280 builder.append(schemaDefinition);
282 return builder.toString();
288 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#copyTo(org.onap.policy.apex.model.
289 * basicmodel.concepts.AxConcept)
292 public AxConcept copyTo(final AxConcept target) {
293 Assertions.argumentNotNull(target, "target may not be null");
295 final Object copyObject = target;
296 Assertions.instanceOf(copyObject, AxContextSchema.class);
298 final AxContextSchema copy = ((AxContextSchema) copyObject);
299 copy.setKey(new AxArtifactKey(key));
300 copy.setSchemaFlavour(schemaFlavour);
301 copy.setSchema(schemaDefinition);
309 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#hashCode()
312 public int hashCode() {
313 final int prime = 31;
315 result = prime * result + key.hashCode();
316 result = prime * result + schemaFlavour.hashCode();
317 result = prime * result + schemaDefinition.hashCode();
324 * @see org.onap.policy.apex.model.basicmodel.concepts.AxConcept#equals(java.lang.Object)
327 public boolean equals(final Object obj) {
335 if (getClass() != obj.getClass()) {
339 final AxContextSchema other = (AxContextSchema) obj;
341 if (!key.equals(other.key)) {
344 if (!schemaFlavour.equals(other.schemaFlavour)) {
347 final String thisSchema = CDataConditioner.clean(schemaDefinition).replaceAll("\n", "");
348 final String otherSchema = CDataConditioner.clean(other.schemaDefinition).replaceAll("\n", "");
349 return thisSchema.equals(otherSchema);
355 * @see java.lang.Comparable#compareTo(java.lang.Object)
358 public int compareTo(final AxConcept otherObj) {
359 if (otherObj == null) {
362 if (this == otherObj) {
365 if (getClass() != otherObj.getClass()) {
366 return this.hashCode() - otherObj.hashCode();
369 final AxContextSchema other = (AxContextSchema) otherObj;
370 if (!key.equals(other.key)) {
371 return key.compareTo(other.key);
373 if (!schemaFlavour.equals(other.schemaFlavour)) {
374 return schemaFlavour.compareTo(other.schemaFlavour);
376 final String thisSchema = CDataConditioner.clean(schemaDefinition).replaceAll("\n", "");
377 final String otherSchema = CDataConditioner.clean(other.schemaDefinition).replaceAll("\n", "");
378 return thisSchema.compareTo(otherSchema);