diff --git a/src/com/tofvesson/async/Test.java b/src/com/tofvesson/async/Test.java index 87d2524..6cd9918 100644 --- a/src/com/tofvesson/async/Test.java +++ b/src/com/tofvesson/async/Test.java @@ -1,69 +1,9 @@ package com.tofvesson.async; -import jdk.internal.org.objectweb.asm.ClassWriter; -import jdk.internal.org.objectweb.asm.MethodVisitor; -import static org.objectweb.asm.Opcodes.*; +import com.tofvesson.collections.ShiftingList; public class Test { - - public Test(){} - public static void main(String[] args) throws Exception { - - - - - - // Create new class with an automatically calculated max variable and constant pool - ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_MAXS); - - // Start visiting class - cw.visit(V1_8 /* Version of Java to compile with */, - ACC_PUBLIC /* Access permissions */, - "TClass", /* Simple class name */ - "Lcom/tofvesson/async/TClass;", /* Fully qualified class signature */ - "Ljava/lang/Object;", /* Superclass */ - null /* Interfaces */ - ); - - // Start visiting constructor "TClass()" - MethodVisitor mv = cw.visitMethod( - ACC_PUBLIC, /* Access permissions */ - "", /* Method name */ - "Lcom/tofvesson/async/TClass;", /* Method descriptor */ - "()V", /* Method signature */ - null /* Exceptions */ - ); - - // Invoke super() on inherited Object - mv.visitVarInsn(ALOAD, 0); // Load "this" from local constant pool and put on stack - mv.visitMethodInsn( - INVOKESPECIAL, /* How to invoke method ("Special" for invoking super()) */ - "java/lang/Object", /* Class where method is defined */ - "", /* Method to invoke */ - "()V", /* Target method signature */ - false /* Is target object an object generified to an interface (interface method) */ - ); - - mv.visitMethodInsn(INVOKESTATIC, "com/tofvesson/async/Test", "test", "()V", false); - - // Return - mv.visitInsn(RETURN); - - // Stop visiting constructor - mv.visitEnd(); - - // Stop visiting class - cw.visitEnd(); - - + ShiftingList l = new ShiftingList<>(5); } - - public void run(){ - System.out.println("Hello"); - } - - private static void test(){ System.out.println("Called incorrectly"); } - - } diff --git a/src/com/tofvesson/collections/ShiftingList.java b/src/com/tofvesson/collections/ShiftingList.java new file mode 100644 index 0000000..0f78026 --- /dev/null +++ b/src/com/tofvesson/collections/ShiftingList.java @@ -0,0 +1,280 @@ +package com.tofvesson.collections; + + +import java.util.*; + +public class ShiftingList implements Map { + + final ShiftingSet keys; + final ShiftingSet values; + + + public ShiftingList(int maxSize){ + this(maxSize, 0.75f); + } + + public ShiftingList(int maxSize, float load){ + keys = new ShiftingSet<>(maxSize, load); + values = new ShiftingSet<>(maxSize, load); + } + + + @Override + public int size() { + return 0; + } + + @Override + public boolean isEmpty() { + return true; + } + + @Override + public boolean containsKey(Object key) { + return false; + } + + @Override + public boolean containsValue(Object value) { + return false; + } + + @Override + public V get(Object key) { + return null; + } + + @Override + public V remove(Object key) { + return null; + } + + @Override + public void putAll(Map m) { + + } + + @Override + public void clear() { + + } + + @Override + public Set keySet() { + + return null; + } + + @Override + public Collection values() { + return null; + } + + @Override + public Set> entrySet() { + return null; + } + + @Override + public V put(K key, V value) { + return null; + } + + + /** + * Entries dynamically update as underlying sets change + * @param + * @param + */ + static class ShiftingEntry implements Entry{ + + private ShiftingSet keys; + private ShiftingSet values; + private int index = 0; + + public ShiftingEntry(ShiftingSet keys, ShiftingSet values, int index){ + this.keys = keys; + this.values = values; + this.index = index; + } + + @Override + public K getKey() { + return (K) keys.set[index]; + } + + @Override + public V getValue() { + return (V) values.set[index]; + } + + @Override + public V setValue(V value) { + V v=getValue(); + values.set[index]=value; + return v; + } + } + + static class ShiftingSet implements Set{ + + Object[] set = new Object[1]; + final int maxSize; + final float loadFactor; + int populatedEntries = 0; + + public ShiftingSet(int maxSize, float loadFactor){ + this.maxSize = maxSize<=0?20:maxSize; + this.loadFactor = loadFactor<=0.1?0.75f:loadFactor; + } + + @Override + public int size() { + return set.length; + } + + @Override + public boolean isEmpty() { + return set.length==1 && set[0]==null; + } + + @Override + public boolean contains(Object o) { + if(o==null) return false; + for(Object o1 : set) + if(o.equals(o1)) + return true; + return false; + } + + @Override + public Iterator iterator() { + return new ShiftingIterator<>(this); + } + + @Override + public Object[] toArray() { + return set; + } + + @Override + public T[] toArray(T[] a) { + return (T[]) set; + } + + @Override + public boolean add(E e) { + if(contains(e)) return false; + populatedEntries=populatedEntries c) { + int i = 0; + int j = 0; + for(Object o : c) { + ++j; + for (Object o1 : set) + if (o.equals(o1)) ++i; + } + return j==i; + } + + @Override + public boolean addAll(Collection c) { + ArrayList l = new ArrayList<>(); + for(Object e : c) + for (Object o : set) { + if (e.equals(o)){ + l.remove(e); + break; + } + l.add(e); + } + if(l.size()==0) return false; + int tmp = populatedEntries; + populatedEntries=populatedEntries+l.size()0; --i) if(i c) { + return false; + } + + @Override + public boolean removeAll(Collection c) { + int i = 0; // Tracker for how many entries were removed + for(Object o : c) // Check against every element to remove + for(int j = 0; j implements Iterator{ + + private final ShiftingSet s; + private int ctr = -1; + + public ShiftingIterator(ShiftingSet s){ + this.s=s; + } + + @Override + public boolean hasNext() { + return ctr+1<=s.set.length-1; + } + + @Override + public E next() { + if(!hasNext()) return null; + return (E) s.set[++ctr]; + } + } +}