From 32c8712607d434660eb875278b63256fb0f5feb3 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 13 Nov 2016 15:17:06 +0100 Subject: [PATCH] Major fix - Fixed fatal but with foreach on ShiftingList --- .idea/artifacts/libRefTools_jar.xml | 2 +- .../tofvesson/collections/ShiftingList.java | 6 ++-- .../tofvesson/reflection/SafeReflection.java | 33 +++++++++++++++++++ 3 files changed, 38 insertions(+), 3 deletions(-) diff --git a/.idea/artifacts/libRefTools_jar.xml b/.idea/artifacts/libRefTools_jar.xml index 612151f..1998203 100644 --- a/.idea/artifacts/libRefTools_jar.xml +++ b/.idea/artifacts/libRefTools_jar.xml @@ -1,7 +1,7 @@ $PROJECT_DIR$/out/artifacts/libRefTools_jar - + diff --git a/src/com/tofvesson/collections/ShiftingList.java b/src/com/tofvesson/collections/ShiftingList.java index 67b525c..9047634 100644 --- a/src/com/tofvesson/collections/ShiftingList.java +++ b/src/com/tofvesson/collections/ShiftingList.java @@ -1,6 +1,7 @@ package com.tofvesson.collections; import java.util.ArrayList; +import java.util.Arrays; import java.util.Collection; import java.util.List; @@ -188,6 +189,7 @@ public class ShiftingList implements List { } Object[] o = new Object[(int) Math.max(1, Math.min((pop+accountFor)/load, maxSize))]; // Load adaptation algorithm capping at maxSize or 0 System.arraycopy(entries, 0, o, 0, Math.min(o.length, entries.length)); // Move as many entries as possible + entries = o; } /** @@ -205,7 +207,7 @@ public class ShiftingList implements List { } protected void preparePopulate(int accountFor){ - if(accountFor>entries.length) adaptLoad(accountFor); // If new elements exceed limit, adapt load + if(accountFor+pop>entries.length) adaptLoad(accountFor); // If new elements exceed limit, adapt load if(accountFor>entries.length) return; // No need to delete elements if new values exceed limit System.arraycopy(entries, 0, entries, accountFor, entries.length-accountFor); // Shift array elements to account for new elements } @@ -286,7 +288,7 @@ public class ShiftingList implements List { private final Object[] entries; public Iterator(int pop, Object[] entries){ this.pop = pop; this.entries = entries; } @Override public boolean hasNext() { return counter Return-type of constructor. + * @return Constructor with specified parameter requirements or null if constructor doesn't exist. + */ + public static Constructor getConstructor(Class c, Class... params){ + try{ + Constructor c1 = c.getConstructor(params); + c1.setAccessible(true); + return c1; + }catch(Exception e){} + return null; + } + + /** + * Gets the first constructor available from the given class. + * @param c Class to get constructor from. + * @param Return-type of constructor. + * @return Constructor or null if something goes horribly wrong. + */ + public static Constructor getFirstConstructor(Class c){ + try { + Constructor c1 = (Constructor) c.getDeclaredConstructors()[0]; + c1.setAccessible(true); + return c1; + }catch (Exception e){} + return null; + } + /** * Gets the method from the defined class by name and parameters. * Method is accessible.