// Word.java // (C) 2008 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany // first published 26.03.2008 on http://yacy.net // // This is a part of YaCy, a peer-to-peer based web search engine // // $LastChangedDate$ // $LastChangedRevision$ // $LastChangedBy$ // // LICENSE // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package de.anomic.document; import java.util.HashSet; import java.util.Iterator; import java.util.Locale; import java.util.Set; import java.util.TreeSet; import de.anomic.kelondro.index.SimpleARC; import de.anomic.kelondro.order.Base64Order; import de.anomic.kelondro.order.Bitfield; import de.anomic.kelondro.order.Digest; import de.anomic.kelondro.util.MemoryControl; import de.anomic.yacy.yacySeedDB; public class Word { public static final int hashCacheSize = (int) (MemoryControl.available() / 10000L); private static final SimpleARC hashCache = new SimpleARC(hashCacheSize); // object carries statistics for words and sentences public int count; // number of occurrences public int posInText; // unique handle, is initialized with word position (excluding double occurring words) public int posInPhrase; // position of word in phrase public int numOfPhrase; // number of phrase. 'normal' phrases begin with number 100 HashSet phrases; // a set of handles to all phrases where this word appears public Bitfield flags; // the flag bits for each word public Word(final int handle, final int pip, final int nop) { this.count = 1; this.posInText = handle; this.posInPhrase = pip; this.numOfPhrase = nop; this.phrases = new HashSet(); this.flags = null; } public void inc() { count++; } public int occurrences() { return count; } public void check(final int i) { phrases.add(Integer.valueOf(i)); } public Iterator phrases() { // returns an iterator to handles of all phrases where the word appears return phrases.iterator(); } // static methods // create a word hash public static final byte[] word2hash(final String word) { byte[] h = hashCache.get(word); if (h != null) return h; synchronized(hashCache) { h = hashCache.get(word); // we must test that again because another thread may have written the value in between if (h != null) return h; h = Base64Order.enhancedCoder.encodeSubstring(Digest.encodeMD5Raw(word.toLowerCase(Locale.ENGLISH)), yacySeedDB.commonHashLength); assert h[2] != '@'; hashCache.put(word, h); // prevent expensive MD5 computation and encoding } return h; } public static final TreeSet words2hashSet(final String[] words) { final TreeSet hashes = new TreeSet(Base64Order.enhancedCoder); for (int i = 0; i < words.length; i++) hashes.add(word2hash(words[i])); return hashes; } public static final String words2hashString(final String[] words) { final StringBuilder sb = new StringBuilder(); for (int i = 0; i < words.length; i++) sb.append(word2hash(words[i])); return new String(sb); } public static final TreeSet words2hashes(final Set words) { final Iterator i = words.iterator(); final TreeSet hashes = new TreeSet(Base64Order.enhancedCoder); while (i.hasNext()) hashes.add(word2hash(i.next())); return hashes; } }