/* ObjectName.java -- Represent the name of a bean, or a pattern for a name. Copyright (C) 2006, 2007 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package javax.management; import gnu.java.lang.CPStringBuilder; import java.io.Serializable; import java.util.Hashtable; import java.util.Iterator; import java.util.Map; import java.util.TreeMap; import java.io.IOException; import java.io.InvalidObjectException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; /** *
* An {@link ObjectName} instance represents the name of a management * bean, or a pattern which may match the name of one or more * management beans. Patterns are distinguished from names by the * presence of the '?' and '*' characters (which match a single * character and a series of zero or more characters, respectively). *
** Each name begins with a domain element, which is terminated by * a ':' character. The domain may be empty. If so, it will be * replaced by the default domain of the bean server in certain * contexts. The domain is a pattern, if it contains either '?' * or '*'. To avoid collisions, it is usual to use reverse * DNS names for the domain, as in Java package and property names. *
*
* Following the ':' character is a series of properties. The list
* is separated by commas, and largely consists of unordered key-value
* pairs, separated by an equals sign ('='). At most one element may
* be an asterisk ('*'), which turns the {@link ObjectName} instance
* into a
* A
* A value may be
* Both quoted and unquoted values may contain the wildcard characters
* '?' and '*'. A name with at least one value containing a wildcard
* character is known as a
* Spaces are maintained within the different parts of the name. Thus,
* 'domain: key1 = value1
' has a key ' key1 ' with value
* ' value1 '. Newlines are disallowed, except where escaped in quoted
* values.
*
name
is
* null
.
*/
public ObjectName(String name)
throws MalformedObjectNameException
{
if (name.length() == 0)
name = "*:*";
parse(name);
}
/**
* Parse the name in the same form as the constructor. Used by
* readObject().
*/
private void parse(String name)
throws MalformedObjectNameException
{
int domainSep = name.indexOf(':');
if (domainSep == -1)
throw new MalformedObjectNameException("No domain separator was found.");
domain = name.substring(0, domainSep);
String rest = name.substring(domainSep + 1);
properties = new TreeMapnull
.
*/
public ObjectName(String domain, String key, String value)
throws MalformedObjectNameException
{
this.domain = domain;
properties = new TreeMapnull
.
*/
public ObjectName(String domain, Hashtable* Attempts to find a match between this name and the one supplied. * The following criteria are used: *
*false
is
* returned.true
* if the supplied name matches the pattern.equals(name)
is returned.
* name
is null
.
*/
public boolean apply(ObjectName name)
{
if (name.isPattern())
return false;
if (!isPattern())
return equals(name);
if (isDomainPattern())
{
if (!domainMatches(domain, 0, name.getDomain(), 0))
return false;
}
else
{
if (!domain.equals(name.getDomain()))
return false;
}
if (isPropertyPattern())
{
Hashtable* Returns the name as a string in canonical form. More precisely, * this returns a string of the format * <domain>:<properties><wild>. <properties> * is the same value as returned by * {@link #getCanonicalKeyPropertyListString()}. <wild> * is: *
*name
is null
.
*/
public static ObjectName getInstance(ObjectName name)
{
try
{
return new ObjectName(name.getCanonicalName());
}
catch (MalformedObjectNameException e)
{
throw (InternalError)
(new InternalError("The canonical name of " +
"the given name is invalid.").initCause(e));
}
}
/**
* Returns an {@link ObjectName} instance for the specified name, represented
* as a {@link java.lang.String}. The instance returned may be a subclass of
* {@link ObjectName} and may or may not be equivalent to earlier instances
* returned by this method for the same string.
*
* @param name the {@link ObjectName} to provide an instance of.
* @return a instance for the given name, which may or may not be a subclass
* of {@link ObjectName}.
* @throws MalformedObjectNameException the domain, a key or a value
* contains an illegal
* character or a value
* does not follow the quoting
* specifications.
* @throws NullPointerException if name
is null
.
*/
public static ObjectName getInstance(String name)
throws MalformedObjectNameException
{
return new ObjectName(name);
}
/**
* Returns an {@link ObjectName} instance for the specified name, represented
* as a series of {@link java.lang.String} objects for the domain and a single
* property, as a key-value pair. The instance returned may be a subclass of
* {@link ObjectName} and may or may not be equivalent to earlier instances
* returned by this method for the same parameters.
*
* @param domain the domain part of the object name.
* @param key the key of the property.
* @param value the value of the property.
* @return a instance for the given name, which may or may not be a subclass
* of {@link ObjectName}.
* @throws MalformedObjectNameException the domain, a key or a value
* contains an illegal
* character or a value
* does not follow the quoting
* specifications.
* @throws NullPointerException if name
is null
.
*/
public static ObjectName getInstance(String domain, String key, String value)
throws MalformedObjectNameException
{
return new ObjectName(domain, key, value);
}
/**
* Returns an {@link ObjectName} instance for the specified name, represented
* as a domain {@link java.lang.String} and a table of properties. The
* instance returned may be a subclass of {@link ObjectName} and may or may
* not be equivalent to earlier instances returned by this method for the
* same string.
*
* @param domain the domain part of the object name.
* @param properties the key-value property pairs.
* @return a instance for the given name, which may or may not be a subclass
* of {@link ObjectName}.
* @throws MalformedObjectNameException the domain, a key or a value
* contains an illegal
* character or a value
* does not follow the quoting
* specifications.
* @throws NullPointerException if name
is null
.
*/
public static ObjectName getInstance(String domain,
Hashtablekey
is null
.
*/
public String getKeyProperty(String key)
{
if (key == null)
throw new NullPointerException("Null key given in request for a value.");
return (String) properties.get(key);
}
/**
* Returns the properties in a {@link java.util.Hashtable}. The table
* contains each of the properties as keys mapped to their value. The
* returned table is not unmodifiable, but changes made to it will not
* be reflected in the object name.
*
* @return a {@link java.util.Hashtable}, containing each of the object
* name's properties.
*/
public Hashtable* Returns a quoted version of the supplied string. The string may * contain any character. The resulting quoted version is guaranteed * to be usable as the value of a property, so this method provides * a good way of ensuring that a value is legal. *
** The string is transformed as follows: *
*string
is null
.
*/
public static String quote(String string)
{
CPStringBuilder builder = new CPStringBuilder();
builder.append('"');
for (int a = 0; a < string.length(); ++a)
{
char s = string.charAt(a);
switch (s)
{
case '"':
builder.append("\\\"");
break;
case '*':
builder.append("\\*");
break;
case '?':
builder.append("\\?");
break;
case '\\':
builder.append("\\\\");
break;
case '\n':
builder.append("\\\n");
break;
default:
builder.append(s);
}
}
builder.append('"');
return builder.toString();
}
/**
* Changes the {@link MBeanServer} on which this query is performed.
*
* @param server the new server to use.
*/
public void setMBeanServer(MBeanServer server)
{
this.server = server;
}
/**
* Returns a textual representation of the object name.
*
* The format is unspecified beyond that equivalent object
* names will return the same string from this method, but note
* that Tomcat depends on the string returned by this method
* being a valid textual representation of the object name and
* will fail to start if it is not.
*
* @return a textual representation of the object name.
*/
public String toString()
{
return getCanonicalName();
}
/**
* Serialize this {@link ObjectName}. The serialized
* form is the same as the string parsed by the constructor.
*
* @param out the output stream to write to.
* @throws IOException if an I/O error occurs.
*/
private void writeObject(ObjectOutputStream out)
throws IOException
{
out.defaultWriteObject();
CPStringBuilder buffer = new CPStringBuilder(getDomain());
buffer.append(':');
String properties = getKeyPropertyListString();
buffer.append(properties);
if (isPropertyPattern())
{
if (properties.length() == 0)
buffer.append("*");
else
buffer.append(",*");
}
out.writeObject(buffer.toString());
}
/**
* Reads the serialized form, which is that used
* by the constructor.
*
* @param in the input stream to read from.
* @throws IOException if an I/O error occurs.
*/
private void readObject(ObjectInputStream in)
throws IOException, ClassNotFoundException
{
in.defaultReadObject();
String objectName = (String)in.readObject();
try
{
parse(objectName);
}
catch (MalformedObjectNameException x)
{
throw new InvalidObjectException(x.toString());
}
}
/**
* Unquotes the supplied string. The quotation marks are removed as
* are the backslashes preceding the escaped characters ('"', '?',
* '*', '\n', '\\'). A one-to-one mapping exists between quoted and
* unquoted values. As a result, a string s
should be
* equal to unquote(quote(s))
.
*
* @param q the quoted string to unquote.
* @return the unquoted string.
* @throws NullPointerException if q
is null
.
* @throws IllegalArgumentException if the string is not a valid
* quoted string i.e. it is not
* surrounded by quotation marks
* and/or characters are not properly
* escaped.
*/
public static String unquote(String q)
{
if (q.charAt(0) != '"')
throw new IllegalArgumentException("The string does " +
"not start with a quote.");
if (q.charAt(q.length() - 1) != '"')
throw new IllegalArgumentException("The string does " +
"not end with a quote.");
CPStringBuilder builder = new CPStringBuilder();
for (int a = 1; a < (q.length() - 1); ++a)
{
char n = q.charAt(a);
if (n == '\\')
{
n = q.charAt(++a);
if (n != '"' && n != '?' && n != '*' &&
n != 'n' && n != '\\')
throw new IllegalArgumentException("Illegal escaped character: "
+ n);
}
else if (n == '"' || n == '\n')
throw new IllegalArgumentException("Illegal character: " + n);
builder.append(n);
}
return builder.toString();
}
}