📄 searchresultitem.java
字号:
/* * JMule - Java file sharing client * Copyright (C) 2007-2008 JMule team ( jmule@jmule.org / http://jmule.org ) * * Any parts of this program derived from other projects, or contributed * by third-party developers are copyrighted by their respective authors. * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */package org.jmule.core.searchmanager;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_ARC;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_AUDIO;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_DOC;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_IMAGE;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_ISO;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_PROGRAM;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_UNKNOWN;import static org.jmule.core.edonkey.E2DKConstants.TAG_FILE_TYPE_VIDEO;import static org.jmule.core.edonkey.E2DKConstants.TAG_NAME_AVIABILITY;import static org.jmule.core.edonkey.E2DKConstants.TAG_NAME_COMPLETESRC;import static org.jmule.core.edonkey.E2DKConstants.TAG_NAME_NAME;import static org.jmule.core.edonkey.E2DKConstants.TAG_NAME_SIZE;import static org.jmule.core.edonkey.E2DKConstants.archive_extensions;import static org.jmule.core.edonkey.E2DKConstants.audio_extensions;import static org.jmule.core.edonkey.E2DKConstants.doc_extensions;import static org.jmule.core.edonkey.E2DKConstants.image_extensions;import static org.jmule.core.edonkey.E2DKConstants.iso_extensions;import static org.jmule.core.edonkey.E2DKConstants.program_extensions;import static org.jmule.core.edonkey.E2DKConstants.video_extensions;import org.jmule.core.edonkey.impl.ClientID;import org.jmule.core.edonkey.impl.ED2KFileLink;import org.jmule.core.edonkey.impl.FileHash;import org.jmule.core.edonkey.packet.tag.TagException;import org.jmule.core.edonkey.packet.tag.TagList;import org.jmule.util.Convert;import org.jmule.util.Misc;/** * Created on 2008-Aug-09 * @author javajox * @version $$Revision: 1.3 $$ * Last changed by $$Author: binary256_ $$ on $$Date: 2008/08/27 17:10:45 $$ */public class SearchResultItem extends TagList { private FileHash fileHash; private ClientID clientID; private short clientPort; public SearchResultItem(FileHash fileHash, ClientID clientID, short clientPort) { super(); this.fileHash = fileHash; this.clientID = clientID; this.clientPort = clientPort; } public ED2KFileLink getAsED2KLink() { return new ED2KFileLink(getFileName(),getFileSize(),getFileHash()); } public String toString() { String result=""; result+="Name : " + this.getFileName()+" Size : "+this.getFileSize(); return result; } public String getFileName(){ try { return super.getStringTag(TAG_NAME_NAME); } catch (TagException e) { return null; } } public long getFileSize() { try { return Convert.intToLong(super.getDWORDTag(TAG_NAME_SIZE)); } catch (TagException e) { return 0; } } public int getFileAviability() { try { return super.getDWORDTag(TAG_NAME_AVIABILITY); } catch (TagException e) { return 0; } } public int getFileCompleteSrc() { try { return super.getDWORDTag(TAG_NAME_COMPLETESRC); } catch (TagException e) { return 0; } } public byte[] getMimeType() { String file_name = getFileName(); String extension = Misc.getFileExtension(file_name); extension = extension.toLowerCase(); if (audio_extensions.contains(extension)) return TAG_FILE_TYPE_AUDIO; if (video_extensions.contains(extension)) return TAG_FILE_TYPE_VIDEO; if (image_extensions.contains(extension)) return TAG_FILE_TYPE_IMAGE; if (doc_extensions.contains(extension)) return TAG_FILE_TYPE_DOC; if (program_extensions.contains(extension)) return TAG_FILE_TYPE_PROGRAM; if (archive_extensions.contains(extension)) return TAG_FILE_TYPE_ARC; if (iso_extensions.contains(extension)) return TAG_FILE_TYPE_ISO; return TAG_FILE_TYPE_UNKNOWN; } public FileHash getFileHash() { return fileHash; } public void setFileHash(FileHash fileHash) { this.fileHash = fileHash; } public ClientID getClientID() { return clientID; } public void setClientID(ClientID clientID) { this.clientID = clientID; } public short getClientPort() { return clientPort; } public void setClientPort(short clientPort) { this.clientPort = clientPort; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -