File: dictquery.cpp

package info (click to toggle)
kiten 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 34,156 kB
  • sloc: cpp: 6,079; xml: 239; makefile: 8; sh: 2
file content (595 lines) | stat: -rw-r--r-- 17,409 bytes parent folder | download
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
/*
    This file is part of Kiten, a KDE Japanese Reference Tool
    SPDX-FileCopyrightText: 2006 Joseph Kerian <jkerian@gmail.com>
    SPDX-FileCopyrightText: 2011 Daniel E. Moctezuma <democtezuma@gmail.com>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

/*
TODO: Add features to limit the number of hits on a per-search basis.

    Add a mechanism (either through subclassing, or directly) for use
        for marking "requested" fields for the dcop system.
*/

#include "dictquery.h"

#include <QDebug>

#include <QString>

class DictQuery::Private
{
public:
    Private()
        : matchType(DictQuery::Exact)
        , matchWordType(DictQuery::Any)
        , filterType(DictQuery::NoFilter)
    {
    }

    /** Stores the (english or otherwise non-japanese) meaning */
    QString meaning;
    /** Stores the pronunciation in kana */
    QString pronunciation;
    /** The main word, this usually contains kanji */
    QString word;
    /** Any amount of extended attributes, grade level, heisig/henshall/etc index numbers, whatever you want */
    QHash<QString, QString> extendedAttributes;
    /** The order that various attributes, meanings, and pronunciations were entered, so we can
     * regenerate the list for the user if they need them again */
    QStringList entryOrder;
    /** A list of dictionaries to limit the search to, and empty list implies "all loaded dictionaries" */
    QStringList targetDictionaries;
    /** What MatchType is this set to */
    MatchType matchType;
    /** What MatchWordType is this set to */
    MatchWordType matchWordType;
    /** What FilterType is this set to */
    FilterType filterType;

    /** Marker in the m_entryOrder for the location of the pronunciation element */
    static const QString pronunciationMarker;
    /** Marker in the m_entryOrder for the location of the translated meaning element */
    static const QString meaningMarker;
    /** Marker in the m_entryOrder for the location of the word (kanji) element */
    static const QString wordMarker;
};

const QString DictQuery::Private::pronunciationMarker(QStringLiteral("__@\\p"));
const QString DictQuery::Private::meaningMarker(QStringLiteral("__@\\m"));
const QString DictQuery::Private::wordMarker(QStringLiteral("_@\\w"));

/*****************************************************************************
 *	Constructors, Destructors, Initializers, and
 *	Global Status Indicators.
 *****************************************************************************/
DictQuery::DictQuery()
    : d(new Private)
{
}

DictQuery::DictQuery(const QString &str)
    : d(new Private)
{
    this->operator=((QString)str);
}

DictQuery::DictQuery(const DictQuery &orig)
    : d(new Private)
{
    this->operator=((DictQuery &)orig);
}

DictQuery *DictQuery::clone() const
{
    return new DictQuery(*this);
}

DictQuery::operator QString() const
{
    // kDebug() << "DictQuery toString operator called!";
    return toString();
}

DictQuery::~DictQuery()
{
    delete d;
}

bool DictQuery::isEmpty() const
{
    // We're only empty if the two strings are empty too
    return d->extendedAttributes.isEmpty() && d->meaning.isEmpty() && d->pronunciation.isEmpty() && d->word.isEmpty();
}

void DictQuery::clear()
{
    d->extendedAttributes.clear();
    d->meaning = QLatin1String("");
    d->pronunciation = QLatin1String("");
    d->word = QLatin1String("");
    d->entryOrder.clear();
}

/*****************************************************************************
 *	Methods that involve multiple instances of the class
 *	(comparison, copy etc)
 *****************************************************************************/
DictQuery &DictQuery::operator=(const DictQuery &old)
{
    if (&old == this) {
        return *this;
    }

    clear();
    d->matchType = old.d->matchType;
    d->matchWordType = old.d->matchWordType;
    d->filterType = old.d->filterType;
    d->extendedAttributes = old.d->extendedAttributes;
    d->meaning = old.d->meaning;
    d->pronunciation = old.d->pronunciation;
    d->word = old.d->word;
    d->entryOrder = old.d->entryOrder;
    return *this;
}

