aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/core/DBVersion.java
blob: 003a27a1e44dc652fc76bcd8b9f296b3e9b2b0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package org.openecomp.sdc.asdctool.migration.core;

import java.math.BigInteger;

public class DBVersion implements Comparable<DBVersion>{

    private static final String VERSION_PARTS_SEPARATOR = "\\.";
    private static final int MAJOR_PART_IDX = 0;
    private static final int MINOR_PART_IDX = 1;
    private BigInteger major;
    private BigInteger minor;

    /**
     * The current db version. should be tested against real db to verify it is compatible to the db version
     */
    public static final DBVersion CURRENT_VERSION = new DBVersion(1710, 0);

    private DBVersion(BigInteger major, BigInteger minor) {
        this.major = major;
        this.minor = minor;
    }

    private DBVersion(int major, int minor) {
        this.major = BigInteger.valueOf(major);
        this.minor = BigInteger.valueOf(minor);
    }

    public BigInteger getMajor() {
        return major;
    }

    public BigInteger getMinor() {
        return minor;
    }

    public static DBVersion from(BigInteger major, BigInteger minor) {
        return new DBVersion(major, minor);
    }

    public static DBVersion fromString(String version) {
        String[] split = version.split(VERSION_PARTS_SEPARATOR);
        if (split.length != 2) {
            throw new MigrationException("version must be of pattern: <major>.<minor>");
        }
        return new DBVersion(getVersionPart(split[MAJOR_PART_IDX]),
                             getVersionPart(split[MINOR_PART_IDX]));

    }

    private static BigInteger getVersionPart(String versionPart) {
        try {
            return new BigInteger(versionPart);
        } catch (NumberFormatException e) {
            throw new MigrationException(String.format("version part %s is non numeric", versionPart));
        }
    }

    @Override
    public String toString() {
        return String.format("%s.%s", major, minor);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        DBVersion dbVersion = (DBVersion) o;

        return major.equals(dbVersion.major) && minor.equals(dbVersion.minor);
    }

    @Override
    public int hashCode() {
        int result = major.hashCode();
        result = 31 * result + minor.hashCode();
        return result;
    }

    @Override
    public int compareTo(DBVersion o) {
        if (o == null) {
            return 1;
        }
        int majorsComparision = this.major.compareTo(o.major);
        if (majorsComparision != 0) {
            return majorsComparision;
        }
        int minorsComparision = this.minor.compareTo(o.minor);
        if (minorsComparision != 0) {
            return minorsComparision;
        }
        return 0;
    }
}