a1a40e6979f57960a50722ef19d70d06107cd122
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / setup / SchemaVersion.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.aai.setup;
21
22 import org.onap.aai.validation.AAISchemaValidationException;
23
24 import java.util.regex.Pattern;
25
26 public class SchemaVersion implements Comparable<SchemaVersion> {
27
28     public static final Pattern VERSION_PATTERN = Pattern.compile("v[1-9][0-9]*");
29
30     private final String value;
31
32     public SchemaVersion(String value){
33         if(!VERSION_PATTERN.matcher(value).matches()){
34             throw new AAISchemaValidationException("Invalid Schema Version " + value + ", value doesn't match the expected regex: " + VERSION_PATTERN);
35         }
36
37         this.value = value;
38     }
39
40     @Override
41     public int hashCode(){
42         return value.hashCode();
43     }
44
45     @Override
46     public boolean equals(Object other){
47         if(this == other){
48             return true;
49         }
50
51         if(other == null){
52             return false;
53         }
54
55         if(!(other instanceof SchemaVersion)){
56             return false;
57         }
58
59         SchemaVersion obj = (SchemaVersion)other;
60         return this.value.equals(obj.value);
61     }
62
63     @Override
64     public String toString(){
65         return value;
66     }
67
68     @Override
69     public int compareTo(SchemaVersion o) {
70
71         if(o == null){
72             return -1;
73         }
74
75         // Requires to convert to integer to match the past behavior
76         // Otherwise the string comparison of versions aren't working as expected
77
78         Integer tVal = Integer.parseInt(this.value.replaceAll("v", ""));
79         Integer oVal = Integer.parseInt(o.value.replaceAll("v", ""));
80
81         return tVal.compareTo(oVal);
82     }
83 }