Package org.codehaus.activemq.transport.activeio

Source Code of org.codehaus.activemq.transport.activeio.PacketAggregator

/**
*
* Copyright 2004 Hiram Chirino
*
*  Licensed 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.codehaus.activemq.transport.activeio;

import java.io.IOException;

import org.activeio.Packet;
import org.activeio.PacketData;
import org.activeio.packet.AppendedPacket;

/**
* @version $Revision: 1.1 $
*/
abstract public class PacketAggregator {

    private static final int HEADER_LENGTH = 5;       

    Packet incompleteUpPacket;
    boolean headerLoaded;
    private int upPacketLength;
   
    public void addRawPacket(Packet packet) throws IOException {

        if (incompleteUpPacket != null) {
            packet = AppendedPacket.join(incompleteUpPacket, packet);
            incompleteUpPacket = null;
        }

        while (true) {

            if (!headerLoaded) {
                headerLoaded = packet.remaining() >= HEADER_LENGTH;
                if( headerLoaded ) {
                    PacketData data = new PacketData(packet.duplicate());
                    data.readByte();
                    upPacketLength = data.readInt();
                    if( upPacketLength < 0 ) {
                        throw new IOException("Up packet lenth was invalid: "+upPacketLength);
                    }
                    upPacketLength+=HEADER_LENGTH;
                }
                if( !headerLoaded )
                    break;
            }

            if (packet.remaining() < upPacketLength )
                break;

            // Get ready to create a slice to send up.
            int origLimit = packet.limit();
            packet.limit(upPacketLength);
            packetAssembled(packet.slice());
           
            // Get a slice of the remaining since that will dump
            // the first packets of an AppendedPacket
            packet = packet.position(upPacketLength).limit(origLimit).slice();

            // Need to load a header again now.
            headerLoaded = false;
        }
        if (packet.hasRemaining()) {
            incompleteUpPacket = packet;
        }
       
    }

    protected abstract void packetAssembled(Packet packet);
}
TOP

Related Classes of org.codehaus.activemq.transport.activeio.PacketAggregator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.