Refactor to authorative TOSCA serializtion
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaConstraintLogical.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.tosca.simple.concepts;
22
23 import javax.persistence.Column;
24
25 import lombok.EqualsAndHashCode;
26 import lombok.Getter;
27 import lombok.NonNull;
28 import lombok.ToString;
29
30 import org.apache.commons.lang3.ObjectUtils;
31 import org.onap.policy.models.tosca.authorative.concepts.ToscaConstraint;
32
33 /**
34  * This class represents a logical TOSCA constraint: =,>,>=,<,<=.
35  */
36 @EqualsAndHashCode(callSuper = false)
37 @ToString
38 public class JpaToscaConstraintLogical extends JpaToscaConstraint {
39     private static final long serialVersionUID = -2730203215911880756L;
40
41     @Column
42     @NonNull
43     @Getter
44     private JpaToscaConstraintOperation operation;
45
46     @Column
47     @NonNull
48     @Getter
49     private String compareTo;
50
51     /**
52      * Constructor to set operation.
53      *
54      * @param operation the operation to set
55      * @param compareTo the string to compare to
56      */
57     public JpaToscaConstraintLogical(@NonNull final JpaToscaConstraintOperation operation,
58             @NonNull final String compareTo) {
59         this.operation = operation;
60         this.compareTo = compareTo;
61     }
62
63     /**
64      * Authorative constructor.
65      *
66      * @param authorativeConcept the authorative concept to copy from
67      */
68     public JpaToscaConstraintLogical(final ToscaConstraint authorativeConcept) {
69         super(authorativeConcept);
70     }
71
72     @Override
73     public ToscaConstraint toAuthorative() {
74         ToscaConstraint toscaConstraint = new ToscaConstraint();
75
76         switch (operation) {
77             case EQ: {
78                 toscaConstraint.setEqual(compareTo);
79                 break;
80             }
81             case GT: {
82                 toscaConstraint.setGreaterThan(compareTo);
83                 break;
84             }
85             case GE: {
86                 toscaConstraint.setGreaterOrEqual(compareTo);
87                 break;
88             }
89             case LT: {
90                 toscaConstraint.setLessThan(compareTo);
91                 break;
92             }
93             case LE: {
94                 toscaConstraint.setLessOrEqual(compareTo);
95                 break;
96             }
97             default: {
98                 // Can't happen
99             }
100         }
101
102         return toscaConstraint;
103     }
104
105     @Override
106     public void fromAuthorative(final ToscaConstraint toscaConstraint) {
107         // @formatter:off
108         if (toscaConstraint.getEqual() != null) {
109             operation = JpaToscaConstraintOperation.EQ;
110             compareTo = toscaConstraint.getEqual();
111         }
112         else if (toscaConstraint.getGreaterThan() != null) {
113             operation = JpaToscaConstraintOperation.GT;
114             compareTo = toscaConstraint.getGreaterThan();
115         }
116         else if (toscaConstraint.getGreaterOrEqual() != null) {
117             operation = JpaToscaConstraintOperation.GE;
118             compareTo = toscaConstraint.getGreaterOrEqual();
119         }
120         else if (toscaConstraint.getLessThan() != null) {
121             operation = JpaToscaConstraintOperation.LT;
122             compareTo = toscaConstraint.getLessThan();
123         }
124         else if (toscaConstraint.getLessOrEqual() != null) {
125             operation = JpaToscaConstraintOperation.LE;
126             compareTo = toscaConstraint.getLessOrEqual();
127         }
128         // @formatter:on
129     }
130
131     @Override
132     public int compareTo(JpaToscaConstraint otherConstraint) {
133         if (otherConstraint == null) {
134             return -1;
135         }
136         if (this == otherConstraint) {
137             return 0;
138         }
139         if (getClass() != otherConstraint.getClass()) {
140             return this.hashCode() - otherConstraint.hashCode();
141         }
142
143         final JpaToscaConstraintLogical other = (JpaToscaConstraintLogical) otherConstraint;
144
145         int result = ObjectUtils.compare(operation, other.operation);
146         if (result != 0) {
147             return result;
148         }
149
150         return ObjectUtils.compare(compareTo, other.compareTo);
151     }
152 }