jdk/src/share/classes/javax/management/ObjectName.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 34 2d042367885f
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.management;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import com.sun.jmx.mbeanserver.GetPropertyAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.InvalidObjectException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.ObjectInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.ObjectOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.ObjectStreamField;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.Collections;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import javax.management.MBeanServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.management.MalformedObjectNameException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import javax.management.QueryExp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p>Represents the object name of an MBean, or a pattern that can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * match the names of several MBeans.  Instances of this class are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * immutable.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p>An instance of this class can be used to represent:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <li>An object name</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <li>An object name pattern, within the context of a query</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <p>An object name consists of two parts, the domain and the key
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * properties.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p>The <em>domain</em> is a string of characters not including
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * the character colon (<code>:</code>).  It is recommended that the domain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * should not contain the string "{@code //}", which is reserved for future use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <p>If the domain includes at least one occurrence of the wildcard
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * characters asterisk (<code>*</code>) or question mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * (<code>?</code>), then the object name is a pattern.  The asterisk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * matches any sequence of zero or more characters, while the question
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * mark matches any single character.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * <p>If the domain is empty, it will be replaced in certain contexts
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * by the <em>default domain</em> of the MBean server in which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * ObjectName is used.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <p>The <em>key properties</em> are an unordered set of keys and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * associated values.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <p>Each <em>key</em> is a nonempty string of characters which may
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * not contain any of the characters comma (<code>,</code>), equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * (<code>=</code>), colon, asterisk, or question mark.  The same key
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * may not occur twice in a given ObjectName.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * <p>Each <em>value</em> associated with a key is a string of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * characters that is either unquoted or quoted.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * <p>An <em>unquoted value</em> is a possibly empty string of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * characters which may not contain any of the characters comma,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * equals, colon, or quote.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <p>If the <em>unquoted value</em> contains at least one occurrence
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * of the wildcard characters asterisk or question mark, then the object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * name is a <em>property value pattern</em>. The asterisk matches any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * sequence of zero or more characters, while the question mark matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * any single character.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <p>A <em>quoted value</em> consists of a quote (<code>"</code>),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * followed by a possibly empty string of characters, followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * another quote.  Within the string of characters, the backslash
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * (<code>\</code>) has a special meaning.  It must be followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * one of the following characters:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * <li>Another backslash.  The second backslash has no special
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * meaning and the two characters represent a single backslash.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * <li>The character 'n'.  The two characters represent a newline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * ('\n' in Java).</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * <li>A quote.  The two characters represent a quote, and that quote
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * is not considered to terminate the quoted value. An ending closing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * quote must be present for the quoted value to be valid.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * <li>A question mark (?) or asterisk (*).  The two characters represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * a question mark or asterisk respectively.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <p>A quote may not appear inside a quoted value except immediately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * after an odd number of consecutive backslashes.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * <p>The quotes surrounding a quoted value, and any backslashes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * within that value, are considered to be part of the value.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * <p>If the <em>quoted value</em> contains at least one occurrence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * the characters asterisk or question mark and they are not preceded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * by a backslash, then they are considered as wildcard characters and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * the object name is a <em>property value pattern</em>. The asterisk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * matches any sequence of zero or more characters, while the question
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * mark matches any single character.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * <p>An ObjectName may be a <em>property list pattern</em>. In this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * case it may have zero or more keys and associated values. It matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * a nonpattern ObjectName whose domain matches and that contains the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * same keys and associated values, as well as possibly other keys and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * values.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * <p>An ObjectName is a <em>property value pattern</em> when at least
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * one of its <em>quoted</em> or <em>unquoted</em> key property values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * contains the wildcard characters asterisk or question mark as described
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * above. In this case it has one or more keys and associated values, with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * at least one of the values containing wildcard characters. It matches a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * nonpattern ObjectName whose domain matches and that contains the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * keys whose values match; if the property value pattern is also a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * property list pattern then the nonpattern ObjectName can contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * other keys and values.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * <p>An ObjectName is a <em>property pattern</em> if it is either a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * <em>property list pattern</em> or a <em>property value pattern</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * or both.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * <p>An ObjectName is a pattern if its domain contains a wildcard or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * if the ObjectName is a property pattern.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * <p>If an ObjectName is not a pattern, it must contain at least one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * key with its associated value.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * <p>Examples of ObjectName patterns are:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * <li>{@code *:type=Foo,name=Bar} to match names in any domain whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 *     exact set of keys is {@code type=Foo,name=Bar}.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * <li>{@code d:type=Foo,name=Bar,*} to match names in the domain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 *     {@code d} that have the keys {@code type=Foo,name=Bar} plus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 *     zero or more other keys.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * <li>{@code *:type=Foo,name=Bar,*} to match names in any domain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *     that has the keys {@code type=Foo,name=Bar} plus zero or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 *     more other keys.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * <li>{@code d:type=F?o,name=Bar} will match e.g.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 *     {@code d:type=Foo,name=Bar} and {@code d:type=Fro,name=Bar}.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * <li>{@code d:type=F*o,name=Bar} will match e.g.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 *     {@code d:type=Fo,name=Bar} and {@code d:type=Frodo,name=Bar}.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * <li>{@code d:type=Foo,name="B*"} will match e.g.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 *     {@code d:type=Foo,name="Bling"}. Wildcards are recognized even
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 *     inside quotes, and like other special characters can be escaped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 *     with {@code \}.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * <p>An ObjectName can be written as a String with the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * elements in order:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * <li>The domain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 * <li>A colon (<code>:</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 * <li>A key property list as defined below.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * <p>A key property list written as a String is a comma-separated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 * list of elements.  Each element is either an asterisk or a key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 * property.  A key property consists of a key, an equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 * (<code>=</code>), and the associated value.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 * <p>At most one element of a key property list may be an asterisk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 * If the key property list contains an asterisk element, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 * ObjectName is a property list pattern.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 * <p>Spaces have no special significance in a String representing an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 * ObjectName.  For example, the String:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
 * domain: key1 = value1 , key2 = value2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 * represents an ObjectName with two keys.  The name of each key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 * contains six characters, of which the first and last are spaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 * The value associated with the key <code>"&nbsp;key1&nbsp;"</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 * also begins and ends with a space.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 * <p>In addition to the restrictions on characters spelt out above,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 * no part of an ObjectName may contain a newline character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 * (<code>'\n'</code>), whether the domain, a key, or a value, whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 * quoted or unquoted.  The newline character can be represented in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 * quoted value with the sequence <code>\n</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 * <p>The rules on special characters and quoting apply regardless of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 * which constructor is used to make an ObjectName.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * <p>To avoid collisions between MBeans supplied by different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 * vendors, a useful convention is to begin the domain name with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
 * reverse DNS name of the organization that specifies the MBeans,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 * followed by a period and a string whose interpretation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 * determined by that organization.  For example, MBeans specified by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 * Sun Microsystems Inc., DNS name <code>sun.com</code>, would have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
 * domains such as <code>com.sun.MyDomain</code>.  This is essentially
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
 * the same convention as for Java-language package names.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
 * <p>The <b>serialVersionUID</b> of this class is <code>1081892073854801359L</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
@SuppressWarnings("serial") // don't complain serialVersionUID not constant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
public class ObjectName implements Comparable<ObjectName>, QueryExp {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * A structure recording property structure and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * proposing minimal services
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    private static class Property {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        int _key_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        int _key_length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        int _value_length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
         * Constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        Property(int key_index, int key_length, int value_length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            _key_index = key_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            _key_length = key_length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            _value_length = value_length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
         * Assigns the key index of property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        void setKeyIndex(int key_index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            _key_index = key_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
         * Returns a key string for receiver key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        String getKeyString(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            return name.substring(_key_index, _key_index + _key_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
         * Returns a value string for receiver key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        String getValueString(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            int in_begin = _key_index + _key_length + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            int out_end = in_begin + _value_length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            return name.substring(in_begin, out_end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * Marker class for value pattern property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    private static class PatternProperty extends Property {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
         * Constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        PatternProperty(int key_index, int key_length, int value_length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            super(key_index, key_length, value_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    // Inner classes <========================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    // Private fields ---------------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    // Serialization compatibility stuff -------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    // Two serial forms are supported in this class. The selected form depends
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    // on system property "jmx.serial.form":
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    //  - "1.0" for JMX 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    //  - any other value for JMX 1.1 and higher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    // Serial version for old serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    private static final long oldSerialVersionUID = -5467795090068647408L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    // Serial version for new serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    private static final long newSerialVersionUID = 1081892073854801359L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    // Serializable fields in old serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    private static final ObjectStreamField[] oldSerialPersistentFields =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        new ObjectStreamField("domain", String.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        new ObjectStreamField("propertyList", Hashtable.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        new ObjectStreamField("propertyListString", String.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        new ObjectStreamField("canonicalName", String.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        new ObjectStreamField("pattern", Boolean.TYPE),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        new ObjectStreamField("propertyPattern", Boolean.TYPE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    // Serializable fields in new serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    private static final ObjectStreamField[] newSerialPersistentFields = { };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    // Actual serial version and serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    private static final long serialVersionUID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    private static final ObjectStreamField[] serialPersistentFields;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    private static boolean compat = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            GetPropertyAction act = new GetPropertyAction("jmx.serial.form");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            String form = AccessController.doPrivileged(act);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            compat = (form != null && form.equals("1.0"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            // OK: exception means no compat with 1.0, too bad
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        if (compat) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
            serialPersistentFields = oldSerialPersistentFields;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            serialVersionUID = oldSerialVersionUID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
            serialPersistentFields = newSerialPersistentFields;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
            serialVersionUID = newSerialVersionUID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    // Serialization compatibility stuff <==============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    // Class private fields ----------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * a shared empty array for empty property lists
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    static final private Property[] _Empty_property_array = new Property[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    // Class private fields <==============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    // Instance private fields ----------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * a String containing the canonical name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    private transient String _canonicalName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * An array of properties in the same seq order as time creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    private transient Property[] _kp_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * An array of properties in the same seq order as canonical order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    private transient Property[] _ca_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * The length of the domain part of built objectname
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    private transient int _domain_length = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * The propertyList of built object name. Initialized lazily.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * Table that contains all the pairs (key,value) for this ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    private transient Map<String,String> _propertyList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * boolean that declares if this ObjectName domain part is a pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    private transient boolean _domain_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * boolean that declares if this ObjectName contains a pattern on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * key property list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    private transient boolean _property_list_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * boolean that declares if this ObjectName contains a pattern on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * value of at least one key property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    private transient boolean _property_value_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    // Instance private fields <=======================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    // Private fields <========================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    //  Private methods ---------------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    // Category : Instance construction ------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * Initializes this {@link ObjectName} from the given string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * representation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @param name A string representation of the {@link ObjectName}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * @exception MalformedObjectNameException The string passed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * parameter does not have the right format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * @exception NullPointerException The <code>name</code> parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    private void construct(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        // The name cannot be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        if (name == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            throw new NullPointerException("name cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        // Test if the name is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        if (name.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            // this is equivalent to the whole word query object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            _canonicalName = "*:*";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            _kp_array = _Empty_property_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            _ca_array = _Empty_property_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            _domain_length = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            _propertyList = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            _domain_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            _property_list_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            _property_value_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        // initialize parsing of the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        char[] name_chars = name.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        int len = name_chars.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        char[] canonical_chars = new char[len]; // canonical form will be same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
                                                // length at most
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        int cname_index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        int index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        char c, c1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        // parses domain part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    domain_parsing:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        while (index < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
            switch (c = name_chars[index]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                case ':' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                    _domain_length = index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
                    break domain_parsing;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                case '=' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                    // ":" omission check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                    // Although "=" is a valid character in the domain part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                    // it is true that it is rarely used in the real world.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                    // So check straight away if the ":" has been omitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                    // from the ObjectName. This allows us to provide a more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                    // accurate exception message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                    int i = ++index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
                    while ((i < len) && (name_chars[i++] != ':'))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                        if (i == len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                            throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                                "Domain part must be specified");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
                case '\n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                    throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                              "Invalid character '\\n' in domain name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                    _domain_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
                    index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
                default :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                    index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        // check for non-empty properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        if (index == len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                                         "Key properties cannot be empty");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        // we have got the domain part, begins building of _canonicalName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        System.arraycopy(name_chars, 0, canonical_chars, 0, _domain_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        canonical_chars[_domain_length] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        cname_index = _domain_length + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        // parses property list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        Property prop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        Map<String,Property> keys_map = new HashMap<String,Property>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        String[] keys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        String key_name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        boolean quoted_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        int property_index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        int in_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        int key_index, key_length, value_index, value_length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        keys = new String[10];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        _kp_array = new Property[10];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        _property_list_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        _property_value_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        while (index < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            c = name_chars[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            // case of pattern properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            if (c == '*') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                if (_property_list_pattern)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                    throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                              "Cannot have several '*' characters in pattern " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                              "property list");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                    _property_list_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                    if ((++index < len ) && (name_chars[index] != ','))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                        throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                                  "Invalid character found after '*': end of " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                                  "name or ',' expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                    else if (index == len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                        if (property_index == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                            // empty properties case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                            _kp_array = _Empty_property_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                            _ca_array = _Empty_property_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                            _propertyList = Collections.emptyMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                        // correct pattern spec in props, continue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                        index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            // standard property case, key part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            in_index = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
            key_index = in_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            if (name_chars[in_index] == '=')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                throw new MalformedObjectNameException("Invalid key (empty)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            while ((in_index < len) && ((c1 = name_chars[in_index++]) != '='))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                switch (c1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                    // '=' considered to introduce value part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                    case  '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                    case  '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                    case  ',' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                    case  ':' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                    case  '\n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                        final String ichar = ((c1=='\n')?"\\n":""+c1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                        throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                                  "Invalid character '" + ichar +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                                  "' in key part of property");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            if (name_chars[in_index - 1] != '=')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                                             "Unterminated key property part");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            value_index = in_index; // in_index pointing after '=' char
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
            key_length = value_index - key_index - 1; // found end of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            // standard property case, value part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
            boolean value_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            if (in_index < len && name_chars[in_index] == '\"') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                quoted_value = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                // the case of quoted value part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            quoted_value_parsing:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                while ((++in_index < len) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                       ((c1 = name_chars[in_index]) != '\"')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                    // the case of an escaped character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                    if (c1 == '\\') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                        if (++in_index == len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                            throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                                               "Unterminated quoted value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                        switch (c1 = name_chars[in_index]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                            case '\\' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                            case '\"' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                            case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                            case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                            case 'n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                                break; // valid character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                            default :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                                throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                                          "Invalid escape sequence '\\" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                                          c1 + "' in quoted value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                    } else if (c1 == '\n') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                        throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                                                     "Newline in quoted value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                        switch (c1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                            case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                            case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                                value_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                if (in_index == len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                    throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                                                 "Unterminated quoted value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                else value_length = ++in_index - value_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                // the case of standard value part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                quoted_value = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                while ((in_index < len) && ((c1 = name_chars[in_index]) != ','))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                switch (c1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                    // ',' considered to be the value separator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                    case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                    case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                        value_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                        in_index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                    case '=' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                    case ':' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                    case '"' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                    case '\n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                        final String ichar = ((c1=='\n')?"\\n":""+c1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                        throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                                                 "Invalid character '" + c1 +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                                                 "' in value part of property");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                    default :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                        in_index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                value_length = in_index - value_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
            // Parsed property, checks the end of name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
            if (in_index == len - 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                if (quoted_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                    throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                                             "Invalid ending character `" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                                             name_chars[in_index] + "'");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                else throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                                                  "Invalid ending comma");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            } else in_index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            // we got the key and value part, prepare a property for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
            if (!value_pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                prop = new Property(key_index, key_length, value_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                _property_value_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                prop = new PatternProperty(key_index, key_length, value_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
            key_name = name.substring(key_index, key_index + key_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            if (property_index == keys.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                String[] tmp_string_array = new String[property_index + 10];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                System.arraycopy(keys, 0, tmp_string_array, 0, property_index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                keys = tmp_string_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            keys[property_index] = key_name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
            addProperty(prop, property_index, keys_map, key_name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            property_index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            index = in_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        // computes and set canonical name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        setCanonicalName(name_chars, canonical_chars, keys,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                         keys_map, cname_index, property_index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * Construct an ObjectName from a domain and a Hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * @param domain Domain of the ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * @param props  Map containing couples <i>key</i> -> <i>value</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * @exception MalformedObjectNameException The <code>domain</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * contains an illegal character, or one of the keys or values in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * <code>table</code> contains an illegal character, or one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * values in <code>table</code> does not follow the rules for quoting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * @exception NullPointerException One of the parameters is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    private void construct(String domain, Map<String,String> props)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        // The domain cannot be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        if (domain == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
            throw new NullPointerException("domain cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        // The key property list cannot be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        if (props == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
            throw new NullPointerException("key property list cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        // The key property list cannot be empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        if (props.isEmpty())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
            throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
                                         "key property list cannot be empty");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        // checks domain validity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        if (!isDomain(domain))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
            throw new MalformedObjectNameException("Invalid domain: " + domain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        // init canonicalname
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        final StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        sb.append(domain).append(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        _domain_length = domain.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        // allocates the property array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        int nb_props = props.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        _kp_array = new Property[nb_props];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        String[] keys = new String[nb_props];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        final Map<String,Property> keys_map = new HashMap<String,Property>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        Property prop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
        int key_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        for (Map.Entry<String,String> entry : props.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
            if (sb.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                sb.append(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            String key = entry.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
            String value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                value = entry.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            } catch (ClassCastException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                throw new MalformedObjectNameException(e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
            key_index = sb.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            checkKey(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
            sb.append(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            keys[i] = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            sb.append("=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
            boolean value_pattern = checkValue(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
            sb.append(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            if (!value_pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
                prop = new Property(key_index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
                                    key.length(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
                                    value.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
                _property_value_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
                prop = new PatternProperty(key_index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
                                           key.length(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
                                           value.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            addProperty(prop, i, keys_map, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
            i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        // initialize canonical name and data structure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        int len = sb.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        char[] initial_chars = new char[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        sb.getChars(0, len, initial_chars, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        char[] canonical_chars = new char[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        System.arraycopy(initial_chars, 0, canonical_chars, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                         _domain_length + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        setCanonicalName(initial_chars, canonical_chars, keys, keys_map,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                         _domain_length + 1, _kp_array.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    // Category : Instance construction <==============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    // Category : Internal utilities ------------------------------>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * Add passed property to the list at the given index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * for the passed key name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    private void addProperty(Property prop, int index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                             Map<String,Property> keys_map, String key_name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        throws MalformedObjectNameException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        if (keys_map.containsKey(key_name)) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                MalformedObjectNameException("key `" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                                         key_name +"' already defined");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        // if no more space for property arrays, have to increase it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        if (index == _kp_array.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
            Property[] tmp_prop_array = new Property[index + 10];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
            System.arraycopy(_kp_array, 0, tmp_prop_array, 0, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
            _kp_array = tmp_prop_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        _kp_array[index] = prop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        keys_map.put(key_name, prop);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * Sets the canonical name of receiver from input 'specified_chars'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     * array, by filling 'canonical_chars' array with found 'nb-props'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * properties starting at position 'prop_index'.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
    private void setCanonicalName(char[] specified_chars,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                                  char[] canonical_chars,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                                  String[] keys, Map<String,Property> keys_map,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                                  int prop_index, int nb_props) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        // Sort the list of found properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        if (_kp_array != _Empty_property_array) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
            String[] tmp_keys = new String[nb_props];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
            Property[] tmp_props = new Property[nb_props];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            System.arraycopy(keys, 0, tmp_keys, 0, nb_props);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            Arrays.sort(tmp_keys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
            keys = tmp_keys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
            System.arraycopy(_kp_array, 0, tmp_props, 0 , nb_props);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
            _kp_array = tmp_props;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
            _ca_array = new Property[nb_props];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            // now assigns _ca_array to the sorted list of keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
            // (there cannot be two identical keys in an objectname.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
            for (int i = 0; i < nb_props; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                _ca_array[i] = keys_map.get(keys[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
            // now we build the canonical name and set begin indexes of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
            // properties to reflect canonical form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
            int last_index = nb_props - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            int prop_len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
            Property prop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
            for (int i = 0; i <= last_index; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                prop = _ca_array[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                // length of prop including '=' char
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
                prop_len = prop._key_length + prop._value_length + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                System.arraycopy(specified_chars, prop._key_index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                                 canonical_chars, prop_index, prop_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                prop.setKeyIndex(prop_index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                prop_index += prop_len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
                if (i != last_index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                    canonical_chars[prop_index] = ',';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                    prop_index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        // terminate canonicalname with '*' in case of pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        if (_property_list_pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            if (_kp_array != _Empty_property_array)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                canonical_chars[prop_index++] = ',';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            canonical_chars[prop_index++] = '*';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        // we now build the canonicalname string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        _canonicalName = (new String(canonical_chars, 0, prop_index)).intern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * Parse a key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * <pre>final int endKey=parseKey(s,startKey);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * <p>key starts at startKey (included), and ends at endKey (excluded).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * If (startKey == endKey), then the key is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
     * @param s The char array of the original string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * @param startKey index at which to begin parsing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * @return The index following the last character of the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     **/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
    private static int parseKey(final char[] s, final int startKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
        throws MalformedObjectNameException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        int next   = startKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
        int endKey = startKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        final int len = s.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
        while (next < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
            final char k = s[next++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            switch (k) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            case '*':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
            case '?':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
            case ',':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            case ':':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
            case '\n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                final String ichar = ((k=='\n')?"\\n":""+k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                    MalformedObjectNameException("Invalid character in key: `"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                                                 + ichar + "'");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
            case '=':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                // we got the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                endKey = next-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                if (next < len) continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                else endKey=next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        return endKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * Parse a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * <pre>final int endVal=parseValue(s,startVal);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * <p>value starts at startVal (included), and ends at endVal (excluded).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     * If (startVal == endVal), then the key is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     * @param s The char array of the original string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * @param startValue index at which to begin parsing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * @return The first element of the int array indicates the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     *         following the last character of the value. The second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     *         element of the int array indicates that the value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     *         a pattern when its value equals 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     **/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    private static int[] parseValue(final char[] s, final int startValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        throws MalformedObjectNameException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
        boolean value_pattern = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        int next   = startValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        int endValue = startValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        final int len = s.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        final char q=s[startValue];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        if (q == '"') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
            // quoted value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
            if (++next == len) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                MalformedObjectNameException("Invalid quote");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
            while (next < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                char last = s[next];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                if (last == '\\') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
                    if (++next == len) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                        MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                           "Invalid unterminated quoted character sequence");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
                    last = s[next];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                    switch (last) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
                        case '\\' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                        case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
                        case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                        case 'n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
                        case '\"' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
                            // We have an escaped quote. If this escaped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
                            // quote is the last character, it does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
                            // qualify as a valid termination quote.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
                            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
                            if (next+1 == len) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
                                MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                                                 "Missing termination quote");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
                        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                            throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
                                MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
                                "Invalid quoted character sequence '\\" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
                                last + "'");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
                } else if (last == '\n') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
                    throw new MalformedObjectNameException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
                                                 "Newline in quoted value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
                } else if (last == '\"') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
                    next++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
                    switch (last) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
                        case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
                        case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
                            value_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
                next++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
                // Check that last character is a termination quote.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                // We have already handled the case were the last
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                // character is an escaped quote earlier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                if ((next >= len) && (last != '\"')) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                    MalformedObjectNameException("Missing termination quote");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            endValue = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            if (next < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                if (s[next++] != ',') throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
                    MalformedObjectNameException("Invalid quote");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            // Non quoted value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            while (next < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
                final char v=s[next++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                switch(v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
                    case '*':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
                    case '?':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                        value_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                        if (next < len) continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
                        else endValue=next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
                    case '=':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                    case ':':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                    case '\n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
                        final String ichar = ((v=='\n')?"\\n":""+v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                        throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                            MalformedObjectNameException("Invalid character `" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
                                                         ichar + "' in value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
                    case ',':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                        endValue = next-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                    default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
                        if (next < len) continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
                        else endValue=next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        return new int[] { endValue, value_pattern ? 1 : 0 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * Check if the supplied value is a valid value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     * @return true if the value is a pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
    private static boolean checkValue(String val)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        throws MalformedObjectNameException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        if (val == null) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
            NullPointerException("Invalid value (null)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        final int len = val.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        if (len == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        final char[] s = val.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        final int[] result = parseValue(s,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        final int endValue = result[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        final boolean value_pattern = result[1] == 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        if (endValue < len) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
            MalformedObjectNameException("Invalid character in value: `" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
                                         s[endValue] + "'");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        return value_pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * Check if the supplied key is a valid key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    private static void checkKey(String key)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        if (key == null) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
            NullPointerException("Invalid key (null)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
        final int len = key.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        if (len == 0) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            MalformedObjectNameException("Invalid key (empty)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        final char[] k=key.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
        final int endKey = parseKey(k,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        if (endKey < len) throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
            MalformedObjectNameException("Invalid character in value: `" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
                                         k[endKey] + "'");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
     * Tests whether string s is matched by pattern p.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     * Supports "?", "*" each of which may be escaped with "\";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     * Not yet supported: internationalization; "\" inside brackets.<P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     * Wildcard matching routine by Karl Heuer.  Public Domain.<P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    private static boolean wildmatch(char[] s, char[] p, int si, int pi) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
        char c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
        final int slen = s.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        final int plen = p.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        while (pi < plen) { // While still string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
            c = p[pi++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            if (c == '?') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
                if (++si > slen) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            } else if (c == '*') { // Wildcard
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
                if (pi >= plen) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
                    if (wildmatch(s,p,si,pi)) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
                } while (++si < slen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
                if (si >= slen || c != s[si++]) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
        return (si == slen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
    // Category : Internal utilities <==============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    // Category : Internal accessors ------------------------------>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     * Check if domain is a valid domain.  Set _domain_pattern if appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
    private boolean isDomain(String domain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
        if (domain == null) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        final char[] d=domain.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        final int len = d.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
        int next = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        while (next < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
            final char c = d[next++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
            switch (c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
                case ':' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
                case '\n' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
                    _domain_pattern = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    // Category : Internal accessors <==============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
    // Category : Serialization ----------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * Deserializes an {@link ObjectName} from an {@link ObjectInputStream}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * @serialData <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     *               <li>In the current serial form (value of property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     *                   <code>jmx.serial.form</code> differs from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     *                   <code>1.0</code>): the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     *                   &quot;&lt;domain&gt;:&lt;properties&gt;&lt;wild&gt;&quot;,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     *                   where: <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     *                            <li>&lt;domain&gt; represents the domain part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     *                                of the {@link ObjectName}</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     *                            <li>&lt;properties&gt; represents the list of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     *                                properties, as returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     *                                {@link #getKeyPropertyListString}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     *                            <li>&lt;wild&gt; is empty if not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *                                <code>isPropertyPattern</code>, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     *                                is the character "<code>*</code>" if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     *                                <code>isPropertyPattern</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     *                                and &lt;properties&gt; is empty, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     *                                is "<code>,*</code>" if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     *                                <code>isPropertyPattern</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     *                                &lt;properties&gt; is not empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     *                            </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     *                          </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *                   The intent is that this string could be supplied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     *                   to the {@link #ObjectName(String)} constructor to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     *                   produce an equivalent {@link ObjectName}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     *               </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     *               <li>In the old serial form (value of property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     *                   <code>jmx.serial.form</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     *                   <code>1.0</code>): &lt;domain&gt; &lt;propertyList&gt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     *                   &lt;propertyListString&gt; &lt;canonicalName&gt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     *                   &lt;pattern&gt; &lt;propertyPattern&gt;,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     *                   where: <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     *                            <li>&lt;domain&gt; represents the domain part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     *                                of the {@link ObjectName}</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     *                            <li>&lt;propertyList&gt; is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     *                                {@link Hashtable} that contains all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     *                                pairs (key,value) for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     *                                {@link ObjectName}</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     *                            <li>&lt;propertyListString&gt; is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     *                                {@link String} representation of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     *                                list of properties in any order (not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     *                                mandatorily a canonical representation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     *                                </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     *                            <li>&lt;canonicalName&gt; is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     *                                {@link String} containing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     *                                {@link ObjectName}'s canonical name</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     *                            <li>&lt;pattern&gt; is a boolean which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     *                                <code>true</code> if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     *                                {@link ObjectName} contains a pattern</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
     *                            <li>&lt;propertyPattern&gt; is a boolean which
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
     *                                is <code>true</code> if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
     *                                {@link ObjectName} contains a pattern in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
     *                                the list of properties</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     *                          </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     *               </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     *             </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
    private void readObject(ObjectInputStream in)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
        throws IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        String cn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        if (compat) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
            // Read an object serialized in the old serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
            //in.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
            final ObjectInputStream.GetField fields = in.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
            cn = (String)fields.get("domain", "default")+
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
                ":"+
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
                (String)fields.get("propertyListString", "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
            // Read an object serialized in the new serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
            in.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
            cn = (String)in.readObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
            construct(cn);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        } catch (NullPointerException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
            throw new InvalidObjectException(e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
        } catch (MalformedObjectNameException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
            throw new InvalidObjectException(e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
     * Serializes an {@link ObjectName} to an {@link ObjectOutputStream}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
     * @serialData <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
     *               <li>In the current serial form (value of property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
     *                   <code>jmx.serial.form</code> differs from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
     *                   <code>1.0</code>): the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
     *                   &quot;&lt;domain&gt;:&lt;properties&gt;&lt;wild&gt;&quot;,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
     *                   where: <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
     *                            <li>&lt;domain&gt; represents the domain part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
     *                                of the {@link ObjectName}</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
     *                            <li>&lt;properties&gt; represents the list of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
     *                                properties, as returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
     *                                {@link #getKeyPropertyListString}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
     *                            <li>&lt;wild&gt; is empty if not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
     *                                <code>isPropertyPattern</code>, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
     *                                is the character "<code>*</code>" if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
     *                                this <code>isPropertyPattern</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
     *                                and &lt;properties&gt; is empty, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
     *                                is "<code>,*</code>" if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     *                                <code>isPropertyPattern</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
     *                                &lt;properties&gt; is not empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
     *                            </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
     *                          </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
     *                   The intent is that this string could be supplied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     *                   to the {@link #ObjectName(String)} constructor to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     *                   produce an equivalent {@link ObjectName}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     *               </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     *               <li>In the old serial form (value of property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
     *                   <code>jmx.serial.form</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     *                   <code>1.0</code>): &lt;domain&gt; &lt;propertyList&gt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     *                   &lt;propertyListString&gt; &lt;canonicalName&gt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     *                   &lt;pattern&gt; &lt;propertyPattern&gt;,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     *                   where: <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     *                            <li>&lt;domain&gt; represents the domain part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     *                                of the {@link ObjectName}</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     *                            <li>&lt;propertyList&gt; is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     *                                {@link Hashtable} that contains all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     *                                pairs (key,value) for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     *                                {@link ObjectName}</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     *                            <li>&lt;propertyListString&gt; is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     *                                {@link String} representation of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     *                                list of properties in any order (not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     *                                mandatorily a canonical representation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     *                                </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     *                            <li>&lt;canonicalName&gt; is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     *                                {@link String} containing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     *                                {@link ObjectName}'s canonical name</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     *                            <li>&lt;pattern&gt; is a boolean which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     *                                <code>true</code> if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     *                                {@link ObjectName} contains a pattern</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
     *                            <li>&lt;propertyPattern&gt; is a boolean which
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
     *                                is <code>true</code> if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     *                                {@link ObjectName} contains a pattern in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     *                                the list of properties</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     *                          </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     *               </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     *             </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
    private void writeObject(ObjectOutputStream out)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
      if (compat)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
      {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
        // Serializes this instance in the old serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
        // Read CR 6441274 before making any changes to this code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
        ObjectOutputStream.PutField fields = out.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        fields.put("domain", _canonicalName.substring(0, _domain_length));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
        fields.put("propertyList", getKeyPropertyList());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
        fields.put("propertyListString", getKeyPropertyListString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
        fields.put("canonicalName", _canonicalName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
        fields.put("pattern", (_domain_pattern || _property_list_pattern));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        fields.put("propertyPattern", _property_list_pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        out.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
      else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
      {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        // Serializes this instance in the new serial form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        out.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        out.writeObject(getSerializedNameString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
    //  Category : Serialization <===================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
    // Private methods <========================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
    // Public methods ---------------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
    // Category : ObjectName Construction ------------------------------>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     * <p>Return an instance of ObjectName that can be used anywhere
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     * an object obtained with {@link #ObjectName(String) new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     * ObjectName(name)} can be used.  The returned object may be of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     * a subclass of ObjectName.  Calling this method twice with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     * same parameters may return the same object or two equal but
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
     * not identical objects.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     * @param name  A string representation of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     * @return an ObjectName corresponding to the given String.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     * @exception MalformedObjectNameException The string passed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     * parameter does not have the right format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * @exception NullPointerException The <code>name</code> parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     * is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
    public static ObjectName getInstance(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
            throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
        return new ObjectName(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
     * <p>Return an instance of ObjectName that can be used anywhere
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
     * an object obtained with {@link #ObjectName(String, String,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
     * String) new ObjectName(domain, key, value)} can be used.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
     * returned object may be of a subclass of ObjectName.  Calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * this method twice with the same parameters may return the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     * object or two equal but not identical objects.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     * @param domain  The domain part of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * @param key  The attribute in the key property of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     * @param value The value in the key property of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
     * @return an ObjectName corresponding to the given domain,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     * key, and value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     * @exception MalformedObjectNameException The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     * <code>domain</code>, <code>key</code>, or <code>value</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
     * contains an illegal character, or <code>value</code> does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     * follow the rules for quoting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
     * @exception NullPointerException One of the parameters is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
    public static ObjectName getInstance(String domain, String key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
                                         String value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
            throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
        return new ObjectName(domain, key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
     * <p>Return an instance of ObjectName that can be used anywhere
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
     * an object obtained with {@link #ObjectName(String, Hashtable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
     * new ObjectName(domain, table)} can be used.  The returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
     * object may be of a subclass of ObjectName.  Calling this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
     * twice with the same parameters may return the same object or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
     * two equal but not identical objects.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
     * @param domain  The domain part of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
     * @param table A hash table containing one or more key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
     * properties.  The key of each entry in the table is the key of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
     * key property in the object name.  The associated value in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
     * table is the associated value in the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
     * @return an ObjectName corresponding to the given domain and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * key mappings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * @exception MalformedObjectNameException The <code>domain</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     * contains an illegal character, or one of the keys or values in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * <code>table</code> contains an illegal character, or one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
     * values in <code>table</code> does not follow the rules for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
     * quoting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     * @exception NullPointerException One of the parameters is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
    public static ObjectName getInstance(String domain,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
                                         Hashtable<String,String> table)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
        throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
        return new ObjectName(domain, table);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
     * <p>Return an instance of ObjectName that can be used anywhere
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
     * the given object can be used.  The returned object may be of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
     * subclass of ObjectName.  If <code>name</code> is of a subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
     * of ObjectName, it is not guaranteed that the returned object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
     * will be of the same class.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
     * <p>The returned value may or may not be identical to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
     * <code>name</code>.  Calling this method twice with the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
     * parameters may return the same object or two equal but not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
     * identical objects.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
     * <p>Since ObjectName is immutable, it is not usually useful to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
     * make a copy of an ObjectName.  The principal use of this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
     * is to guard against a malicious caller who might pass an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
     * instance of a subclass with surprising behavior to sensitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
     * code.  Such code can call this method to obtain an ObjectName
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
     * that is known not to have surprising behavior.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     * @param name an instance of the ObjectName class or of a subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
     * @return an instance of ObjectName or a subclass that is known to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
     * have the same semantics.  If <code>name</code> respects the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
     * semantics of ObjectName, then the returned object is equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
     * (though not necessarily identical) to <code>name</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
     * @exception NullPointerException The <code>name</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
    public static ObjectName getInstance(ObjectName name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
            throws NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
        if (name.getClass().equals(ObjectName.class))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
            return new ObjectName(name.getSerializedNameString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
        } catch (MalformedObjectNameException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
            throw new IllegalArgumentException("Unexpected: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
            // can't happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
     * Construct an object name from the given string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
     * @param name  A string representation of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
     * @exception MalformedObjectNameException The string passed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
     * parameter does not have the right format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
     * @exception NullPointerException The <code>name</code> parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
     * is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
    public ObjectName(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
        construct(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
     * Construct an object name with exactly one key property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
     * @param domain  The domain part of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
     * @param key  The attribute in the key property of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
     * @param value The value in the key property of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     * @exception MalformedObjectNameException The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
     * <code>domain</code>, <code>key</code>, or <code>value</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
     * contains an illegal character, or <code>value</code> does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
     * follow the rules for quoting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
     * @exception NullPointerException One of the parameters is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
    public ObjectName(String domain, String key, String value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
        throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        // If key or value are null a NullPointerException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        // will be thrown by the put method in Hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        Map<String,String> table = Collections.singletonMap(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        construct(domain, table);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
     * Construct an object name with several key properties from a Hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
     * @param domain  The domain part of the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
     * @param table A hash table containing one or more key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
     * properties.  The key of each entry in the table is the key of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     * key property in the object name.  The associated value in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
     * table is the associated value in the object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
     * @exception MalformedObjectNameException The <code>domain</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     * contains an illegal character, or one of the keys or values in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     * <code>table</code> contains an illegal character, or one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
     * values in <code>table</code> does not follow the rules for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
     * quoting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
     * @exception NullPointerException One of the parameters is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
    public ObjectName(String domain, Hashtable<String,String> table)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
            throws MalformedObjectNameException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
        construct(domain, table);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
        /* The exception for when a key or value in the table is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
           String is now ClassCastException rather than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
           MalformedObjectNameException.  This was not previously
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
           specified.  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
    // Category : ObjectName Construction <==============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
    // Category : Getter methods ------------------------------>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
     * Checks whether the object name is a pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
     * An object name is a pattern if its domain contains a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
     * wildcard or if the object name is a property pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
     * @return  True if the name is a pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
    public boolean isPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
        return (_domain_pattern ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
                _property_list_pattern ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
                _property_value_pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
     * Checks whether the object name is a pattern on the domain part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
     * @return  True if the name is a domain pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
    public boolean isDomainPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
        return _domain_pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
     * Checks whether the object name is a pattern on the key properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
     * An object name is a pattern on the key properties if it is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
     * pattern on the key property list (e.g. "d:k=v,*") or on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
     * property values (e.g. "d:k=*") or on both (e.g. "d:k=*,*").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
     * @return  True if the name is a property pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
    public boolean isPropertyPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
        return _property_list_pattern || _property_value_pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
     * Checks whether the object name is a pattern on the key property list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
     * For example, "d:k=v,*" and "d:k=*,*" are key property list patterns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
     * whereas "d:k=*" is not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     * @return  True if the name is a property list pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
    public boolean isPropertyListPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
        return _property_list_pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
     * Checks whether the object name is a pattern on the value part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
     * of at least one of the key properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
     * For example, "d:k=*" and "d:k=*,*" are property value patterns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
     * whereas "d:k=v,*" is not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
     * @return  True if the name is a property value pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
    public boolean isPropertyValuePattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
        return _property_value_pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
     * Checks whether the value associated with a key in a key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
     * property is a pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     * @param property The property whose value is to be checked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     * @return True if the value associated with the given key property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
     * is a pattern, otherwise false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
     * @exception NullPointerException If <code>property</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
     * @exception IllegalArgumentException If <code>property</code> is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
     * a valid key property for this ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
    public boolean isPropertyValuePattern(String property)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
        throws NullPointerException, IllegalArgumentException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
        if (property == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
            throw new NullPointerException("key property can't be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
        for (int i = 0; i < _ca_array.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
            Property prop = _ca_array[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
            String key = prop.getKeyString(_canonicalName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
            if (key.equals(property))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
                return (prop instanceof PatternProperty);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
        throw new IllegalArgumentException("key property not found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     * <p>Returns the canonical form of the name; that is, a string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     * representation where the properties are sorted in lexical
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     * order.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * <p>More precisely, the canonical form of the name is a String
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     * consisting of the <em>domain part</em>, a colon
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     * (<code>:</code>), the <em>canonical key property list</em>, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
     * a <em>pattern indication</em>.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
     * <p>The <em>canonical key property list</em> is the same string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
     * as described for {@link #getCanonicalKeyPropertyListString()}.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * <p>The <em>pattern indication</em> is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     * <li>empty for an ObjectName
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     * that is not a property list pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     * <li>an asterisk for an ObjectName
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     * that is a property list pattern with no keys; or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     * <li>a comma and an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     * asterisk (<code>,*</code>) for an ObjectName that is a property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     * list pattern with at least one key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     * </ul></p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
     * @return The canonical form of the name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
    public String getCanonicalName()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
        return _canonicalName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     * Returns the domain part.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     * @return The domain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
    public String getDomain()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
        return _canonicalName.substring(0, _domain_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
     * Obtains the value associated with a key in a key property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
     * @param property The property whose value is to be obtained.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     * @return The value of the property, or null if there is no such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     * property in this ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     * @exception NullPointerException If <code>property</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
    public String getKeyProperty(String property) throws NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
        return _getKeyPropertyList().get(property);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
     * <p>Returns the key properties as a Map.  The returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
     * value is a Map in which each key is a key in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
     * ObjectName's key property list and each value is the associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
     * value.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
     * <p>The returned value must not be modified.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
     * @return The table of key properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
    private Map<String,String> _getKeyPropertyList()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
            if (_propertyList == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
                // build (lazy eval) the property list from the canonical
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
                // properties array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
                _propertyList = new HashMap<String,String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
                int len = _ca_array.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
                Property prop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
                for (int i = len - 1; i >= 0; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
                    prop = _ca_array[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
                    _propertyList.put(prop.getKeyString(_canonicalName),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
                                      prop.getValueString(_canonicalName));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
        return _propertyList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
     * <p>Returns the key properties as a Hashtable.  The returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
     * value is a Hashtable in which each key is a key in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
     * ObjectName's key property list and each value is the associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
     * value.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
     * <p>The returned value may be unmodifiable.  If it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
     * modifiable, changing it has no effect on this ObjectName.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
     * @return The table of key properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
    // CR 6441274 depends on the modification property defined above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
    public Hashtable<String,String> getKeyPropertyList()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
        return new Hashtable<String,String>(_getKeyPropertyList());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
     * <p>Returns a string representation of the list of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
     * properties specified at creation time.  If this ObjectName was
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     * constructed with the constructor {@link #ObjectName(String)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
     * the key properties in the returned String will be in the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
     * order as in the argument to the constructor.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
     * @return The key property list string.  This string is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
     * independent of whether the ObjectName is a pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
    public String getKeyPropertyListString()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
        // BEWARE : we rebuild the propertyliststring at each call !!
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
        if (_kp_array.length == 0) return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
        // the size of the string is the canonical one minus domain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
        // part and pattern part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
        final int total_size = _canonicalName.length() - _domain_length - 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
            - (_property_list_pattern?2:0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
        final char[] dest_chars = new char[total_size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
        final char[] value = _canonicalName.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
        writeKeyPropertyListString(value,dest_chars,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
        return new String(dest_chars);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
     * <p>Returns the serialized string of the ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
     * properties specified at creation time.  If this ObjectName was
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
     * constructed with the constructor {@link #ObjectName(String)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
     * the key properties in the returned String will be in the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     * order as in the argument to the constructor.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     * @return The key property list string.  This string is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     * independent of whether the ObjectName is a pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
    private String getSerializedNameString()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
        // the size of the string is the canonical one
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
        final int total_size = _canonicalName.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
        final char[] dest_chars = new char[total_size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
        final char[] value = _canonicalName.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        final int offset = _domain_length+1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
        // copy "domain:" into dest_chars
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
        System.arraycopy(value, 0, dest_chars, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
        // Add property list string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
        final int end = writeKeyPropertyListString(value,dest_chars,offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
        // Add ",*" if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
        if (_property_list_pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
            if (end == offset)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
                // Property list string is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
                dest_chars[end] = '*';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
                // Property list string is not empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
                dest_chars[end]   = ',';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
                dest_chars[end+1] = '*';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
        return new String(dest_chars);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
     * <p>Write a string representation of the list of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
     * properties specified at creation time in the given array, starting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
     * at the specified offset.  If this ObjectName was
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
     * constructed with the constructor {@link #ObjectName(String)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
     * the key properties in the returned String will be in the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
     * order as in the argument to the constructor.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
     * @return offset + #of chars written
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
    private int writeKeyPropertyListString(char[] canonicalChars,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
                                           char[] data, int offset)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
        if (_kp_array.length == 0) return offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
        final char[] dest_chars = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
        final char[] value = _canonicalName.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
        int index = offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
        final int len = _kp_array.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
        final int last = len - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
        for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
            final Property prop = _kp_array[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
            final int prop_len = prop._key_length + prop._value_length + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
            System.arraycopy(value, prop._key_index, dest_chars, index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
                             prop_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
            index += prop_len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
            if (i < last ) dest_chars[index++] = ',';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
        return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
     * Returns a string representation of the list of key properties,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
     * in which the key properties are sorted in lexical order. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
     * is used in lexicographic comparisons performed in order to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
     * select MBeans based on their key property list.  Lexical order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
     * is the order implied by {@link String#compareTo(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
     * String.compareTo(String)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
     * @return The canonical key property list string.  This string is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
     * independent of whether the ObjectName is a pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
    public String getCanonicalKeyPropertyListString()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
        if (_ca_array.length == 0) return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
        int len = _canonicalName.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
        if (_property_list_pattern) len -= 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
        return _canonicalName.substring(_domain_length +1, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
    // Category : Getter methods <===================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
    // Category : Utilities ---------------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
     * <p>Returns a string representation of the object name.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
     * format of this string is not specified, but users can expect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
     * that two ObjectNames return the same string if and only if they
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
     * are equal.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     * @return a string representation of this object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
    public String toString()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
        return getSerializedNameString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
     * Compares the current object name with another object name.  Two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
     * ObjectName instances are equal if and only if their canonical
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
     * forms are equal.  The canonical form is the string described
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
     * for {@link #getCanonicalName()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
     * @param object  The object name that the current object name is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
     *        compared with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     * @return True if <code>object</code> is an ObjectName whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     * canonical form is equal to that of this ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
    public boolean equals(Object object)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
        // same object case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
        if (this == object) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
        // object is not an object name case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
        if (!(object instanceof ObjectName)) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
        // equality when canonical names are the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
        // (because usage of intern())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
        ObjectName on = (ObjectName) object;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
        String on_string = on._canonicalName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
        if (_canonicalName == on_string) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        // Because we are sharing canonical form between object names,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
        // we have finished the comparison at this stage ==> unequal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
     * Returns a hash code for this object name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
        return _canonicalName.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
     * <p>Returns a quoted form of the given String, suitable for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
     * inclusion in an ObjectName.  The returned value can be used as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
     * the value associated with a key in an ObjectName.  The String
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
     * <code>s</code> may contain any character.  Appropriate quoting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
     * ensures that the returned value is legal in an ObjectName.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
     * <p>The returned value consists of a quote ('"'), a sequence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
     * characters corresponding to the characters of <code>s</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
     * and another quote.  Characters in <code>s</code> appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
     * unchanged within the returned value except:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
     * <li>A quote ('"') is replaced by a backslash (\) followed by a quote.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
     * <li>An asterisk ('*') is replaced by a backslash (\) followed by an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
     * asterisk.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
     * <li>A question mark ('?') is replaced by a backslash (\) followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
     * a question mark.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
     * <li>A backslash ('\') is replaced by two backslashes.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
     * <li>A newline character (the character '\n' in Java) is replaced
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
     * by a backslash followed by the character '\n'.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
     * @param s the String to be quoted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
     * @return the quoted String.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
     * @exception NullPointerException if <code>s</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
    public static String quote(String s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
            throws NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
        final StringBuilder buf = new StringBuilder("\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
        final int len = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
        for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
            char c = s.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
            switch (c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
            case '\n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
                c = 'n';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
                buf.append('\\');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
            case '\\':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
            case '\"':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
            case '*':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
            case '?':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
                buf.append('\\');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
            buf.append(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
        buf.append('"');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
        return buf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
     * <p>Returns an unquoted form of the given String.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
     * <code>q</code> is a String returned by {@link #quote quote(s)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
     * then <code>unquote(q).equals(s)</code>.  If there is no String
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
     * <code>s</code> for which <code>quote(s).equals(q)</code>, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
     * unquote(q) throws an IllegalArgumentException.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
     * <p>These rules imply that there is a one-to-one mapping between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
     * quoted and unquoted forms.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
     * @param q the String to be unquoted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
     * @return the unquoted String.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
     * @exception IllegalArgumentException if <code>q</code> could not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
     * have been returned by the {@link #quote} method, for instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
     * if it does not begin and end with a quote (").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
     * @exception NullPointerException if <code>q</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
    public static String unquote(String q)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
            throws IllegalArgumentException, NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
        final StringBuilder buf = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
        final int len = q.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
        if (len < 2 || q.charAt(0) != '"' || q.charAt(len - 1) != '"')
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
            throw new IllegalArgumentException("Argument not quoted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
        for (int i = 1; i < len - 1; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
            char c = q.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
            if (c == '\\') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
                if (i == len - 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
                    throw new IllegalArgumentException("Trailing backslash");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
                c = q.charAt(++i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
                switch (c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
                case 'n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
                    c = '\n';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
                case '\\':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
                case '\"':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
                case '*':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
                case '?':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
                default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
                  throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
                                   "Bad character '" + c + "' after backslash");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
                switch (c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
                    case '*' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
                    case '?' :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
                    case '\"':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
                    case '\n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
                         throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
                                          "Invalid unescaped character '" + c +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
                                          "' in the string to unquote");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
            buf.append(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
        return buf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
     * Defines the wildcard "*:*" ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
    public static final ObjectName WILDCARD;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
            WILDCARD = new ObjectName("*:*");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
        } catch (MalformedObjectNameException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
            throw new Error("Can't initialize wildcard name", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
    // Category : Utilities <===================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
    // Category : QueryExp Interface ---------------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
     * <p>Test whether this ObjectName, which may be a pattern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
     * matches another ObjectName.  If <code>name</code> is a pattern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
     * the result is false.  If this ObjectName is a pattern, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
     * result is true if and only if <code>name</code> matches the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
     * pattern.  If neither this ObjectName nor <code>name</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
     * a pattern, the result is true if and only if the two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
     * ObjectNames are equal as described for the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
     * #equals(Object)} method.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
     * @param name The name of the MBean to compare to.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
     * @return True if <code>name</code> matches this ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
     * @exception NullPointerException if <code>name</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
    public boolean apply(ObjectName name) throws NullPointerException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
        if (name == null) throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
        if (name._domain_pattern ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
            name._property_list_pattern ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
            name._property_value_pattern)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
        // No pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
        if (!_domain_pattern &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
            !_property_list_pattern &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
            !_property_value_pattern)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
            return _canonicalName.equals(name._canonicalName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
        return matchDomains(name) && matchKeys(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
    private final boolean matchDomains(ObjectName name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
        if (_domain_pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
            // wildmatch domains
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
            final char[] dom_pattern = getDomain().toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
            final char[] dom_string  = name.getDomain().toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
            return wildmatch(dom_string,dom_pattern,0,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
        return getDomain().equals(name.getDomain());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
    private final boolean matchKeys(ObjectName name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
        // If key property value pattern but not key property list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
        // pattern, then the number of key properties must be equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
        if (_property_value_pattern &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
            !_property_list_pattern &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
            (name._ca_array.length != _ca_array.length))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
        // If key property value pattern or key property list pattern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
        // then every property inside pattern should exist in name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
        if (_property_value_pattern || _property_list_pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
            final Map<String,String> nameProps = name._getKeyPropertyList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
            final Property[] props = _ca_array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
            final String cn = _canonicalName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
            for (int i = props.length - 1; i >= 0 ; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
                // Find value in given object name for key at current
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
                // index in receiver
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
                final Property p = props[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
                final String   k = p.getKeyString(cn);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
                final String   v = nameProps.get(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
                // Did we find a value for this key ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
                if (v == null) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
                // If this property is ok (same key, same value), go to next
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
                if (_property_value_pattern && (p instanceof PatternProperty)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
                    // wildmatch key property values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
                    final char[] val_pattern =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
                            p.getValueString(cn).toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
                    final char[] val_string  = v.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
                    if (wildmatch(val_string,val_pattern,0,0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
                    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
                        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
                if (v.equals(p.getValueString(cn))) continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
        // If no pattern, then canonical names must be equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
        final String p1 = name.getCanonicalKeyPropertyListString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
        final String p2 = getCanonicalKeyPropertyListString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
        return (p1.equals(p2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
    /* Method inherited from QueryExp, no implementation needed here
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
       because ObjectName is not relative to an MBeanServer and does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
       not contain a subquery.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
    public void setMBeanServer(MBeanServer mbs) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
    // Category : QueryExp Interface <=========================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
    // Category : Comparable Interface ---------------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
     * <p>Compares two ObjectName instances. The ordering relation between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
     * ObjectNames is not completely specified but is intended to be such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
     * that a sorted list of ObjectNames will appear in an order that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
     * convenient for a person to read.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
     * <p>In particular, if the two ObjectName instances have different
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
     * domains then their order is the lexicographical order of the domains.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
     * The ordering of the key property list remains unspecified.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
     * <p>For example, the ObjectName instances below:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
     * <li>Shapes:type=Square,name=3</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
     * <li>Colors:type=Red,name=2</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     * <li>Shapes:type=Triangle,side=isosceles,name=2</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
     * <li>Colors:type=Red,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
     * <li>Shapes:type=Square,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
     * <li>Colors:type=Blue,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
     * <li>Shapes:type=Square,name=2</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
     * <li>JMImplementation:type=MBeanServerDelegate</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
     * <li>Shapes:type=Triangle,side=scalene,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
     * <p>could be ordered as follows:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
     * <li>Colors:type=Blue,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
     * <li>Colors:type=Red,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
     * <li>Colors:type=Red,name=2</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
     * <li>JMImplementation:type=MBeanServerDelegate</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
     * <li>Shapes:type=Square,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
     * <li>Shapes:type=Square,name=2</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
     * <li>Shapes:type=Square,name=3</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
     * <li>Shapes:type=Triangle,side=scalene,name=1</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
     * <li>Shapes:type=Triangle,side=isosceles,name=2</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
     * @param name the ObjectName to be compared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
     * @return a negative integer, zero, or a positive integer as this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
     *         ObjectName is less than, equal to, or greater than the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
     *         specified ObjectName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
    public int compareTo(ObjectName name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
        // (1) Compare domains
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
        int domainValue = this.getDomain().compareTo(name.getDomain());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
        if (domainValue != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
            return domainValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
        // (2) Compare "type=" keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
        // Within a given domain, all names with missing or empty "type="
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
        // come before all names with non-empty type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
        // When both types are missing or empty, canonical-name ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
        // applies which is a total order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
        String thisTypeKey = this.getKeyProperty("type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
        String anotherTypeKey = name.getKeyProperty("type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
        if (thisTypeKey == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
            thisTypeKey = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
        if (anotherTypeKey == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
            anotherTypeKey = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
        int typeKeyValue = thisTypeKey.compareTo(anotherTypeKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
        if (typeKeyValue != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
            return typeKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
        // (3) Compare canonical names
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
        return this.getCanonicalName().compareTo(name.getCanonicalName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
    // Category : Comparable Interface <=========================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
    // Public methods <========================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
}