java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 19 Aug 2013 20:53:04 +0200
changeset 130 b8dc8a6f82cf
parent 17 b188eae2c092
child 151 a9f1ba451247
permissions -rw-r--r--
generator: JavaDoc
     1 /**
     2  * Free Telco Dictionary
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package cz.frantovo.telco.dictionary;
    19 
    20 import java.io.DataOutputStream;
    21 import java.io.IOException;
    22 import java.nio.charset.StandardCharsets;
    23 import java.util.Objects;
    24 
    25 /**
    26  * Represents one item in StarDict index file (.idx)
    27  * which links the term and its position and length in data file (.dict)
    28  * 
    29  * @author Ing. František Kučera (frantovo.cz)
    30  */
    31 public class IndexEntry implements Comparable<IndexEntry> {
    32 
    33 	private String name;
    34 	private long offset;
    35 	private long length;
    36 	private long ordinal;
    37 
    38 	public IndexEntry(String name, long offset, long length) {
    39 		this.name = name;
    40 		this.offset = offset;
    41 		this.length = length;
    42 	}
    43 
    44 	public void serialize(DataOutputStream indexOutputStream) throws IOException {
    45 		indexOutputStream.write(name.getBytes(StandardCharsets.UTF_8));
    46 		indexOutputStream.write(0);
    47 		indexOutputStream.writeInt((int) offset); // unsigned int 32
    48 		indexOutputStream.writeInt((int) length); // unsigned int 32
    49 	}
    50 
    51 	public void setOrdinal(long ordinal) {
    52 		this.ordinal = ordinal;
    53 	}
    54 
    55 	public long getOrdinal() {
    56 		return ordinal;
    57 	}
    58 
    59 	@Override
    60 	public int compareTo(IndexEntry o) {
    61 		int nameDiff = name.compareTo(o.name);
    62 		if (nameDiff == 0) {
    63 			int offsetDiff = ((Long) offset).compareTo(o.offset);
    64 			if (offsetDiff == 0) {
    65 				return ((Long) length).compareTo(o.length);
    66 			} else {
    67 				return offsetDiff;
    68 			}
    69 		} else {
    70 			return nameDiff;
    71 		}
    72 	}
    73 
    74 	@Override
    75 	public boolean equals(Object o) {
    76 		return o instanceof IndexEntry && compareTo((IndexEntry) o) == 0;
    77 	}
    78 
    79 	@Override
    80 	public int hashCode() {
    81 		int hash = 5;
    82 		hash = 53 * hash + Objects.hashCode(this.name);
    83 		hash = 53 * hash + (int) (this.offset ^ (this.offset >>> 32));
    84 		hash = 53 * hash + (int) (this.length ^ (this.length >>> 32));
    85 		return hash;
    86 	}
    87 }