summaryrefslogtreecommitdiffstats
blob: a8eea1be07b4e7650fc23b8a6adbd97c928b41c8 (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
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */
/*
 * Copyright (c) 2010, Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.network;

import java.net.InetAddress;
import java.net.UnknownHostException;

public class HostAddress {

    public HostAddress() {
        address_ = null;
    }

    public HostAddress(String address) {
        try {
            address_ = InetAddress.getByName(address);
        }
        catch (UnknownHostException e) {
            address_ = null;
        }
    }

    public HostAddress(InetAddress address) {
        address_ = address;
    }
    
    public HostAddress(final char[] address, int length) {
        try {
            assert(length == 4 || length == 16);
            byte[] data = new byte[length];
            if (length == 4) {
                for (int i = 0; i < length; ++i) {
                    data[i] = (byte)address[i];
                }
            }
            else {
                for (int i = 0; i < length; ++i) {
                    data[i] = (byte)address[i];
                }
            }
            address_ = InetAddress.getByAddress(data);
        } catch (UnknownHostException e) {
            address_ = null;
        }
    }
    

    @Override
    public String toString() {
        // toString() should always be callable without risking 
        // NullPointerException
        if (address_ == null) {
            return "<no address>";
        }
        return address_.getHostAddress();
    }

    @Override
    public int hashCode() {
        int hash = 5;
        hash = 29 * hash + (this.address_ != null ? this.address_.hashCode() : 0);
        return hash;
    }

    @Override
    public boolean equals(Object other) {
        if (other instanceof HostAddress) {
            return address_.equals(((HostAddress)other).getInetAddress());
        }
        return false;
    }

    public boolean isValid() {
        return address_ != null;
    }

    public InetAddress getInetAddress() {
        return address_;
    }
    
    private InetAddress address_;
}