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

org.apache.phoenix.iterate.MappedByteBufferQueue Maven / Gradle / Ivy

There is a newer version: 4.15.0-HBase-1.5
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.apache.phoenix.iterate;

import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileChannel.MapMode;
import java.util.AbstractQueue;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.Queue;
import java.util.UUID;

import com.google.common.collect.Lists;
import com.google.common.collect.MinMaxPriorityQueue;

public abstract class MappedByteBufferQueue extends AbstractQueue {
    private final int thresholdBytes;
    private List> queues;
    private int currentIndex;
    private MappedByteBufferSegmentQueue currentQueue;
    private MinMaxPriorityQueue> mergedQueue;

    public MappedByteBufferQueue(int thresholdBytes) {
        this.thresholdBytes = thresholdBytes;
        this.queues = Lists.> newArrayList();
        this.currentIndex = -1;
        this.currentQueue = null;
        this.mergedQueue = null;
    }
    
    abstract protected MappedByteBufferSegmentQueue createSegmentQueue(int index, int thresholdBytes);
    
    abstract protected Comparator> getSegmentQueueComparator();
    
    protected final List> getSegmentQueues() {
        return queues.subList(0, currentIndex + 1);
    }

    @Override
    public boolean offer(T e) {
        boolean startNewQueue = this.currentQueue == null || this.currentQueue.isFlushed();
        if (startNewQueue) {
            currentIndex++;
            if (currentIndex < queues.size()) {
                currentQueue = queues.get(currentIndex);
            } else {
                currentQueue = createSegmentQueue(currentIndex, thresholdBytes);
                queues.add(currentQueue);
            }
        }

        return this.currentQueue.offer(e);
    }

    @Override
    public T poll() {
        initMergedQueue();
        if (mergedQueue != null && !mergedQueue.isEmpty()) {
            MappedByteBufferSegmentQueue queue = mergedQueue.poll();
            T re = queue.poll();
            if (queue.peek() != null) {
                mergedQueue.add(queue);
            }
            return re;
        }
        return null;
    }

    @Override
    public T peek() {
        initMergedQueue();
        if (mergedQueue != null && !mergedQueue.isEmpty()) {
            return mergedQueue.peek().peek();
        }
        return null;
    }
    
    @Override
    public void clear() {
        for (MappedByteBufferSegmentQueue queue : getSegmentQueues()) {
            queue.clear();
        }
        currentIndex = -1;
        currentQueue = null;
        mergedQueue = null;
    }

    @Override
    public Iterator iterator() {
        throw new UnsupportedOperationException();
    }

    @Override
    public int size() {
        int size = 0;
        for (MappedByteBufferSegmentQueue queue : getSegmentQueues()) {
            size += queue.size();
        }
        return size;
    }
    
    public long getByteSize() {
        return currentQueue == null ? 0 : currentQueue.getInMemByteSize();
    }

    public void close() {
        for (MappedByteBufferSegmentQueue queue : queues) {
            queue.close();
        }
        queues.clear();
    }
    
    private void initMergedQueue() {
        if (mergedQueue == null && currentIndex >= 0) {
            mergedQueue = MinMaxPriorityQueue.> orderedBy(
                    getSegmentQueueComparator()).maximumSize(currentIndex + 1).create();
            for (MappedByteBufferSegmentQueue queue : getSegmentQueues()) {
                T re = queue.peek();
                if (re != null) {
                    mergedQueue.add(queue);
                }
            }
        }        
    }

    public abstract static class MappedByteBufferSegmentQueue extends AbstractQueue {
        protected static final int EOF = -1;
        // at least create 128 KB MappedByteBuffers
        private static final long DEFAULT_MAPPING_SIZE = 128 * 1024;
        
        private final int index;
        private final int thresholdBytes;
        private final boolean hasMaxQueueSize;
        private long totalResultSize = 0;
        private int maxResultSize = 0;
        private long mappingSize = 0;
        private File file;
        private boolean isClosed = false;
        private boolean flushBuffer = false;
        private int flushedCount = 0;
        private T current = null;
        private SegmentQueueFileIterator thisIterator;
        // iterators to close on close()
        private List iterators;

        public MappedByteBufferSegmentQueue(int index, int thresholdBytes, boolean hasMaxQueueSize) {
            this.index = index;
            this.thresholdBytes = thresholdBytes;
            this.hasMaxQueueSize = hasMaxQueueSize;
            this.iterators = Lists. newArrayList();
        }
        
        abstract protected Queue getInMemoryQueue();
        abstract protected int sizeOf(T e);
        abstract protected void writeToBuffer(MappedByteBuffer buffer, T e);
        abstract protected T readFromBuffer(MappedByteBuffer buffer);
        
        public int index() {
            return this.index;
        }
        
        @Override
        public int size() {
            if (flushBuffer)
                return flushedCount;
            return getInMemoryQueue().size();
        }
        
        public long getInMemByteSize() {
            if (flushBuffer)
                return 0;
            return totalResultSize;
        }
        
        public boolean isFlushed() {
            return flushBuffer;
        }

        @Override
        public boolean offer(T e) {
            if (isClosed || flushBuffer)
                return false;
            
            boolean added = getInMemoryQueue().add(e);
            if (added) {
                try {
                    flush(e);
                } catch (IOException ex) {
                    throw new RuntimeException(ex);
                }
            }
            
            return added;
        }
        
