TarAnalyzer.java revision 50203181d8c071cfd69cb197b5da0eda5c4d6372
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* See LICENSE.txt included in this distribution for the specific
* language governing permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at LICENSE.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
package org.opensolaris.opengrok.analysis.archive;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.io.StringReader;
import java.io.Writer;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.tools.tar.TarEntry;
import org.apache.tools.tar.TarInputStream;
import org.opensolaris.opengrok.analysis.FileAnalyzer;
import org.opensolaris.opengrok.analysis.FileAnalyzerFactory;
import org.opensolaris.opengrok.analysis.plain.PlainFullTokenizer;
import org.opensolaris.opengrok.web.Util;
/**
* Analyzes TAR files
* Created on September 22, 2005
*
* @author Chandan
*/
public class TarAnalyzer extends FileAnalyzer {
private StringBuilder content;
private int len;
private static final Reader dummy = new StringReader("");
private final PlainFullTokenizer plainfull;
protected TarAnalyzer(FileAnalyzerFactory factory) {
super(factory);
content = new StringBuilder(64*1024);
plainfull = new PlainFullTokenizer(dummy);
}
@Override
public void analyze(Document doc, InputStream in) throws IOException {
content.setLength(0);
TarInputStream zis = new TarInputStream(in);
TarEntry entry;
while ((entry = zis.getNextEntry()) != null) {
content.append(entry.getName()).append('\n');
}
content.trimToSize();
doc.add(new Field("full",dummy));
}
@Override
public TokenStream tokenStream(String fieldName, Reader reader) {
if("full".equals(fieldName)) {
char[] cs = new char[content.length()];
content.getChars(0, cs.length, cs, 0);
plainfull.reInit(cs, cs.length);
return plainfull;
}
return super.tokenStream(fieldName, reader);
}
/**
* Write a cross referenced HTML file.
* @param out Writer to store HTML cross-reference
*/
@Override
public void writeXref(Writer out) throws IOException {
out.write(Util.htmlize(content));
}
}