DictQuery &DictQuery::operator+=(const DictQuery &old)
{
    for (const QString &item : old.d->entryOrder) {
        if (item == d->meaningMarker) {
            if (d->entryOrder.removeAll(d->meaningMarker) > 0) {
                setMeaning(getMeaning() + mainDelimiter + old.getMeaning());
            } else {
                setMeaning(old.getMeaning());
            }
        } else if (item == d->pronunciationMarker) {
            if (d->entryOrder.removeAll(d->pronunciationMarker) > 0) {
                setPronunciation(getPronunciation() + mainDelimiter + old.getPronunciation());
            } else {
                setPronunciation(old.getPronunciation());
            }
        } else if (item == d->wordMarker) {
            d->entryOrder.removeAll(d->wordMarker);
            // Only one of these allowed
            setWord(old.getWord());
        } else {
            setProperty(item, old.getProperty(item));
        }
    }

    return *this;
}

DictQuery operator+(const DictQuery &a, const DictQuery &b)
{
    DictQuery val(a);
    val += b;
    return val;
}

bool operator==(const DictQuery &a, const DictQuery &b)
{
    if ((a.d->pronunciation != b.d->pronunciation) || (a.d->meaning != b.d->meaning) || (a.d->word != b.d->word) || (a.d->entryOrder != b.d->entryOrder)
        || (a.d->extendedAttributes != b.d->extendedAttributes) || (a.d->matchType != b.d->matchType) || (a.d->matchWordType != b.d->matchWordType)
        || (a.d->filterType != b.d->filterType)) {
        return false;
    }

    return true;
}

bool operator!=(const DictQuery &a, const DictQuery &b)
{
    return !(a == b);
}

bool operator<(const DictQuery &a, const DictQuery &b)
{
    QHash<QString, QString>::const_iterator it = a.d->extendedAttributes.constBegin();
    QHash<QString, QString>::const_iterator it_end = a.d->extendedAttributes.constEnd();
    for (; it != it_end; ++it) {
        QString B_version = b.d->extendedAttributes.value(it.key());
        if (a.d->extendedAttributes[it.key()] != B_version) {
            if (!B_version.contains(QLatin1Char(',')) && !B_version.contains(QLatin1Char('-'))) {
                return false;
            }
            // TODO: check for multi-values or ranges in DictQuery operator<
        }
    }

    if (!a.d->pronunciation.isEmpty()) {
        QStringList aList = a.d->pronunciation.split(DictQuery::mainDelimiter);
        QStringList bList = b.d->pronunciation.split(DictQuery::mainDelimiter);
        for (const QString &str : aList) {
            if (bList.contains(str) == 0) {
                return false;
            }
        }
    }

    if (!a.d->meaning.isEmpty()) {
        QStringList aList = a.d->meaning.split(DictQuery::mainDelimiter);
        QStringList bList = b.d->meaning.split(DictQuery::mainDelimiter);
        for (const QString &str : aList) {
            if (bList.contains(str) == 0) {
                return false;
            }
        }
    }

    // Assume only one entry for word
    if (!a.d->word.isEmpty()) {
        if (a.d->word != b.d->word) {
            return false;
        }
    }

    return true;
}

/*****************************************************************************
 *	Methods to extract from QStrings and recreate QStrings
 *
 *****************************************************************************/
const QString DictQuery::toString() const
{
    if (isEmpty()) {
        return QString();
    }

    QString reply;
    for (const QString &it : d->entryOrder) {
        if (it == d->pronunciationMarker) {
            reply += d->pronunciation + mainDelimiter;
        } else if (it == d->meaningMarker) {
            reply += d->meaning + mainDelimiter;
        } else if (it == d->wordMarker) {
            reply += d->word + mainDelimiter;
        } else {
            reply += it + propertySeperator + d->extendedAttributes.value(it) + mainDelimiter;
        }
    }
    reply.truncate(reply.length() - mainDelimiter.length());

    return reply;
}

