Optimize the areas where its creating extra memory
[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.Matcher;
25 import java.util.regex.Pattern;
26
27 public class SchemaVersion implements Comparable<SchemaVersion> {
28
29     public static final Pattern VERSION_PATTERN = Pattern.compile("v([1-9][0-9]*)");
30
31     private final Integer value;
32
33     public SchemaVersion(String value){
34         Matcher matcher = VERSION_PATTERN.matcher(value);
35
36         if(!matcher.find()){
37             throw new AAISchemaValidationException("Invalid Schema Version " + value + ", value doesn't match the expected regex: " + VERSION_PATTERN);
38         } else {
39             this.value = Integer.parseInt(matcher.group(1));
40         }
41     }
42
43     @Override
44     public int hashCode(){
45         return value.hashCode();
46     }
47
48     @Override
49     public boolean equals(Object other){
50
51         if(this == other){
52             return true;
53         }
54
55         if(other == null){
56             return false;
57         }
58
59         if(!(other instanceof SchemaVersion)){
60             return false;
61         }
62
63         SchemaVersion obj = (SchemaVersion)other;
64         return this.value.equals(obj.value);
65     }
66
67     @Override
68     public String toString(){
69         return String.valueOf("v" + value);
70     }
71
72     @Override
73     public int compareTo(SchemaVersion o) {
74
75         if(o == null){
76             return -1;
77         }
78
79         return this.value.compareTo(o.value);
80     }
81 }