All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.littleshoot.mina.common.SimpleByteBufferAllocator Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
/*
 *  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.littleshoot.mina.common;

import java.nio.ByteOrder;
import java.util.concurrent.atomic.AtomicInteger;

import org.littleshoot.mina.common.support.BaseByteBuffer;

/**
 * A simplistic {@link ByteBufferAllocator} which simply allocates a new
 * buffer every time.
 *
 * @author The Apache Directory Project ([email protected])
 * @version $Rev: 555855 $, $Date: 2007-07-13 12:19:00 +0900 (Fri, 13 Jul 2007) $
 */
public class SimpleByteBufferAllocator implements ByteBufferAllocator {
    private static final int MINIMUM_CAPACITY = 1;

    public SimpleByteBufferAllocator() {
    }

    public ByteBuffer allocate(int capacity, boolean direct) {
        java.nio.ByteBuffer nioBuffer;
        if (direct) {
            nioBuffer = java.nio.ByteBuffer.allocateDirect(capacity);
        } else {
            nioBuffer = java.nio.ByteBuffer.allocate(capacity);
        }
        return new SimpleByteBuffer(nioBuffer);
    }

    public ByteBuffer wrap(java.nio.ByteBuffer nioBuffer) {
        return new SimpleByteBuffer(nioBuffer);
    }

    public void dispose() {
    }

    private static class SimpleByteBuffer extends BaseByteBuffer {
        private java.nio.ByteBuffer buf;

        private final AtomicInteger refCount = new AtomicInteger();

        protected SimpleByteBuffer(java.nio.ByteBuffer buf) {
            this.buf = buf;
            buf.order(ByteOrder.BIG_ENDIAN);
            refCount.set(1);
        }

        @Override
        public void acquire() {
            if (refCount.get() <= 0) {
                throw new IllegalStateException("Already released buffer.");
            }

            refCount.incrementAndGet();
        }

        @Override
        public void release() {
            if (refCount.get() <= 0) {
                refCount.set(0);
                throw new IllegalStateException(
                        "Already released buffer.  You released the buffer too many times.");
            }

            refCount.decrementAndGet();
        }

        @Override
        public java.nio.ByteBuffer buf() {
            return buf;
        }

        @Override
        public boolean isPooled() {
            return false;
        }

        @Override
        public void setPooled(boolean pooled) {
        }

        @Override
        protected void capacity0(int requestedCapacity) {
            int newCapacity = MINIMUM_CAPACITY;
            while (newCapacity < requestedCapacity) {
                newCapacity <<= 1;
            }

            java.nio.ByteBuffer oldBuf = this.buf;
            java.nio.ByteBuffer newBuf;
            if (isDirect()) {
                newBuf = java.nio.ByteBuffer.allocateDirect(newCapacity);
            } else {
                newBuf = java.nio.ByteBuffer.allocate(newCapacity);
            }

            newBuf.clear();
            oldBuf.clear();
            newBuf.put(oldBuf);
            this.buf = newBuf;
        }

        @Override
        public ByteBuffer duplicate() {
            return new SimpleByteBuffer(this.buf.duplicate());
        }

        @Override
        public ByteBuffer slice() {
            return new SimpleByteBuffer(this.buf.slice());
        }

        @Override
        public ByteBuffer asReadOnlyBuffer() {
            return new SimpleByteBuffer(this.buf.asReadOnlyBuffer());
        }

        @Override
        public byte[] array() {
            return buf.array();
        }

        @Override
        public int arrayOffset() {
            return buf.arrayOffset();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy