package at.yawk.numaec;

import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.ConcurrentModificationException;
import java.util.Iterator;
import java.util.NoSuchElementException;
import org.eclipse.collections.api.LazyByteIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.Bag;
import org.eclipse.collections.api.bag.primitive.ByteBag;
import org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.BytePredicate;
import org.eclipse.collections.api.block.predicate.primitive.ByteBytePredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteByteProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteProcedure;
import org.eclipse.collections.api.collection.primitive.MutableByteCollection;
import org.eclipse.collections.api.iterator.ByteIterator;
import org.eclipse.collections.api.iterator.MutableByteIterator;
import org.eclipse.collections.api.iterator.ByteIterator;
import org.eclipse.collections.api.map.primitive.ByteByteMap;
import org.eclipse.collections.api.map.primitive.ImmutableByteByteMap;
import org.eclipse.collections.api.map.primitive.ByteByteMap;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.tuple.primitive.ByteBytePair;
import org.eclipse.collections.impl.lazy.AbstractLazyIterable;
import org.eclipse.collections.impl.lazy.primitive.AbstractLazyByteIterable;
import org.eclipse.collections.impl.primitive.AbstractByteIterable;
import org.eclipse.collections.impl.tuple.primitive.PrimitiveTuples;

abstract class BaseByteByteMap extends AbstractByteIterable implements ByteByteMap {
    static final long KEY_MASK = -1L >>> (64 - (Byte.BYTES * 8));
    static final long VALUE_MASK = -1L >>> (64 - (Byte.BYTES * 8));

    static long toKey(byte key) {
        return key & KEY_MASK;
    }

    static long toValue(byte value) {
        return value & VALUE_MASK;
    }

    @SuppressWarnings("ConstantConditions")
    static byte fromKey(long key) {
        if (KEY_MASK != -1) { if (key < 0 || key > KEY_MASK) { throw new IllegalArgumentException(); } }
        return (byte) key;
    }

    @SuppressWarnings("ConstantConditions")
    static byte fromValue(long value) {
        if (VALUE_MASK != -1) { if (value < 0 || value > VALUE_MASK) { throw new IllegalArgumentException(); } }
        return (byte) value;
    }

    protected abstract MapStoreCursor iterationCursor();

    protected abstract MapStoreCursor keyCursor(byte key);

    @DoNotMutate
    void checkInvariants() {
        int count = count(x -> true);
        if (count != size()) { throw new AssertionError(); }
    }

    @Override
    public byte getIfAbsent(byte key, byte ifAbsent) {
        try (MapStoreCursor cursor = keyCursor(key)) {
            if (cursor.elementFound()) {
                return fromValue(cursor.getValue());
            } else {
                return ifAbsent;
            }
        }
    }

    @Override
    public byte getOrThrow(byte key) {
        try (MapStoreCursor cursor = keyCursor(key)) {
            if (cursor.elementFound()) {
                return fromValue(cursor.getValue());
            } else {
                throw new IllegalStateException("Key " + key + " not present");
            }
        }
    }

    @Override
    public boolean containsKey(byte key) {
        try (MapStoreCursor cursor = keyCursor(key)) {
            return cursor.elementFound();
        }
    }

    @Override
    public void forEachKey(ByteProcedure procedure) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                procedure.value(fromKey(cursor.getKey()));
            }
        }
    }

    @Override
    public void forEachKeyValue(ByteByteProcedure procedure) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                procedure.value(fromKey(cursor.getKey()),
                                fromValue(cursor.getValue()));
            }
        }
    }

    @Override
    public LazyByteIterable keysView() {
        return new AbstractLazyByteIterable() {
            @Override
            public ByteIterator byteIterator() {
                return new KeyIterator(iterationCursor());
            }

            @Override
            public void each(ByteProcedure procedure) {
                forEachKey(procedure);
            }
        };
    }

    @Override
    public RichIterable<ByteBytePair> keyValuesView() {
        return new AbstractLazyIterable<ByteBytePair>() {
            @Override
            public Iterator<ByteBytePair> iterator() {
                return new KeyValueIterator(iterationCursor());
            }

            @Override
            public void each(Procedure<? super ByteBytePair> procedure) {
                iterator().forEachRemaining(procedure);
            }
        };
    }

    @Override
    public boolean containsValue(byte value) {
        long needle = toValue(value);
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                if (cursor.getValue() == needle) {
                    return true;
                }
            }
        }
        return false;
    }

    @Override
    public void forEachValue(ByteProcedure procedure) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                procedure.value(fromValue(cursor.getValue()));
            }
        }
    }

    @Override
    public MutableByteIterator byteIterator() {
        return new ValueIterator(iterationCursor());
    }

    @Override
    public byte[] toArray() {
        byte[] data = new byte[size()];
        try (MapStoreCursor cursor = iterationCursor()) {
            int i = 0;
            while (cursor.next()) {
                if (i >= data.length) { throw new ConcurrentModificationException(); }
                data[i++] = fromValue(cursor.getValue());
            }
            if (i < data.length) { throw new ConcurrentModificationException(); }
            return data;
        }
    }

    @Override
    public byte detectIfNone(BytePredicate predicate, byte ifNone) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                byte value = fromValue(cursor.getValue());
                if (predicate.accept(value)) {
                    return value;
                }
            }
        }
        return ifNone;
    }

    @Override
    public int count(BytePredicate predicate) {
        int count = 0;
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                byte value = fromValue(cursor.getValue());
                if (predicate.accept(value)) {
                    count++;
                }
            }
        }
        return count;
    }

    @Override
    public boolean anySatisfy(BytePredicate predicate) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                byte value = fromValue(cursor.getValue());
                if (predicate.accept(value)) {
                    return true;
                }
            }
        }
        return false;
    }

    @Override
    public boolean allSatisfy(BytePredicate predicate) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                byte value = fromValue(cursor.getValue());
                if (!predicate.accept(value)) {
                    return false;
                }
            }
        }
        return true;
    }

    @Override
    public <T> T injectInto(T injectedValue, ObjectByteToObjectFunction<? super T, ? extends T> function) {
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                injectedValue = function.valueOf(injectedValue, fromValue(cursor.getValue()));
            }
        }
        return injectedValue;
    }

    @Override
    public long
 sum() {
        long
 sum = 0;
        try (MapStoreCursor cursor = iterationCursor()) {
            while (cursor.next()) {
                sum += fromValue(cursor.getValue());
            }
        }
        return sum;
    }

    @Override
    public byte max() {
        try (MapStoreCursor cursor = iterationCursor()) {
            if (!cursor.next()) { throw new NoSuchElementException(); }
            byte max = fromValue(cursor.getValue());
            while (cursor.next()) {
                max = (byte) Math.max(max, fromValue(cursor.getValue()));
            }
            return max;
        }
    }

    @Override
    public byte min() {
        try (MapStoreCursor cursor = iterationCursor()) {
            if (!cursor.next()) { throw new NoSuchElementException(); }
            byte min = fromValue(cursor.getValue());
            while (cursor.next()) {
                min = (byte) Math.min(min, fromValue(cursor.getValue()));
            }
            return min;
        }
    }

    @Override
    public void appendString(Appendable appendable, String start, String separator, String end) {
        try (MapStoreCursor cursor = iterationCursor()) {
            appendable.append(start);
            boolean first = true;
            while (cursor.next()) {
                if (first) {
                    first = false;
                } else {
                    appendable.append(separator);
                }
                appendable.append(String.valueOf(fromValue(cursor.getValue())));
            }
            appendable.append(end);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }

    @Override
    public String toString() {
        StringBuilder builder = new StringBuilder("{");
        try (MapStoreCursor cursor = iterationCursor()) {
            boolean first = true;
            while (cursor.next()) {
                if (first) {
                    first = false;
                } else {
                    builder.append(", ");
                }
                builder.append(fromKey(cursor.getKey()))
                        .append('=')
                        .append(fromValue(cursor.getValue()));
            }
            return builder.append('}').toString();
        }
    }

    @Override
    public byte get(byte key) {
        return getIfAbsent(key, (byte) 0);
    }

    @Override
    public ByteByteMap flipUniqueValues() {
        throw new UnsupportedOperationException("ByteByteBufferMap.flipUniqueValues not implemented yet");
    }

    @Override
    public ByteByteMap select(ByteBytePredicate predicate) {
        throw new UnsupportedOperationException("ByteByteBufferMap.select not implemented yet");
    }

    @Override
    public ByteByteMap reject(ByteBytePredicate predicate) {
        throw new UnsupportedOperationException("ByteByteBufferMap.reject not implemented yet");
    }

    @Override
    public ImmutableByteByteMap toImmutable() {
        throw new UnsupportedOperationException("ByteByteBufferMap.toImmutable not implemented yet");
    }

    @Override
    public MutableByteSet keySet() {
        throw new UnsupportedOperationException("ByteByteBufferMap.keySet not implemented yet");
    }

    @Override
    public MutableByteCollection values() {
        throw new UnsupportedOperationException("ByteByteBufferMap.values not implemented yet");
    }

    @Override
    public ByteBag select(BytePredicate predicate) {
        throw new UnsupportedOperationException("ByteByteBufferMap.select not implemented yet");
    }

    @Override
    public ByteBag reject(BytePredicate predicate) {
        throw new UnsupportedOperationException("ByteByteBufferMap.reject not implemented yet");
    }

    @Override
    public <V> Bag<V> collect(ByteToObjectFunction<? extends V> function) {
        throw new UnsupportedOperationException("ByteByteBufferMap.collect not implemented yet");
    }

    @Override
    public boolean contains(byte value) {
        return containsValue(value);
    }

    @Override
    public void forEach(ByteProcedure procedure) {
        forEachValue(procedure);
    }

    @Override
    public void each(ByteProcedure procedure) {
        forEachValue(procedure);
    }

    @Override
    public boolean noneSatisfy(BytePredicate predicate) {
        return !anySatisfy(predicate);
    }

    private static abstract class BaseIterator {
        
this cursor is never closed, but since all MapStoreCursor.close() does is make it available for reuse, that's not too bad.
/** * this cursor is never closed, but since all {@link MapStoreCursor#close()} does is make it available for * reuse, that's not too bad. */
protected final MapStoreCursor cursor; private boolean peeked; BaseIterator(MapStoreCursor cursor) { this.cursor = cursor; } protected void next0() { if (!hasNext()) { throw new NoSuchElementException(); } peeked = false; } public boolean hasNext() { if (peeked) { return true; } else { return peeked = cursor.next(); } } } private static class KeyIterator extends BaseIterator implements ByteIterator { KeyIterator(MapStoreCursor cursor) { super(cursor); } @Override public byte next() { next0(); return fromKey(cursor.getKey()); } } private static class KeyValueIterator extends BaseIterator implements Iterator<ByteBytePair> { KeyValueIterator(MapStoreCursor cursor) { super(cursor); } @Override public ByteBytePair next() { next0(); return PrimitiveTuples.pair(fromKey(cursor.getKey()), fromValue(cursor.getValue())); } } protected static class ValueIterator extends BaseIterator implements ByteIterator, MutableByteIterator { ValueIterator(MapStoreCursor cursor) { super(cursor); } @Override public byte next() { next0(); return fromValue(cursor.getValue()); } @Override public void remove() { throw new UnsupportedOperationException("ValueIterator.remove not implemented yet"); } } }