DictQuery &DictQuery::operator=(const QString &str)
{
    QStringList parts = str.split(mainDelimiter);
    DictQuery result;
    if (str.length() > 0) {
        for (const QString &it : parts) {
            if (it.contains(propertySeperator)) {
                QStringList prop = it.split(propertySeperator);
                if (prop.count() != 2) {
                    break;
                }
                result.setProperty(prop[0], prop[1]);
                // replace or throw an error with duplicates?
            } else {
                switch (stringTypeCheck(it)) {
                case DictQuery::Latin:
                    if (result.d->entryOrder.removeAll(d->meaningMarker) > 0) {
                        result.setMeaning(result.getMeaning() + mainDelimiter + it);
                    } else {
                        result.setMeaning(it);
                    }
                    break;

                case DictQuery::Kana:
                    if (result.d->entryOrder.removeAll(d->pronunciationMarker) > 0) {
                        result.setPronunciation(result.getPronunciation() + mainDelimiter + it);
                    } else {
                        result.setPronunciation(it);
                    }
                    break;

                case DictQuery::Kanji:
                    result.d->entryOrder.removeAll(d->wordMarker);
                    result.setWord(it); // Only one of these allowed
                    break;

                case DictQuery::Mixed:
                    qWarning() << "DictQuery: String parsing error - mixed type";
                    break;

                case DictQuery::ParseError:
                    qWarning() << "DictQuery: String parsing error";
                    break;
                }
            }
        }
    }
    // kDebug() << "Query: ("<<result.getWord() << ") ["<<result.getPronunciation()<<"] :"<<
    //	result.getMeaning()<<endl;
    this->operator=(result);
    return *this;
}

/**
 * Private utility method for the above... confirms that an entire string
 * is either completely japanese or completely english
 */
DictQuery::StringTypeEnum DictQuery::stringTypeCheck(const QString &in)
{
    StringTypeEnum firstType;
    // Split into individual characters
    if (in.size() <= 0) {
        return DictQuery::ParseError;
    }

    firstType = charTypeCheck(in.at(0));
    for (int i = 1; i < in.size(); i++) {
        StringTypeEnum newType = charTypeCheck(in.at(i));
        if (newType != firstType) {
            if (firstType == Kana && newType == Kanji) {
                firstType = Kanji;
            } else if (firstType == Kanji && newType == Kana)
                ; // That's okay
            else {
                return DictQuery::Mixed;
            }
        }
    }

    return firstType;
}

/**
 * Private utility method for the stringTypeCheck
 * Just checks and returns the type of the first character in the string
 * that is passed to it.
 */
DictQuery::StringTypeEnum DictQuery::charTypeCheck(const QChar &ch)
{
    if (ch.toLatin1()) {
        return Latin;
    }
    // The unicode character boundaries are:
    //  3040 - 309F Hiragana
    //  30A0 - 30FF Katakana
    //  31F0 - 31FF Katakana phonetic expressions (wtf?)
    if (0x3040 <= ch.unicode() && ch.unicode() <= 0x30FF /*|| ch.unicode() & 0x31F0*/) {
        return Kana;
    }

    return Kanji;
}

/*****************************************************************************
 *	An array of Property List accessors and mutators
 *
 *****************************************************************************/
QString DictQuery::getProperty(const QString &key) const
{
    return (*this)[key];
}

const QList<QString> DictQuery::listPropertyKeys() const
{
    return d->extendedAttributes.keys();
}

const QString DictQuery::operator[](const QString &key) const
{
    return d->extendedAttributes.value(key);
}

QString DictQuery::operator[](const QString &key)
{
    return d->extendedAttributes[key];
}

bool DictQuery::hasProperty(const QString &key) const
{
    return d->entryOrder.contains(key) > 0;
}

// TODO: Add i18n handling and alternate versions of property names
// TODO: further break down the barrier between different types
bool DictQuery::setProperty(const QString &key, const QString &value)
{
    if (key == d->pronunciationMarker || key == d->meaningMarker || key.isEmpty() || value.isEmpty()) {
        return false;
    }

    if (!d->extendedAttributes.contains(key)) {
        d->entryOrder.append(key);
    }

    d->extendedAttributes.insert(key, value);
    return true;
}

bool DictQuery::removeProperty(const QString &key)
{
    if (d->extendedAttributes.contains(key)) {
        return d->entryOrder.removeAll(key);
    }
    return false;
}

QString DictQuery::takeProperty(const QString &key)
{
    d->entryOrder.removeAll(key);
    return d->extendedAttributes.take(key);
}

/*****************************************************************************
 *	Meaning and Pronunciation Accessors and Mutators
 ****************************************************************************/
