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"
|
|
|
|
|
|
|
|
"github.com/FooSoft/jmdict"
|
|
|
|
)
|
|
|
|
|
2016-08-22 02:51:43 +00:00
|
|
|
func convertJmnedictEntry(enamdictEntry jmdict.JmnedictEntry) []termSource {
|
|
|
|
var entries []termSource
|
2016-08-07 01:17:02 +00:00
|
|
|
|
|
|
|
convert := func(reading jmdict.JmnedictReading, kanji *jmdict.JmnedictKanji) {
|
|
|
|
if kanji != nil && hasString(kanji.Expression, reading.Restrictions) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-22 02:51:43 +00:00
|
|
|
var entry termSource
|
2016-08-07 01:17:02 +00:00
|
|
|
if kanji == nil {
|
|
|
|
entry.Expression = reading.Reading
|
|
|
|
} else {
|
|
|
|
entry.Expression = kanji.Expression
|
|
|
|
entry.Reading = reading.Reading
|
|
|
|
|
2016-08-07 20:24:56 +00:00
|
|
|
entry.addTags(kanji.Information...)
|
|
|
|
entry.addTagsPri(kanji.Priorities...)
|
2016-08-07 01:17:02 +00:00
|
|
|
}
|
|
|
|
|
2016-08-07 20:24:56 +00:00
|
|
|
entry.addTags(reading.Information...)
|
|
|
|
entry.addTagsPri(reading.Priorities...)
|
2016-08-07 01:17:02 +00:00
|
|
|
|
|
|
|
for _, trans := range enamdictEntry.Translations {
|
|
|
|
entry.Glossary = append(entry.Glossary, trans.Translations...)
|
2016-08-07 20:24:56 +00:00
|
|
|
entry.addTags(trans.NameTypes...)
|
2016-08-07 01:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
entries = append(entries, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(enamdictEntry.Kanji) > 0 {
|
|
|
|
for _, kanji := range enamdictEntry.Kanji {
|
|
|
|
for _, reading := range enamdictEntry.Readings {
|
|
|
|
convert(reading, &kanji)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, reading := range enamdictEntry.Readings {
|
|
|
|
convert(reading, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return entries
|
|
|
|
}
|
|
|
|
|
2016-08-23 03:51:30 +00:00
|
|
|
func outputJmnedictJson(outputDir string, reader io.Reader, flags int) error {
|
2016-08-07 01:17:02 +00:00
|
|
|
dict, entities, err := jmdict.LoadJmnedictNoTransform(reader)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-08-22 02:51:43 +00:00
|
|
|
var entries []termSource
|
2016-08-07 01:17:02 +00:00
|
|
|
for _, e := range dict.Entries {
|
|
|
|
entries = append(entries, convertJmnedictEntry(e)...)
|
|
|
|
}
|
|
|
|
|
2016-08-24 16:02:26 +00:00
|
|
|
return outputTermIndex(outputDir, entries, entities, flags&flagPrettyJson == flagPrettyJson)
|
2016-08-07 01:17:02 +00:00
|
|
|
}
|