        @Override
        public T peek() {
            if (current == null && !isClosed) {
                current = next();
            }
            
            return current;
        }
        
        @Override
        public T poll() {
            T ret = peek();
            if (!isClosed) {
                current = next();
            } else {
                current = null;
            }
            
            return ret;
        }

        @Override
        public Iterator iterator() {
            if (isClosed)
                return null;
            
            if (!flushBuffer)
                return getInMemoryQueue().iterator();
            
            SegmentQueueFileIterator iterator = new SegmentQueueFileIterator(thisIterator);
            iterators.add(iterator);
            return iterator;
        }

        @Override
        public void clear() {
            getInMemoryQueue().clear();
            this.totalResultSize = 0;
            this.maxResultSize = 0;
            this.mappingSize = 0;
            this.flushBuffer = false;
            this.flushedCount = 0;
            this.current = null;
            if (thisIterator != null) {
                thisIterator.close();
                thisIterator = null;
            }
            for (SegmentQueueFileIterator iter : iterators) {
                iter.close();
            }
            iterators.clear();
            if (this.file != null) {
                file.delete();
                file = null;
            }
        }
        
        public void close() {
            if (!isClosed) {
                clear();
                this.isClosed = true;
            }
        }
        
        private T next() {
            T ret = null;            
            if (!flushBuffer) {
                ret = getInMemoryQueue().poll();
            } else {
                if (thisIterator == null) {
                    thisIterator = new SegmentQueueFileIterator();
                }
                ret = thisIterator.next();
            }
            
            if (ret == null) {
                close();
            }
            
            return ret;
        }

        private void flush(T entry) throws IOException {
            Queue inMemQueue = getInMemoryQueue();
            int resultSize = sizeOf(entry);
            maxResultSize = Math.max(maxResultSize, resultSize);
            totalResultSize = hasMaxQueueSize ? maxResultSize * inMemQueue.size() : (totalResultSize + resultSize);
            if (totalResultSize >= thresholdBytes) {
                this.file = File.createTempFile(UUID.randomUUID().toString(), null);
                RandomAccessFile af = new RandomAccessFile(file, "rw");
                FileChannel fc = af.getChannel();
                int writeIndex = 0;
                mappingSize = Math.min(Math.max(maxResultSize, DEFAULT_MAPPING_SIZE), totalResultSize);
                MappedByteBuffer writeBuffer = fc.map(MapMode.READ_WRITE, writeIndex, mappingSize);

                int resSize = inMemQueue.size();
                for (int i = 0; i < resSize; i++) {                
                    T e = inMemQueue.poll();
                    writeToBuffer(writeBuffer, e);
                    // buffer close to exhausted, re-map.
                    if (mappingSize - writeBuffer.position() < maxResultSize) {
                        writeIndex += writeBuffer.position();
                        writeBuffer = fc.map(MapMode.READ_WRITE, writeIndex, mappingSize);
                    }
                }
                writeBuffer.putInt(EOF); // end
                fc.force(true);
                fc.close();
                af.close();
                flushedCount = resSize;
                inMemQueue.clear();
                flushBuffer = true;
            }
        }
        
        private class SegmentQueueFileIterator implements Iterator, Closeable {
            private boolean isEnd;
            private long readIndex;
            private RandomAccessFile af;
            private FileChannel fc;
            private MappedByteBuffer readBuffer;
            private T next;
            
            public SegmentQueueFileIterator() {
                init(0);
            }
            
            public SegmentQueueFileIterator(SegmentQueueFileIterator iterator) {
                if (iterator != null && iterator.isEnd) {
                    this.isEnd = true;
                } else {
                    init(iterator == null ? 0 : iterator.readIndex);
                }
            }
            
            private void init(long readIndex) {
                this.isEnd = false;
                this.readIndex = readIndex;
                this.next = null;
                try {
                    this.af = new RandomAccessFile(file, "r");
                    this.fc = af.getChannel();
                    this.readBuffer = fc.map(MapMode.READ_ONLY, readIndex, mappingSize);
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            @Override
            public boolean hasNext() {
                if (!isEnd && next == null) {
                    next = readNext();
                }
                
                return next != null;
            }

            @Override
            public T next() {
                if (!hasNext())
                    return null;
                
                T ret = next;
                next = readNext();
                return ret;
            }
            
            private T readNext() {
                if (isEnd)
                    return null;
                
                T e = readFromBuffer(readBuffer);
                if (e == null) {
                    close();
                    return null;
                }
                
                // buffer close to exhausted, re-map.
                if (mappingSize - readBuffer.position() < maxResultSize) {
                    readIndex += readBuffer.position();
                    try {
                        readBuffer = fc.map(MapMode.READ_ONLY, readIndex, mappingSize);
                    } catch (IOException ex) {
                        throw new RuntimeException(ex);
                    }
                }
                
                return e;
            }

            @Override
            public void remove() {
                throw new UnsupportedOperationException();
            }

            @Override
            public void close() {
                this.isEnd = true;
                if (this.fc != null) {
                    try {
                        this.fc.close();
                    } catch (IOException ignored) {
                    }
                }
                if (this.af != null) {
                    try {
                        this.af.close();
                    } catch (IOException ignored) {
                    }
                    this.af = null;
                }
            }
        }
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy