DataCompiler // Compile JSON in lieu of Plist.

This commit is contained in:
ShikiSuen 2023-06-02 23:02:56 +08:00
parent 4c07e4424c
commit 69c856b776
1 changed files with 69 additions and 69 deletions

View File

@ -95,7 +95,7 @@ struct Unigram: CustomStringConvertible {
} }
} }
// MARK: - plist // MARK: - JSON
func cnvPhonabetToASCII(_ incoming: String) -> String { func cnvPhonabetToASCII(_ incoming: String) -> String {
let dicPhonabet2ASCII = [ let dicPhonabet2ASCII = [
@ -129,21 +129,22 @@ private let urlSymbols: String = "./components/common/data-symbols.txt"
private let urlZhuyinwen: String = "./components/common/data-zhuyinwen.txt" private let urlZhuyinwen: String = "./components/common/data-zhuyinwen.txt"
private let urlCNS: String = "./components/common/char-kanji-cns.txt" private let urlCNS: String = "./components/common/char-kanji-cns.txt"
private let urlPlistSymbols: String = "./data-symbols.plist"
private let urlPlistZhuyinwen: String = "./data-zhuyinwen.plist"
private let urlPlistCNS: String = "./data-cns.plist"
private let urlOutputCHS: String = "./data-chs.txt" private let urlOutputCHS: String = "./data-chs.txt"
private let urlPlistCHS: String = "./data-chs.plist"
private let urlOutputCHT: String = "./data-cht.txt" private let urlOutputCHT: String = "./data-cht.txt"
private let urlPlistCHT: String = "./data-cht.plist"
private let urlPlistBPMFReverseLookup: String = "./data-bpmf-reverse-lookup.plist" private let urlJSONSymbols: String = "./data-symbols.json"
private let urlPlistBPMFReverseLookupCNS1: String = "./data-bpmf-reverse-lookup-CNS1.plist" private let urlJSONZhuyinwen: String = "./data-zhuyinwen.json"
private let urlPlistBPMFReverseLookupCNS2: String = "./data-bpmf-reverse-lookup-CNS2.plist" private let urlJSONCNS: String = "./data-cns.json"
private let urlPlistBPMFReverseLookupCNS3: String = "./data-bpmf-reverse-lookup-CNS3.plist"
private let urlPlistBPMFReverseLookupCNS4: String = "./data-bpmf-reverse-lookup-CNS4.plist" private let urlJSONCHS: String = "./data-chs.json"
private let urlPlistBPMFReverseLookupCNS5: String = "./data-bpmf-reverse-lookup-CNS5.plist" private let urlJSONCHT: String = "./data-cht.json"
private let urlPlistBPMFReverseLookupCNS6: String = "./data-bpmf-reverse-lookup-CNS6.plist" private let urlJSONBPMFReverseLookup: String = "./data-bpmf-reverse-lookup.json"
private let urlJSONBPMFReverseLookupCNS1: String = "./data-bpmf-reverse-lookup-CNS1.json"
private let urlJSONBPMFReverseLookupCNS2: String = "./data-bpmf-reverse-lookup-CNS2.json"
private let urlJSONBPMFReverseLookupCNS3: String = "./data-bpmf-reverse-lookup-CNS3.json"
private let urlJSONBPMFReverseLookupCNS4: String = "./data-bpmf-reverse-lookup-CNS4.json"
private let urlJSONBPMFReverseLookupCNS5: String = "./data-bpmf-reverse-lookup-CNS5.json"
private let urlJSONBPMFReverseLookupCNS6: String = "./data-bpmf-reverse-lookup-CNS6.json"
private var isReverseLookupDictionaryProcessed: Bool = false private var isReverseLookupDictionaryProcessed: Bool = false
@ -263,7 +264,7 @@ func rawDictForKanjis(isCHS: Bool) -> [Unigram] {
let arrData = Array( let arrData = Array(
NSOrderedSet(array: strRAW.components(separatedBy: "\n")).array as! [String]) NSOrderedSet(array: strRAW.components(separatedBy: "\n")).array as! [String])
var varLineData = "" var varLineData = ""
var mapReverseLookup: [String: [Data]] = [:] var mapReverseLookupJSON: [String: [String]] = [:]
var mapReverseLookupUnencrypted: [String: [String]] = [:] var mapReverseLookupUnencrypted: [String: [String]] = [:]
for lineData in arrData { for lineData in arrData {
// 1,2,4 1,3,4 // 1,2,4 1,3,4
@ -304,8 +305,8 @@ func rawDictForKanjis(isCHS: Bool) -> [Unigram] {
} }
if phrase != "" { // if phrase != "" { //
if !isReverseLookupDictionaryProcessed { if !isReverseLookupDictionaryProcessed {
mapReverseLookup[phrase, default: []].append(cnvPhonabetToASCII(phone).data(using: .utf8)!)
mapReverseLookupUnencrypted[phrase, default: []].append(phone) mapReverseLookupUnencrypted[phrase, default: []].append(phone)
mapReverseLookupJSON[phrase, default: []].append(cnvPhonabetToASCII(phone))
} }
arrUnigramRAW += [ arrUnigramRAW += [
Unigram( Unigram(
@ -318,8 +319,8 @@ func rawDictForKanjis(isCHS: Bool) -> [Unigram] {
if !isReverseLookupDictionaryProcessed { if !isReverseLookupDictionaryProcessed {
do { do {
isReverseLookupDictionaryProcessed = true isReverseLookupDictionaryProcessed = true
try PropertyListSerialization.data(fromPropertyList: mapReverseLookup, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupJSON, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookup)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookup))
mapReverseLookupForCheck = mapReverseLookupUnencrypted mapReverseLookupForCheck = mapReverseLookupUnencrypted
} catch { } catch {
NSLog(" - Core Reverse Lookup Data Generation Failed.") NSLog(" - Core Reverse Lookup Data Generation Failed.")
@ -457,11 +458,11 @@ func weightAndSort(_ arrStructUncalculated: [Unigram], isCHS: Bool) -> [Unigram]
func fileOutput(isCHS: Bool) { func fileOutput(isCHS: Bool) {
let i18n: String = isCHS ? "簡體中文" : "繁體中文" let i18n: String = isCHS ? "簡體中文" : "繁體中文"
var strPunctuation = "" var strPunctuation = ""
var rangeMap: [String: [Data]] = [:] var rangeMapJSON: [String: [String]] = [:]
let pathOutput = urlCurrentFolder.appendingPathComponent( let pathOutput = urlCurrentFolder.appendingPathComponent(
isCHS ? urlOutputCHS : urlOutputCHT) isCHS ? urlOutputCHS : urlOutputCHT)
let plistURL = urlCurrentFolder.appendingPathComponent( let jsonURL = urlCurrentFolder.appendingPathComponent(
isCHS ? urlPlistCHS : urlPlistCHT) isCHS ? urlJSONCHS : urlJSONCHT)
var strPrintLine = "" var strPrintLine = ""
// //
do { do {
@ -489,7 +490,7 @@ func fileOutput(isCHS: Bool) {
let theKey = String(neta[0]) let theKey = String(neta[0])
let theValue = String(neta[1]) let theValue = String(neta[1])
if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" { if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" {
rangeMap[cnvPhonabetToASCII(theKey), default: []].append(theValue.data(using: .utf8)!) rangeMapJSON[cnvPhonabetToASCII(theKey), default: []].append(theValue)
} }
} }
} }
@ -519,7 +520,7 @@ func fileOutput(isCHS: Bool) {
let theKey = unigram.key let theKey = unigram.key
let theValue = (String(unigram.score) + " " + unigram.value) let theValue = (String(unigram.score) + " " + unigram.value)
if !theKey.contains("_punctuation_list") { if !theKey.contains("_punctuation_list") {
rangeMap[cnvPhonabetToASCII(theKey), default: []].append(theValue.data(using: .utf8)!) rangeMapJSON[cnvPhonabetToASCII(theKey), default: []].append(theValue)
} }
strPrintLine += unigram.key + " " + unigram.value strPrintLine += unigram.key + " " + unigram.value
strPrintLine += " " + String(unigram.score) strPrintLine += " " + String(unigram.score)
@ -531,8 +532,7 @@ func fileOutput(isCHS: Bool) {
NSLog(" - \(i18n): 要寫入檔案的 txt 內容編譯完畢。") NSLog(" - \(i18n): 要寫入檔案的 txt 內容編譯完畢。")
do { do {
try strPrintLine.write(to: pathOutput, atomically: true, encoding: .utf8) try strPrintLine.write(to: pathOutput, atomically: true, encoding: .utf8)
let plistData = try PropertyListSerialization.data(fromPropertyList: rangeMap, format: .binary, options: 0) try JSONSerialization.data(withJSONObject: rangeMapJSON, options: .sortedKeys).write(to: jsonURL)
try plistData.write(to: plistURL)
} catch { } catch {
NSLog(" - \(i18n): Error on writing strings to file: \(error)") NSLog(" - \(i18n): Error on writing strings to file: \(error)")
} }
@ -550,15 +550,15 @@ func commonFileOutput() {
var strSymbols = "" var strSymbols = ""
var strZhuyinwen = "" var strZhuyinwen = ""
var strCNS = "" var strCNS = ""
var mapSymbols: [String: [Data]] = [:] var mapSymbols: [String: [String]] = [:]
var mapZhuyinwen: [String: [Data]] = [:] var mapZhuyinwen: [String: [String]] = [:]
var mapCNS: [String: [Data]] = [:] var mapCNS: [String: [String]] = [:]
var mapReverseLookupCNS1: [String: [Data]] = [:] var mapReverseLookupCNS1: [String: [String]] = [:]
var mapReverseLookupCNS2: [String: [Data]] = [:] var mapReverseLookupCNS2: [String: [String]] = [:]
var mapReverseLookupCNS3: [String: [Data]] = [:] var mapReverseLookupCNS3: [String: [String]] = [:]
var mapReverseLookupCNS4: [String: [Data]] = [:] var mapReverseLookupCNS4: [String: [String]] = [:]
var mapReverseLookupCNS5: [String: [Data]] = [:] var mapReverseLookupCNS5: [String: [String]] = [:]
var mapReverseLookupCNS6: [String: [Data]] = [:] var mapReverseLookupCNS6: [String: [String]] = [:]
// //
do { do {
strSymbols = try String(contentsOfFile: urlSymbols, encoding: .utf8).replacingOccurrences(of: "\t", with: " ") strSymbols = try String(contentsOfFile: urlSymbols, encoding: .utf8).replacingOccurrences(of: "\t", with: " ")
@ -567,7 +567,7 @@ func commonFileOutput() {
} catch { } catch {
NSLog(" - \(i18n): Exception happened when reading raw punctuation data.") NSLog(" - \(i18n): Exception happened when reading raw punctuation data.")
} }
NSLog(" - \(i18n): 成功取得標點符號與西文字母原始資料(plist)。") NSLog(" - \(i18n): 成功取得標點符號與西文字母原始資料(JSON)。")
// //
strSymbols.ranges(splitBy: "\n").forEach { strSymbols.ranges(splitBy: "\n").forEach {
let neta = strSymbols[$0].split(separator: " ") let neta = strSymbols[$0].split(separator: " ")
@ -576,7 +576,7 @@ func commonFileOutput() {
let theKey = String(neta[1]) let theKey = String(neta[1])
let theValue = String(neta[0]) let theValue = String(neta[0])
if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" { if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" {
mapSymbols[cnvPhonabetToASCII(theKey), default: []].append(theValue.data(using: .utf8)!) mapSymbols[cnvPhonabetToASCII(theKey), default: []].append(theValue)
} }
} }
} }
@ -587,7 +587,7 @@ func commonFileOutput() {
let theKey = String(neta[1]) let theKey = String(neta[1])
let theValue = String(neta[0]) let theValue = String(neta[0])
if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" { if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" {
mapZhuyinwen[cnvPhonabetToASCII(theKey), default: []].append(theValue.data(using: .utf8)!) mapZhuyinwen[cnvPhonabetToASCII(theKey), default: []].append(theValue)
} }
} }
} }
@ -598,31 +598,31 @@ func commonFileOutput() {
let theKey = String(neta[1]) let theKey = String(neta[1])
let theValue = String(neta[0]) let theValue = String(neta[0])
if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" { if !neta[0].isEmpty, !neta[1].isEmpty, line.first != "#" {
mapCNS[cnvPhonabetToASCII(theKey), default: []].append(theValue.data(using: .utf8)!) mapCNS[cnvPhonabetToASCII(theKey), default: []].append(theValue)
plist: if !theKey.contains("_"), !theKey.contains("-") { json: if !theKey.contains("_"), !theKey.contains("-") {
if mapReverseLookupCNS1.keys.count <= 16500 { if mapReverseLookupCNS1.keys.count <= 16500 {
mapReverseLookupCNS1[theValue, default: []].append(cnvPhonabetToASCII(theKey).data(using: .utf8)!) mapReverseLookupCNS1[theValue, default: []].append(cnvPhonabetToASCII(theKey))
break plist break json
} }
if mapReverseLookupCNS2.keys.count <= 16500 { if mapReverseLookupCNS2.keys.count <= 16500 {
mapReverseLookupCNS2[theValue, default: []].append(cnvPhonabetToASCII(theKey).data(using: .utf8)!) mapReverseLookupCNS2[theValue, default: []].append(cnvPhonabetToASCII(theKey))
break plist break json
} }
if mapReverseLookupCNS3.keys.count <= 16500 { if mapReverseLookupCNS3.keys.count <= 16500 {
mapReverseLookupCNS3[theValue, default: []].append(cnvPhonabetToASCII(theKey).data(using: .utf8)!) mapReverseLookupCNS3[theValue, default: []].append(cnvPhonabetToASCII(theKey))
break plist break json
} }
if mapReverseLookupCNS4.keys.count <= 16500 { if mapReverseLookupCNS4.keys.count <= 16500 {
mapReverseLookupCNS4[theValue, default: []].append(cnvPhonabetToASCII(theKey).data(using: .utf8)!) mapReverseLookupCNS4[theValue, default: []].append(cnvPhonabetToASCII(theKey))
break plist break json
} }
if mapReverseLookupCNS5.keys.count <= 16500 { if mapReverseLookupCNS5.keys.count <= 16500 {
mapReverseLookupCNS5[theValue, default: []].append(cnvPhonabetToASCII(theKey).data(using: .utf8)!) mapReverseLookupCNS5[theValue, default: []].append(cnvPhonabetToASCII(theKey))
break plist break json
} }
if mapReverseLookupCNS6.keys.count <= 16500 { if mapReverseLookupCNS6.keys.count <= 16500 {
mapReverseLookupCNS6[theValue, default: []].append(cnvPhonabetToASCII(theKey).data(using: .utf8)!) mapReverseLookupCNS6[theValue, default: []].append(cnvPhonabetToASCII(theKey))
break plist break json
} }
} }
} }
@ -630,24 +630,24 @@ func commonFileOutput() {
} }
NSLog(" - \(i18n): 要寫入檔案的內容編譯完畢。") NSLog(" - \(i18n): 要寫入檔案的內容編譯完畢。")
do { do {
try PropertyListSerialization.data(fromPropertyList: mapSymbols, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapSymbols, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistSymbols)) to: URL(fileURLWithPath: urlJSONSymbols))
try PropertyListSerialization.data(fromPropertyList: mapZhuyinwen, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapZhuyinwen, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistZhuyinwen)) to: URL(fileURLWithPath: urlJSONZhuyinwen))
try PropertyListSerialization.data(fromPropertyList: mapCNS, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapCNS, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistCNS)) to: URL(fileURLWithPath: urlJSONCNS))
try PropertyListSerialization.data(fromPropertyList: mapReverseLookupCNS1, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupCNS1, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookupCNS1)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookupCNS1))
try PropertyListSerialization.data(fromPropertyList: mapReverseLookupCNS2, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupCNS2, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookupCNS2)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookupCNS2))
try PropertyListSerialization.data(fromPropertyList: mapReverseLookupCNS3, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupCNS3, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookupCNS3)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookupCNS3))
try PropertyListSerialization.data(fromPropertyList: mapReverseLookupCNS4, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupCNS4, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookupCNS4)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookupCNS4))
try PropertyListSerialization.data(fromPropertyList: mapReverseLookupCNS5, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupCNS5, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookupCNS5)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookupCNS5))
try PropertyListSerialization.data(fromPropertyList: mapReverseLookupCNS6, format: .binary, options: 0).write( try JSONSerialization.data(withJSONObject: mapReverseLookupCNS6, options: .sortedKeys).write(
to: URL(fileURLWithPath: urlPlistBPMFReverseLookupCNS6)) to: URL(fileURLWithPath: urlJSONBPMFReverseLookupCNS6))
} catch { } catch {
NSLog(" - \(i18n): Error on writing strings to file: \(error)") NSLog(" - \(i18n): Error on writing strings to file: \(error)")
} }