blob: fb87960819bf1eefe604822e0bb2a28f92229e8a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.shared.ldap.codec.actions;
import java.util.HashMap;
import java.util.Map;
import org.apache.directory.shared.asn1.ber.IAsn1Container;
import org.apache.directory.shared.asn1.ber.grammar.GrammarAction;
import org.apache.directory.shared.asn1.ber.tlv.TLV;
import org.apache.directory.shared.asn1.ber.tlv.Value;
import org.apache.directory.shared.asn1.codec.DecoderException;
import org.apache.directory.shared.ldap.codec.Control;
import org.apache.directory.shared.ldap.codec.ControlDecoder;
import org.apache.directory.shared.ldap.codec.LdapMessage;
import org.apache.directory.shared.ldap.codec.LdapMessageContainer;
import org.apache.directory.shared.ldap.codec.controls.ManageDsaITControlDecoder;
import org.apache.directory.shared.ldap.codec.search.controls.PSearchControlDecoder;
import org.apache.directory.shared.ldap.codec.search.controls.PagedSearchControlDecoder;
import org.apache.directory.shared.ldap.codec.search.controls.SubEntryControlDecoder;
import org.apache.directory.shared.ldap.util.StringTools;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The action used to set the value of a control. This is an extension point
* where different controls can be plugged in (at least eventually). For now we
* hard code controls.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$,
*/
public class ControlValueAction extends GrammarAction
{
/** The logger */
private static final Logger log = LoggerFactory.getLogger( ControlValueAction.class );
/** Speedup for logs */
private static final boolean IS_DEBUG = log.isDebugEnabled();
private static Map<String, ControlDecoder> controlDecoders = new HashMap<String, ControlDecoder>();
public ControlValueAction()
{
super( "Sets the control value" );
ControlDecoder decoder;
decoder = new PSearchControlDecoder();
controlDecoders.put( decoder.getControlType(), decoder );
decoder = new ManageDsaITControlDecoder();
controlDecoders.put( decoder.getControlType(), decoder );
decoder = new SubEntryControlDecoder();
controlDecoders.put( decoder.getControlType(), decoder );
decoder = new PagedSearchControlDecoder();
controlDecoders.put( decoder.getControlType(), decoder );
}
public void action( IAsn1Container container ) throws DecoderException
{
LdapMessageContainer ldapMessageContainer = ( LdapMessageContainer ) container;
TLV tlv = ldapMessageContainer.getCurrentTLV();
LdapMessage message = ldapMessageContainer.getLdapMessage();
// Get the current control
Control control = message.getCurrentControl();
Value value = tlv.getValue();
ControlDecoder decoder = controlDecoders.get( control.getControlType() );
// Store the value - have to handle the special case of a 0 length value
if ( tlv.getLength() == 0 )
{
control.setControlValue( new byte[]
{} );
}
else
{
Object decoded;
if ( decoder != null )
{
decoded = decoder.decode( value.getData() );
}
else
{
decoded = value.getData();
}
control.setEncodedValue( value.getData() );
control.setControlValue( decoded );
}
// We can have an END transition
ldapMessageContainer.grammarEndAllowed( true );
if ( IS_DEBUG )
{
if ( control.getControlValue() instanceof byte[] )
{
log.debug( "Control value : " + StringTools.dumpBytes( ( byte[] ) control.getControlValue() ) );
}
else if ( control.getControlValue() instanceof String )
{
log.debug( "Control value : " + ( String ) control.getControlValue() );
}
else
{
log.debug( "Control value : " + control.getControlValue() );
}
}
}
}