/* * Copyright (c) 2016 Alex Yatskov * Author: Alex Yatskov * * 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" ) func convertEdictEntry(edictEntry jmdict.JmdictEntry) []vocabSource { var entries []vocabSource convert := func(reading jmdict.JmdictReading, kanji *jmdict.JmdictKanji) { if kanji != nil && hasString(kanji.Expression, reading.Restrictions) { return } var entry vocabSource if kanji == nil { entry.Expression = reading.Reading } else { entry.Expression = kanji.Expression entry.Reading = reading.Reading entry.addTags(kanji.Information...) entry.addTagsPri(kanji.Priorities...) } entry.addTags(reading.Information...) entry.addTagsPri(reading.Priorities...) for _, sense := range edictEntry.Sense { if hasString(reading.Reading, sense.RestrictedReadings) { continue } if kanji != nil && hasString(kanji.Expression, sense.RestrictedKanji) { continue } for _, glossary := range sense.Glossary { entry.Glossary = append(entry.Glossary, glossary.Content) } entry.addTags(sense.PartsOfSpeech...) entry.addTags(sense.Fields...) entry.addTags(sense.Misc...) entry.addTags(sense.Dialects...) } entries = append(entries, entry) } 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) } } return entries } func outputEdictJson(writer io.Writer, reader io.Reader, flags int) error { dict, entities, err := jmdict.LoadJmdictNoTransform(reader) if err != nil { return err } var entries []vocabSource for _, e := range dict.Entries { entries = append(entries, convertEdictEntry(e)...) } return outputVocabJson(writer, entries, entities, flags&flagPrettyJson == flagPrettyJson) }