/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2006-2009 Sun Microsystems, Inc.
* Portions Copyright 2011-2012 ForgeRock AS
*/
/**
* This class implements the DIT structure rule description syntax, which is
* used to hold DIT structure rule definitions in the server schema. The format
* of this syntax is defined in RFC 2252.
*/
public class DITStructureRuleSyntax
extends AttributeSyntax<AttributeSyntaxCfg>
{
/**
* The tracer object for the debug logger.
*/
// The default equality matching rule for this syntax.
// The default ordering matching rule for this syntax.
// The default substring matching rule for this syntax.
/**
* Creates a new instance of this syntax. Note that the only thing that
* should be done here is to invoke the default constructor for the
* superclass. All initialization should be performed in the
* <CODE>initializeSyntax</CODE> method.
*/
public DITStructureRuleSyntax()
{
super();
}
/**
* {@inheritDoc}
*/
{
if (defaultEqualityMatchingRule == null)
{
throw new InitializationException(message);
}
if (defaultOrderingMatchingRule == null)
{
throw new InitializationException(message);
}
if (defaultSubstringMatchingRule == null)
{
throw new InitializationException(message);
}
}
/**
* {@inheritDoc}
*/
{
return SYNTAX_DIT_STRUCTURE_RULE_NAME;
}
/**
* {@inheritDoc}
*/
{
return SYNTAX_DIT_STRUCTURE_RULE_OID;
}
/**
* {@inheritDoc}
*/
{
}
/**
* {@inheritDoc}
*/
{
return defaultEqualityMatchingRule;
}
/**
* {@inheritDoc}
*/
{
return defaultOrderingMatchingRule;
}
/**
* {@inheritDoc}
*/
{
return defaultSubstringMatchingRule;
}
/**
* {@inheritDoc}
*/
{
// There is no approximate matching rule by default.
return null;
}
/**
* {@inheritDoc}
*/
{
// We'll use the decodeDITStructureRule method to determine if the value is
// acceptable.
try
{
return true;
}
catch (DirectoryException de)
{
if (debugEnabled())
{
}
return false;
}
}
/**
* Decodes the contents of the provided ASN.1 octet string as a DIT structure
* rule definition according to the rules of this syntax. Note that the
* provided octet string value does not need to be normalized (and in fact, it
* should not be in order to allow the desired capitalization to be
* preserved).
*
* @param value The ASN.1 octet string containing the value
* to decode (it does not need to be
* normalized).
* @param schema The schema to use to resolve references to
* other schema elements.
* @param allowUnknownElements Indicates whether to allow values that
* which are not defined in the server schema.
* This should only be true when called by
* {@code valueIsAcceptable}.
*
* @return The decoded DIT structure rule definition.
*
* @throws DirectoryException If the provided value cannot be decoded as an
* DIT structure rule definition.
*/
boolean allowUnknownElements)
throws DirectoryException
{
// Get string representations of the provided value using the provided form
// and with all lowercase characters.
// We'll do this a character at a time. First, skip over any leading
// whitespace.
int pos = 0;
{
pos++;
}
{
// This means that the value was empty or contained only whitespace. That
// is illegal.
throw new DirectoryException(
}
// The next character must be an open parenthesis. If it is not, then that
// is an error.
if (c != '(')
{
throw new DirectoryException(
}
// Skip over any spaces immediately following the opening parenthesis.
{
pos++;
}
{
// This means that the end of the value was reached before we could find
// the OID. Ths is illegal.
throw new DirectoryException(
}
// The next set of characters must be the rule ID, which is an integer.
int ruleIDStartPos = pos;
{
if (! isDigit(c))
{
message);
}
}
// If we're at the end of the value, then it isn't a valid DIT structure
// rule description. Otherwise, parse out the rule ID.
int ruleID;
{
throw new DirectoryException(
}
else
{
}
// Skip over the space(s) after the rule ID.
{
pos++;
}
{
// This means that the end of the value was reached before we could find
// the rule ID. Ths is illegal.
throw new DirectoryException(
}
// At this point, we should have a pretty specific syntax that describes
// what may come next, but some of the components are optional and it would
// be pretty easy to put something in the wrong order, so we will be very
// flexible about what we can accept. Just look at the next token, figure
// out what it is and how to treat what comes after it, then repeat until
// we get to the end of the value. But before we start, set default values
// for everything else we might need to know.
boolean isObsolete = false;
boolean nameFormGiven = false;
while (true)
{
{
// We must be at the end of the value. If not, then that's a problem.
{
message);
}
break;
}
{
// This specifies the set of names for the DIT structure rule. It may
// be a single name in single quotes, or it may be an open parenthesis
// followed by one or more names in single quotes separated by spaces.
if (c == '\'')
{
(pos-1));
}
else if (c == '(')
{
pos);
while (true)
{
{
// Skip over any spaces after the parenthesis.
pos++;
{
pos++;
}
break;
}
else
{
userBuffer = new StringBuilder();
lowerBuffer = new StringBuilder();
lowerBuffer, pos);
}
}
}
else
{
// This is an illegal character.
message);
}
}
{
// This specifies the description for the DIT structure rule. It is an
// arbitrary string of characters enclosed in single quotes.
}
{
// This indicates whether the DIT structure rule should be considered
// obsolete. We do not need to do any more parsing for this token.
isObsolete = true;
}
{
// This should be the OID of the associated name form.
nameFormGiven = true;
{
message);
}
}
{
new LinkedList<DITStructureRule>();
// This specifies the set of superior rule IDs (which are integers) for
// this DIT structure rule. It may be a single rule ID or a set of
// rule IDs enclosed in parentheses and separated by spaces.
if (c == '(')
{
while (true)
{
// Skip over any leading spaces.
{
pos++;
}
{
message);
}
// Read the next integer value.
{
if (! isDigit(c))
{
throw new DirectoryException(
}
}
// If we're at the end of the value, then it isn't a valid DIT
// structure rule description. Otherwise, parse out the rule ID.
int supRuleID;
{
message);
}
else
{
}
// Get the DIT structure rule with the specified rule ID.
if (superiorRule == null)
{
if (! allowUnknownElements)
{
throw new DirectoryException(
}
}
else
{
}
// Skip over any trailing spaces.
{
pos++;
}
{
message);
}
// If the next character is a closing parenthesis, then read any
// spaces after it and break out of the loop.
if (c == ')')
{
pos++;
{
pos++;
}
{
throw new DirectoryException(
}
break;
}
}
}
else
{
{
message);
}
// Read the next integer value.
{
if (! isDigit(c))
{
message);
}
}
// If we're at the end of the value, then it isn't a valid DIT
// structure rule description. Otherwise, parse out the rule ID.
int supRuleID;
{
message);
}
else
{
}
// Get the DIT structure rule with the specified rule ID.
if (superiorRule == null)
{
if (! allowUnknownElements)
{
message);
}
}
else
{
}
// Skip over any trailing spaces.
{
pos++;
}
{
message);
}
}
}
else
{
// This must be a non-standard property and it must be followed by
// either a single value in single quotes or an open parenthesis
// followed by one or more values in single quotes separated by spaces
// followed by a close parenthesis.
new LinkedList<String>();
}
}
{
throw new DirectoryException(
}
}
/**
* Reads the next token name from the DIT content rule definition, skipping
* over any leading or trailing spaces, and appends it to the provided buffer.
*
* @param valueStr The string representation of the DIT content rule
* definition.
* @param tokenName The buffer into which the token name will be written.
* @param startPos The position in the provided string at which to start
* reading the token name.
*
* @return The position of the first character that is not part of the token
* name or one of the trailing spaces after it.
*
* @throws DirectoryException If a problem is encountered while reading the
* token name.
*/
int startPos)
throws DirectoryException
{
// Skip over any spaces at the beginning of the value.
char c = '\u0000';
{
startPos++;
}
{
throw new DirectoryException(
}
// Read until we find the next space.
{
}
// Skip over any trailing spaces after the value.
{
startPos++;
}
// Return the position of the first non-space character after the token.
return startPos;
}
/**
* Reads the value of a string enclosed in single quotes, skipping over the
* quotes and any leading or trailing spaces, and appending the string to the
* provided buffer.
*
* @param valueStr The user-provided representation of the DIT content
* rule definition.
* @param valueBuffer The buffer into which the user-provided representation
* of the value will be placed.
* @param startPos The position in the provided string at which to start
* reading the quoted string.
*
* @return The position of the first character that is not part of the quoted
* string or one of the trailing spaces after it.
*
* @throws DirectoryException If a problem is encountered while reading the
* quoted string.
*/
throws DirectoryException
{
// Skip over any spaces at the beginning of the value.
char c = '\u0000';
{
startPos++;
}
{
throw new DirectoryException(
}
// The next character must be a single quote.
if (c != '\'')
{
throw new DirectoryException(
}
// Read until we find the closing quote.
startPos++;
{
valueBuffer.append(c);
startPos++;
}
// Skip over any trailing spaces after the value.
startPos++;
{
startPos++;
}
// If we're at the end of the value, then that's illegal.
{
throw new DirectoryException(
}
// Return the position of the first non-space character after the token.
return startPos;
}
/**
* Reads the value of a string enclosed in single quotes, skipping over the
* quotes and any leading or trailing spaces, and appending the string to the
* provided buffer.
*
* @param valueStr The user-provided representation of the DIT content
* rule definition.
* @param lowerStr The all-lowercase representation of the DIT content
* rule definition.
* @param userBuffer The buffer into which the user-provided representation
* of the value will be placed.
* @param lowerBuffer The buffer into which the all-lowercase representation
* of the value will be placed.
* @param startPos The position in the provided string at which to start
* reading the quoted string.
*
* @return The position of the first character that is not part of the quoted
* string or one of the trailing spaces after it.
*
* @throws DirectoryException If a problem is encountered while reading the
* quoted string.
*/
throws DirectoryException
{
// Skip over any spaces at the beginning of the value.
char c = '\u0000';
{
startPos++;
}
{
throw new DirectoryException(
}
// The next character must be a single quote.
if (c != '\'')
{
throw new DirectoryException(
}
// Read until we find the closing quote.
startPos++;
{
lowerBuffer.append(c);
startPos++;
}
// Skip over any trailing spaces after the value.
startPos++;
{
startPos++;
}
// If we're at the end of the value, then that's illegal.
{
throw new DirectoryException(
}
// Return the position of the first non-space character after the token.
return startPos;
}
/**
* Reads an attributeType/objectclass description or numeric OID from the
* provided string, skipping over any leading or trailing spaces, and
* appending the value to the provided buffer.
*
* @param lowerStr The string from which the name or OID is to be read.
* @param woidBuffer The buffer into which the name or OID should be
* appended.
* @param startPos The position at which to start reading.
*
* @return The position of the first character after the name or OID that is
* not a space.
*
* @throws DirectoryException If a problem is encountered while reading the
* name or OID.
*/
int startPos)
throws DirectoryException
{
// Skip over any spaces at the beginning of the value.
char c = '\u0000';
{
startPos++;
}
{
throw new DirectoryException(
}
// The next character must be either numeric (for an OID) or alphabetic (for
// an attribute type/objectclass description).
if (isDigit(c))
{
// This must be a numeric OID. In that case, we will accept only digits
// and periods, but not consecutive periods.
boolean lastWasPeriod = false;
{
if (c == '.')
{
if (lastWasPeriod)
{
message);
}
else
{
woidBuffer.append(c);
lastWasPeriod = true;
}
}
else if (! isDigit(c))
{
// Technically, this must be an illegal character. However, it is
// possible that someone just got sloppy and did not include a space
// we'll assume it's the end of the value. What's more, we'll have
// to prematurely return to nasty side effects from stripping off
// additional characters.
if (c == ')')
{
return (startPos-1);
}
// This must have been an illegal character.
message);
}
else
{
woidBuffer.append(c);
lastWasPeriod = false;
}
}
}
else if (isAlpha(c))
{
// This must be an attribute type/objectclass description. In this case,
// we will only accept alphabetic characters, numeric digits, and the
// hyphen.
{
{
woidBuffer.append(c);
}
else
{
// Technically, this must be an illegal character. However, it is
// possible that someone just got sloppy and did not include a space
// we'll assume it's the end of the value. What's more, we'll have
// to prematurely return to nasty side effects from stripping off
// additional characters.
if (c == ')')
{
return (startPos-1);
}
// This must have been an illegal character.
message);
}
}
}
else
{
throw new DirectoryException(
}
// Skip over any trailing spaces after the value.
{
startPos++;
}
// If we're at the end of the value, then that's illegal.
{
throw new DirectoryException(
}
// Return the position of the first non-space character after the token.
return startPos;
}
/**
* Reads the value for an "extra" parameter. It will handle a single unquoted
* word (which is technically illegal, but we'll allow it), a single quoted
* string, or an open parenthesis followed by a space-delimited set of quoted
* strings or unquoted words followed by a close parenthesis.
*
* @param valueStr The string containing the information to be read.
* @param valueList The list of "extra" parameter values read so far.
* @param startPos The position in the value string at which to start
* reading.
*
* @return The "extra" parameter value that was read.
*
* @throws DirectoryException If a problem occurs while attempting to read
* the value.
*/
throws DirectoryException
{
// Skip over any leading spaces.
char c = '\u0000';
{
startPos++;
}
{
throw new DirectoryException(
}
// Look at the next character. If it is a quote, then parse until the next
// quote and end. If it is an open parenthesis, then parse individual
// values until the close parenthesis and end. Otherwise, parse until the
// next space and end.
if (c == '\'')
{
// Parse until the closing quote.
startPos++;
{
valueBuffer.append(c);
startPos++;
}
startPos++;
}
else if (c == '(')
{
startPos++;
// We're expecting a list of values. Quoted, space separated.
while (true)
{
// Skip over any leading spaces;
{
startPos++;
}
{
message);
}
if (c == ')')
{
// This is the end of the list.
startPos++;
break;
}
else if (c == '(')
{
// This is an illegal character.
message);
}
else if (c == '\'')
{
// We have a quoted string
startPos++;
{
valueBuffer.append(c);
startPos++;
}
startPos++;
}
else
{
//Consider unquoted string
{
valueBuffer.append(c);
startPos++;
}
}
{
message);
}
}
}
else
{
// Parse until the next space.
{
valueBuffer.append(c);
startPos++;
}
}
// Skip over any trailing spaces.
{
startPos++;
}
{
throw new DirectoryException(
}
return startPos;
}
/**
* {@inheritDoc}
*/
public boolean isBinary()
{
return false;
}
/**
* {@inheritDoc}
*/
public boolean isHumanReadable()
{
return true;
}
}