1
yomichan-import/edict.go

178 lines
5.0 KiB
Go
Raw Normal View History

2016-08-07 01:17:02 +00:00
/*
* Copyright (c) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package main
import (
"io"
2016-12-17 23:48:13 +00:00
"strings"
2016-08-07 01:17:02 +00:00
"github.com/FooSoft/jmdict"
)
2016-12-17 23:48:13 +00:00
func computeJmdictRules(term *dbTerm) {
for _, tag := range term.Tags {
switch tag {
2016-12-18 01:08:38 +00:00
case "adj-i", "v1", "vk", "vs":
2016-12-17 23:48:13 +00:00
term.addRules(tag)
default:
if strings.HasPrefix(tag, "v5") {
term.addRules("v5")
}
}
}
}
func computeJmdictScore(term *dbTerm) {
term.Score = 0
for _, tag := range term.Tags {
switch tag {
2016-12-18 01:08:38 +00:00
case "gai1", "ichi1", "news1", "spec1":
2016-12-17 23:48:13 +00:00
term.Score += 5
2016-12-18 01:08:38 +00:00
case "arch", "iK":
2016-12-17 23:48:13 +00:00
term.Score -= 1
}
}
}
func computeJmdictTagMeta(entities map[string]string) map[string]dbTagMeta {
2016-12-18 01:08:38 +00:00
tags := map[string]dbTagMeta{
"news1": {Notes: "appears frequently in Mainichi Shimbun (top listing)", Class: "frequent", Order: 3},
"ichi1": {Notes: "listed as common in Ichimango Goi Bunruishuu (top listing)", Class: "frequent", Order: 3},
"spec1": {Notes: "common words not included in frequency lists (top listing)", Class: "frequent", Order: 3},
"gai1": {Notes: "common loanword (top listing)", Class: "frequent", Order: 3},
"news2": {Notes: "appears frequently in Mainichi Shimbun (bottom listing)", Order: 3},
"ichi2": {Notes: "listed as common in Ichimango Goi Bunruishuu (bottom listing)", Order: 3},
"spec2": {Notes: "common words not included in frequency lists (bottom listing)", Order: 3},
"gai2": {Notes: "common loanword (bottom listing)", Order: 3},
}
2016-12-17 23:48:13 +00:00
for name, value := range entities {
tag := dbTagMeta{Notes: value}
switch name {
2016-12-18 01:08:38 +00:00
case "gai1", "ichi1", "news1", "spec1":
2016-12-17 23:48:13 +00:00
tag.Class = "frequent"
tag.Order = 1
2016-12-18 01:08:38 +00:00
case "exp", "id":
2016-12-17 23:48:13 +00:00
tag.Class = "expression"
tag.Order = 2
2016-12-18 01:08:38 +00:00
case "arch", "iK":
2016-12-17 23:48:13 +00:00
tag.Class = "archaism"
tag.Order = 2
}
tags[name] = tag
}
return tags
}
2016-11-05 20:13:13 +00:00
func extractJmdictTerms(edictEntry jmdict.JmdictEntry) []dbTerm {
var terms []dbTerm
2016-08-07 01:17:02 +00:00
convert := func(reading jmdict.JmdictReading, kanji *jmdict.JmdictKanji) {
2016-09-28 04:28:04 +00:00
if kanji != nil && reading.Restrictions != nil && !hasString(kanji.Expression, reading.Restrictions) {
2016-08-07 01:17:02 +00:00
return
}
2016-11-05 20:13:13 +00:00
var termBase dbTerm
termBase.addTags(reading.Information...)
2016-09-18 18:36:54 +00:00
2016-08-07 01:17:02 +00:00
if kanji == nil {
2016-11-05 20:13:13 +00:00
termBase.Expression = reading.Reading
2016-12-17 23:48:13 +00:00
termBase.addTags(reading.Priorities...)
2016-08-07 01:17:02 +00:00
} else {
2016-11-05 20:13:13 +00:00
termBase.Expression = kanji.Expression
termBase.Reading = reading.Reading
termBase.addTags(kanji.Information...)
for _, priority := range kanji.Priorities {
if hasString(priority, reading.Priorities) {
2016-12-17 23:48:13 +00:00
termBase.addTags(priority)
2016-11-05 20:13:13 +00:00
}
}
2016-08-07 01:17:02 +00:00
}
for _, sense := range edictEntry.Sense {
2016-09-28 04:37:13 +00:00
if sense.RestrictedReadings != nil && !hasString(reading.Reading, sense.RestrictedReadings) {
2016-08-07 01:17:02 +00:00
continue
}
2016-09-28 04:37:13 +00:00
if kanji != nil && sense.RestrictedKanji != nil && !hasString(kanji.Expression, sense.RestrictedKanji) {
2016-08-07 01:17:02 +00:00
continue
}
2016-11-05 20:13:13 +00:00
term := dbTerm{Reading: termBase.Reading, Expression: termBase.Expression}
term.addTags(termBase.Tags...)
term.addTags(sense.PartsOfSpeech...)
term.addTags(sense.Fields...)
term.addTags(sense.Misc...)
term.addTags(sense.Dialects...)
2016-09-18 18:36:54 +00:00
2016-08-07 01:17:02 +00:00
for _, glossary := range sense.Glossary {
2016-11-05 20:13:13 +00:00
term.Glossary = append(term.Glossary, glossary.Content)
2016-08-07 01:17:02 +00:00
}
2016-12-17 23:48:13 +00:00
computeJmdictRules(&term)
computeJmdictScore(&term)
2016-11-05 20:13:13 +00:00
terms = append(terms, term)
2016-09-18 18:36:54 +00:00
}
2016-08-07 01:17:02 +00:00
}
if len(edictEntry.Kanji) > 0 {
for _, kanji := range edictEntry.Kanji {
for _, reading := range edictEntry.Readings {
convert(reading, &kanji)
}
}
} else {
for _, reading := range edictEntry.Readings {
convert(reading, nil)
}
}
2016-11-05 20:13:13 +00:00
return terms
2016-08-07 01:17:02 +00:00
}
2016-11-06 00:09:23 +00:00
func exportJmdictDb(outputDir, title string, reader io.Reader, flags int) error {
2016-08-07 01:17:02 +00:00
dict, entities, err := jmdict.LoadJmdictNoTransform(reader)
if err != nil {
return err
}
2016-11-05 20:13:13 +00:00
var terms dbTermList
for _, entry := range dict.Entries {
terms = append(terms, extractJmdictTerms(entry)...)
2016-08-07 01:17:02 +00:00
}
2016-11-05 20:13:13 +00:00
return writeDb(
outputDir,
2016-11-06 00:09:23 +00:00
title,
2016-11-05 20:13:13 +00:00
terms.crush(),
2016-11-06 06:24:57 +00:00
nil,
2016-12-17 23:48:13 +00:00
computeJmdictTagMeta(entities),
2016-11-06 00:09:23 +00:00
flags&flagPretty == flagPretty,
2016-11-05 20:13:13 +00:00
)
2016-08-07 01:17:02 +00:00
}