View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *  
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *  
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License. 
18   *  
19   */
20  package org.apache.directory.api.ldap.model.schema.syntaxCheckers;
21  
22  
23  import java.text.ParseException;
24  
25  import org.apache.directory.api.i18n.I18n;
26  import org.apache.directory.api.ldap.model.constants.SchemaConstants;
27  import org.apache.directory.api.ldap.model.schema.SyntaxChecker;
28  import org.apache.directory.api.ldap.model.schema.parsers.MatchingRuleDescriptionSchemaParser;
29  import org.apache.directory.api.util.Strings;
30  
31  
32  /**
33   * A SyntaxChecker which verifies that a value follows the
34   * matching rule description syntax according to RFC 4512, par 4.2.3:
35   * 
36   * <pre>
37   * MatchingRuleDescription = LPAREN WSP
38   *    numericoid                 ; object identifier
39   *    [ SP "NAME" SP qdescrs ]   ; short names (descriptors)
40   *    [ SP "DESC" SP qdstring ]  ; description
41   *    [ SP "OBSOLETE" ]          ; not active
42   *    SP "SYNTAX" SP numericoid  ; assertion syntax
43   *    extensions WSP RPAREN      ; extensions
44   * 
45   * extensions = *( SP xstring SP qdstrings )
46   * xstring = "X" HYPHEN 1*( ALPHA / HYPHEN / USCORE ) 
47   * </pre>
48   * 
49   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
50   */
51  @SuppressWarnings("serial")
52  public final class MatchingRuleDescriptionSyntaxChecker extends SyntaxChecker
53  {
54      /** The schema parser used to parse the MatchingRuleDescription Syntax */
55      private transient MatchingRuleDescriptionSchemaParser schemaParser = new MatchingRuleDescriptionSchemaParser();
56      
57      /**
58       * A static instance of MatchingRuleDescriptionSyntaxChecker
59       */
60      public static final MatchingRuleDescriptionSyntaxChecker INSTANCE = 
61          new MatchingRuleDescriptionSyntaxChecker( SchemaConstants.MATCHING_RULE_DESCRIPTION_SYNTAX );
62      
63      /**
64       * A static Builder for this class
65       */
66      public static final class Builder extends SCBuilder<MatchingRuleDescriptionSyntaxChecker>
67      {
68          /**
69           * The Builder constructor
70           */
71          private Builder()
72          {
73              super( SchemaConstants.MATCHING_RULE_DESCRIPTION_SYNTAX );
74          }
75          
76          
77          /**
78           * Create a new instance of MatchingRuleDescriptionSyntaxChecker
79           * @return A new instance of MatchingRuleDescriptionSyntaxChecker
80           */
81          @Override
82          public MatchingRuleDescriptionSyntaxChecker build()
83          {
84              return new MatchingRuleDescriptionSyntaxChecker( oid );
85          }
86      }
87  
88      
89      /**
90       * Creates a new instance of MatchingRuleDescriptionSchemaParser.
91       *
92       * @param oid The OID to use for this SyntaxChecker
93       */
94      private MatchingRuleDescriptionSyntaxChecker( String oid )
95      {
96          super( oid );
97      }
98  
99      
100     /**
101      * @return An instance of the Builder for this class
102      */
103     public static Builder builder()
104     {
105         return new Builder();
106     }
107 
108 
109     /**
110      * {@inheritDoc}
111      */
112     @Override
113     public boolean isValidSyntax( Object value )
114     {
115         String strValue;
116 
117         if ( value == null )
118         {
119             if ( LOG.isDebugEnabled() )
120             {
121                 LOG.debug( I18n.err( I18n.ERR_04488_SYNTAX_INVALID, "null" ) );
122             }
123             
124             return false;
125         }
126 
127         if ( value instanceof String )
128         {
129             strValue = ( String ) value;
130         }
131         else if ( value instanceof byte[] )
132         {
133             strValue = Strings.utf8ToString( ( byte[] ) value );
134         }
135         else
136         {
137             strValue = value.toString();
138         }
139 
140         try
141         {
142             schemaParser.parseMatchingRuleDescription( strValue );
143 
144             if ( LOG.isDebugEnabled() )
145             {
146                 LOG.debug( I18n.msg( I18n.MSG_04489_SYNTAX_VALID, value ) );
147             }
148 
149             return true;
150         }
151         catch ( ParseException pe )
152         {
153             if ( LOG.isDebugEnabled() )
154             {
155                 LOG.debug( I18n.err( I18n.ERR_04488_SYNTAX_INVALID, value ) );
156             }
157             
158             return false;
159         }
160     }
161 }