jdk/src/jdk.snmp/share/classes/sun/management/snmp/jvminstr/NotificationTargetImpl.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 24685 jdk/src/share/classes/sun/management/snmp/jvminstr/NotificationTargetImpl.java@215fa91e1b4c
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package sun.management.snmp.jvminstr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.net.UnknownHostException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Notification Target data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public class NotificationTargetImpl implements NotificationTarget {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    private InetAddress address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    private int port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    private String community;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
     * Target parameter is a <CODE>java.lang.String</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
     * target synctax is <host>:<port>:community. Eg: "localhost:163:private".
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
     * <p>The <code><em>host</em></code> is a host name, an IPv4 numeric
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
     * host address, or an IPv6 numeric address enclosed in square
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
     * brackets.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     * @throws IllegalArgumentException In case the target is malformed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    public NotificationTargetImpl(String target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        throws IllegalArgumentException, UnknownHostException  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        parseTarget(target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public NotificationTargetImpl(String address, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                                  String community)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        this(InetAddress.getByName(address),port,community);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    public NotificationTargetImpl(InetAddress address, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                                  String community) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        this.address = address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        this.port = port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        this.community = community;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private void parseTarget(String target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        throws IllegalArgumentException, UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if(target == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
           target.length() == 0) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
               IllegalArgumentException("Invalid target [" + target + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        String addrStr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        if (target.startsWith("[")) {
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 5506
diff changeset
    73
            final int index = target.indexOf(']');
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 5506
diff changeset
    74
            final int index2 = target.lastIndexOf(':');
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            if(index == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                throw new IllegalArgumentException("Host starts with [ but " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                                                   "does not end with ]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            addrStr = target.substring(1, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            port = Integer.parseInt(target.substring(index + 2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                                     index2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            if (!isNumericIPv6Address(addrStr)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            throw new IllegalArgumentException("Address inside [...] must " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                                               "be numeric IPv6 address");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            if (addrStr.startsWith("["))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                throw new IllegalArgumentException("More than one [[...]]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        } else {
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 5506
diff changeset
    88
            final int index = target.indexOf(':');
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 5506
diff changeset
    89
            final int index2 = target.lastIndexOf(':');
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            if(index == -1) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                IllegalArgumentException("Missing port separator \":\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            addrStr = target.substring(0, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            port = Integer.parseInt(target.substring(index + 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                                                     index2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        address = InetAddress.getByName(addrStr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        //THE CHECK SHOULD BE STRONGER!!!
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 5506
diff changeset
   101
        final int index = target.lastIndexOf(':');
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        community = target.substring(index + 1, target.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /* True if this string, assumed to be a valid argument to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * InetAddress.getByName, is a numeric IPv6 address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    private static boolean isNumericIPv6Address(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        // address contains colon iff it's a numeric IPv6 address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        return (s.indexOf(':') >= 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public String getCommunity() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        return community;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public InetAddress getAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        return address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    public int getPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        return port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        return "address : " + address + " port : " + port +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            " community : " + community;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
}