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.codec.actions.modifyDnRequest;
21  
22  
23  import org.apache.directory.api.asn1.DecoderException;
24  import org.apache.directory.api.asn1.ber.grammar.GrammarAction;
25  import org.apache.directory.api.asn1.ber.tlv.BerValue;
26  import org.apache.directory.api.asn1.ber.tlv.BooleanDecoder;
27  import org.apache.directory.api.asn1.ber.tlv.BooleanDecoderException;
28  import org.apache.directory.api.asn1.ber.tlv.TLV;
29  import org.apache.directory.api.i18n.I18n;
30  import org.apache.directory.api.ldap.codec.api.LdapMessageContainer;
31  import org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator;
32  import org.apache.directory.api.ldap.model.message.ModifyDnRequest;
33  import org.apache.directory.api.util.Strings;
34  import org.slf4j.Logger;
35  import org.slf4j.LoggerFactory;
36  
37  
38  /**
39   * The action used to store the ModifyDnRequest deleteOldRdn flag
40   * <pre>
41   * ModifyDNRequest ::= [APPLICATION 12] SEQUENCE { ...
42   *     ...
43   *     deleteoldrdn BOOLEAN,
44   *     ...
45   * </pre>
46   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
47   */
48  public class StoreModifyDnRequestDeleteOldRdn extends GrammarAction<LdapMessageContainer<ModifyDnRequestDecorator>>
49  {
50      /** The logger */
51      private static final Logger LOG = LoggerFactory.getLogger( StoreModifyDnRequestDeleteOldRdn.class );
52  
53      /** Speedup for logs */
54      private static final boolean IS_DEBUG = LOG.isDebugEnabled();
55  
56  
57      /**
58       * Instantiates a new action.
59       */
60      public StoreModifyDnRequestDeleteOldRdn()
61      {
62          super( "Store ModifyDN request deleteOldRdn flag" );
63      }
64  
65  
66      /**
67       * {@inheritDoc}
68       */
69      public void action( LdapMessageContainer<ModifyDnRequestDecorator> container ) throws DecoderException
70      {
71          ModifyDnRequest modifyDnRequest = container.getMessage();
72  
73          TLV tlv = container.getCurrentTLV();
74  
75          // We get the value. If it's a 0, it's a FALSE. If it's
76          // a FF, it's a TRUE. Any other value should be an error,
77          // but we could relax this constraint. So if we have
78          // something
79          // which is not 0, it will be interpreted as TRUE, but we
80          // will generate a warning.
81          BerValue value = tlv.getValue();
82  
83          try
84          {
85              modifyDnRequest.setDeleteOldRdn( BooleanDecoder.parse( value ) );
86          }
87          catch ( BooleanDecoderException bde )
88          {
89              LOG.error( I18n
90                  .err( I18n.ERR_04091, Strings.dumpBytes( value.getData() ), bde.getMessage() ) );
91  
92              // This will generate a PROTOCOL_ERROR
93              throw new DecoderException( bde.getMessage(), bde );
94          }
95  
96          // We can have an END transition
97          container.setGrammarEndAllowed( true );
98  
99          if ( IS_DEBUG )
100         {
101             if ( modifyDnRequest.getDeleteOldRdn() )
102             {
103                 LOG.debug( " Old Rdn attributes will be deleted" );
104             }
105             else
106             {
107                 LOG.debug( " Old Rdn attributes will be retained" );
108             }
109         }
110     }
111 }