enhanced synchronization in balancer

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2291 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 3879a0ecd0
commit 7935f27038

@ -78,8 +78,10 @@ public class plasmaCrawlBalancer {
} }
public void reset() { public void reset() {
stack = kelondroStack.reset(stack); synchronized (domainStacks) {
domainStacks = new HashMap(); stack = kelondroStack.reset(stack);
domainStacks.clear();
}
} }
public Iterator iterator() { public Iterator iterator() {
@ -92,8 +94,9 @@ public class plasmaCrawlBalancer {
} }
private int sizeDomainStacks() { private int sizeDomainStacks() {
if (domainStacks == null) return 0;
int sum = 0; int sum = 0;
if (domainStacks != null) synchronized (domainStacks) { synchronized (domainStacks) {
Iterator i = domainStacks.values().iterator(); Iterator i = domainStacks.values().iterator();
while (i.hasNext()) sum += ((ArrayList) i.next()).size(); while (i.hasNext()) sum += ((ArrayList) i.next()).size();
} }
@ -119,17 +122,18 @@ public class plasmaCrawlBalancer {
while (domainStacks.size() > 0) flushOnce(); while (domainStacks.size() > 0) flushOnce();
} }
public synchronized void add(String domain, byte[] hash) throws IOException { public void add(String domain, byte[] hash) throws IOException {
//stack.push(new byte[][]{hash}); synchronized (domainStacks) {
ArrayList domainList = (ArrayList) domainStacks.get(domain); ArrayList domainList = (ArrayList) domainStacks.get(domain);
if (domainList == null) { if (domainList == null) {
// create new list // create new list
domainList = new ArrayList(); domainList = new ArrayList();
domainList.add(hash); domainList.add(hash);
domainStacks.put(domain, domainList); domainStacks.put(domain, domainList);
} else { } else {
// extend existent domain list // extend existent domain list
domainList.add(hash); domainList.add(hash);
}
} }
// check size of domainStacks and flush // check size of domainStacks and flush
@ -138,27 +142,33 @@ public class plasmaCrawlBalancer {
} }
} }
public synchronized Object[] /*String, byte[]*/ get() throws IOException { public Object[] /*String, byte[]*/ get() throws IOException {
// returns a pair of domain/hash from the stack // returns a pair of domain/hash from the stack
// if the domain is unknown, a null/hash is returned // if the domain is unknown, a null/hash is returned
if (stack.size() > 0) { synchronized (domainStacks) {
return new Object[]{null, stack.pop().getColBytes(0)}; if (stack.size() > 0) {
} else if (domainStacks.size() > 0) { return new Object[]{null, stack.pop().getColBytes(0)};
flushOnce(); } else if (domainStacks.size() > 0) {
return new Object[]{null, stack.pop().getColBytes(0)}; flushOnce();
} else { return new Object[]{null, stack.pop().getColBytes(0)};
return null; } else {
return null;
}
} }
} }
public synchronized byte[] top(int dist) throws IOException { public byte[] top(int dist) throws IOException {
flushAll(); flushAll();
return stack.top(dist).getColBytes(0); synchronized (domainStacks) {
return stack.top(dist).getColBytes(0);
}
} }
public void clear() throws IOException { public void clear() throws IOException {
domainStacks.clear(); synchronized (domainStacks) {
stack.clear(); domainStacks.clear();
stack.clear();
}
} }
public class KeyIterator implements Iterator { public class KeyIterator implements Iterator {

Loading…
Cancel
Save