ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/CollectionWordLoops.java
Revision: 1.7
Committed: Mon Dec 5 04:08:46 2011 UTC (12 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.6: +2 -2 lines
Log Message:
whitespace

File Contents

# User Rev Content
1 dl 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain, as explained at
4 jsr166 1.6 * http://creativecommons.org/publicdomain/zero/1.0/
5 dl 1.1 */
6     import java.util.*;
7     import java.io.*;
8    
9     public class CollectionWordLoops {
10    
11     static final String[] WORDS_FILES = {
12 jsr166 1.3 "kw.txt",
13 dl 1.1 "class.txt",
14 dl 1.2 // "dir.txt",
15 jsr166 1.3 // "ids.txt",
16     // "/usr/dict/words",
17 dl 1.1 };
18    
19     static final int MAX_WORDS = 500000;
20     static final int pinsert = 80;
21     static final int premove = 2;
22     static final int NOPS = 100000;
23     static final int numTests = 2;
24    
25     public static void main(String[] args) {
26     Class collectionClass = null;
27     try {
28     collectionClass = Class.forName(args[0]);
29 jsr166 1.4 } catch (ClassNotFoundException e) {
30 dl 1.1 throw new RuntimeException("Class " + args[0] + " not found.");
31     }
32    
33     System.out.println("Testing " + collectionClass.getName());
34    
35 jsr166 1.3 for (int s = 0; s < WORDS_FILES.length; ++s)
36 dl 1.1 tests(collectionClass, numTests, s);
37    
38 jsr166 1.3 for (int s = WORDS_FILES.length-1; s >= 0; --s)
39 dl 1.1 tests(collectionClass, numTests, s);
40    
41     }
42    
43     static void tests(Class collectionClass, int numTests, int sizeIndex) {
44 jsr166 1.3 try {
45 dl 1.1 String[] key = readWords(sizeIndex);
46     int size = key.length;
47 jsr166 1.3
48 dl 1.1 System.out.print("n = " +LoopHelpers.rightJustify(size) +" : ");
49     long least = Long.MAX_VALUE;
50 jsr166 1.3
51 dl 1.1 for (int i = 0; i < numTests; ++i) {
52     Collection<String> m = newCollection(collectionClass);
53     long t = doTest(collectionClass.getName(), m, key);
54     if (t < least) least = t;
55     m.clear();
56     m = null;
57     }
58 jsr166 1.3
59 dl 1.1 long nano = Math.round(1000000.0 * (least) / NOPS);
60     System.out.println(LoopHelpers.rightJustify(nano) + " ns per op");
61     } catch (IOException ignore) {
62     return; // skip test if can't read file
63     }
64     }
65    
66    
67     static Collection<String> newCollection(Class cl) {
68     try {
69 jsr166 1.5 Collection m = (Collection<String>) cl.newInstance();
70 dl 1.1 return m;
71 jsr166 1.4 } catch (Exception e) {
72 dl 1.1 throw new RuntimeException("Can't instantiate " + cl + ": " + e);
73     }
74     }
75    
76     static void pause() {
77 jsr166 1.4 try { Thread.sleep(100); }
78     catch (InterruptedException ie) { return; }
79 dl 1.1 }
80    
81     static String[] readWords(int sizeIndex) throws IOException {
82     String[] l = new String[MAX_WORDS];
83     String[] array = null;
84     try {
85     FileReader fr = new FileReader(WORDS_FILES[sizeIndex]);
86     BufferedReader reader = new BufferedReader(fr);
87     int k = 0;
88     for (;;) {
89     String s = reader.readLine();
90     if (s == null) break;
91     l[k++] = s;
92     }
93     array = new String[k];
94     for (int i = 0; i < k; ++i) {
95     array[i] = l[i];
96     l[i] = null;
97     }
98     l = null;
99     reader.close();
100     }
101     catch (IOException ex) {
102     System.out.println("Can't read words file:" + ex);
103     throw ex;
104     }
105     return array;
106     }
107    
108     static long doTest(String name,
109 jsr166 1.3 final Collection<String> m,
110 dl 1.1 final String[] key) {
111    
112     // System.out.print(name + "\t");
113     Runner runner = new Runner(m, key);
114     long startTime = System.currentTimeMillis();
115     runner.run();
116     long afterRun = System.currentTimeMillis();
117 jsr166 1.7 long runTime = afterRun - startTime;
118 dl 1.1 int np = runner.total;
119 jsr166 1.3 if (runner.total == runner.hashCode())
120 dl 1.1 System.out.println("Useless Number" + runner.total);
121     int sz = runner.maxsz;
122 jsr166 1.3 if (sz == runner.hashCode())
123 dl 1.1 System.out.println("Useless Number" + sz);
124     // System.out.print(" m = " + sz);
125     return runTime;
126     }
127    
128    
129     static class Runner implements Runnable {
130     final Collection<String> collection;
131     final String[] key;
132     LoopHelpers.SimpleRandom rng = new LoopHelpers.SimpleRandom();
133     final int pctrem;
134     final int pctins;
135     int nputs = 0;
136     int npgets = 0;
137     int nagets = 0;
138     int nremoves = 0;
139     volatile int total;
140     int maxsz;
141    
142     Runner(Collection<String> m, String[] k) {
143 jsr166 1.3 collection = m; key = k;
144 dl 1.1 pctrem = (int)(((long)premove * (long)(Integer.MAX_VALUE/2)) / 50);
145     pctins = (int)(((long)pinsert * (long)(Integer.MAX_VALUE/2)) / 50);
146     }
147    
148    
149     int oneStep(int j) {
150     int n = key.length;
151     int r = rng.next() & 0x7FFFFFFF;
152     int jinc = (r & 7);
153     j += jinc - 3;
154 jsr166 1.3 if (j >= n) j -= n;
155 dl 1.1 if (j < 0) j += n;
156    
157     int l = n / 4 + j;
158 jsr166 1.3 if (l >= n) l -= n;
159    
160 dl 1.1 String k = key[j];
161 jsr166 1.3
162 dl 1.1 if (!collection.contains(k)) {
163     ++nagets;
164     if (r < pctins) {
165     collection.add(k);
166     ++nputs;
167     int csz = nputs - nremoves;
168     if (csz > maxsz) maxsz = csz;
169     }
170     }
171     else {
172     ++npgets;
173     if (r < pctrem) {
174     collection.remove(k);
175     ++nremoves;
176 jsr166 1.7 j += ((r >>> 8) & 7) + n / 2;
177 dl 1.1 if (j >= n) j -= n;
178     }
179     }
180     return j;
181     }
182    
183     public void run() {
184     int j = key.length / 2;
185     for (int i = 0; i < NOPS; ++i) {
186     j = oneStep(j);
187     }
188     total = nputs + npgets + nagets + nremoves;
189     }
190     }
191    
192     }