blob: 46d85348071fa7a647ae246918e30c12be7cfb61 [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;
import org.apache.directory.shared.asn1.ber.AbstractContainer;
import org.apache.directory.shared.asn1.ber.Asn1Container;
import org.apache.directory.shared.ldap.codec.api.LdapCodecService;
import org.apache.directory.shared.ldap.codec.controls.ControlDecorator;
import org.apache.directory.shared.ldap.codec.decorators.MessageDecorator;
import org.apache.directory.shared.ldap.codec.api.BinaryAttributeDetector;
import org.apache.directory.shared.ldap.model.message.Control;
import org.apache.directory.shared.ldap.model.message.Message;
/**
* The LdapMessage container stores all the messages decoded by the Asn1Decoder.
* When dealing with an encoding PDU, we will obtain a LdapMessage in the
* container.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class LdapMessageContainer<E extends MessageDecorator<? extends Message>> extends AbstractContainer
{
/** The Message decorator to store various temporary values */
private E messageDecorator;
/** checks if attribute is binary */
private final BinaryAttributeDetector binaryAttributeDetector;
/** The message ID */
private int messageId;
/** The current control */
private ControlDecorator<? extends Control> currentControl;
/** The codec service */
private final LdapCodecService codec;
/**
* Creates a new LdapMessageContainer object. We will store ten grammars,
* it's enough ...
*/
public LdapMessageContainer( LdapCodecService codec )
{
this( codec, new BinaryAttributeDetector()
{
public boolean isBinary( String attributeId )
{
return false;
}
} );
}
/**
* Creates a new LdapMessageContainer object. We will store ten grammars,
* it's enough ...
*
* @param binaryAttributeDetector checks if an attribute is binary
*/
public LdapMessageContainer( LdapCodecService codec, BinaryAttributeDetector binaryAttributeDetector )
{
super();
this.codec = codec;
this.stateStack = new int[10];
this.grammar = LdapMessageGrammar.getInstance();
this.binaryAttributeDetector = binaryAttributeDetector;
setTransition( LdapStatesEnum.START_STATE );
}
/**
* Gets the {@link LdapCodecService} associated with this {@link Asn1Container}.
*
* @return
*/
public LdapCodecService getLdapCodecService()
{
return codec;
}
/**
* @return Returns the ldapMessage.
*/
public E getMessage()
{
return messageDecorator;
}
/**
* Set a Message Object into the container. It will be completed by the
* ldapDecoder.
*
* @param message The message to set.
*/
public void setMessage( E messageDecorator )
{
this.messageDecorator = messageDecorator;
}
/**
* {@inheritDoc}
*/
public void clean()
{
super.clean();
messageDecorator = null;
messageId = 0;
currentControl = null;
decodeBytes = 0;
}
/**
* @return Returns true if the attribute is binary.
* @param id checks if an attribute id is binary
*/
public boolean isBinary( String id )
{
return binaryAttributeDetector.isBinary( id );
}
/**
* @return The message ID
*/
public int getMessageId()
{
return messageId;
}
/**
* Set the message ID
* @param messageId the id of the message
*/
public void setMessageId( int messageId )
{
this.messageId = messageId;
}
/**
* @return the current control being created
*/
public ControlDecorator<? extends Control> getCurrentControl()
{
return currentControl;
}
/**
* Store a newly created control
* @param currentControl The control to store
*/
public void setCurrentControl( ControlDecorator<? extends Control> currentControl )
{
this.currentControl = currentControl;
}
}