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

com.github.scr.hashmap.maps.BufferCharSequenceMaps Maven / Gradle / Ivy

Go to download

Readonly Set and Map that use a MappedByteBuffer to load quickly and use minimal Java Heap.

There is a newer version: 1.2.0
Show newest version
/*
The MIT License (MIT)

Copyright (c) 2015 Sheridan C Rawlins

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
 */

package com.github.scr.hashmap.maps;

import com.github.scr.hashmap.collections.*;
import com.github.scr.hashmap.sets.BufferCharSequenceSet;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.nio.*;
import java.nio.channels.FileChannel;
import java.nio.file.Path;
import java.util.Map;

/**
 * Created by scr on 7/3/15.
 */
public class BufferCharSequenceMaps {
    private static final Logger LOGGER = LoggerFactory.getLogger(BufferCharSequenceMaps.class);

    // Integer
    public static BufferCharSequenceMap intMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return intMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap intMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofInt(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static  BufferCharSequenceMap intMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        int numKeys = keys.size();
        IntBuffer valBuffer = IntBuffer.allocate(numKeys);
        map.forEach((k, v) -> {
            try {
                valBuffer.put(keys.getIndex(k), v);
            } catch (Exception e) {
                LOGGER.error("Error getting index for {} -> {}", k, v, e);
                keys.getIndex(k);
            }
        });
        return new BufferCharSequenceMap<>(keys, new IntBufferCollection(valBuffer));
    }

    // Float
    public static BufferCharSequenceMap floatMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return floatMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap floatMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofFloat(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static BufferCharSequenceMap floatMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        FloatBuffer valBuffer = FloatBuffer.allocate(keys.size());
        map.forEach((k, v) -> {
            valBuffer.put(keys.getIndex(k), v);
        });
        return new BufferCharSequenceMap<>(keys, new FloatBufferCollection(valBuffer));
    }

    // Double
    public static BufferCharSequenceMap doubleMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return doubleMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap doubleMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofDouble(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static BufferCharSequenceMap doubleMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        DoubleBuffer valBuffer = DoubleBuffer.allocate(keys.size());
        map.forEach((k, v) -> {
            valBuffer.put(keys.getIndex(k), v);
        });
        return new BufferCharSequenceMap<>(keys, new DoubleBufferCollection(valBuffer));
    }

    // Long
    public static BufferCharSequenceMap longMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return longMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap longMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofLong(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static BufferCharSequenceMap longMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        LongBuffer valBuffer = LongBuffer.allocate(keys.size());
        map.forEach((k, v) -> {
            valBuffer.put(keys.getIndex(k), v);
        });
        return new BufferCharSequenceMap<>(keys, new LongBufferCollection(valBuffer));
    }

    // Short
    public static BufferCharSequenceMap shortMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return shortMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap shortMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofShort(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static BufferCharSequenceMap shortMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        ShortBuffer valBuffer = ShortBuffer.allocate(keys.size());
        map.forEach((k, v) -> {
            valBuffer.put(keys.getIndex(k), v);
        });
        return new BufferCharSequenceMap<>(keys, new ShortBufferCollection(valBuffer));
    }

    // Byte
    public static BufferCharSequenceMap byteMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return byteMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap byteMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofByte(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static BufferCharSequenceMap byteMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        ByteBuffer valBuffer = ByteBuffer.allocate(keys.size());
        map.forEach((k, v) -> {
            valBuffer.put(keys.getIndex(k), v);
        });
        return new BufferCharSequenceMap<>(keys, new ByteBufferCollection(valBuffer));
    }

    // Character
    public static BufferCharSequenceMap characterMap(@NotNull Path filePath) throws IOException {
        try (FileChannel fileChannel = FileChannel.open(filePath)) {
            MappedByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            return characterMap(byteBuffer);
        }
    }

    public static BufferCharSequenceMap characterMap(@NotNull ByteBuffer byteBuffer) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(byteBuffer);
        IndexedCollection vals = BufferCollections.ofCharacter(byteBuffer);
        return new BufferCharSequenceMap<>(keys, vals);
    }

    public static BufferCharSequenceMap characterMap(@NotNull Map map) {
        BufferCharSequenceSet keys = new BufferCharSequenceSet(map.keySet());
        CharBuffer valBuffer = CharBuffer.allocate(keys.size());
        map.forEach((k, v) -> {
            valBuffer.put(keys.getIndex(k), v);
        });
        return new BufferCharSequenceMap<>(keys, new CharacterBufferCollection(valBuffer));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy