1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
package com.jidesoft.utils;
import junit.framework.TestCase;
import java.util.ArrayList;
public class TestCachedArrayList extends TestCase {
CachedArrayList cachedList;
ActiveCachedArrayList activeCachedList;
ArrayList list;
public static final int SIZE = 1000;
@Override
protected void setUp() throws Exception {
super.setUp();
long before, after;
list = new ArrayList();
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
list.add(0, String.valueOf(i));
}
after = System.nanoTime();
System.out.println("Creating ArrayList of length " + SIZE
+ " took " + String.valueOf((after - before) / SIZE) + "ms");
cachedList = new CachedArrayList();
// cachedList.setLazyCaching(true);
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
cachedList.add(0, String.valueOf(i));
}
after = System.nanoTime();
System.out.println("Creating CachedArrayList of length " + SIZE
+ " took " + String.valueOf((after - before) / SIZE) + "ms");
activeCachedList = new ActiveCachedArrayList();
// activeCachedList.setLazy(true);
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
activeCachedList.add(0, String.valueOf(i));
}
after = System.nanoTime();
System.out.println("Creating ActiveCachedArrayList of length " + SIZE
+ " took " + String.valueOf((after - before) / SIZE) + "ms");
System.out.println();
}
public void testIndexOf() {
assertEquals(cachedList.indexOf(cachedList.get(SIZE - 1)), list.indexOf(list.get(SIZE - 1)));
assertEquals(cachedList.indexOf(cachedList.get(1)), list.indexOf(list.get(1)));
cachedList.invalidateCache();
}
public void testIndexOfPerformance() {
long before, after;
//
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
list.indexOf("" + i);
}
after = System.nanoTime();
System.out.println("1st Normal: indexof of length " + SIZE
+ " took " + String.valueOf((after - before) / 1000000) + "ms");
before = System.nanoTime();
// cachedList.cacheAll();
for (int i = 0; i < SIZE; i++) {
cachedList.indexOf("" + i);
}
after = System.nanoTime();
System.out.println("1st Cached: indexof of length " + SIZE
+ " took " + String.valueOf((after - before) / 1000000) + "ms");
before = System.nanoTime();
// activeCachedList.recache();
for (int i = 0; i < SIZE; i++) {
activeCachedList.indexOf("" + i);
}
after = System.nanoTime();
System.out.println("1st Active: indexof of length " + SIZE
+ " took " + String.valueOf((after - before) / 1000000) + "ms");
//
System.out.println();
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
list.indexOf("" + i);
}
after = System.nanoTime();
System.out.println("2nd Normal: indexOf ArrayList of length " + SIZE
+ " took " + String.valueOf((after - before) / 1000000) + "ms");
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
cachedList.indexOf("" + i);
}
after = System.nanoTime();
System.out.println("2nd Cached: indexOf ArrayList of length " + SIZE
+ " took " + String.valueOf((after - before) / 1000000) + "ms");
cachedList.invalidateCache();
before = System.nanoTime();
for (int i = 0; i < SIZE; i++) {
activeCachedList.indexOf("" + i);
}
after = System.nanoTime();
System.out.println("2nd Active: indexOf ArrayList of length " + SIZE
+ " took " + String.valueOf((after - before) / 1000000) + "ms");
System.out.println();
}
public void testAddRemove() {
CachedArrayList<String> list = new CachedArrayList();
list.setLazyCaching(false);
list.add("1");
list.add("2");
list.add("3");
assertEquals(3, list.size());
list.add("3");
assertEquals(4, list.size());
assertEquals(2, list.indexOf("3"));
list.add(1, "3");
assertEquals(5, list.size());
assertEquals(1, list.indexOf("3"));
list.clear();
assertEquals(0, list.size());
list.setLazyCaching(true);
list.add("1");
list.add("2");
list.add("3");
assertEquals(3, list.size());
list.add("3");
assertEquals(4, list.size());
assertEquals(2, list.indexOf("3"));
list.add(1, "3");
assertEquals(5, list.size());
assertEquals(1, list.indexOf("3"));
list.clear();
assertEquals(0, list.size());
}
}
|