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