java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 22 Jun 2020 21:59:38 +0200
changeset 151 a9f1ba451247
parent 130 b8dc8a6f82cf
permissions -rw-r--r--
fix license version: GNU GPLv3, GNU FDLv1.3
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@151
     7
 * the Free Software Foundation, version 3 of the License.
franta-hg@15
     8
 *
franta-hg@15
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@15
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@15
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@15
    12
 * GNU General Public License for more details.
franta-hg@15
    13
 *
franta-hg@15
    14
 * You should have received a copy of the GNU General Public License
franta-hg@15
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@15
    16
 */
franta-hg@15
    17
package cz.frantovo.telco.dictionary;
franta-hg@15
    18
franta-hg@17
    19
import java.io.DataOutputStream;
franta-hg@17
    20
import java.io.IOException;
franta-hg@17
    21
import java.nio.charset.StandardCharsets;
franta-hg@17
    22
import java.util.Objects;
franta-hg@17
    23
franta-hg@15
    24
/**
franta-hg@130
    25
 * Represents one item in StarDict synonyms file (.syn)
franta-hg@130
    26
 * links the synonym term (string) to the position of the base term in index file
franta-hg@130
    27
 * 
franta-hg@15
    28
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@15
    29
 */
franta-hg@15
    30
public class SynonymsEntry implements Comparable<SynonymsEntry> {
franta-hg@15
    31
franta-hg@17
    32
	private IndexEntry base;
franta-hg@17
    33
	private String name;
franta-hg@17
    34
franta-hg@17
    35
	public SynonymsEntry(IndexEntry base, String name) {
franta-hg@17
    36
		this.base = base;
franta-hg@17
    37
		this.name = name;
franta-hg@17
    38
	}
franta-hg@17
    39
franta-hg@17
    40
	public void serialize(DataOutputStream synonymOutputStream) throws IOException {
franta-hg@17
    41
		synonymOutputStream.write(name.getBytes(StandardCharsets.UTF_8));
franta-hg@17
    42
		synonymOutputStream.write(0);
franta-hg@17
    43
		synonymOutputStream.writeInt((int) base.getOrdinal()); // unsigned int 32
franta-hg@17
    44
	}
franta-hg@17
    45
franta-hg@15
    46
	@Override
franta-hg@15
    47
	public int compareTo(SynonymsEntry o) {
franta-hg@17
    48
		int nameDiff = name.compareTo(o.name);
franta-hg@17
    49
		if (nameDiff == 0) {
franta-hg@17
    50
			return base.compareTo(o.base);
franta-hg@17
    51
		} else {
franta-hg@17
    52
			return nameDiff;
franta-hg@17
    53
		}
franta-hg@17
    54
	}
franta-hg@17
    55
franta-hg@17
    56
	@Override
franta-hg@17
    57
	public boolean equals(Object o) {
franta-hg@17
    58
		return o instanceof IndexEntry && compareTo((SynonymsEntry) o) == 0;
franta-hg@17
    59
	}
franta-hg@17
    60
franta-hg@17
    61
	@Override
franta-hg@17
    62
	public int hashCode() {
franta-hg@17
    63
		int hash = 3;
franta-hg@17
    64
		hash = 47 * hash + Objects.hashCode(this.base);
franta-hg@17
    65
		hash = 47 * hash + Objects.hashCode(this.name);
franta-hg@17
    66
		return hash;
franta-hg@15
    67
	}
franta-hg@15
    68
}