All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jaeksoft.searchlib.parser.TorrentParser Maven / Gradle / Ivy

Go to download

OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.

The newest version!
/**   
 * License Agreement for OpenSearchServer
 *
 * Copyright (C) 2010-2015 Emmanuel Keller / Jaeksoft
 * 
 * http://www.open-search-server.com
 * 
 * This file is part of OpenSearchServer.
 *
 * OpenSearchServer 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 3 of the License, or
 *  (at your option) any later version.
 *
 * OpenSearchServer 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 OpenSearchServer. 
 *  If not, see .
 **/

package com.jaeksoft.searchlib.parser;

import java.io.IOException;
import java.security.NoSuchAlgorithmException;

import org.apache.commons.codec.binary.Hex;

import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.analysis.ClassPropertyEnum;
import com.jaeksoft.searchlib.analysis.LanguageEnum;
import com.jaeksoft.searchlib.parser.torrent.MetaInfo;
import com.jaeksoft.searchlib.streamlimiter.StreamLimiter;

public class TorrentParser extends Parser {

	public static final String[] DEFAULT_MIMETYPES = { "application/x-bittorrent" };

	public static final String[] DEFAULT_EXTENSIONS = { "torrent" };

	private static ParserFieldEnum[] fl = { ParserFieldEnum.parser_name,
			ParserFieldEnum.name, ParserFieldEnum.announce,
			ParserFieldEnum.total_length, ParserFieldEnum.file_length,
			ParserFieldEnum.file_path, ParserFieldEnum.info_hash,
			ParserFieldEnum.info_hash_urlencoded, ParserFieldEnum.comment,
			ParserFieldEnum.creation_date };

	public TorrentParser() {
		super(fl);
	}

	@Override
	public void initProperties() throws SearchLibException {
		super.initProperties();
		addProperty(ClassPropertyEnum.SIZE_LIMIT, "0", null, 20, 1);
	}

	/**
	 * Naveen native utils ;)
	 * 
	 * @param in
	 * @return
	 */
	private static String geturlhash(byte in[]) {
		byte ch = 0x00;
		int i = 0;
		if (in == null || in.length <= 0)
			return null;

		String pseudo[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
				"A", "B", "C", "D", "E", "F" };
		StringBuilder out = new StringBuilder(in.length * 2);

		while (i < in.length) {
			// First check to see if we need ASCII or HEX
			if ((in[i] >= '0' && in[i] <= '9')
					|| (in[i] >= 'a' && in[i] <= 'z')
					|| (in[i] >= 'A' && in[i] <= 'Z') || in[i] == '$'
					|| in[i] == '-' || in[i] == '_' || in[i] == '.'
					|| in[i] == '+' || in[i] == '!') {
				out.append((char) in[i]);
				i++;
			} else {
				out.append('%');
				ch = (byte) (in[i] & 0xF0); // Strip off high nibble
				ch = (byte) (ch >>> 4); // shift the bits down
				ch = (byte) (ch & 0x0F); // must do this is high order bit is
				// on!
				out.append(pseudo[(int) ch]); // convert the nibble to a
				// String Character
				ch = (byte) (in[i] & 0x0F); // Strip off low nibble
				out.append(pseudo[(int) ch]); // convert the nibble to a
				// String Character
				i++;
			}
		}

		return new String(out);
	}

	@Override
	protected void parseContent(StreamLimiter streamLimiter, LanguageEnum lang)
			throws IOException {

		ParserResultItem result = getNewParserResultItem();

		MetaInfo meta = new MetaInfo(streamLimiter.getNewInputStream());
		result.addField(ParserFieldEnum.name, meta.getName());
		result.addField(ParserFieldEnum.announce, meta.getAnnounce());
		result.addField(ParserFieldEnum.total_length,
				Long.toString(meta.getTotalLength()));
		int l = meta.getFilesCount();
		for (int i = 0; i < l; i++) {
			result.addField(ParserFieldEnum.file_length, meta.getFileLength(i));
			result.addField(ParserFieldEnum.file_path, meta.getFilePath(i));
		}

		try {
			byte[] infoHash = meta.getInfoHash();
			result.addField(ParserFieldEnum.info_hash,
					Hex.encodeHexString(infoHash));
			result.addField(ParserFieldEnum.info_hash_urlencoded,
					geturlhash(infoHash));
		} catch (NoSuchAlgorithmException e) {
			throw new IOException(e);
		}

		result.addField(ParserFieldEnum.comment, meta.getComment());

		result.addField(ParserFieldEnum.creation_date,
				Long.toString(meta.getCreationDate()));

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy