From 01ac1b5d7ec6d0bb146e0b51c4819a20dd1adb3c Mon Sep 17 00:00:00 2001 From: apfelmaennchen Date: Sun, 14 Jun 2009 11:53:09 +0000 Subject: [PATCH] - blocking queue implementation of DidYouMean - timeout ist set to 500ms git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6070 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/tools/DidYouMean.java | 148 ++++++++++++++++++------- 1 file changed, 108 insertions(+), 40 deletions(-) diff --git a/source/de/anomic/tools/DidYouMean.java b/source/de/anomic/tools/DidYouMean.java index 50aa0ef72..9ca8e3518 100644 --- a/source/de/anomic/tools/DidYouMean.java +++ b/source/de/anomic/tools/DidYouMean.java @@ -2,6 +2,7 @@ package de.anomic.tools; import java.util.Collections; import java.util.HashSet; +import java.util.LinkedList; import java.util.Set; import de.anomic.kelondro.text.IndexCell; @@ -20,26 +21,26 @@ public class DidYouMean { private static final char[] alphabet = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p', 'q','r','s','t','u','v','w','x','y','z','\u00e4','\u00f6','\u00fc','\u00df'}; - private static final long TIMEOUT = 2000; + private static final long TIMEOUT = 500; private final Set set; private final IndexCell index; private String word; private int len; - private boolean stop; private Thread ChangingOneLetter; private Thread AddingOneLetter; private Thread DeletingOneLetter; private Thread ReversingTwoConsecutiveLetters; + private final BlockingQueue bq = new BlockingQueue(); + public DidYouMean(final IndexCell index) { // this.set = Collections.synchronizedSortedSet(new TreeSet(new wordSizeComparator())); this.set = Collections.synchronizedSet(new HashSet()); this.word = ""; this.len = 0; this.index = index; - this.stop = false; this.ChangingOneLetter = new ChangingOneLetter(); this.AddingOneLetter = new AddingOneLetter(); @@ -52,96 +53,163 @@ public class DidYouMean { this.word = word.toLowerCase(); this.len = word.length(); - this.ChangingOneLetter.start(); - this.AddingOneLetter.start(); - this.DeletingOneLetter.start(); - this.ReversingTwoConsecutiveLetters.start(); + // create worker threads + Thread[] workers = new Thread[8]; + for (int i=0; i 0) { + run = true; + } else { + run = false; + } } + // push "poison pill" for each worker thread + for (int i=0; i queue = new LinkedList(); + + public void push(Thread t) { + synchronized(queue) { + queue.add(t); + queue.notify(); + } + } + public Object pop() throws InterruptedException { + synchronized(queue) { + while (queue.isEmpty()) { + queue.wait(); + } + return queue.removeFirst(); + } + } + public int size() { + return queue.size(); + } + } + /* private class wordSizeComparator implements Comparator { public int compare(final String o1, final String o2) { @@ -151,7 +219,7 @@ public class DidYouMean { } } */ - } +