QString DictQuery::getMeaning() const
{
    return d->meaning;
}

bool DictQuery::setMeaning(const QString &newMeaning)
{
    if (newMeaning.isEmpty()) {
#ifdef USING_QUERY_EXCEPTIONS
        throw InvalidQueryException(newMeaning);
#else
        return false;
#endif
    }

    d->meaning = newMeaning;

    if (!d->entryOrder.contains(d->meaningMarker)) {
        d->entryOrder.append(d->meaningMarker);
    }

    return true;
}

QString DictQuery::getPronunciation() const
{
    return d->pronunciation;
}

bool DictQuery::setPronunciation(const QString &newPronunciation)
{
    if (newPronunciation.isEmpty()) {
#ifdef USING_QUERY_EXCEPTIONS
        throw InvalidQueryException(newPro);
#else
        return false;
#endif
    }

    d->pronunciation = newPronunciation;

    if (!d->entryOrder.contains(d->pronunciationMarker)) {
        d->entryOrder.append(d->pronunciationMarker);
    }

    return true;
}

QString DictQuery::getWord() const
{
    return d->word;
}

bool DictQuery::setWord(const QString &newWord)
{
    if (newWord.isEmpty()) {
#ifdef USING_QUERY_EXCEPTIONS
        throw InvalidQueryException(newWord);
#else
        return false;
#endif
    }

    d->word = newWord;

    if (!d->entryOrder.contains(d->wordMarker)) {
        d->entryOrder.append(d->wordMarker);
    }

    return true;
}

/*************************************************************
  Handlers for getting and setting dictionary types
  *************************************************************/
QStringList DictQuery::getDictionaries() const
{
    return d->targetDictionaries;
}

void DictQuery::setDictionaries(const QStringList &newDictionaries)
{
    d->targetDictionaries = newDictionaries;
}

/**************************************************************
  Match Type Accessors and Mutators
  ************************************************************/
DictQuery::FilterType DictQuery::getFilterType() const
{
    return d->filterType;
}

void DictQuery::setFilterType(FilterType newType)
{
    d->filterType = newType;
}

DictQuery::MatchType DictQuery::getMatchType() const
{
    return d->matchType;
}

void DictQuery::setMatchType(MatchType newType)
{
    d->matchType = newType;
}

DictQuery::MatchWordType DictQuery::getMatchWordType() const
{
    return d->matchWordType;
}

void DictQuery::setMatchWordType(MatchWordType newType)
{
    d->matchWordType = newType;
}

/**************************************************************
*	Aliases to handle different forms of operator arguments
*	Disabled at the moment
*************************************************************
bool operator==( const QString &other, const DictQuery &query ) {
    DictQuery x(other); return x == query;
}
bool operator==( const DictQuery &query, const QString &other ) {
    return other==query;
}
bool operator!=( const DictQuery &q1, const DictQuery &q2 ) {
    return !(q1==q2);
}
bool operator!=( const QString &other, const DictQuery &query ) {
    return !(other==query);
}
bool operator!=( const DictQuery &query, const QString &other ) {
    return !(query==other);
}
inline bool operator<=( const DictQuery &a, const DictQuery &b) {
    return (a<b || a==b);
}
bool operator>=( const DictQuery &a, const DictQuery &b) {
    return (b>a || a==b);
}
bool operator>( const DictQuery &a, const DictQuery &b) {
    return b < a;
}
DictQuery &operator+( const DictQuery &a, const QString &b) {
    return (*(new DictQuery(a))) += b;
}
DictQuery &operator+( const QString &a,   const DictQuery &b)  {
    return (*(new DictQuery(a))) += b;
}
DictQuery    &DictQuery::operator+=(const QString &str) {
    DictQuery x(str);
    return operator+=(x);
}
#ifndef QT_NO_CAST_ASCII
DictQuery    &DictQuery::operator=(const char *str) {
    QString x(str);
    return operator=(x);
}
DictQuery    &DictQuery::operator+=(const char *str) {
    DictQuery x(str);
    return operator+=(x);
}
#endif
*/
/**************************************************************
 *	Set our constants declared in the class
 **************************************************************/
const QString DictQuery::mainDelimiter(QStringLiteral(" "));
const QString DictQuery::propertySeperator(QStringLiteral(":"));