1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
/*
SPDX-FileCopyrightText: 2013-2020 Graeme Gott <graeme@gottcode.org>
SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <QBuffer>
#include <QByteArray>
#include <QCommandLineOption>
#include <QCommandLineParser>
#include <QCoreApplication>
#include <QFile>
#include <QString>
#include <QTextStream>
#include <zlib.h>
#include <algorithm>
#include <functional>
#include <map>
#include <iostream>
#include <stdexcept>
#include <vector>
//-----------------------------------------------------------------------------
class Exception : public std::runtime_error
{
public:
explicit Exception(const QString& what_arg) : runtime_error(what_arg.toStdString()) { }
explicit Exception(const std::string& what_arg) : runtime_error(what_arg) { }
explicit Exception(const char* what_arg) : runtime_error(what_arg) { }
};
//-----------------------------------------------------------------------------
QString generateSolutionDe(QString string)
{
string.replace(u'Ä', "AE");
string.replace(u'Ö', "OE");
string.replace(u'Ü', "UE");
string.replace(u'Œ', "OE");
string.replace(u'À', 'A');
string.replace(u'Á', 'A');
string.replace(u'Â', 'A');
string.replace(u'Å', 'A');
string.replace(u'Ç', 'C');
string.replace(u'Č', 'C');
string.replace(u'É', 'E');
string.replace(u'È', 'E');
string.replace(u'Ê', 'E');
string.replace(u'Ē', 'E');
string.replace(u'Ë', 'E');
string.replace(u'Ī', 'I');
string.replace(u'Í', 'I');
string.replace(u'Ï', 'I');
string.replace(u'Î', 'I');
string.replace(u'Ł', 'L');
string.replace(u'Ñ', 'N');
string.replace(u'Ō', 'O');
string.replace(u'Ó', 'O');
string.replace(u'Õ', 'O');
string.replace(u'Š', 'S');
string.replace(u'Ū', 'U');
string.replace(u'Û', 'U');
string.replace(u'Ú', 'U');
return string;
}
QString generateSolutionEn(QString string)
{
string.replace(u'À', 'A');
string.replace(u'Á', 'A');
string.replace(u'Â', 'A');
string.replace(u'Ä', 'A');
string.replace(u'Å', 'A');
string.replace(u'Ç', 'C');
string.replace(u'È', 'E');
string.replace(u'É', 'E');
string.replace(u'Ê', 'E');
string.replace(u'Í', 'I');
string.replace(u'Î', 'I');
string.replace(u'Ï', 'I');
string.replace(u'Ñ', 'N');
string.replace(u'Ó', 'O');
string.replace(u'Ô', 'O');
string.replace(u'Ö', 'O');
string.replace(u'Ø', 'O');
string.replace(u'Ù', 'U');
string.replace(u'Ú', 'U');
string.replace(u'Û', 'U');
string.replace(u'Ü', 'U');
return string;
}
QString generateSolutionFr(QString string)
{
string.replace(u'À', 'A');
string.replace(u'Â', 'A');
string.replace(u'Ä', 'A');
string.replace(u'Æ', 'A');
string.replace(u'É', 'E');
string.replace(u'È', 'E');
string.replace(u'Ê', 'E');
string.replace(u'Ë', 'E');
string.replace(u'Î', 'I');
string.replace(u'Ï', 'I');
string.replace(u'Ô', 'O');
string.replace(u'Ö', 'O');
string.replace(u'Œ', 'O');
string.replace(u'Ù', 'U');
string.replace(u'Ú', 'U');
string.replace(u'Û', 'U');
string.replace(u'Ü', 'U');
string.replace(u'Ÿ', 'Y');
string.replace(u'Ç', 'C');
return string;
}
QString generateSolutionHe(QString string)
{
string.replace(u'ך', u'כ');
string.replace(u'ם', u'מ');
string.replace(u'ן', u'נ');
string.replace(u'ף', u'פ');
string.replace(u'ץ', u'צ');
return string;
}
QString generateSolutionNl(QString string)
{
string.replace(u'À', 'A');
string.replace(u'Ä', 'A');
string.replace(u'È', 'E');
string.replace(u'É', 'E');
string.replace(u'Ê', 'E');
string.replace(u'Ë', 'E');
string.replace(u'Î', 'I');
string.replace(u'Ï', 'I');
string.replace(u'Ô', 'O');
string.replace(u'Ö', 'O');
string.replace(u'Û', 'U');
string.replace(u'Ü', 'U');
string.replace(u'Ç', 'C');
string.replace(u'Ñ', 'N');
return string;
}
QString generateSolutionNone(QString string)
{
return string;
}
std::function<QString(QString)> fetchGenerateSolution(const QString& language)
{
if (language == "de") {
return generateSolutionDe;
} else if (language == "en") {
return generateSolutionEn;
} else if (language == "fr") {
return generateSolutionFr;
} else if (language == "he") {
return generateSolutionHe;
} else if (language == "nl") {
return generateSolutionNl;
} else {
return generateSolutionNone;
}
}
//-----------------------------------------------------------------------------
std::map<QString, std::vector<QString>> readWords(const QString& filename, const QString& language)
{
QFile in(filename);
if (!in.open(QIODevice::ReadOnly | QIODevice::Text)) {
throw Exception("Unable to open file '" + filename + "' for reading.");
}
const auto generateSolution = fetchGenerateSolution(language);
QTextStream stream(&in);
std::map<QString, std::vector<QString>> words;
while (!stream.atEnd()) {
const QString word = stream.readLine().trimmed();
// Replace letters
const QString solution = generateSolution(word.toUpper());
// Discard words that are too short or too long
if ((solution.length() < 3) || (solution.length() > 25)) {
continue;
}
// Store unique spellings
auto& spellings = words[solution];
if (std::find(spellings.cbegin(), spellings.cend(), word) == spellings.cend()) {
spellings.push_back(word);
}
}
in.close();
return words;
}
//-----------------------------------------------------------------------------
QByteArray joinWordsIntoLines(const std::map<QString, std::vector<QString>>& words)
{
QBuffer buffer;
buffer.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream stream(&buffer);
for (const auto& i : words) {
const auto& solution = i.first;
const auto& spellings = i.second;
if ((spellings.size() == 1) && (spellings[0] == solution.toLower())) {
// Doesn't need to store proper spellings in this case;
// Tanglet will fall back to all lowercase of solution.
stream << solution << '\n';
} else {
// Store solution and proper spellings.
stream << solution;
for (const auto& spelling : spellings) {
stream << ' ' << spelling;
}
stream << '\n';
}
}
buffer.close();
return buffer.data();
}
//-----------------------------------------------------------------------------
void writeLines(const QString& filename, const QByteArray& lines)
{
QFile out(filename);
if (!out.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
throw Exception("Unable to open file '" + filename + "' for writing.");
}
gzFile gz = gzdopen(out.handle(), "wb9");
if (!gz) {
throw Exception("Unable to open file '" + filename + "' for compression.");
}
gzwrite(gz, lines.constData(), lines.size());
gzclose(gz);
out.close();
}
//-----------------------------------------------------------------------------
int main(int argc, char** argv)
{
QCoreApplication app(argc, argv);
try {
QCommandLineParser parser;
parser.setApplicationDescription("Create Tanglet word list from a list of words.");
parser.addHelpOption();
parser.addOption(QCommandLineOption({"l", "language"}, "Specify <language>.", "language"));
parser.addOption(QCommandLineOption({"o", "output"}, "Place words in <output> instead of default file.", "output"));
parser.addPositionalArgument("file", "The <file> containing list of words.");
parser.process(app);
QString filename;
const QStringList files = parser.positionalArguments();
if (files.isEmpty()) {
parser.showHelp();
}
if (files.size() > 1) {
throw Exception("Multiple 'file' arguments specified.");
}
filename = files.first();
QString language = filename.section('/', -1);
if (parser.isSet("language")) {
language = parser.value("language");
}
QString outfilename = "words";
if (parser.isSet("output")) {
outfilename = parser.value("output");
}
const auto words = readWords(filename, language);
const auto lines = joinWordsIntoLines(words);
writeLines(outfilename, lines);
} catch (const std::exception& err) {
std::cerr << err.what() << std::endl;
return -1;
}
}
//-----------------------------------------------------------------------------
|