001/*
002 *  Licensed to the Apache Software Foundation (ASF) under one
003 *  or more contributor license agreements.  See the NOTICE file
004 *  distributed with this work for additional information
005 *  regarding copyright ownership.  The ASF licenses this file
006 *  to you under the Apache License, Version 2.0 (the
007 *  "License"); you may not use this file except in compliance
008 *  with the License.  You may obtain a copy of the License at
009 *
010 *    http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *  Unless required by applicable law or agreed to in writing,
013 *  software distributed under the License is distributed on an
014 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 *  KIND, either express or implied.  See the License for the
016 *  specific language governing permissions and limitations
017 *  under the License.
018 *
019 */
020package org.apache.directory.api.ldap.codec.actions.extendedRequest;
021
022
023import org.apache.directory.api.asn1.DecoderException;
024import org.apache.directory.api.asn1.ber.grammar.GrammarAction;
025import org.apache.directory.api.asn1.ber.tlv.TLV;
026import org.apache.directory.api.ldap.codec.api.ExtendedRequestDecorator;
027import org.apache.directory.api.ldap.codec.api.LdapMessageContainer;
028import org.apache.directory.api.util.Strings;
029import org.slf4j.Logger;
030import org.slf4j.LoggerFactory;
031
032
033/**
034 * The action used to store the Extended Request value
035 * <pre>
036 * ExtendedRequest ::= [APPLICATION 23] SEQUENCE {
037 *     ...
038 *     requestValue  [1] OCTET STRING OPTIONAL }
039 * </pre>
040 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
041 */
042public class StoreExtendedRequestValue extends GrammarAction<LdapMessageContainer<ExtendedRequestDecorator<?>>>
043{
044    /** The logger */
045    private static final Logger LOG = LoggerFactory.getLogger( StoreExtendedRequestValue.class );
046
047    /** Speedup for logs */
048    private static final boolean IS_DEBUG = LOG.isDebugEnabled();
049
050
051    /**
052     * Instantiates a new action.
053     */
054    public StoreExtendedRequestValue()
055    {
056        super( "Store ExtendedRequest value" );
057    }
058
059
060    /**
061     * {@inheritDoc}
062     */
063    public void action( LdapMessageContainer<ExtendedRequestDecorator<?>> container ) throws DecoderException
064    {
065        // We can allocate the ExtendedRequest Object
066        ExtendedRequestDecorator<?> extendedRequest = container.getMessage();
067
068        // Get the Value and store it in the ExtendedRequest
069        TLV tlv = container.getCurrentTLV();
070
071        // We have to handle the special case of a 0 length matched
072        // value
073        if ( tlv.getLength() == 0 )
074        {
075            extendedRequest.setRequestValue( Strings.EMPTY_BYTES );
076        }
077        else
078        {
079            extendedRequest.setRequestValue( tlv.getValue().getData() );
080        }
081
082        // We can have an END transition
083        container.setGrammarEndAllowed( true );
084
085        if ( IS_DEBUG )
086        {
087            LOG.debug( "Extended value : {}", extendedRequest.getRequestValue() );
088        }
089    }
090}