/usr/include/libkiten/dictquery.h is in libkiten-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*****************************************************************************
* This file is part of Kiten, a KDE Japanese Reference Tool *
* Copyright (C) 2006 Joseph Kerian <jkerian@gmail.com> *
* Copyright (C) 2011 Daniel E. Moctezuma <democtezuma@gmail.com> *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public License *
* along with this library; see the file COPYING.LIB. If not, write to *
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
*****************************************************************************/
#ifndef KITEN_DICTQUERY_H
#define KITEN_DICTQUERY_H
#include <QHash>
#include <QHashIterator>
#include <QString>
#include <QStringList>
class QChar;
#include "libkitenexport.h"
/**
* @short A class to allow users of libkiten to properly setup a database
* query.
*
* In general, you either pass or parse in parameters from users or automated
* programs to be later sent to the dictionary manager.
*
* This class is one of the three critical classes (along with
* dictionary and EntryList) that are needed to use libkiten. Essentially...
* you feed the dictionary class a DictQuery, and dictionary will return an
* EntryList that matches the query.
*
* @code
* dictionary dictManager();
* //Load some dictionaries via dictionary class methods
* EntryList *results;
* DictQuery myQuery("kanji");
* results = dictManager.doSearch(myQuery);
* //Print results (if any)
* @endcode
*
* The internal implementation understands four distinct types of data:
* Japanese Kanji
* Japanese Kana
* English Characters
* Property Pairs of the form \<i\>name\</i\>:\<i\>value\</i\>
*
* It is left up to the individual dictionary types to parse these values
* for matching and appropriateness to each dictionary.
* You can use the setDictionaries() method to narrow the range of the
* dictionaries that it will apply to.
*
* A DictQuery object can be considered an "unordered set" of values.
* When testing for equality or comparison, each property or text entry above
* is seen as a unique item in a set. Order is not important for these
* operations. The object will attempt to preserve the order from parsed
* strings, but it does not consider this order to be important.
*
* In general, application level programs are expected to use the
* QString based interfaces, and dictionary implementations and other
* parts of libkiten are expected to use the direct accessors and mutators,
* although specialized interfaces (such as kitenradselect) may use property
* mutators for a limited set of properties. (in this case, radicals)
*
* The query string input is of the following format:
* <QS> ::= <M>DictQuery::mainDelimiter<QS>|<R>DictQuery::mainDelimiter<QS>|
* <O>DictQuery::mainDelimiter<QS>|NULL
* <M> ::= kana<M>|kana
* <R> ::= character<R>|character
* <O> ::= <C>DictQuery::propertySeparator<D>
* <C> ::= character<C>|character
* <D> ::= character<D>|character
*
* @author Joseph Kerian \<jkerian@gmail.com>
*/
class KITEN_EXPORT DictQuery
{
public:
/**
* This is the main delimiter that the DictQuery uses when parsing strings.
* It is set to "space" at the moment.
*/
static const QString mainDelimiter;
/**
* This is the delimiter that DictQuery uses when parsing property strings
* of the form <i>strokes:4</i>. It is set to ":" at the moment.
*/
static const QString propertySeperator;
/**
* Normal constructor.
*
* This will create an empty query object.
*/
DictQuery();
/**
* Constructor with a given QString.
*
* @param str the QString will be parsed as described below in operator=(const QString&)
*/
DictQuery( const QString& str );
/**
* Copy constructor
*
* @param orig the original DictQuery to be copied
*/
DictQuery( const DictQuery& orig );
/**
* Destructor
*/
~DictQuery();
/**
* @return true if the DictQuery is completely empty
*/
bool isEmpty() const;
/**
* Removes all text/entries from the DictQuery
*/
void clear();
/**
* The assignment copy operator
*/
DictQuery &operator=( const DictQuery &old );
/**
* The clone method
*/
DictQuery *clone() const;
/**
* This returns a QString that represents the query. This may be the same
* as the original string, but some slight changes may have occurred if you
* have done any manipulations on the DictQuery.
*/
const QString toString() const;
/**
* This is a convertion to a QString... useful in a surprising
* number of cases.
*/
operator QString() const;
/**
* Use this to get a list of all the property keys in the query
*/
const QList<QString> listPropertyKeys() const;
/**
* Returns a given extended attribute
*/
const QString operator[]( const QString &key ) const;
/**
* Sets a given extended attribute
*/
QString operator[]( const QString &key );
/**
* Get a specific property by key (is the same as using operator[] const)
*/
QString getProperty( const QString &key ) const;
/**
* Verify if a given DictQuery object has a search parameter of a
* particular property.
*/
bool hasProperty( const QString &key ) const;
/**
* Set a particular property... this does significantly more error checking
* than the operator[] version, and will return false if there was a
* problem (an empty value or bad key)
*
* @param key the key for this entry
* @param value the value to set this to, will overwrite the current contents of this location
*
* @returns false on failure
*/
bool setProperty( const QString& key, const QString& value );
/**
* Remove all instances of a property.
*
* @returns true if the DictQuery had properties of the given type
*/
bool removeProperty( const QString &key );
/**
* Returns and removes the property
*/
QString takeProperty( const QString &key );
/**
* Returns a list of the dictionaries that this particular query
* will target. An empty list (the default) will search all dictionaries
* that the user has selected.
*/
QStringList getDictionaries() const;
/**
* Set the list of dictionaries to search. This will be read and used
* by the dictionary manager.
*/
void setDictionaries( const QStringList &newDictionaries );
/**
* Accessor for the non-japanese meaning field
*/
QString getMeaning() const;
/**
* Mutator for the Meaning field
*/
bool setMeaning( const QString &newMeaning );
/**
* Accessor for the Pronunciation field (generally kana)
*/
QString getPronunciation() const;
/**
* Mutator for the Pronunciation field
*/
bool setPronunciation( const QString &newPronunciation );
/**
* Accessor for the Word/Kanji field (this is usually used for anything
* containing kanji).
*/
QString getWord() const;
/**
* Mutator for the Word/Kanji field. If what you are setting contains
* only kana, consider using the setPronunciation instead.
*/
bool setWord( const QString &newWord );
/**
* A simple setwise comparison of two DictQuery objects
* Note that order is not important here... only each element
* that is one of the DictQuery objects appears in the other.
*/
KITEN_EXPORT friend bool operator==( const DictQuery &a, const DictQuery &b );
/**
* Convenient inverted override of operator==( DictQuery, DictQuery )
*/
KITEN_EXPORT friend bool operator!=( const DictQuery &other, const DictQuery &query );
/**
* Set-wise strictly less than. A better way to think of this
* might be the "subset" operator
*/
KITEN_EXPORT friend bool operator<( const DictQuery &a, const DictQuery &b );
/**
* Convenient override of operator<( DictQuery, DictQuery ) and operator==
*/
KITEN_EXPORT friend bool operator<=( const DictQuery &a, const DictQuery &b );
/**
* This will append the properties and other elements of the added kanji
* onto the elements of the current element. If regenerated as a string,
* it should look something like concatenation
*/
DictQuery &operator+=( const DictQuery &old );
/**
* A simple string parser, look above for examples and explanations
*/
DictQuery &operator=( const QString &old );
/**
* A simple override of operator+=( const DictQuery& )
*/
DictQuery &operator+=( const QString &old );
/**
* Simple addition... similer to operator+=
*/
KITEN_EXPORT friend DictQuery operator+( const DictQuery &a, const DictQuery &b );
#ifndef QT_NO_CAST_ASCII
/**
* An ascii cast variant of the operator=
* Only available if QT_NO_CAST_ASCII is not defined on lib compilation
*/
DictQuery &operator=( const char* );
#endif
//Specify the type of matching
/**
* This enum is used to define the type of matching this query is supposed
* to do. The names are fairly self-explanatory
*/
enum MatchType
{
Exact,
Beginning,
Ending,
Anywhere
};
/**
* Get which match type is currently set on the DictQuery.
*/
MatchType getMatchType() const;
/**
* Set a match type. If this is not called, the default is matchExact.
*/
void setMatchType( MatchType newType );
/**
* This enum is used to define the type of matching this query is supposed
* to do.
*/
enum MatchWordType
{
Any,
Verb,
Noun,
Adjective,
Adverb,
Prefix,
Suffix,
Expression
};
/**
* Get which word type is currently set on the DictQuery.
*/
MatchWordType getMatchWordType() const;
/**
* Set a word type. If this is not called, the default value is 'Any'.
*/
void setMatchWordType( MatchWordType newType );
enum FilterType
{
NoFilter,
Rare,
CommonUncommon
};
/**
* Get which filter is currently set on the DictQuery.
*/
FilterType getFilterType() const;
/**
* Set whether or not the query should output results separated in
* common and uncommon sections.
*/
void setFilterType( FilterType newType );
/**
* This enum is used as the return type for the two utility functions,
* stringTypeCheck and charTypeCheck.
*/
enum StringTypeEnum
{
Kanji,
Kana,
Latin,
Mixed,
ParseError
};
/**
* A simple utility routine to tell us what sort of string we have
* If the string contains only kanji, kana or non-kanji/kana characters, the result is strTypeKanji,
* strTypeKana or strTypeLatin (perhaps a misnomer... but so far it's valid).
* If the string contains both kanji and kana, the type returned is strTypeKanji
* If the string contains any other combination, the return type is mixed.
*/
static StringTypeEnum stringTypeCheck( const QString &in );
/**
* This utility does the same thing for QChar as stringTypeCheck does for QString. At the moment
* the implementation is rather simple, and it assumes that anything that is not latin1 or kana is
* a kanji.
*/
static StringTypeEnum charTypeCheck( const QChar &ch );
private:
class Private;
Private* const d;
};
//Currently... KDE doesn't seem to want to use exceptions
#ifdef LIBKITEN_USING_EXCEPTIONS
class InvalidQueryException
{
public:
InvalidQueryException( QString x ) { m_val = x; }
InvalidQueryException( QString m = "Invalid Query String", QString x ) { m_val = x; m_msg = m; }
QString value() { return m_val; }
QString message() { return m_msg; }
protected:
QString m_val;
QString m_msg;
};
#endif
#endif
|