// mediawikiIndex.java // (C) 2008 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany // first published 20.11.2008 on http://yacy.net // // This is a part of YaCy, a peer-to-peer based web search engine // // $LastChangedDate: 2006-04-02 22:40:07 +0200 (So, 02 Apr 2006) $ // $LastChangedRevision: 1986 $ // $LastChangedBy: orbiter $ // // 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.tools; import org.apache.tools.bzip2.CBZip2InputStream; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.io.RandomAccessFile; import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.util.Date; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; import de.anomic.data.wiki.wikiCode; import de.anomic.data.wiki.wikiParser; import de.anomic.kelondro.util.ByteBuffer; import de.anomic.plasma.plasmaParser; import de.anomic.plasma.plasmaParserDocument; import de.anomic.plasma.parser.ParserException; import de.anomic.yacy.yacyURL; /* * this class provides data structures to read a mediawiki dump file in xml format * as referenced with xmlns="http://www.mediawiki.org/xml/export-0.3/" */ public class mediawikiIndex { private static final String textstart = " producerResult = service.submit(consumer); Future consumerResult = service.submit(producer); service.shutdown(); // read the wiki dump long start, stop; while (in.seek(pagestartb)) { start = in.pos() - 6; in.resetBuffer(); if (!in.seek(pageendb)) break; stop = in.pos(); consumer.consume(new wikiraw(in.bytes(), start, stop)); in.resetBuffer(); } // shut down the services try { consumer.consume(wikiConsumer.poison); try {consumerResult.get(5000, TimeUnit.MILLISECONDS);} catch (TimeoutException e) {} producer.consume(indexProducer.poison); if (!consumerResult.isDone()) consumerResult.get(); producerResult.get(); } catch (InterruptedException e) { e.printStackTrace(); return; } catch (ExecutionException e) { e.printStackTrace(); return; } in.close(); } private static class indexProducer implements Callable { private BlockingQueue entries; PrintWriter out; private static wikisourcerecord poison = new wikisourcerecord("", 0, 0); int count; public indexProducer(int bufferCount, File indexFile) throws IOException { entries = new ArrayBlockingQueue(bufferCount); out = new PrintWriter(new BufferedWriter(new FileWriter(indexFile))); count = 0; out.println(""); } public void consume(wikisourcerecord b) { try { entries.put(b); } catch (InterruptedException e) { e.printStackTrace(); } } public Integer call() { wikisourcerecord r; try { while(true) { r = entries.take(); if (r == poison) { System.out.println("producer / got poison"); break; } out.println(" "); out.println(" " + r.title + ""); out.println(" "); System.out.println("producer / record start: " + r.start + ", title : " + r.title); count++; } } catch (InterruptedException e) { e.printStackTrace(); } entries.clear(); out.println(""); out.close(); return Integer.valueOf(count); } } private static class wikiConsumer implements Callable { private BlockingQueue entries; private static wikiraw poison = new wikiraw(new byte[0], 0, 0); private indexProducer producer; private int count; public wikiConsumer(int bufferCount, indexProducer producer) { entries = new ArrayBlockingQueue(bufferCount); this.producer = producer; count = 0; } public void consume(wikiraw b) { try { entries.put(b); } catch (InterruptedException e) { e.printStackTrace(); } } public Integer call() { wikisourcerecord r; wikiraw c; try { while(true) { c = entries.take(); if (c == poison) { System.out.println("consumer / got poison"); break; } try { r = new wikisourcerecord(c.b, c.start, c.end); producer.consume(r); System.out.println("consumer / record start: " + r.start + ", title : " + r.title); count++; } catch (RuntimeException e) {} } } catch (InterruptedException e) { e.printStackTrace(); } entries.clear(); return Integer.valueOf(count); } } private static class wikiraw { public long start, end; public byte[] b; public wikiraw(byte[] b, long start, long end) { this.b = b; this.start = start; this.end = end; } } public static class wikisourcerecord { public long start, end; public String title; public wikisourcerecord(String title, long start, long end) { this.title = title; this.start = start; this.end = end; } public wikisourcerecord(byte[] chunk, long start, long end) { String s; try { s = new String(chunk, "UTF-8"); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e.getMessage()); } int t0 = s.indexOf(""); if (t0 >= 0) { int t1 = s.indexOf("", t0); if (t1 >= 0) { this.title = s.substring(t0 + 7, t1); } else { throw new RuntimeException("no title end in record"); } } else { throw new RuntimeException("no title start in record"); } this.start = start; this.end = end; } } public wikiparserrecord newRecord(String title, StringBuilder sb) { return new wikiparserrecord(title, sb); } public class wikiparserrecord { public String title; StringBuilder source; String html; yacyURL url; plasmaParserDocument document; public wikiparserrecord(String title, StringBuilder sb) { this.title = title; this.source = sb; } public void genHTML() throws MalformedURLException { html = wparser.transform(source.toString()); url = new yacyURL("http://de.wikipedia.org/wiki/" + title, null); } public void genDocument() throws InterruptedException, ParserException { document = hparser.parseSource(url, "text/html", "utf-8", html.getBytes()); } public void writeXML(OutputStreamWriter os) throws IOException { document.writeXML(os, new Date()); } } private static class PositionAwareReader { private InputStream is; private long seekpos; private ByteBuffer bb; public PositionAwareReader(File dumpFile) throws FileNotFoundException { this.is = new BufferedInputStream(new FileInputStream(dumpFile), 64 *1024); this.seekpos = 0; this.bb = new ByteBuffer(); } public void resetBuffer() { if (bb.length() > 10 * 1024) bb = new ByteBuffer(); else bb.clear(); } public boolean seek(byte[] pattern) throws IOException { int pp = 0; int c; while ((c = is.read()) >= 0) { seekpos++; bb.append(c); if (pattern[pp] == c) pp++; else pp = 0; if (pp == pattern.length) return true; } return false; } public long pos() { return seekpos; } public byte[] bytes() { return bb.getBytes(); } public void close() { try { is.close(); } catch (IOException e) { e.printStackTrace(); } } } public static byte[] read(File f, long start, int len) { byte[] b = new byte[len]; RandomAccessFile raf = null; try { raf = new RandomAccessFile(f, "r"); raf.seek(start); raf.read(b); } catch (IOException e) { e.printStackTrace(); return null; } finally { if (raf != null) try { raf.close(); try{raf.getChannel().close();} catch (IOException e) {} } catch (IOException e) { } } return b; } public static wikisourcerecord find(String title, File f) throws IOException { PositionAwareReader in = new PositionAwareReader(f); long start; String m = "" + title + ""; String s; while (in.seek("= 0) { // we found the record //System.out.println("s = " + s); int p = s.indexOf("start=\""); if (p < 0) return null; p += 7; int q = s.indexOf('"', p + 1); if (q < 0) return null; start = Long.parseLong(s.substring(p, q)); p = s.indexOf("length=\"", q); if (p < 0) return null; p += 8; q = s.indexOf('"', p + 1); if (q < 0) return null; int length = Integer.parseInt(s.substring(p, q)); //System.out.println("start = " + start + ", length = " + length); return new wikisourcerecord(title, start, start + length); } } return null; } public static void main(String[] s) { if (s.length == 0) { System.out.println("usage:"); System.out.println(" -index "); System.out.println(" -read "); System.out.println(" -find <wikipedia-dump>"); System.out.println(" -convert <wikipedia-dump-xml.bz2> <convert-target-dir> <url-stub>"); System.exit(0); } // example: // java -Xmx2000m -cp classes:lib/bzip2.jar de.anomic.tools.mediawikiIndex -convert DATA/HTCACHE/dewiki-20090311-pages-articles.xml.bz2 DATA/SURROGATES/in/ http://de.wikipedia.org/wiki/ if (s[0].equals("-convert") && s.length > 2 && s[1].endsWith(".xml.bz2") && s[3].startsWith("http://")) { File sourcefile = new File(s[1]); File targetdir = new File(s[2]); String targetstub = sourcefile.getName(); targetstub = targetstub.substring(0, targetstub.length() - 8); String urlStub = s[3]; // i.e. http://de.wikipedia.org/wiki/ //String language = urlStub.substring(7,9); try { InputStream is = new FileInputStream(sourcefile); if (s[1].endsWith(".bz2")) { int b = is.read(); if (b != 'B') throw new IOException("Invalid bz2 content."); b = is.read(); if (b != 'Z') throw new IOException("Invalid bz2 content."); is = new CBZip2InputStream(is); } BufferedReader r = new BufferedReader(new java.io.InputStreamReader(is, "UTF-8")); String t; StringBuilder sb = new StringBuilder(); boolean page = false, text = false; String title = null; plasmaParser.initHTMLParsableMimeTypes("text/html"); plasmaParser.initParseableMimeTypes(plasmaParser.PARSER_MODE_CRAWLER, "text/html"); mediawikiIndex mi = new mediawikiIndex(urlStub); wikiparserrecord record; int fc = 0; int rc = 0; String outputfilename = targetstub + "." + fc + ".xml.tmp"; OutputStreamWriter osw = new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(new File(targetdir, outputfilename))), "UTF-8"); osw.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<surrogates xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n"); while ((t = r.readLine()) != null) { if (t.indexOf(pagestart) >= 0) { page = true; continue; } if (t.indexOf(textstart) >= 0) { text = page; continue; } if (t.indexOf(textend) >= 0) { text = false; System.out.println("Title: " + title); record = mi.newRecord(title, sb); record.genHTML(); try { record.genDocument(); record.document.writeXML(osw, new Date()); rc++; if (rc >= 10000) { osw.write("</surrogates>\n"); osw.close(); String finalfilename = targetstub + "." + fc + ".xml"; new File(targetdir, outputfilename).renameTo(new File(targetdir, finalfilename)); rc = 0; fc++; outputfilename = targetstub + "." + fc + ".xml.tmp"; osw = new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(new File(targetdir, outputfilename))), "UTF-8"); osw.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<surrogates xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n"); } } catch (InterruptedException e) { } catch (ParserException e) { } sb.setLength(0); continue; } if (t.indexOf(pageend) >= 0) { page = false; continue; } if (t.indexOf("<title>") >= 0) { title = t.substring(t.indexOf("<title>") + 7); int p = title.indexOf(""); if (p >= 0) title = title.substring(0, p); continue; } if (text) { sb.append(t); sb.append('\n'); } } osw.write("\n"); osw.close(); String finalfilename = targetstub + "." + fc + ".xml"; new File(targetdir, outputfilename).renameTo(new File(targetdir, finalfilename)); r.close(); } catch (IOException e) { e.printStackTrace(); } } if (s[0].equals("-index")) { try { createIndex(new File(s[1])); } catch (IOException e) { e.printStackTrace(); } } if (s[0].equals("-read")) { long start = Integer.parseInt(s[1]); int len = Integer.parseInt(s[2]); try { System.out.println(new String(read(new File(s[3]), start, len), "UTF-8")); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } if (s[0].equals("-find")) { try { wikisourcerecord w = find(s[1], new File(s[2] + ".idx.xml")); if (w == null) { System.out.println("not found"); } else { System.out.println(new String(read(new File(s[2]), w.start, (int) (w.end - w.start)), "UTF-8")); } } catch (IOException e) { e.printStackTrace(); } } } }