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