aboutsummaryrefslogtreecommitdiff
path: root/src/com/kenai/jbosh/AttrVersion.java
blob: 9396e3b1b7e12ba07fab637d19d5007228e3e4fb (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 * Copyright 2009 Mike Cumings
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.kenai.jbosh;

/**
 * Data type representing the getValue of the {@code ver} attribute of the
 * {@code bosh} element.
 */
final class AttrVersion extends AbstractAttr<String> implements Comparable {

    /**
     * Default value if none is provided.
     */
    private static final AttrVersion DEFAULT;
    static {
        try {
            DEFAULT = createFromString("1.8");
        } catch (BOSHException boshx) {
            throw(new IllegalStateException(boshx));
        }
    }

    /**
     * Major portion of the version.
     */
    private final int major;
    
    /**
     * Minor portion of the version.
     */
    private final int minor;

    /**
     * Creates a new attribute object.
     * 
     * @param val attribute getValue
     * @throws BOSHException on parse or validation failure
     */
    private AttrVersion(final String val) throws BOSHException {
        super(val);

        int idx = val.indexOf('.');
        if (idx <= 0) {
            throw(new BOSHException(
                    "Illegal ver attribute value (not in major.minor form): "
                    + val));
        }

        String majorStr = val.substring(0, idx);
        try {
            major = Integer.parseInt(majorStr);
        } catch (NumberFormatException nfx) {
            throw(new BOSHException(
                    "Could not parse ver attribute value (major ver): "
                    + majorStr,
                    nfx));
        }
        if (major < 0) {
            throw(new BOSHException(
                    "Major version may not be < 0"));
        }

        String minorStr = val.substring(idx + 1);
        try {
            minor = Integer.parseInt(minorStr);
        } catch (NumberFormatException nfx) {
            throw(new BOSHException(
                    "Could not parse ver attribute value (minor ver): "
                    + minorStr,
                    nfx));
        }
        if (minor < 0) {
            throw(new BOSHException(
                    "Minor version may not be < 0"));
        }
    }
    
    /**
     * Get the version of specifcation that we support.
     *
     * @return max spec version the code supports
     */
    static AttrVersion getSupportedVersion() {
        return DEFAULT;
    }

    /**
     * Creates a new attribute instance from the provided String.
     * 
     * @param str string representation of the attribute
     * @return attribute instance or {@code null} if provided string is
     *  {@code null}
     * @throws BOSHException on parse or validation failure
     */
    static AttrVersion createFromString(final String str)
    throws BOSHException {
        if (str == null) {
            return null;
        } else {
            return new AttrVersion(str);
        }
    }

    /**
     * Returns the 'major' portion of the version number.
     *
     * @return major digits only
     */
    int getMajor() {
        return major;
    }

    /**
     * Returns the 'minor' portion of the version number.
     *
     * @return minor digits only
     */
    int getMinor() {
        return minor;
    }

    ///////////////////////////////////////////////////////////////////////////
    // Comparable interface:

    /**
     * {@inheritDoc}
     *
     * @param otherObj object to compare to
     * @return -1, 0, or 1
     */
    @Override
    public int compareTo(final Object otherObj) {
        if (otherObj instanceof AttrVersion) {
            AttrVersion other = (AttrVersion) otherObj;
            if (major < other.major) {
                return -1;
            } else if (major > other.major) {
                return 1;
            } else if (minor < other.minor) {
                return -1;
            } else if (minor > other.minor) {
                return 1;
            } else {
                return 0;
            }
        } else {
            return 0;
        }
    }

}